.appointment-booking-loading {
    color: white;
    text-align: center;
    display: none;
}

.appointment-booking-content-block {
    display: none;
}

.appointment-booking-content-block.active {
    display: block;
}

.appointment-booking-content-block.loading .appointment-booking-loading {
    display: block;
}

.appointment-booking-content-block.loading .appointment-booking-inner {
    display: none;
}

.appointment-booking-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px !important;
    flex-wrap: wrap;
}

.appointment-booking-item-details {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-items: flex-end;
    flex: 1;
    justify-content: flex-end;
    pointer-events: none;
}

@media(min-width: 768px){
    .appointment-booking-item{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .appointment-booking-item-details{
        position: absolute;
        right: 30px;
        top: 50%!important;
        transform: translateY(-50%);
    }
}

.appointment-booking-item-duration {
    font-size: 14px !important;
    margin-right: 10px;
    position: relative;
    top: 1px;
    text-transform: none !important;
    color: #757575;
    font-weight: 500;
}

@media (max-width: 768px) {
    .appointment-booking-item-duration {
        margin-right: 10px !important;
    }
}

.appointment-booking-item-price-wrapper {
    display: flex;
    align-items: center;
    -webkit-column-gap: 4.2rem;
    -moz-column-gap: 4.2rem;
    column-gap: 4.2rem;
}


.appointment-booking-item-name {
    pointer-events: none;
}

.appointment-booking-item-description {
    opacity: 0.75;
    text-transform: none;
}

.appointment-booking-item-price_old {
    text-decoration: line-through;
    text-align: left;
    font-weight: 400;
    width: 3.125rem;
}

.appointment-booking-item-price_old,
.appointment-booking-item-price {
    font-size: 1.25rem !important;
}

.appointment-booking-item-price_old {
    text-decoration: line-through;
    text-align: left;
}


.appointment-booking-item-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e0e0e0;
    transition: background-color 0.3s;
    min-width: 30px;
}

.appointment-booking-item.selected {
    background-color: #0abbb5;
}

.appointment-booking-item.selected .appointment-booking-item-name {
    color: white;
}

.appointment-booking-item.selected .appointment-booking-item-checkbox {
    background: black;
}

.appointment-booking-item .appointment-booking-item-checkbox img {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.appointment-booking-item.selected .appointment-booking-item-checkbox img {
    opacity: 1;
}

@media (max-width: 768px){
    .appointment-booking-item {
        justify-content: center;
        align-items: flex-start;
        padding: 10px 15px !important;
        gap: 0px 10px;
        min-height: 62px;
    }

    .appointment-booking-item-name {
        font-size: 16px;
        flex: 1;
    }

    .appointment-booking-item-details {
        /* flex-wrap: wrap; */
        justify-content: flex-end;
        align-items: center;
        /* flex-direction: column; */
        gap: 10px;
        flex: unset;
        top: unset!important;
        position: relative;
    }

    .appointment-booking-item-price-wrapper {
        -webkit-column-gap: clamp(1.12rem, 0.4049295775rem + 4.2253521127vw, 3.125rem);
        -moz-column-gap: clamp(1.25rem, 0.4049295775rem + 4.2253521127vw, 3.125rem);
        column-gap: clamp(1.25rem, 0.4049295775rem + 4.2253521127vw, 3.125rem);
    }

    .appointment-booking-item-price,
    .appointment-booking-item-price_old,
    .appointment-booking-item-description {
        font-size: 0.8rem !important;
        position: relative;
        top: 1px;
    }

    .appointment-booking-item-price_old {
        font-weight: 400;
        font-size: 1.1rem !important;
        width: 3.125rem;
    }

    .appointment-booking-item-price {
        font-size: 1.1rem !important;
    }

    .appointment-booking-item-checkbox {
        width: 20px;
        height: 20px;
        min-width: 15px;
    }

    .appointment-booking-item .appointment-booking-item-checkbox img {
        width: 10px;
        height: 10px;
    }

    .appointment-booking-item-details-mobile {
        width: 100%;
        line-height: 1;
    }
}


.vanilla-calendar-day__btn.vanilla-calendar-day__btn_next,
.vanilla-calendar-day__btn.vanilla-calendar-day__btn_prev,
.vanilla-calendar-day__btn.vanilla-calendar-day__btn_selected {
    pointer-events: none;
}

.appointment-booking-calendar-picker-selected {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.appointment-booking-calendar-picker-selected-row{
    display: flex;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    max-width: 400px;
    font-size: 18px;
    line-height: 18px;
}

.appointment-booking-calendar-picker-selected-col-first{
    flex: 0 0 80px;
    font-weight: 500;
    color: #757575;
}

.appointment-booking-calendar-picker {
    margin-top: 20px;
}

.appointment-booking-calendar-picker-times {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    max-width: 600px;
    margin: auto;
}

.appointment-booking-calendar-picker-times-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0abbb5;
    border: 2px solid #0abbb5;
    padding: 10px;
    min-width: 125px;
    transition: box-shadow 0.3s, background 0.3s;
}

.appointment-booking-calendar-picker-times-item.active {
    background: #0abbb5;
    color: white;
}

.appointment-booking-calendar-picker-times-item:hover {
    box-shadow: 0 0 20px 2px rgba(10, 187, 181, 0.5);
}

.appointment-booking-wrapper {
    min-height: 100vh;
    padding-top: 10px;
}


.vanilla-calendar {
    width: 100%;
    background-color: transparent;
    border: 2px solid #3cbbb5;
    border-radius: 0;
    padding-bottom: 20px;
    max-width: 600px;
    margin: auto;
}

.vanilla-calendar-header__content {
    pointer-events: none;
}

.vanilla-calendar-arrow:before,
.vanilla-calendar-arrow:after {
    background-color: #0abbb5;
}

.vanilla-calendar-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #0abbb5;
    border-radius: 0;
}

