.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    border: 16px solid #96D3DF;
    border-radius: 50%;
    border-top: 16px solid #0E7793;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    z-index: 99999;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide-wrapper {
    display: none;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #96D3DF;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0E7793;
}

.validation_error_block p,
.validation_error_block {
    padding: 3px 0 3px 0;
    color: red;
    font-size: 16px;
}

.validation_success_block p,
.validation_success_block {
    padding: 3px 0 3px 0;
    color: #fa9f34;
    font-size: 20px;
}

.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.sticky {
    position: -webkit-fixed;
    position: fixed;
    bottom: 0;
    background-color: #f9fafc;
    padding: 12px 40px 0 40px;
    font-size: 15px;
    width: 100%;
    z-index: 99999;
    display: inline-flex;
}

#cookiesconfirm {
    background-color: #fa9f34;
    color: white;

    font-size: 14px;
    text-transform: uppercase;
    border: none;
    padding: 0 40px;
    line-height: 45px;
    margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
    .sticky {
        display: inline-block;
    }

    .sticky_div {
        width: 100% !important;
    }

    #cookiesconfirm {
        margin-top: 10px;
    }
}

.close-cookies {
    display: none;
}

#map {
    width: 100%;
    height: 100%;
}

.required {
    border: 1px solid red;
}

.schedule__img img {
    border-radius: 16px;
}