.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;

  justify-content: space-around;
}
.filters_block {
  width: 100%;
  padding: 8px 0;
  border-radius: 12px;
  background-color: #4fa7fff7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.date_filter,
.deal_name_filter {
  width: 40%;
}
.date_filter {
  height: 67px;
  /* background-color: #4FA7FF; */
  padding: 10px 15px;
  /* border-radius: 50px; */
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}
.date_filter input {
  border-radius: 8px;
  padding: 0 10px;
  font-size: 20px;
  flex-grow: 1;
  margin: 0 5%;
}
.input_label {
  line-height: 1.2;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_icon {
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 50px;
  font-size: 15px;
}
.search_icon i {
  color: #4fa7ff;
}
.deal_name_filter {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 67px;
  position: relative;
}
#deal_name {
  /* background-color: transparent; */
  color: #fff;
  height: 47px;
  width: 70%;
  padding: 15px;
  /* width: 100%; */
  /* height: 100%; */
  border-radius: 12px;
  font-size: 20px;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 0 0;
}
#deal_name::placeholder {
  color: #fff;
}
#deal_name:hover,
#deal_name:focus {
  background-color: #e9e9e9;
}
.deal_name_filter_search_icon {
  /* position: absolute; */
  right: 15px;
  top: 10px;
  cursor: pointer;
}
.signer_name {
  border-top: 1px solid #4fa7ff;
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  & label {
    font-size: 20px;
    line-height: 18px;
    font-weight: normal;
  }
  & input {
    padding: 0 8px;
    vertical-align: middle;
    border-radius: 2px;
    width: 100%;
    min-height: 36px;
    background-color: #ffffff;
    border: 1px solid rgba(36, 28, 21, 0.3);
    transition: all 0.2s ease-in-out 0s;
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
    :focus {
      outline: none;
      border: 1px solid #007c89;
      box-shadow: inset 0 0 0 1px #007c89;
    }
  }
}
.btns_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.send_btn,
.failed_btn,
.add_user_btn {
  background-color: #4fa7ff;
  border-radius: 12px;
  padding: 15px 75px;
  font-size: 24px;
  /* margin: 20px; */
  transition: 0.3s;
}
#saveSignature,
#closeSignature,
#clearSignature {
  background-color: #4fa7ff;
  border-radius: 12px;
  padding: 15px;
  font-size: 13px;
  color: white;
  /* margin: 20px; */
  transition: 0.3s;
}
.popup-signature-btns {
  display: flex;
  justify-content: space-between;
}
.signature-popup {
  border-radius: 14px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.signature-canvas {
  border: 1px solid black;
  touch-action: none;
}
.send_btn:hover {
  background-color: #40cf64;
}
.failed_btn:hover {
  background-color: #cf4040;
}

.deals_list {
  width: 90%;
  padding: 30px;
}

.deal {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 7px 11px 42px -17px rgba(0, 0, 0, 0.75);
}
.deal_info {
  font-size: 28px;
  font-weight: bold;
}
.deal_products_list {
  width: 100%;
  font-size: 28px;
}
.deal_products_list__heading {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.deal_products {
  display: flex;
  flex-direction: column;
}
.product {
  margin: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.heading_product_name,
.product_name,
.product_consumption,
.heading_product_consumption,
.product_price,
.heading_product_price {
  width: 33.3%;
}
.heading_product_name,
.heading_product_consumption,
.heading_product_price {
  font-size: 28px;
  font-weight: bold;
}
.product_name,
.product_consumption,
.product_price,
.service_price_block {
  background-color: #cee0f4;
  display: flex;
  justify-content: center;
  margin: 0 18px 0 0;
  padding: 10px;
  border-radius: 10px;
  overflow-wrap: break-word;
  text-align: center;
}
.product_price_span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service_price_block {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  font-size: 24px;
}
.service_price_input_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.product_consumption input,
.service_price_block input {
  width: 15%;
  font-size: 24px;
  background: none;
  box-shadow: none;
}

.deals_list_picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 60px;
  right: 7.5%;
  border-radius: 12px;
  width: 70%;
  padding: 15px;
  background-color: #4fa7ff;
  z-index: 1;
  padding-top: 50px;
}
.deals_list_picker_option {
  transition: 0.3s;
  width: 100%;
  text-align: center;
  color: #fff;
  border-radius: 15px;
}
.deals_list_picker_option:hover {
  cursor: pointer;
  background-color: #4088cf;
}
.add_user_btn,
.send_btn,
.submit_btn {
  background-color: #4fa7ff;
  border-radius: 12px;
  padding: 15px 75px;
  align-self: center;
  color: #fff;
  font-size: 24px;
  transition: 0.2s;
}
.add_user_btn:hover,
.submit_btn:hover {
  background-color: #4088cf;
}
.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0000007c;
  display: flex;
  justify-content: center;
  align-items: center;
}
[id$="_input_container"] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup_main {
  position: relative;
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 20px;
  color: #fff;
  border-radius: 12px;
  background-color: #4fa7ffe5;
  border: 1px solid #ffffff;
}
.submit_btn {
  width: 80%;
  text-align: center;
  background-color: #85c2ff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  gap: 15px;
  padding: 15px 35px;
  align-self: center;
  margin: 10px 0 20px 0;
  color: #fff;
  font-size: 20px;
  transition: 0.2s;
}
.popup_main h3 {
  font-weight: bold;
  color: #fff;
  font-size: 56px;
  text-align: center;
}
.form {
  display: flex;
  gap: 6px;
  flex-direction: column;
}
.close_popup {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 12px;
  position: absolute;
  right: 15px;
  top: 15px;
  transition: 0.3s ease;
}
#comment {
  border: 1px solid white;
  padding: 15px;
  border-radius: 12px;
  font-size: 20px;
}
#input-file {
  box-shadow: 0 0 0 0;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 0 0px rgb(255, 255, 255);
}
.close_popup:hover {
  transform: scale(0.9);
}
.checkbox-container {
  display: flex;
  gap: 15px;
}
.hidden {
  display: none;
}
