body {
    background-color: #FFFFFF;
    background-image: none !important;
}

.invalid-input {
    border: 2px solid #F45C43 !important;
}

.header-box {
    height: 70px;
    align-items: center;
    padding: 0 15px;
}
.header-social{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.header-social__item img {
    width: 24px;
    height: 24px;
}
.header-logo {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}
.header-logo img {
    /*max-width: inherit;*/
    max-height: 60px;
    height: 100%;
    max-width: 350px;
    width: 100%;
    object-fit: contain;
}
.header-info {
    display: flex;
    align-items: center;
    margin-left: 25px;
    width: 137px;
    height: 52px;
    padding: 8px;
}
.header-text{
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    @media (max-width: 475px) {
        font-size: 7px;
        line-height: 8px;
        letter-spacing: 0;
        color: #757575;
    }
}

.header-m__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}
.header-m__wrapper img {
    height: 30px !important;
    margin: 0 !important;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.header-contact__number {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.header-contact__text{
    font-weight: 500;
    font-size: 19px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;

}

.header-contact__info{
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #989898;
    margin: 0;
}

.main-phone{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    outline: none;
    background-color: #00AEEF;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
    width: 100%;
    padding: 8px 12px;
}

.main-phone span{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.main-cover{
    align-items: center;
}

.aside-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #FFB629;
    border-radius: 4px;
    padding: 12px 16px;
    max-width: 220px;
    width: 100%;
    height: max-content;
    box-shadow: 0 4px 25px 0 #00000073;
    margin-left: 8px;
}


.aside-form__title{
    font-weight: 700;
    font-size: 17px;
    line-height: 19px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.aside-form__info {
    font-weight: 500;
    font-size: 9px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0;
}

.aside-form__btn{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    background-color: #343A40 !important;
    height: 40px !important;
    border-radius: 5px;
    cursor: pointer;
}
.aside-form__wrapper-input{
    position: relative;
    width: 100%;
}
.aside-form__wrapper-input svg{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.aside-form__input-info{
    display: flex;
    flex-direction: row;
    gap: 4px;

    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    pointer-events: none;
}
.aside-form__input-info p {
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0;
    color: #757575;
}
.aside-form__input {
    font-weight: 500;
    font-size: 13px !important;
    line-height: 100%;
    letter-spacing: 0;
    color: #757575;
    background-color: #FFFFFF !important;
    height: 40px !important;
    border-radius: 5px;
    border: none;
    width: 100%;
    max-width: 240px;
    padding: 11px 0 11px 47px !important;
}

.aside-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 228px !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    height: 100%;
    padding: 16px;
}

.aside-contact .city {
    font-weight: 500;
    font-size: 14px;
    line-height: 13px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.aside-contact .number {
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.aside-contact .main-phone {
    margin-top: 18px;
    animation: shake-top 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite;
}

.aside-contact .main-phone:hover {
    animation: none;
}


@keyframes shake-top {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 0;
    }
    10% {
        transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    90% {
        transform: rotate(2deg);
    }
    95% {
        transform: rotate(0deg);
    }
}


.aside-contact .number a{
    text-decoration: none;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
}

.aside-contact .number a span{
    font-size: 14px;
    line-height: 7px;
}

#main_order_form{
    gap: 8px;
}

#secondary_order_form{
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 12px 28px;
    @media (max-width: 475px) {
        flex-wrap: wrap;
        padding: 12px 16px;
    }
}

#secondary_order_form .aside-form__wrapper-input{
    max-width: 240px;
}

#secondary_order_form .aside-form__wrapper-input:not(.guests-dropdown-toggler){
    @media (max-width: 475px) {
        max-width: calc(50% - 4px);
    }
}

#secondary_order_form .guests-dropdown {
    max-width: 240px;
    width: 100%;
    @media (max-width: 475px) {
        max-width: calc(50% - 4px);
    }
}

#secondary_order_form .guests-dropdown .aside-form__wrapper-input{
    padding: 0;
}

#secondary_order_form .aside-form__btn {
    max-width: 160px;
    width: 100%;
    @media (max-width: 475px) {
        max-width: calc(50% - 4px);
        }
}

#secondary_order_form .guests-dropdown .opened{
    z-index: 9;
}

#phone_form_content,
#forced_form_a{
    width: 600px;
    height: max-content;
    border-radius: 4px;
    overflow: hidden;
}

#phone_form_content .body {
    padding: 0;
}

#forced_form_content .body {
    padding: 0;
}

#phone_form_content .mfp-close {
    margin-left: 550px;
}

#forced_form_content .mfp-close {
    margin-left: 550px;
}

.new-pf{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    @media (max-width: 475px) {
        flex-direction: column;
    }
}

.new-pf .aside-form__input {
    border: 1px solid #DDDDDD;
}

.new-pf__header {
    background: linear-gradient(90.72deg, #FFB300 0%, #FF8F00 100%);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-pf__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 45px;
    max-width: calc(100% - 254px);
    width: 100%;
    @media (max-width: 475px) {
        max-width: 100%;
        padding: 16px 24px;
    }
}

.new-pf__right{
    max-width: 254px;
    width: 100%;
    height: inherit;
}

.new-pf__right img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.new-pf__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    margin: 0;
    @media (max-width: 475px) {
        color: #FFFFFF;
        font-size: 18px;
    }
}

.new-pf__text {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    margin: 12px 0 0;
}

.new-pf__info {
    font-weight: 500;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0;
    color: #757575;
    margin: 0;

}

.new-pf__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
    @media (max-width: 475px) {
        max-width: 221px;
    }
}

.new-pf__select{
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0;
    color: #757575;
    background-color: #FFFFFF;
    height: 40px;
    border-radius: 5px;
    width: 100%;
    max-width: 240px;
    padding: 11px;
    border: 1px solid #dddddd;
}

.new-pf__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    height: 40px;
    background-color: #00AEEF;
    padding: 10.5px;

    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}
