.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;

    position: relative;
}
.filters {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}   
.deal_name_filter, .installation_team_member_name_filter {
    /* margin: 10px 0; */
    display: flex;
    padding: 15px;
    /* font-size: 24px; */
    /* height: 67px; */
    position: relative;
    border-radius: 50px;
}
.input_label {
    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, #installation_team_member_name {
    background-color: #4FA7FF;
    color: #fff;
    padding: 22.5px 25px;
    /* height: 73px; */
    width: 100%;
    height: 100%;
    font-size: 24px;
    border-radius: 12px;
    transition: .3s;
}
#deal_name_filter::placeholder, #installation_team_member_name::placeholder {
    color: #fff;
}
#deal_name_filter:hover, #deal_name_filter:focus, #installation_team_member_name:hover, #installation_team_member_name:focus {
    background-color: #4088cf;
}
.deal_name_filter_search_icon, .installation_team_member_name_filter_search_icon {
    position: absolute;
    right: 35px;
    top: 25%;
    cursor: pointer;
}

.deals_list_picker, .members_list_picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    justify-content: center;
    position: absolute;
    top: 90px !important;
    gap: 15px;
    border-radius: 12px;
    width: 100%;
    padding: 15px;
    background-color: #4FA7FF;
    z-index: 1;
}
.deals_list_picker_option, .members_list_picker_option {
    transition: .3s;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 12px;
}
.deals_list_picker_option:hover, .members_list_picker_option:hover {
    cursor: pointer;
    background-color: #4088cf;
}

.deal_block {
    margin-top: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.selected_deal {
    width: 90%;
    display: flex;
    position: relative;
    border: 0.4px solid #00000052;
    flex-direction: column;
    align-items: center;
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 7px 11px 42px -17px rgba(0,0,0,0.75);
}
.selected_deal_info {
    font-size: 36px;
}
.selected_deal_products_list {
    width: 100%;
    font-size: 24px;
}

.big_text {
    font-size: 36px;
}
.selected_deal_products_list__heading {
    width: 100%;
    display: flex;
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
}
.selected_deal_products {
    display: flex;
    flex-direction: column;
}
.product {
    margin: 10px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.remove_product_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.remove_product_btn i {
    color: #4FA7FF;
    transition: .3s;
    font-size: 30px;
}
.remove_product_btn i:hover {
    cursor: pointer;
    color: rgb(187, 61, 61);
}

.heading_product_name, .product_name, .product_consumption, .heading_product_consumption, .heading_product_price, .product_price {
    width: 50%;
    text-align: center;
}
/* .heading_product_name, .heading_product_consumption, .heading_product_price {
    font-weight: bold;
} */
.product_name, .product_consumption, .product_price {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CEE0F4;
    margin: 0 10px 0 0;
    font-size: 28px;
    padding: 15px;
    border-radius: 12px;
}
.product_consumption input {
    font-size: 28px;
    width: 120px;
    background: none;
    box-shadow: none;
}

.select_product_row {
    display: flex;
    flex-direction: row;

    position: relative;
}
.available_products_list_block {
    width: 100%;
    top: 70px;
    background-color: #CEE0F4;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-radius: 12px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.available_products_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.open_popup_btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: white;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    width: 28px;
    height: 28px;
    /* background-position: center; */
  }
  
  .open_popup_btn:hover {
    img {
      transform: scale(0.85);
    }
  }
  
  .open_popup_btn img {
    width: 28px;
    height: 28px;
    transition: 0.6s ease;
  }

  .approve_popup_btn, .deny_popup_btn {
    background-color: #4FA7FF;
    border-radius: 12px;
    padding: 15px;
    width: 40%;
    align-self: center;
    margin: 10px 0 0 0;
    color: #fff;
    font-size: 22px;
    transition: .2s;
  }
  
  .btns_block {
    display: flex;
    justify-content: space-around;
  }

  .approve_popup_btn:hover {
    background-color: #40cf64;
  }
  .deny_popup_btn:hover {
    background-color: #cf4040;
  }

  .popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000007c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  .popup_main {
    position: absolute;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
    gap: 20px;
    border-radius: 12px;
    background-color: #fff;
  }
  .popup_main h3 {
    font-weight: bold;
    font-size: 24px;
    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: 20px;
    top: 20px;
    transition: 0.3s ease;
  }
.available_product {
    text-align: center;
    width: 100%;
    margin: 10px 0 0 0;
    transition: .3s;
    border-radius: 15px;
}
.available_product:hover {
    cursor: pointer;
    background-color: #4088cf;
}

.send_btn {
    color: #fff;
    border-radius: 12px;
    padding: 10px 75px;
    font-size: 20px;
    background-color: #4FA7FF;
    cursor: pointer;
    transition: .3s;
    margin-top: 20px;
}
.send_btn:hover {
    background-color: #4088cf;
}

.hidden {
    display: none;
}

.go_to_watch_data_page_btn {
    background-color: #4FA7FF;
    color: #fff;
    display: flex;
    gap: 20px;
    padding: 15px 55px;
    align-items: center;
    border-radius: 12px;
    font-size: 24px;
}
.go_to_watch_data_page_btn i {
    color: #fff;
}