/* New */

.float_text{
    top: -1px;
    position: absolute;
    width: 100%;
    height: 101%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loader */
.loader_wrap {
    display:flex;
    position: absolute;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    opacity: 1;
    background-color: white;
    transition: opacity 0.5s ease-out;
}
.loader {
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    color: #165b37;
    letter-spacing: 0.2em;
}

.loader::before, .loader::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background:#165b37;
    position: absolute;
    -webkit-animation: load 0.7s infinite alternate ease-in-out;
            animation: load 0.7s infinite alternate ease-in-out;
  }
  .loader::before {
    top: 0;
  }
  .loader::after {
    bottom: 0;
  }
  
  @-webkit-keyframes load {
    0% {
      left: 0;
      height: 30px;
      width: 15px;
    }
    50% {
      height: 8px;
      width: 40px;
    }
    100% {
      left: 235px;
      height: 30px;
      width: 15px;
    }
  }
  
  @keyframes load {
    0% {
      left: 0;
      height: 30px;
      width: 15px;
    }
    50% {
      height: 8px;
      width: 40px;
    }
    100% {
      left: 235px;
      height: 30px;
      width: 15px;
    }
  }

  /* /Loader */


.popup-bubble {
    /* Position the bubble centred-above its parent. */
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: white;
    padding: 10px 20px; 
    border-radius: 5px;
    font-family: sans-serif;
    overflow-y: auto;
    color:black;
    font-size:15px;
    white-space: nowrap;
    background-color:rgba(22, 91, 55, 1);
    box-shadow: 0px 2px 10px 1px rgba(22, 91, 55, 0.2);
    font-weight: normal !important;
    display:block !important;
  }
.popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom: 7px;
    left: 0;
  }
  
  /* This element draws the tip. */
  .popup-container::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    /* Center the tip horizontally. */
    transform: translate(-50%, 0);
    /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
    width: 0;
    height: 0;
    /* The tip is 8px high, and 12px wide. */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(22, 91, 55, 1);
  }
  
  /* JavaScript will position this div at the bottom of the popup tip. */
  .popup-container {
  user-select:none;
    cursor: auto;
    height: 200px;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
    z-index:999;
  }





