.modal-booker{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4);
    scroll-behavior: unset/* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    color: #888;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}
.transparent{
    background-color: transparent!important;
    border: none!important;
}
.loading-spinner{
    color: white;
    font-family: "Roboto", serif;
    font-size: 18px;
    font-weight: initial;

}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--main-color);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.form-content{
    padding: 50px;
    width: 100%;
    box-sizing: border-box;
    max-height: 800px;
}
.close:hover,
.close:focus {
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
}
.close {
    float: right;
    font-size: 46px;
    font-weight: bold;
    height: 0;
    margin-right: 10px;
    color: var(--buttons-color);
}

@media screen and (max-width: 1000px) {
    .form-content{
        padding: 25px;
    }
}
