.card {
    background-color: white;
    border: 1px solid #333;
    border-radius: .5rem;
    padding: 2rem;
    max-width: 500px;
    margin-left: 0 auto;
    animation: fade 250ms ease-in-out forwards;
    height: 560px;
    min-height: 560px;
    
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: .5rem;
    gap: .25em;
}

.form-group:last-child {
    margin: 0;
}

.form-group>label {
    font-weight: bold;
    font-size: .8em;
    color: #333;
}

.form-group>input {
    border: 1px solid #333;
    border-radius: .25em;
    font-size: 1rem;
    padding: .25em;
}

.step-title {
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.card.active {
    animation: slide 250ms 125ms ease-in-out both;
}

.multi-step-form {
    overflow: hidden;
    position: relative;
}

.hide {
    display: none;
}

@keyframes slide {
    0% {
        transform: translateX(200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.75);
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(0);
    } }

.step-title {
    display: flex;
    justify-content: space-between;
}

.button_booking_form {
    background: var(--primary-color);
    color: #FFF;
    border-radius: 25px;
}

.total_price {
    text-align: right;
}


form.multi-step-form {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 500px;
    max-width: 500px;
    z-index: 9999!important;
    

    
}
.flatpickr-calendar.hasTime.animate.inline {
    margin: 0 auto;
    
}

div.booking_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
  
}

.step-title {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.title-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;

}

.divider_spa {
    width: 25%;
    color: var(--primary-color);
    text-align: center;
    margin: 0 auto;
    height: 5px;
}

.divider_spa {
    width: 15%;
    background-color: black !important;
    text-align: center;
    margin: 0 auto;
    height: 3px;
    margin-bottom: 10px;
}

.fa-xmark {
    position: absolute;
    top: 1rem;
    right: 2rem;
  
}

.booking_now {
    border-radius: 25px;
    padding: 7px 14px;
    background-color: #6A96ED;
    color: var(--wp--preset--color--white);
    position: fixed;
    z-index:9999;
    right: 15px;
    bottom: 45px;
    text-align: center;
}