.find_address_btn{
    background-color: rgba(22, 91, 55, 1);
    padding: 15px 10px;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    cursor:pointer;
}
.company_option{
    border: 2px solid #b6abab;
    background-color: #f7f7f7;
    padding: 15px 20px;
    width:100%;
    margin-bottom:15px;
    cursor:pointer;
    border-radius: 10px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 34px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {    
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    user-select: none;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .input_1:checked + .slider {
    background-color: #165b37;
    color:white;
  }

  
  .input_1:checked + .slider:before {
    -webkit-transform: translateX(86px);
    -ms-transform: translateX(86px);
    transform: translateX(86px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
    box-shadow:
    0 0.7px 2.2px rgba(0, 0, 0, 0.014),
    0 1.8px 5.3px rgba(0, 0, 0, 0.02),
    0 3.4px 10px rgba(0, 0, 0, 0.025),
    0 6px 17.9px rgba(0, 0, 0, 0.03),
    0 11.3px 33.4px rgba(0, 0, 0, 0.036),
    0 27px 80px rgba(0, 0, 0, 0.05)
  ;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
  
  }
  
  .slider.round:before {
    border-radius: 50%;
  }



.content_1{
display: none;
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom: 7px;
    left: 0;
  }
  
  /* This element draws the tip. */
  .popup-container::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    /* Center the tip horizontally. */
    transform: translate(-50%, 0);
    /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
    width: 0;
    height: 0;
    /* The tip is 8px high, and 12px wide. */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(22, 91, 55, 1);
  }
  
  /* JavaScript will position this div at the bottom of the popup tip. */
  .popup-container {
  user-select:none;
    cursor: auto;
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
  }

  /* The popup bubble styling. */
.popup-bubble {
    /* Position the bubble centred-above its parent. */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: white;
    padding: 10px 20px; 
    border-radius: 5px;
    font-family: sans-serif;
    overflow-y: auto;
    color:white;
    font-size:15px;
    white-space: nowrap;
    background-color:rgba(22, 91, 55, 1);
    box-shadow: 0px 2px 10px 1px rgba(22, 91, 55, 0.2);
    font-weight: normal !important;
    display:block !important;
  }

.point_button.go{
    position: relative;
    padding: 15px 35px;
    background-color: rgba(22, 91, 55, 1);
    color: white;
    /* text-transform: uppercase; */
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;

    text-align: center;
    margin: auto;
    margin-top:40px;
}
.button_row_buttons{
   width:100%;
   height:100%;
   display: flex;
}
.button_row_buttons .one{
    padding:10px 15px;
    border-radius: 10px;
    min-width: 110px;
    font-weight: bold;
    cursor:pointer;
    user-select: none;
    box-shadow: 0 1.4px 2.2px rgb(0 0 0 / 2%), 0 3.3px 5.3px rgb(0 0 0 / 3%), 0 6.3px 10px rgb(0 0 0 / 4%), 0 11.2px 17.9px rgb(0 0 0 / 4%), 0 20.9px 33.4px rgb(0 0 0 / 5%), 0 50px 80px rgb(0 0 0 / 7%);
}
.button_row_buttons .two{
    user-select: none;
    padding:10px 15px;
    margin-left:15px;
    border-radius: 10px;
    min-width: 110px;
    cursor:pointer;
    font-weight: bold;
    box-shadow: 0 1.4px 2.2px rgb(0 0 0 / 2%), 0 3.3px 5.3px rgb(0 0 0 / 3%), 0 6.3px 10px rgb(0 0 0 / 4%), 0 11.2px 17.9px rgb(0 0 0 / 4%), 0 20.9px 33.4px rgb(0 0 0 / 5%), 0 50px 80px rgb(0 0 0 / 7%);
}
.email_list{
    margin-top:20px;
}
.button_row_buttons .three{
    user-select: none;
    padding:10px 15px;
    margin-left:15px;
    border-radius: 10px;
    min-width: 110px;
    cursor:pointer;
    font-weight: bold;
    box-shadow: 0 1.4px 2.2px rgb(0 0 0 / 2%), 0 3.3px 5.3px rgb(0 0 0 / 3%), 0 6.3px 10px rgb(0 0 0 / 4%), 0 11.2px 17.9px rgb(0 0 0 / 4%), 0 20.9px 33.4px rgb(0 0 0 / 5%), 0 50px 80px rgb(0 0 0 / 7%);
}
.sp_8{
    min-width: 500px;
    min-height: 360px;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 360px;
}
.button_row_1 {
    position: relative;
}
.button_row_1 .extra_td{
    display: none;
    border-top: 1px solid rgba(22, 91, 55, 0.3) !important;
    background-color:transparent;
    height:60px;
    position: relative;
    /* border-bottom:5px dashed transparent; */

}
.button_row_1.active .extra_td{
    display: table-cell;
    background-color: rgba(22, 91, 55, 0.1);
    /* border-bottom:5px dashed rgba(22, 91, 55, 1); */
}

.stable__row{
    position: relative;
}
.invoice_buttons{
    box-shadow:
  0 1.4px 2.2px rgba(0, 0, 0, 0.02),
  0 3.3px 5.3px rgba(0, 0, 0, 0.028),
  0 6.3px 10px rgba(0, 0, 0, 0.035),
  0 11.2px 17.9px rgba(0, 0, 0, 0.042),
  0 20.9px 33.4px rgba(0, 0, 0, 0.05),
  0 50px 80px rgba(0, 0, 0, 0.07)
;
    color:black;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
}
.notif_point_1{
    margin-bottom:10px;
}
.wrap-input100{
    margin-top:15px;
    position: relative;
}
.comp_name_box{
    display: flex;
}

.jur_pers{
    display: none;
}
.notif_header_1{
    font-size: 20px;
    font-weight: bold;
    margin-bottom:10px;
}
.sp_10{
    background-color:transparent !important;
    margin-bottom:25px !important;

}


.notif_outer_1{
    display:flex;
    position: fixed;
    width:100%;
    height:100%;
    z-index:20;
    display:none;
    top:0;
    left:0;
    background-color:rgba(0,0,0,0.5);
    overflow-y: auto;
    padding-bottom:45px;
    padding-top:45px;

}
#order_search_1{
    border-radius: 10px;
    box-shadow: 0 1.1px 2.2px rgb(0 0 0 / 1%), 0 2.7px 5.3px rgb(0 0 0 / 2%), 0 5px 10px rgb(0 0 0 / 3%), 0 8.9px 17.9px rgb(0 0 0 / 3%), 0 16.7px 33.4px rgb(0 0 0 / 4%), 0 40px 80px rgb(0 0 0 / 5%);
}

.wrap_buttons_2{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    color: black;
    justify-content: flex-end;
}
.text_point_title{
    font-weight: bold;
    margin-top:30px;
    color: gray;
    margin-bottom:10px;
}
.text_point{
    position: relative;
    padding-left:25px;
    margin-bottom:5px;
    
}
.text_point::before{
    content:'';
    position: absolute;
    width:15px;
    height:15px;
    background-color: rgba(22, 91, 55, 1);
    left:0px;
    top:50%;
    transform:translateY(-50%);
    border-radius:100%;
}
.first_line_1{
    width:100%;
    height:2px;
    position: absolute;
    top:14px;
    left:0;
    background-color:gray;
}

.second_line_1{
    height:100%;
    width:2px;
    position: absolute;
    left:14px;
    top:0;
    background-color:gray;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
     -webkit-box-shadow: -10px 0 0 #e6e6e6; 
    box-shadow: -10px 0 0 #e6e6e6; 
}
.flatpickr-day.startRange{
    background-color:#e6e6e6 !important;
    background:#e6e6e6 !important;
    color:black !important;
}
.flatpickr-day.startRange:hover{
    /* background-color:#e6e6e6 !important;
    background:#e6e6e6 !important; */
    color:black !important;
}
.flatpickr-day.endRange{
    background-color:#e6e6e6 !important;
    background:#e6e6e6 !important;
    color:black !important;
}
.flatpickr-day.selected.endRange{
    background-color:#e6e6e6 !important;
    background:#e6e6e6 !important;
    color:black !important;
}
.flatpickr-day.selected.startRange{
    background-color:#e6e6e6 !important;
    background:#e6e6e6 !important;
    color:black !important;
}
.flatpickr-day.endRange:hover{
    color:black !important;
}
.cross_wrap_1{
    width:30px;
    height:30px;
    position: absolute;       
    right:30px;
    top:25px; 
    transform:rotateZ(45deg);
    cursor:pointer;
}
#promo_input_1{
    border: 1px solid rgba(22, 91, 55, 1) !important;
    border-radius: 5px;
    padding: 10px 15px;
    width: 100%;
}
.sub_titles{
    margin-top:15px;
    font-size:15px;
    font-weight: bold;
    color:gray;
    text-align: center;
}

