#ia-appt-slides-wrapper {
    --ia-appt-slide-animation-time: unset;
}

.ia-appt-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    transition: all .5s;

    z-index: 0;
}

.ia-appt-slide[ data-state="active" ] {
    opacity: 1;
    transform: translateX(-50%);

    transition-delay: .25s;

    z-index: 10;
}

.ia-appt-slide[ data-state="next" ] {
    opacity: 0;
    top: 6rem;

    transform: translateX(-50%) scale(1.1);

    pointer-events: none;
}

.ia-appt-slide[ data-state="previous" ] {
    opacity: 0;
    top: -6rem;

    transform: translateX(-50%) scale(0.9);

    pointer-events: none;
}



#ia-appt-service-type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
}

.ia-appt-service-type__btn {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0.8rem;

    border-radius: 0;

    background-color: var(--e-global-color-510321f);
}

.ia-appt-service-type__btn:hover, .ia-appt-service-type__btn:focus {
    background-color: var(--e-global-color-510321f);
}

.ia-appt-service-type__btn[ data-active="true" ] {
    background-color: var(--e-global-color-accent);
}

.ia-appt-service-type__btn__title {
    color: var(--e-global-color-7ce4204);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8rem;
    text-transform: uppercase;
}







#ia-appt-continue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    padding: 1rem;

    border-radius: 0;

    background-color: var(--e-global-color-accent);
}

#ia-appt-continue-btn:hover, .ia-appt-continue-btn:focus {
    background-color: var(--e-global-color-accent);
}

#ia-appt-continue-btn[ disabled ] {
    opacity: 0.5 !important;
}

.ia-appt-continue-btn__title {
    color: var(--e-global-color-7ce4204);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8rem;
    text-transform: uppercase;
}

#ia-appt-continue-btn > svg {
    width: 2rem;
    height: auto;
}

#ia-appt-continue-btn > svg > path {
    stroke: var(--e-global-color-7ce4204);
}





.ia-appt-go-back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    padding: 1rem;

    border-radius: 0;

    background-color: var(--e-global-color-7ce4204);
}

.ia-appt-go-back-btn:hover, .ia-appt-go-back-btn:focus {
    background-color: var(--e-global-color-7ce4204);
}

.ia-appt-go-back-btn[ disabled ] {
    opacity: 0.5 !important;
}

.ia-appt-go-back-btn__title {
    color: var(--e-global-color-69d888e);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8rem;
    text-transform: uppercase;
}

.ia-appt-go-back-btn > svg {
    width: 2rem;
    height: auto;

    transform: rotate(180deg);
}

.ia-appt-go-back-btn > svg > path {
    stroke: var(--e-global-color-69d888e);
}


.ia-appt-slide .calendly-inline-widget  {
    min-width: 320px;
    height: 550px;
    overflow: scroll;
}


/* TABLET BEGIN */
@media (max-width: 1024px) {
    .ia-appt-slide .calendly-inline-widget {
        height: 400px;
    }
}
/* TABLET END */

/* MOBILE BEGIN */
@media (max-width: 767px) {
    #ia-appt-service-type {
        gap: .32rem;
    }

    .ia-appt-service-type__btn {
        padding: 0.4rem;
    }

    .ia-appt-service-type__btn__title {
        font-size: 0.7rem;
    }

    #ia-appt-continue-btn {
        padding: 0.5rem;
    }

    .ia-appt-continue-btn__title {
        font-size: 0.7rem;
    }
    
    #ia-appt-continue-btn > svg {
        width: 1rem;
    }


    .ia-appt-go-back-btn {
        padding: 0.5rem;
    }

    .ia-appt-go-back-btn__title {
        font-size: 0.7rem;
    }
    
    .ia-appt-go-back-btn > svg {
        width: 1rem;
    }


    .ia-appt-slide .calendly-inline-widget {
        height: 600px;
    }
}
/* MOBILE END */