.booking_product_analyzer .booking_area{
    display: none;
}
.booking_product_analyzer .booking_area.booking_area_1{
    display: block;
}
/* == Full Screen Loader == */
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
  
/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}
  
/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
  
.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}
  
  /* Animation */
  
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
  
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
  }
  
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
  
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
  
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
  
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
  
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
  
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* == Calendar Data Starts == */
.calendar-container {
    margin:50px auto 0 auto;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
}
  
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
  
.calendar-header button {
    font-size: 20px;
    cursor: pointer;
    color: #757575;
    background: white;
    /* height: 32px;
    width: 32px; */
    border-radius: 110px;
    border: 1px solid #d5cece;
}

.calendar-title {
    font-size: 18px;
    font-weight: 500;
}

table.calendar-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

table.calendar-table th,
table.calendar-table td {
    width: 14.28%;
    height: 80px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #f1f1f1;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s;
}

table.calendar-table th {
    background-color: #fafafa;
    font-weight: 600;
    color: #555;
}

td.disabled {
    color: #ccc;
    cursor: not-allowed;
    /* background-color: #fafafa; */
    background-color: red;
    pointer-events: none;
    opacity: 0.4;
}

td.selected {
    background-color: #8c368d !important;
    color: #fff;
    border-color: #8c368d;
}

td.available {
    background-color: #2bc44c !important;
    color: #fff;
    border-color: #2bc44c;
}

td:hover:not(.disabled):not(.selected) {
    background-color: #f0f0f0;
}
.sk_ans .nextBtn {
    width: 100%;
    display: inline-block;
    background-color: var(--button-dark-background-color);
    font: 600 18px var(--default-font);
    line-height: 57px;
    color: var(--light-background-color);
    padding:0 30px;
    margin:50px 0 0 0;
    border-radius: 6px;
    text-transform: uppercase;
    border:none;
    outline:none;
}

.order-total th{
    font-weight: bold !important;
}
.order-total .woocommerce-Price-amount{
    font-weight: bold !important;
}

.fee .woocommerce-Price-amount{
    font-weight: bold !important;
}

.woocommerce-checkout .cart-subtotal{
    display: none !important;
}

.woocommerce-order-received table.order_details tfoot tr:first-child{
    display: none;
}


/**SAM-NEW-CSS-SATRTS**/
.booking_address_part input{
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    border: 1px solid #d7d7d7;
    font-size: 16px;
    color: #9b9b9b;
}
.booking_address_part{
    width: 100%;
    position: absolute;
    background: #f9f9f9;
    padding: 15px;
    border: 2px solid #0fd8d0d6;
}
.booking_address_part span.address-clear-icon{
    position: absolute;
    top: -44px;
    right: 7px;
    bottom: 0;
    margin: auto;
    background: #0fd8d0;
    color: #ffffff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    font-size: 19px;
    line-height: 19px;
}
.booking_knife_quantity_part{
    width: 100%;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    border-top: 5px solid #0fd8d0;
}
.maybe_step_jump{
    background: #0fd8d0;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 23px;
    display: inline-block;
    padding: 0px 13px;
    border-radius: 100px;
}
.product_additional_data_part{
    padding-top: 20px;
}
.product_additional_data_part h3{
    text-transform: capitalize;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}
.product_additional_data_part ul{
    padding: 0 0 9px 0;
}
.product_additional_data_part ul li{
    list-style: none;
    padding: 8px 0;
}
.total_price_part p{
    padding-bottom: 5px;
}
.total_price_part p.total_part{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #009f98;
    text-transform: uppercase;
}
.cmnbtnsam #complete_step_3{
    background: #0fd8d0;
    border: none;
    text-transform: uppercase;
    padding: 7px 11px 5px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-top: 13px;
    cursor: pointer;
}
.product_additional_data_part h4{
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    padding: 5px 0 0 0;
}
.product_additional_data_part select{
    width: 100%;
    height: 48px;
    padding: 5px 4px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
}
.addn_cat_products_main{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}
.inner_field_for_additional_data{
    margin: 5px 0;
}
#back_to_step_3{
    background: #0fd8d0;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 23px;
    display: inline-block;
    padding: 0px 13px;
    border-radius: 100px;
}
.select_the_date_data h3{
    text-transform: capitalize;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-top: 13px;
}
.select_the_date_data .calendar-container{
    margin: 20px auto 0 auto;
    background: #ffffff;
}
.select_the_date_data{
    width: 100%;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    border-top: 5px solid #0fd8d0;
}

.select_the_date_data .select_time_part{
    padding: 10px 0 0 0;

}
.select_the_date_data a.select_time_data{
    border: 1px solid;
    padding: 3px 20px;
    margin: 0 10px 0 0;
}

.select_the_date_data .calendar-header button{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    line-height: 30px;
    background: #0fd8d0;
    color: #fff;
    border: none;
    font-size: 18px;
}
#back_to_step_4{
    background: #0fd8d0;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 23px;
    display: inline-block;
    padding: 0px 13px;
    border-radius: 100px;
}
input#complete_step_3:disabled{
    opacity: 0.6;
    cursor: no-drop;
}
/**SAM-NEW-CSS-ENDS**/
@media only screen and (max-width:768px){
.searchcontainer {
    padding: 0 0 200px 0;
}
.searchcontainer h2{
    font-size: 30px;
}
.product_additional_data_part h3 {
    font-size: 28px;
    line-height: 34px;
}
.addn_cat_products_main{
    display: block;
}
.select_the_date_data h5,
.footer_heading
{
    font-size: 16px;
}
.footer_heading{
    padding: 20px 0 0 0;
}
.calender_main_area{
     overflow: hidden !important;
}
.calendar-container{
    overflow: auto !important;
}
.calendar-container table.calendar-table th, 
.calendar-container table.calendar-table td{
    width: auto;
    height: 42px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #f1f1f1;
    font-size: 12px;
    cursor: pointer;
    padding: 0 !important;
}
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading 
{
    font-size: 28px !important;
}
.addn_cat_products_list{
    margin: 0 0 15px 0;
}

}