.notif_bg_1{
    background-color:rgba(0,0,0,0.3);
    /* opacity:0;
    transition:opacity 0.5s ease-out; */
    position: absolute;
    width:100%;
    height:100%;
    z-index:-1;
}

.notif_inner_1{
    max-width:800px;
    margin:auto;
    background-color:white;
    padding: 55px;
    min-width:400px;
    border-radius: 5px;
    transition:transform 0.5s ease-out;
    position: relative;
    box-shadow:
    0 1.8px 2.2px rgba(0, 0, 0, 0.017),
    0 4.3px 5.3px rgba(0, 0, 0, 0.024),
    0 8px 10px rgba(0, 0, 0, 0.03),
    0 14.3px 17.9px rgba(0, 0, 0, 0.036),
    0 26.7px 33.4px rgba(0, 0, 0, 0.043),
    0 64px 80px rgba(0, 0, 0, 0.06)
;
    border:1px solid rgba(0,0,0,0.2);

}

.notif_wrap_1{
    background-color:lightgray;
    width:50%;
    margin:auto;
    margin-bottom:35px;
    padding:25px;
    border-radius:5px;
}

.promo_button_2{
    display: flex;
    align-items: center;
    padding:10px;
    font-size:1rem;
    /* color:white; */
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-right:15px;
    user-select: none;
    opacity:0;
    pointer-events: none;
}
.km_input{
    box-shadow: 0 1.3px 2.2px rgb(0 0 0 / 4%), 0 3.1px 5.3px rgb(0 0 0 / 5%), 0 5.8px 10px rgb(0 0 0 / 7%), 0 10.3px 17.9px rgb(0 0 0 / 8%), 0 19.2px 33.4px rgb(0 0 0 / 9%), 0 46px 80px rgb(0 0 0 / 13%);
    border-radius: 10px;
    padding: 10px 20px;
    cursor:pointer;
}
.time_input{
    box-shadow: 0 1.3px 2.2px rgb(0 0 0 / 4%), 0 3.1px 5.3px rgb(0 0 0 / 5%), 0 5.8px 10px rgb(0 0 0 / 7%), 0 10.3px 17.9px rgb(0 0 0 / 8%), 0 19.2px 33.4px rgb(0 0 0 / 9%), 0 46px 80px rgb(0 0 0 / 13%);
    border-radius: 10px;
    padding: 10px 20px;
    cursor:pointer;
}
.promo{
    max-width:800px;
    margin:auto;
}
.head_table{
    border-bottom:1px solid rgba(0,0,0,0.3);
}
.sbtn--green{
    color:white !important;
    text-decoration: unset !important;
}
.vert_sep_1{
    width: 1px;
    height: 25px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: rgba(0,0,0,0.3);
}