.vanilla-calendar-arrow:before {
    position: relative;
    top: -3px;
    left: 0px;
}

.vanilla-calendar-arrow:after {
    position: relative;
    bottom: unset;
    left: unset;
    top: 3px;
}

.vanilla-calendar-month,
.vanilla-calendar-year {
    color: #0abbb5;
}

.vanilla-calendar-day__btn {
    width: 45px;
    border-radius: 0;
    background-color: rgba(10, 187, 181, 0) !important;
    border: 1px solid #0abbb5;
    color: white;
    transition: box-shadow 0.3s, background-color 0.5s !important;
}

.vanilla-calendar-day__btn_disabled,
.vanilla-calendar-day__btn_next {
    border-color: rgba(10, 187, 181, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.vanilla-calendar-days {
    row-gap: 6px;
}

.vanilla-calendar-day__btn:hover {
    box-shadow: 0 0 20px 2px rgba(10, 187, 181, 0.5);
}

.vanilla-calendar-day__btn.vanilla-calendar-day__btn_selected {
    background-color: #0abbb5 !important;
    color: rgb(35,35,35) !important;
}

@media (max-width: 768px){
    .vanilla-calendar-day__btn {
        width: 30px;
    }

    .appointment-booking-calendar-picker-times {
        grid-template-columns: repeat(2, 1fr);
    }

    .appointment-booking-calendar-picker-times-item {
        font-size: 14px;
    }
}

.appointment-booking-book-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    padding-bottom: 0;
    color: white;
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px){
    .appointment-booking-book-form {
        width: 100%;
        padding: 0;
    }
}

.appointment-booking-book-form input,
.appointment-booking-book-form textarea {
    background: transparent;
    font-size: 18px;
    line-height: 18px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    outline: none !important;
    color: white;
    width: 100%;
    resize: none;
}

.appointment-booking-book-form input:disabled,
.appointment-booking-book-form input::placeholder{
    color: #757575;
}

.appointment-booking-book-form input.error,
.appointment-booking-book-form textarea.error {
    border-color: red;
}


.appointment-booking-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    margin-top: 30px;
}

.appointment-booking-actions.centered {
    justify-content: center;
}

@media (max-width: 768px) {
    .appointment-booking-actions {
        display: flex;
        flex-direction: column;
    }
}


.appointment-booking-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    min-width: 200px;
    padding: 10px 20px;
    color: #000;
}

@media (max-width: 768px){
    .appointment-booking-actions .btn {
        width: 100%;
    }
}

.appointment-booking-actions .btn.hidden {
    display: none;
}

.appointment-booking-actions .btn.invisible {
    opacity: 0;
    pointer-events: none;
}

.appointment-booking-btn{
    margin-left: auto;
}

.appointment-booking-btn-back {
    background: transparent;
    transition: background-color 0.3s;
    color: #0abbb5 !important;
    border: 1px solid #0abbb5;
}

