.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;
}