.sp_5{
    max-width:600px;
    min-width:450px;
    height:50px;
    margin:0 !important;
    /* top:10px !important; */
    position: relative;
    box-shadow:
    0 1.1px 2.2px rgba(0, 0, 0, 0.014),
    0 2.7px 5.3px rgba(0, 0, 0, 0.02),
    0 5px 10px rgba(0, 0, 0, 0.025),
    0 8.9px 17.9px rgba(0, 0, 0, 0.03),
    0 16.7px 33.4px rgba(0, 0, 0, 0.036),
    0 40px 80px rgba(0, 0, 0, 0.05)
  ;
    border-radius: 10px;
    background-color:white !important;
    
}
.stable__row.canceled{
    background-color: rgba(255,0,0,0.2);
    
}
.check_button_1{
    position: relative;
    padding-left:35px;
    cursor: pointer;
}

.check_button_1.active::before{
    content: '';
    left: 8px;
    position: absolute;
    transform: rotate( 
40deg
 );
    height: 12px;
    top: 4px;
    width: 8px;
    border-bottom: 2px solid #165b37;
    border-right: 2px solid #165b37;

}
.check_button_1:hover::before{
    content: '';
    left: 8px;
    position: absolute;
    transform: rotate( 
40deg
 );
    height: 12px;
    top: 4px;
    width: 8px;
    border-bottom: 2px solid #165b37;
    border-right: 2px solid #165b37;

}
.check_button_1::after{


    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    /* background-color: #165b37; */
    border-radius: 50%;
    border: 2px solid #165b37;

}
.wrap_buttons_1{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    color: black;
    align-items: center;
}

.point_button_1{
    padding-left: 35px;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    height: 30px;
    display: flex;
    align-items: center;
}

.point_button_1:hover::before{
    background-color: #165b37 !important;
    content: '';
    position: absolute;
    top: 8.5px;
    width: 13px;
    height: 13px;
    left: 6px;
    border-radius: 50%;
}

.point_button_1::after{
    content:'';
    position: absolute;
    width:25px;
    height:25px;
    left:0;
    /* background-color:#165b37; */
    border-radius: 50%;
    border:2px solid #165b37;
}

.point_button_1:nth-child(2){
    margin-left:30px;
}
.point_button_1.active::before{
    background-color: #165b37 !important;
    content: '';
    position: absolute;
    top: 8.5px;
    width: 13px;
    height: 13px;
    left: 6px;
    border-radius: 50%;
}

.sp_4{
    margin-left:40px;
}
.flatpickr-calendar{
    user-select: none !important;
}
.sp_7:hover::after{
    background-color:inherit;
}
.sunday,
.saturday,
.cancelled_day{
    pointer-events: none !important;
    cursor: not-allowed !important;
}
.sunday .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: -23px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    transform: translateY(-50%);
    border-style: solid;
    border-color: rgb(255, 76, 76) transparent transparent transparent;
    z-index: 5;
}
.flatpickr-day{
    margin-bottom:5px !important;
    border:2px solid transparent !important;
}
.flatpickr-day.today{
    border-color:red !important;
}
.saturday .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: -23px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    transform: translateY(-50%);
    border-style: solid;
    border-color: rgb(255, 76, 76) transparent transparent transparent;
    z-index: 5;
}
.tooltiptext_2::after {
    content: " ";
    position: absolute;
    bottom: -23px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    transform: translateY(-50%);
    border-color: gray transparent transparent transparent;
}
.flatpickr-days{
    overflow:visible;
}
.flatpickr-innerContainer{
    overflow:visible;
}
.sunday .tooltiptext {
    box-shadow: 0px 3px 15px rgb(0 0 0 / 40%);
    visibility: hidden;
    width: 250px;
    background-color: rgb(255, 76, 76);
    color: #fff;
    text-align: center;
    padding: 8px 3px;
    border-radius: 6px;
    line-height: 25px;
    top: -15px;
    right: -105px;
    transform: translateY(-100%);
    position: absolute;
    z-index: 5;
}
.bad_day{
    position: relative !important;
    /* background-color:gray !important;
    color: white !important; */

}
.bad_day::before{
    content: '';
    position: absolute;
    top: 12px;
    left: 3px;
    background-color: red;
    width: 4px;
    height: 4px;
    border-radius: 100%;
}
.prevMonthDay,
.nextMonthDay{
    pointer-events: none;
}
.ctick{
    /* position: relative !important; */
    background-color:#165b37 !important;
}
.ctick::after{
    left: 6px;
    top: 1px;
    width: 8px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
}