.appointment-booking-btn-back.invisible{
    display: none;
}

@media (min-width: 768px){
    .appointment-booking-btn-back:hover {
        background: #0abbb5;
        color: #000 !important;
    }
}

@media (max-width: 768px){
    .appointment-booking-btn-back.mobhover {
        background: #0abbb5;
        color: #000 !important;
    }
}

@media (max-width: 768px){
    .appointment-booking-actions .btn {
        font-size: 20px;
        min-width: 100px;
    }
}


.appointment-booking-logo img {
    width: 150px;
    max-width: 150px;
    display: block;
}

@media (max-width: 768px){
    .appointment-booking-logo img {
        max-width: 130px;
        width: 130px;
    }
}

.appointment-booking-actions.hide {
    display: none;
}

.appointment-booking-actions.centered {
    justify-content: center;
}

@media(min-width: 768px){
    .appointment-booking-actions.form-book{
        width: 400px;
        padding: 0 20px;
    }
}

.appointment-booking-popup-wrapper {
    position: relative;
    display: flex;
    width: 90vw;
    max-width: 420px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 60px;
}

.appointment-booking-popup-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 187, 181, 0.7);
    filter: blur(93.5px);
    z-index: 1;
}

.appointment-booking-popup {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    padding: 32px 68px;
    padding-top: 84px;
    background: #151515;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.appointment-booking-popup img {
    display: block;
    width: 90%;
    max-width: 284px;
}

.appointment-booking-popup-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: white;
}

.appointment-booking-popup-subtext {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: white;
}

.appointment-booking-popup-subtext a {
    color: #0abbb5;
}

.appointment-booking-popup-small {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #757575;
}

@media (max-width: 768px){
    .appointment-booking-popup {
        padding: 16px;
    }

    .appointment-booking-popup-title {
        font-size: 20px;
    }

    .appointment-booking-popup-subtext {
        font-size: 16px;
    }

    .appointment-booking-popup-small {
        font-size: 13px;
    }

    .appointment-booking-popup img {
        max-width: 180px;
    }
}

.appointment-booking-book-form-submit {
    width: 100%;
    /*width: calc(100% - 34px);*/
    display: block;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    color: rgb(35,35,35);
    /*margin: 0 17px;*/
}

.appointment-booking-calendar {
    transition: opacity 0.3s;
}

.appointment-booking-calendar.loading {
    pointer-events: none;
    opacity: 0.75;
}

.appointment-booking-wrapper .price__container.thin {
    max-width: 600px;
}

@media (max-width: 768px){
    .appointment-booking-wrapper .price__container{
        padding-bottom: 40px;
    }
}

.appointment-booking-btn.invisible.invisible-show{
    opacity: 0.5!important;
}
.appointment-booking-btn-newap {
    padding: 14px 20px;
}

.services_body{
    padding: 0!important;
}
.checkbox_service_btn{
    border: 0!important;
    min-width: 100%;
}
@media(min-width: 64.375em){
    .checkbox_service_btn.price__table-title{
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}
@media(max-width: 768px){
    .checkbox_service_btn{
        display: grid;
        grid-template-columns: 2.3fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .checkbox_service_btn .appointment-booking-item-name{
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }
    .checkbox_service_btn .appointment-booking-item-details{
        grid-row: 1 / 4;
        grid-column: 2 / 3;
        height: 100%;
    }
    .checkbox_service_btn .appointment-booking-item-details-mobile{
        grid-row: 3 / 4;
        grid-column: 1 / 2;
    }
}
.checkbox_service_btn::after,
.checkbox_service_btn::before{
    display: none;
}
.checkbox_service_btn.selected{
    background-color: rgba(10, 187, 181, 0.3)!important;
}

.checkbox_service_btn.selected .appointment-booking-item-duration{
    color: white;
}

.phone__wrapper{
    position: relative;
    width: 100%;
    height: 24px;
}

.phone__wrapper input{
    padding-left: 25px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.phone__wrapper::before{
    content: '+1';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 18px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services__body .spollers__title{
	position: relative;
}

@supports (font-size: clamp(1rem, 0.8873239437rem + 0.5633802817vw, 1.25rem)) {
    .price__table-price {
        font-size: clamp(1.5rem, 0.8873239437rem + 0.5633802817vw, 1.25rem);
    }
}