body {
}

main {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
}

.bookings-container {
    font-family: 'Poppins', sans-serif;
    display: flex;
    width: 80%;
    /*height: 900px;*/
    /*padding-bottom: 152px;*/
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    border: 2px solid #3269FF;
    margin-top: 20px;
    margin-bottom: 20px;
}

.formBigContainer {
    display: flex;
    width: calc(50% - 20px);
    /*height: 340px;*/
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
}

.formSmallContainer {
    display: flex;
    width: calc(50% - 20px);
    /*height: 340px;*/
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
}

.eye-catcherContainer {
    display: flex;
    flex-wrap: wrap;
    width: calc(100%);
    height: 146px;
    background-color: #3269FF;
    /*border-radius: 10px;*/
}

.eye-catcherTopDiv {
    display: flex;
    color: black;
    height: 50%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: bold;
}

.eye-catcherBottomDiv {
    display: flex;
    color: white;
    height: 50%;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.stepIndicatorContainer {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    height: 102px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.stepIndicatorTop {
    display: flex;
    width: 60%;
    height: 75px;
    justify-content: space-between;
    align-items: center;
}

.stepIndicatorLine {
    /*width: 200px;*/
    border-bottom: 1px solid #EAECEE;
    z-index: 40;
}

.stepIndicatorStepContainer {
    display: flex;
    height: 75px;
    width: 18%;
    justify-content: center;
    align-items: center;
}

.stepIndicatorStep {
    display: flex;
    height: 75px;
    width: 75px;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    background-color: #EAECEE;
    border-radius: 50px;
    color: #778591;
    text-decoration: none;
}

.stepIndicatorActive {
    display: flex;
    height: 75px;
    width: 75px;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    background-color: #3269FF;
    border-radius: 50px;
    color: white;
    font-weight: bold;
}

.stepIndicatorBottom {
    display: flex;
    width: 60%;
    height: 18%;
    justify-content: space-between;
}

.stepText {
    display: flex;
    height: 100%;
    width: 18%;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #778591;
}

.activeStep {
    color: white;
    background-color: #3269FF;
    font-weight: bold;
}

.activeStepText {
    color: black;
    font-weight: bold;
}

.booking-step-container {
    display: flex;
    width: calc(100% - 20px);
    /*height: 400px;*/
    flex-wrap: wrap;
    justify-content: space-between;
}

.formStepOneHeader {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: #E7E7E7;
    color: #7C7C7C;
    padding-left: 20px;
    font-size: 16px;
    align-items: center;
    border-top: 2px solid #3269FF;
}

.formInputContainerTall {
    display: flex;
    width: 100%;
    height: 90px;
    border: 1px solid #E7E7E7;
    background-color: white;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    align-items: flex-start;

}

.formInputContainer {
    display: flex;
    width: 100%;
    height: 60px;
    border: 1px solid #E7E7E7;
    background-color: white;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    align-items: flex-start;

}

.formInputContainerSmall {
    display: flex;
    width: 50%;
    height: 60px;
    border: 1px solid #E7E7E7;
    background-color: white;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    align-items: flex-start;

}

.formInputContainerSmallSmall {
    display: flex;
    width: 25%;
    height: 60px;
    border: 1px solid #E7E7E7;
    background-color: white;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    align-items: flex-start;

}

label {
    /*color: #7C7C7C;*/
    font-size: 12px;
    margin-left: 20px;
    height: 15px;
    margin-top: 5px;
    color: var(--colorAccent);
    font-weight: var(--buttonFontWeight);
}

.inputLabel {
    display: flex;
    width: 100%;
}

input {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: black;
    font-family: 'Poppins', sans-serif;
}

select {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: black;
    font-family: 'Poppins', sans-serif;
}

::placeholder {
    font-weight: bold;
    color: #B4B4B4;
    font-family: 'Poppins', sans-serif;
}

::-ms-input-placeholder { /* Edge 12-18 */
    font-weight: bold;
    color: #B4B4B4;
    font-family: 'Poppins', sans-serif;
}

.formInput {
    width: 80%;
    text-decoration: none;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    /*appearance: none;*/
}

.buttonContainer {
    display: flex;
    width: 100%;
    height: 60px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;

}

.nextButton {
    display: flex;
    width: 164px;
    height: 40px;
    background-color: var(--colorSecondary);
    color: var(--colorAccent);
    border: 2px solid var(--colorAccent);
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    cursor: pointer;
    outline: inherit;
    border-radius: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#submitButton {
    display: flex;
    width: 164px;
    height: 40px;
    background-color: #3269FF;
    color: white;
    font-size: 14px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: inherit;
    border-radius: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
/* Hide the form submission input while keeping the altInput visible */
input.flatpickr-input[type="datetime-local"] {
    display: none; /* Hides the machine-readable input */
}

input.flatpickr-input[readonly] {
    display: block; /* Ensures the altInput is shown */
}
/* Media query for tablets */
@media (max-width: 991px) {
    .bookings-container {
        font-family: 'Poppins', sans-serif;
        display: flex;
        width: 100%;
        /* height: 900px; */
        /* padding-bottom: 152px; */
        flex-direction: column;
        align-items: center;
        background-color: white;
        border-radius: 0;
        border: 2px solid #3269FF;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .eye-catcherTopDiv {
        display: flex;
        color: black;
        height: 50%;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        font-size: var(--mobileCardH1FontSize);
        font-weight: bold;
    }

    .eye-catcherBottomDiv {
        display: flex;
        color: white;
        height: 50%;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        font-size: 3vw;
        font-weight: bold;
    }

    .stepIndicatorTop {
        display: flex;
        width: 100%;
        height: 75px;
        justify-content: space-evenly;
        align-items: center;
    }

    .stepIndicatorStepContainer {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
    }

    .stepIndicatorStep {
        display: flex;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 36px;
        background-color: #EAECEE;
        border-radius: 50px;
        color: #778591;
        text-decoration: none;
    }

    .stepIndicatorBottom {
        display: flex;
        width: 100%;
        height: 40%;
        justify-content: space-between;
    }

    .stepText {
        display: flex;
        height: 100%;
        width: 32%;
        justify-content: center;
        align-items: center;
        font-size: var(--mobileTextFontSize);
        color: #778591;
    }

    .booking-step-container {
        display: flex;
        width: calc(100%);
        /* height: 400px; */
        flex-wrap: wrap;
        justify-content: center;
    }

    .formBigContainer {
        display: flex;
        width: calc(100% - 20px);
        /* height: 340px; */
        flex-wrap: wrap;
        flex-direction: row;
        align-content: flex-start;
    }
    .inputLabel {
    display: flex;
    width: 90%;
}
    label {
        /* color: #7C7C7C; */
        font-size: var(--mobileTextFontSize);
        margin-left: 20px;
        height: 15px;
        margin-top: 5px;
        color: var(--colorAccent);
        font-weight: var(--buttonFontWeight);
    }

    .formInputContainer {
        display: flex;

    }

    input {
        margin-left: 20px;
        font-size: var(--mobileInputFontSize);
        font-weight: 600;
        color: black;
        font-family: 'Poppins', sans-serif;
    }

    .formInputContainerSmall {
        display: flex;
        width: 100%;
        height: 60px;
    }

    .formInputContainerSmallSmall {
        display: flex;
        width: 50%;
        height: 60px;
    }

    .buttonContainer {
        display: flex;
        width: 100%;
        height: 60px;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        justify-content: space-around;
        align-items: center;
    }

    .nextButton {
        display: flex;
        width: 130px;
        height: 30px;
        font-size: var(--mobileTextFontSize);
    }

    #submitButton {
        display: flex;
        width: 130px;
        height: 30px;
        font-size: var(--mobileTextFontSize);

    }
}

/* Media query for mobile devices */
@media (max-width: 767px) {


}