/* FANCYBOX */
.fancybox__content{
    /* max-width: 1024px; */
    padding: 0;
}
.fancybox__toolbar button.carousel__button {
    padding: 0;
}

/* BOOKING SYSTEM */
.sape-booking-wrapper {
    font-size: 16px;
    padding: 30px;
    max-width: 1160px;
    margin: auto;
    overflow: hidden;
}
.sape-booking-wrapper h1 {
    margin-top: 0;
    font-size: 2.6em;
    line-height: 1.2em;
}
.sape-booking-wrapper h2 {
    font-size: 2.1em;
    line-height: 1.2em;
}
.sape-booking-wrapper h3 {
    font-size: 1.6em;
    line-height: 1.2em;
}
@media screen AND (max-width:767px){
    .sape-booking-wrapper h1 {
        font-size: 2em;
    }
    .sape-booking-wrapper h2 {
        font-size: 1.6em;
    }
    .sape-booking-wrapper h3 {
        font-size: 1.2em;
    }
}

.reservation-header {
	margin-bottom: 0;
    padding-top: 20px;
}

.sape-booking-columns{
    display: flex;
    align-items: stretch;
    width: 200%;
}

.sape-booking-column{
    position: relative;
    width: 50%;
    transition: all 500ms ease-in-out;
}

.sape-booking-column.sape-booking-contactform {
    opacity: 0;
    width: 40%;
    width: calc( 50% - 100px);
}

.sape-booking-columns.show-form .sape-booking-column.sape-booking-calendar{
    width: 100px;
}

.sape-booking-columns.show-form .sape-booking-column.sape-booking-contactform{
    opacity: 1;
}

/* .sape-booking-columns .sape-calendar-back-button {
    pointer-events: none;
    opacity: 0;
} */

.sape-booking-window {
    margin: 60px 90px;
}

@media screen and (max-width:767px){
    .sape-booking-columns .sape-booking-column.sape-booking-contactform {
        width: 50%;
        padding: 0;
    }
    
    .sape-booking-columns.show-form .sape-booking-column.sape-booking-calendar{
        width: 0px;
    }

    .sape-booking-columns.show-form .sape-calendar-nav-arrow {
        pointer-events: none;
        opacity: 0;
    }

    .sape-booking-window {
        margin: 30px 20px;
    }

    /* .sape-booking-columns .sape-calendar-back-button {
        pointer-events: auto;
        opacity: 1;
    } */
}

/* CALENDAR */
.sape-calendar {
    display: flex;
    overflow: auto;
    height: 100%;
}

.sape-calendar-day {
    margin: 0px;
    padding: 12px;
    min-width: 100px;
    width: 100px;
}

@media screen AND (max-width:767px){
    .sape-calendar-day {
        padding-left: 0;
        width: 80px;
        min-width: 80px;
    }
}


.sape-calendar-date {
    font-weight: bold;
    text-align: center;
    line-height: 1.8em;
}

.sape-daynumber {
    font-size: 2em;
}

.sape-calendar-timeslot {
    margin: 6px 0;
    padding:8px;
    text-align: center;
    border-radius: 99px;
    cursor: pointer;
    background: #21382d; /*VAR*/
    color: white; /*VAR*/
    border: none;
    font-size: 1em;
    width: 100%;
    line-height: 1.4em;
}

.sape-calendar-timeslot.sape-selected {
    color:white; /*VAR*/
    background-color: #ff5014; /*VAR*/
}
@media screen AND (hover:hover){
    .sape-calendar-timeslot:hover {
        color:white; /*VAR*/
        background-color: #ff5014; /*VAR*/
    }
}

.sape-calendar-slot-unavailable{
    opacity:0.4;
    pointer-events: none;
}

.sape-calendar-nav-arrow {
    position: absolute;
    top: 0;
    height: 95px;
    width:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    margin: 10px 0;
}

.sape-calendar-nav-arrow.left {
    left: 0;
    right: unset;
    transform: translate(-20px, 0px);
}

.sape-calendar-nav-arrow.right {
    left: unset;
    right: 0;
    transform: translate(20px, 0px);
}

/* CONTACTFORM */
.sape-booking-contactform {
    padding: 0 0 0 50px;
}

.sape-booking-contactform > *:first-child {
    margin-top: 8px;
    margin-bottom: 0px;
}

.sape-calendar-back-button {
    margin-bottom: 20px;
    display: block;
}

.sape-booking-contactform .fluentform .ff-btn-submit.disabled {
    pointer-events: none;
}

.sape-booking-contactform .fluentform .ff-btn-submit {
    background-color: #21382d;
    color: #ffffff;
    border-radius: 99px;
    padding: 10px 30px;
}


/* APPIONTMENT HANDLER */
.sape-appointment-handler-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
}