.bad_day_2{
    position: relative !important;
    /* background-color:gray !important;
    color: white !important; */

}
.bad_day_2::after{
    content: '';
    position: absolute;
    top: 20px;
    left: 3px;
    background-color: red;
    width: 4px;
    height: 4px;
    border-radius: 100%;
}


/* .bad_day:hover .tooltiptext_2{

    visibility: visible;

  } */
.bad_day .tooltiptext_2 {
    box-shadow: 0px 3px 15px rgb(0 0 0 / 40%);
    visibility: hidden;
    width: 250px;
    background-color: gray;
    color: #fff;
    text-align: center;
    padding: 8px 3px;
    border-radius: 6px;
    line-height: 25px;
    top: -15px;
    right: -105px;
    transform: translateY(-100%);
    position: absolute;
    z-index: 11;
}
.flatpickr-day.selected{
    background-color:gray!important;
    /* border-color:transparent !important; */
}
.saturday .tooltiptext {
    box-shadow: 0px 3px 15px rgb(0 0 0 / 40%);
    visibility: hidden;
    width: 250px;
    background-color: rgb(255, 76, 76);
    color: #fff;
    text-align: center;
    padding: 8px 3px;
    border-radius: 6px;
    line-height: 25px;
    top: -15px;
    right: -105px;
    transform: translateY(-100%);
    position: absolute;
    z-index: 5;
}
.promo__tab__row.choosen_row .promo_button_2{
    opacity:1;
    pointer-events: all;
}
.promo__tab__row.choosen_row{
    box-shadow: 0 0.6px 2.2px rgb(0 0 0 / 1%), 0 1.5px 5.3px rgb(0 0 0 / 2%), 0 2.8px 10px rgb(0 0 0 / 2%), 0 4.9px 17.9px rgb(0 0 0 / 2%), 0 9.2px 33.4px rgb(0 0 0 / 3%), 0 22px 80px rgb(0 0 0 / 4%);
    border-radius: 10px;
}
.promo_button_2.type_1{
    border-radius: 10px;
    border:1px solid lightskyblue;
}
.promo_button_2.type_2{
    border-radius: 10px;
    border:1px solid gray;
}
.promo_button_2.type_3{
    border-radius: 10px;
    border:1px solid salmon;
    margin-right:0px;
}
#new_promo{
 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:15px;

    font-weight: 700;
    font-size: 1rem;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
    z-index: 12;
    color: black;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 0.6px 2.2px rgb(0 0 0 / 1%), 0 1.5px 5.3px rgb(0 0 0 / 2%), 0 2.8px 10px rgb(0 0 0 / 2%), 0 4.9px 17.9px rgb(0 0 0 / 2%), 0 9.2px 33.4px rgb(0 0 0 / 3%), 0 22px 80px rgb(0 0 0 / 4%);
    max-width: 600px;
}
.comp_not_found{
    height: 50px;
    padding: 0px 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.address_map_1{
    height:300px;
}
.company_option{
    height:50px;
    padding:0px 15px;
    font-size:1rem;
    display:flex;
    align-items: center;
    cursor:pointer;
}
.company_option:last-child{
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}
.company_option:hover{
    background-color:lightgrey;
}
.sp_1{
    border-bottom:none !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.sp_2{
    background-color:#d0ded7 !important;
    position: relative !important;
}

.sp_3{
    background-color:#ffe5e5 !important;
    position: relative !important;
    border-radius: 5px !important;
}
.sp_2::after{
    content: '';
    position: absolute;
    z-index:11;
    right:25px;
    height:15px;
    width:10px;
    top:50%;
    transform:translateY(-50%) rotateZ(45deg);
    border-right:3px solid #165b37;
    border-bottom:3px solid #165b37;
}
.list_item {
    position: relative;
    padding-left: 10px;
    margin-left: 15px;
    margin-bottom:10px;
}
.hide_button{
    opacity:0;
    user-select: none;
    pointer-events: none;
}
.tableCheck{
    cursor: pointer;
    position: relative;
    min-width:55px;
}

.stable__row.active .tableCheck::after{
    display:block;
}

.tableCheck:after {
    left: 50%;
    top: 50%;
    width: 8px;
    height: 15px;
    border: solid #165b37;
    border-width: 0 3px 3px 0;
    /* -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
    -ms-transform: rotate(45deg) translateX(-50%) translateY(-50%); */
    transform: rotate(45deg) translateX(-150%) translateY(-30%);
    display: none;
    content: "";
    position: absolute;
}
.list_item::before {
    position: absolute;
    content: '';
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #165b37;
}

.error-modal__wrapper__wrapper{
	padding: 35px;
}
.hidden{
	display: none;
}


/* /New */


.shadow {
    box-shadow: 0 1px 3px rgba(9, 30, 66, 0.1);
}
.font,
body,
button,
input,
textarea {
    font-family: sans-serif;
}
body {
    color: #000;
}
.wrapper {
    width: 100%;
    max-width: 1700px;
    padding: 0 15px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .wrapper {
        padding: 0 10px;
    }
}
.sbtn--green {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 260px;
    background: #165b37;
    border: 1px solid #165b37;
    border-radius: 90px;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
    transition: all 0.3s ease;
}
.sbtn--green:hover {
    transform: translateY(-2px);
}
.sbtn--gray {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    background: #c4c4c4;
    border-radius: 23px;
}
.sbtn--gray:hover {
    background: #165b37;
}
.page__header {
    font-size: 64px;
    line-height: 75px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
    .page__header {
        font-size: 34px;
        line-height: 45px;
        margin-bottom: 30px;
    }
}
.header {
    height: 65px;
    position: absolute;
    position: static;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow:
  0 0.5px 0.4px rgba(0, 0, 0, 0.008),
  0 1.1px 1px rgba(0, 0, 0, 0.012),
  0 2.1px 1.9px rgba(0, 0, 0, 0.015),
  0 3.8px 3.4px rgba(0, 0, 0, 0.018),
  0 7.1px 6.3px rgba(0, 0, 0, 0.022),
  0 17px 15px rgba(0, 0, 0, 0.03)
;

}
.header > div {
    height: 100%;
}
.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right:35px;
}
.header__main {
    display: flex;
}
.header__logo {
    width: 140px;
    display: block;
    margin-right: 20px;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #c4c4c4;
}
.header__logo img {
    max-width: 100%;
}
.header__logo:hover {
    color: #165b37;
}
.header__menu {
    display: flex;
    align-items: center;
}
.header__link {
    font-size: 1rem;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: black !important;
    position: relative;
    margin: 0 10px;
    cursor:pointer;
    text-decoration: none !important;

}

.header__link::after{
    content:'';
    position: absolute;
    bottom:-8px;
    width:100%;
    left:0;
    height: 1px;
    background-color: rgba(0,0,0,1);
    transition:opacity 0.4s ease-out, transform 0.2s ease-out;
    opacity:0;
    transform:translateY(10px);
}
.header__link:hover::after{
    opacity:1;
    transform:translateY(0px);


}
.header__link.active::after{
    transition:none !important;
    opacity:1;
    transform:translateY(0px);
}

.header__link:last-child {
    margin-right: 0;
}

.header__dl {
    display: flex;
    height: 50%;
    justify-content: center;
    align-items: center;
    border-left: 1px solid black;
    margin-left: 10px;
}
.header__dl .dl__link {
    display: block;
    margin-right: 10px;
    width: 135px;
}
.header__dl .dl__link img {
    width: 100%;
}
.header__dl .dl__link:last-child {
    margin-right: 0;
}
.header__dl .dl__link:hover {
    transform: translateY(-3px);
}
.header__dl .dl__link:active {
    transform: translateY(-1px);
}
.header__burger {
    display: none;
}
.header__burger .burger {
    width: 16px;
    height: 15px;
    position: relative;
    border-radius: 4px;
    z-index: 10000;
    display: block;
}
.header__burger .burger span {
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}
.header__burger .burger span,
.header__burger .burger span::after,
.header__burger .burger span::before {
    display: block;
    width: 16px;
    height: 1px;
    background-color: #fff;
    outline: transparent solid 1px;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 3px;
}
.header__burger .burger span::after,
.header__burger .burger span::before {
    position: absolute;
    content: "";
}
.header__burger .burger span::before {
    top: -5px;
}
.header__burger .burger span::after {
    top: 5px;
}
.header__burger .burger.clicked span {
    background-color: transparent;
}
.header__burger .burger.clicked span::before {
    -webkit-transform: translateY(5px) rotate(45deg);
    -moz-transform: translateY(5px) rotate(45deg);
    -ms-transform: translateY(5px) rotate(45deg);
    -o-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
}
.header__burger .burger.clicked span::after {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    -moz-transform: translateY(-5px) rotate(-45deg);
    -ms-transform: translateY(-5px) rotate(-45deg);
    -o-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
}
.header__burger .burger.clicked span:after,
.header__burger .burger.clicked span:before {
    background-color: #165b37;
}
.header__burger .burger:hover {
    cursor: pointer;
}
@media screen and (max-width: 1280px) {
    .header__logo {
        margin-right: 32px;
        width: 100px;
    }
    .header__link {
        /* font-size: 10px; */
        line-height: 14px;
    }
    .header__dl .dl__link {
        width: 100px;
    }
}
@media screen and (max-width: 980px) {
    .header {
        height: 58px;
    }
}
@media screen and (max-width: 700px) {
    .header__dl {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__menu {
        background: #fff;
        position: fixed;
        top: -200%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        padding-top: 58px;
        padding-bottom: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(9, 30, 66, 0.1);
    }
    .header__menu.active {
        top: 0;
    }
    .header__link {
        text-align: center;
        margin-right: 0;
        display: block;
        padding: 10px 0;
    }
}
.spage {
    padding: 110px 0;
}

@media screen and (max-width: 980px) {
    .spage {
        padding: 110px 0;
    }

}

.filter {
    cursor: pointer;
}
.filter:hover {
    transform: translateY(0) !important;
}
.filter__inner {
    position: absolute;
    max-width: 320px;
    width: 320px;
    left: 0;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    top: 70px;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.filter__inner .mfilter__header {
    width: 100%;
}
.filter__inner .sbtn--green {
    height: 50px;
    width: 49%;
}
.filter__inner > * {
    margin-bottom: 10px;
}
.filter__inner > :last-child {
    margin-bottom: 0;
}
.mfilter {
    padding: 20px 10px;
    max-width: 320px;
    width: 100%;
    border-radius: 5px;
}
.mfilter__header {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 12px;
    color: #165b37;
}
.mfilter .sbtn--green {
    width: 100%;
    margin-bottom: 10px;
}
.mfilter .sbtn--green:last-child {
    margin-bottom: 0;
}
.check-wrap {
    display: block;
    position: relative;
    z-index: 5;
    /* padding-left: 35px; */
    cursor: pointer;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.05em;
    color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    margin-bottom: 35px;
}
.check-wrap__check {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #165b37;
    z-index: 5;
}
.promo__header {
    border-bottom: 2px solid #cfcfcf;
    display: flex;
    flex-wrap: wrap;
}
.promo__header .promo__btn {
    background: rgba(207, 207, 207, 0.58);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 145px;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000;
}
.promo__header .promo__btn.active {
    background: 0 0;
}
.promo__tab__row {
    position: relative;
    padding: 20px 25px;
    margin-bottom:20px;
    /* border-top: 1px solid rgba(22, 91, 55, 0.3); */
    cursor:pointer;
    /* padding-left:15px; */
    display:flex;
    align-items: center;
}
.promo__tab__row:hover{
    box-shadow: 0 0.6px 2.2px rgb(0 0 0 / 1%), 0 1.5px 5.3px rgb(0 0 0 / 2%), 0 2.8px 10px rgb(0 0 0 / 2%), 0 4.9px 17.9px rgb(0 0 0 / 2%), 0 9.2px 33.4px rgb(0 0 0 / 3%), 0 22px 80px rgb(0 0 0 / 4%);
    border-radius: 10px;
}
/* .promo__tab__row:first-child {
    margin-bottom: 0;

} */
.promo__tab__edit {
    height: 24px;
    width: 24px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 0;
    background: url(../img/edit-icon.png) center no-repeat;
    background-size: contain;
}
.promo__tab__edit:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 768px) {
    .promo__header .promo__btn {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
        height: auto;
        padding: 10px;
    }
}
.cabinet__period {
    background: #f7f7f7;
    max-width: 410px;
    margin: 0 auto 95px;
    display: flex;
    padding: 25px 0;
}
.cabinet__period__header {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #7a7a7a;
    margin-bottom: 20px;
}
.cabinet__period__inp {
    background: #f7f7f7;
    border: 1px solid #165b37;
    box-sizing: border-box;
    max-width: 170px;
    width: 100%;
    height: 45px;
    margin: 0 auto;
    display: block;
    text-align: center;
}
.cabinet__period__inp::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #7a7a7a;
}
.cabinet__period__inp::-moz-placeholder {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #7a7a7a;
}
.cabinet__period__inp:-ms-input-placeholder {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #7a7a7a;
}
.cabinet__period__inp:-moz-placeholder {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #7a7a7a;
}
.cabinet__period__inner {
    width: 60%;
}
.cabinet__period__nav {
    width: 20%;
}
.cabinet__period__nav .period__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.stable {
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius:5px;

}



.stable th {
    padding: 15px 15px;
    font-weight: bold !important;
    font-size: 0.875rem;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.05em;
    color: rgba(0,0,0,1);
    background-color: white;
    white-space: nowrap;
}
.stable td {
    padding: 15px 15px;
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.05em;
    color: rgba(0,0,0,1);
    border:unset;
}
.stable__row.active{

    /* border-top:5px dashed rgba(22, 91, 55, 1); */
    background-color: rgba(22, 91, 55, 0.1);
}


.stable .check-wrap__check {
    top: 6px;
    left: 50%;
    margin-left: -12px;
}
.stable__caption {
    border: 1px solid #7a7a7a;
    border-bottom: none;
    padding: 35px 15px;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #000;
}
@media screen and (max-width: 1320px) {
    .stable {
        width: 1280px;
    }
}
.scal {
    /* border: 3px solid #cfcfcf; */
    padding: 50px;
    /* display: flex; */
    max-width:600px;
    margin:auto;
}
.scal__header {
    max-width: 800px;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000;
    margin: auto;
}
.scal__inner {
    /* width: 49%; */
    background: #f7f7f7;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 0;
}
.scal__inner .calendar__picker {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    visibility: none;
}
/* .scal__inner .flatpickr-calendar {
    background: 0 0;
    box-shadow: none;
    width: 400px;
}
.scal__inner .flatpickr-calendar .flatpickr-month {
    margin-bottom: 35px;
}
.scal__inner .flatpickr-calendar .flatpickr-prev-month {
    padding: 0;
    height: 50px;
    width: 50px;
    background: url(../img/left-cal.svg) center no-repeat;
}
.scal__inner .flatpickr-calendar .flatpickr-prev-month svg {
    display: none;
}
.scal__inner .flatpickr-calendar .flatpickr-next-month {
    padding: 0;
    height: 50px;
    width: 50px;
    background: url(../img/right-cal.svg) center no-repeat;
}
.scal__inner .flatpickr-calendar .flatpickr-next-month svg {
    display: none;
}
.scal__inner .flatpickr-calendar span.cur-month:hover {
    background: 0 0;
}
.scal__inner .flatpickr-calendar .numInputWrapper .numInput {
    pointer-events: none;
    font-weight: 700;
}
.scal__inner .flatpickr-calendar .numInputWrapper .arrowDown,
.scal__inner .flatpickr-calendar .numInputWrapper .arrowUp {
    display: none;
}
.scal__inner .flatpickr-calendar .numInputWrapper:hover {
    background: 0 0;
}
.scal__inner .flatpickr-calendar .flatpickr-weekdays {
    margin-bottom: 20px;
}
.scal__inner .flatpickr-calendar .flatpickr-weekdays .flatpickr-weekday {
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.5);
}
.scal__inner .flatpickr-calendar .flatpickr-days {
    width: 400px;
}
.scal__inner .flatpickr-calendar .dayContainer {
    width: 400px;
    max-width: 400px;
    justify-content: flex-start;
}
.scal__inner .flatpickr-calendar .flatpickr-day {
    font-weight: 500;
    font-size: 29px;
    margin: 15px 5px;
    height: 55px;
    width: 55px;
    max-width: 55px;
    flex-basis: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scal__inner .flatpickr-calendar .flatpickr-day.nextMonthDay,
.scal__inner .flatpickr-calendar .flatpickr-day.prevMonthDay {
    color: rgba(0, 0, 0, 0.5);
}
.scal__inner .flatpickr-calendar .nextMonthDay:nth-last-child(-n + 6) {
    display: none;
}
.scal__inner .flatpickr-calendar .flatpickr-disabled {
    background: #165b37;
    color: #fff;
} */
.scal__date {
    /* width: 49%; */
    background: #f7f7f7;
    padding: 0px 90px 40px;
}
.scal__date__current {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 25px;
}
.scal__date .check-wrap {
    margin-bottom: 30px;
}
.scal__date__text {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.05em;
    color: #000;
}
.scal__date .sbtn--green {
    margin-top: 170px;
}
@media screen and (max-width: 1200px) {
    .scal__date,
    .scal__inner {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .scal,
    .scal__date {
        padding: 20px 10px;
    }
}
