.order-form {
    margin-bottom: 37px;
    border-radius: 20px;
    margin-top: 60px;
    background: rgb(3,169,244);
    background: linear-gradient(0deg, rgba(3,169,244,0.8) 0%, rgba(3,169,244,0.1) 100%);
    position: relative;
}
.order-form .form-wrapper {
    display: flex;
    gap: 60px;
    padding: 35px 40px;
}
.calendar-wrapper {
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
}
.form-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.order-form__title {
    font-size: 35px;
    /* margin-bottom: 30px; */
    margin-top: 30px;
    line-height: 40px;
}
.order-form__field {
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    padding: 15px 25px;
    font-size: 14px;
    width: 100%;
}
.cSelect {
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
}
.cSelect__default  {
    border-radius: 10px!important;
}
#appointment-on-time .form-group {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-direction: row;
    align-items: center
}
.select-block {
    width: 100%;
}
#appointment-on-time [type="submit"]{
    border-color: #fff;
    box-shadow: 0px 0px 6px #fff;
    width: auto;
    min-width: 160px;
}
#appointment-on-time .form-group:last-child{
    justify-content: flex-end;
}


.preloader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* фоновый цвет */
    background: #00b0ff1f;
    z-index: 1001;
    display: none;
    right: 0;
}

.preloader__image {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: block;
}

.main_select {
    position: relative;
}
.main_select__default {
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    height: 50px;
    padding: 14px 2em;
    background-color: #fff;
    box-shadow: 0px 1em 2em -1.5em rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: block;
    position: relative;
}
.main_select__default::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: translateY(-65%) rotate(135deg);
}
.main_select__list {
    max-height: 290px;
    position: absolute;
    background: #fff;
    width: 100%;
    height: auto;
    /* display: block; */
    overflow: auto;
    margin-top: 8px;
    display: none;
}
.main_select__list.opened {
    display: block;
}
.main_select__list ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}
.main_select__list ul li {
    padding: 16px 2em;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-size: 14px;
    min-height: 17px;
}
.main_select__list ul li:hover {
    background-color: rgb(236, 236, 236);
}
.main_select__list ul li.selected {
    color: #fff;
    background-color: #03a9f4;
}
.hide-desktop {
    display: none;
}
.hide-mobile {
    display: block;
}
@media (max-width: 992px) {
    .order-form .form-wrapper {
        flex-direction: column;
        gap: 7px;
        padding: 0px 32px;
    }
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: block;
    }
    .callback-bt {
        right: 3%!important;
        bottom: 3%!important;
    }
}
@media (max-width: 600px) {
    #appointment-on-time .form-group{
        flex-direction: column;
        margin: 0px;
        gap: 10px;
    }
    .main_select__list {
        z-index: 999;
        box-shadow: 0px 6px 20px 1px #0000008f;
        border-radius: 6px;
    }
    .order-form__title {
        margin-top: 20px;
        text-align: center;
    }
}
