@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.theme-dark {
    color: #000;
    background: #0C1317 url('../img/back-desktop.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.theme-light {
    color: #000;
    background: url('../img/back-desktop.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header {
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    width: 100%;
    background-color: #fff;
    transition: all .3s;
    min-height: 130px;
    z-index: 90;
}

.header--scroll {
    background-color: rgba(255, 255, 255, 0.918);
    transition: all .3s;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 100px;
}

.header__logo img {
    max-width: 130px;
    margin-right: 20px;
    transition: all .3s;
}

.header--scroll .header__logo img {
    transition: all .3s;
    max-width: 120px;
}

.header__account {
    padding: 10px 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #18AF77;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.header__account--hide-mobile {
    margin-left: 20px;
}

.header__account img {
    margin-right: 30px;
    width: 24px;
    height: 24px;
}

@media(min-width: 981px) {
    .header__account--hide-desktop {
        display: none;
    }
}

@media(max-width: 980px) {
    .header__account--hide-mobile {
        display: none;
    }
}

.main {
    display: block;
    width: 100%;
    padding-top: 200px;
}

.footer {
    margin-top: auto;
    margin-top: 180px;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer__text {
    text-align: center;
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.nav__item {
    color: #000;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}

    .nav__item:hover {
        transition: all .3s;
        text-decoration: underline;
        color: #000;
    }

.nav__item--active {
    text-decoration: underline;
}

.login {
    max-width: 560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.login__logo {
    text-align: center;
}

    .login__logo img {
        width: 330px;
    }

.page-title {
    padding-top: 30px;
    padding-bottom: 5px;
}

.h1 {
    font-weight: 600;
    font-family: "Open Sans", serif;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 1px;
}

.login__lang-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.login__lang-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.login__lang-link--active {
    font-weight: 800;
}

.login__lang-sep {
    padding-left: 15px;
    padding-right: 15px;
}

.form {
    display: flex;
    flex-direction: column;
}

.form__item {
    display: flex;
    flex-direction: column;
    padding-top: 13px;
}

.form__error {
    color: rgb(197, 33, 34);
    font-size: 11px;
    line-height: 14px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 5px;
    letter-spacing: 2px;
    font-weight: 600;
    display: none;
}

.form__error--active {
    display: block;
}

.form__input {
    position: relative;
    height: 50px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
}

.form__input--textarea {
    height: 150px;
}

.form__input label {
    font-weight: 600;
    font-size: 11px;
    color: rgb(35, 35, 35);
    text-transform: uppercase;
    position: absolute;
    top: 7px;
    padding-left: 20px;
}

.form__input input::placeholder {
    color: #d6d6d6;
    opacity: 1;
}

.form__input input:-ms-input-placeholder {
    color: #d6d6d6;
}

.form__input input::-ms-input-placeholder {
    color: #d6d6d6;
}

.form__input textarea::placeholder {
    color: #d6d6d6;
    opacity: 1;
}

.form__input textarea:-ms-input-placeholder {
    color: #d6d6d6;
}

.form__input textarea::-ms-input-placeholder {
    color: #d6d6d6;
}

.form__input input {
    font-size: 14px;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background-color: #fff;
    padding-left: 20px;
    padding-top: 22px;
    font-weight: 600;
    color: #000;
}

.form__input--textarea textarea {
    font-size: 14px;
    width: 100%;
    height: 150px;
    border: none;
    outline: none;
    background-color: transparent;
    padding-left: 20px;
    padding-top: 22px;
    font-weight: 600;
    color: #000;
    resize: none;
}

.form__input--no-label input {
    padding-top: 0;
    line-height: 50px;
}

.form__input select::placeholder {
    color: #d6d6d6;
    opacity: 1;
}

.form__input select:-ms-input-placeholder {
    color: #d6d6d6;
}

.form__input select::-ms-input-placeholder {
    color: #d6d6d6;
}

.form__input select {
    font-size: 14px;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    font-weight: 600;
    color: #000;
}

    .form__input select.labeled {
        padding-top: 15px;
    }

.btn {
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-style: normal;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 10px 30px;
    background: #18AF77;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    margin-top: 13px;
    margin-bottom: 13px;
    transition: all .3s;
    cursor: pointer;
}

    .btn:hover:enabled {
        background: #0C5E40;
        transition: all .3s;
    }

    .btn:disabled {
        opacity: 50%;
    }

.btn--full {
    display: flex;
    width: 100%;
}

.btn-keyboard {
    padding: 5px 0;
    margin: 2px 0;
    width: 8%;
    display: inline;
    text-transform: none;
}

.form__info-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form__info-text {
    color: rgb(3, 3, 3);
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 6px;
}

.form__info-link {
    text-decoration: underline;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.theme-dark .form__title {
    color: #f7f6f6;
}

.theme-light .form__title {
    color: #090909;
}

.form__title--mb {
    margin-bottom: 20px;
}

.form__input--mb {
    margin-bottom: 15px;
}

.h2 {
    font-weight: 600;
    font-family: "Open Sans", serif;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.h2--mt {
    margin-top: 30px;
}

.h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.page-sep {
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #f7f6f6;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

@media(min-width: 981px) and (max-width: 1500px) {
    .header__logo img {
        max-width: 140px;
        margin-right: 20px;
    }

    .nav {
        max-width: 780px;
    }

    .nav__item {
        margin-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 981px) and (max-width: 1300px) {
    .nav__item {
        margin-left: 10px;
        padding-right: 10px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .header__account {
        padding: 8px 15px;
        font-size: 12px;
        letter-spacing: 1px;
    }

        .header__account img {
            margin-right: 15px;
            width: 20px;
            height: 20px;
        }
}

.hamburger {
    display: none;
}

    .hamburger .hamburger__line {
        width: 50px;
        height: 5px;
        background-color: #000;
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .hamburger:hover {
        cursor: pointer;
    }

.hamburger {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .hamburger.hamburger--active {
        animation: smallbig 0.6s forwards;
    }

@keyframes smallbig {
    0%, 100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

.hamburger.hamburger--active .hamburger__line:nth-child(1),
.hamburger.hamburger--active .hamburger__line:nth-child(2),
.hamburger.hamburger--active .hamburger__line:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.hamburger.hamburger--active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.hamburger--active .hamburger__line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.hamburger.hamburger--active .hamburger__line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

@media(max-width: 980px) {
    .hamburger {
        display: block;
        z-index: 999;
        position: relative;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        overflow: auto;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: all .3s;
        background-color: rgba(0, 0, 0, .8);
        opacity: 0;
        visibility: hidden;
    }

    .nav__item {
        font-size: 15px;
        padding-bottom: 20px;
    }

    .nav--active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        z-index: 99;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.grid {
    max-width: 1000px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px
}

.form__grid--mt {
    margin-top: 20px;
}

@media(max-width: 767px) {
    .form__grid {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.form__btn-wrap {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form__btn-wrap--mt {
    margin-top: 40px;
}

.form__title--mt {
    margin-top: 50px;
}

.form__file {
    margin-top: 10px;
}

    .form__file input {
        visibility: hidden;
        display: none;
    }

.form__file-btn span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-right: 10px;
}

    .form__file-btn span:last-child {
        text-decoration: underline;
        text-transform: none;
    }

.form__file-name {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 15px;
}

    .form__checkbox input {
        width: 20px;
        transform: translateY(4px);
    }

    .form__checkbox label {
        width: calc(100% - 25px);
        margin-left: 5px;
    }

.calendar__days,
.calendar__nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 30px 10px;
}

.calendar__nav {
    padding-bottom: 20px;
}

.calendar__nav-item {
    text-align: center;
    font-weight: bold;
}

.calendar__day {
    border-radius: 3px;
    text-align: center;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.calendar__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ebebeb;
    height: 35px;
    margin-top: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.calendar__last-month {
    display: inline-flex;
    width: 30px;
    height: 20px;
    background: url('../img/green-left.png') no-repeat;
    background-size: 12px 12px;
    background-position: center center;
    z-index: 3;
    position: relative;
    cursor: pointer;
}

.calendar {
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    margin-bottom: 50px;
}

.calendar__next-month {
    display: inline-flex;
    width: 30px;
    height: 20px;
    background: url('../img/green-right.png') no-repeat;
    background-size: 12px 12px;
    background-position: center center;
    z-index: 3;
    cursor: pointer;
}

.calendar__day {
    border: 1px solid transparent;
    transition: all .3s;
    cursor: pointer;
}

    .calendar__day:hover {
        border: 1px solid #016e37;
    }

.calendar__day--dot span {
    position: relative;
    display: inline-flex;
    align-items: center;
}

    .calendar__day--dot span::after {
        display: inline-flex;
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: absolute;
        right: -16px;
    }

.calendar__day--active span::after {
    background: #016e37;
}

.calendar__day--inactive span::after {
    background: #aaa;
}

.calendar__day--current-day.calendar__day--dot span::after {
    background: #fff;
}

.calendar__day--current-day {
    background: #016e37;
    color: #fff;
}

.calendar__day--no-menu {
    background: #ebebeb;
}

.calendar__day--holiday {
    background: #c52122;
    color: #fff;
}

.calendar__body {
    padding: 20px 10px;
    position: relative;
}

.calendar__next-day {
    background: url('../img/white-right.png') no-repeat;
    right: -50px;
}

.calendar__last-day {
    background: url('../img/white-left.png') no-repeat;
    left: -50px;
}

.calendar__next-day,
.calendar__last-day {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-size: 32px 32px;
    background-position: center center;
    cursor: pointer;
}

@media(max-width: 980px) {
    .calendar__day {
        height: 19px;
    }

    .calendar__day--dot span::after {
        width: 8px;
        height: 8px;
        right: -12px;
    }

    .calendar__days,
    .calendar__nav {
        grid-gap: 10px 4px;
    }

    .calendar__body {
        padding: 10px 5px;
        position: relative;
    }

    .calendar-grid {
        margin-left: 10px;
        margin-right: 10px;
    }

    .calendar__next-day {
        right: -25px;
    }

    .calendar__last-day {
        left: -25px;
    }

    .calendar__next-day,
    .calendar__last-day {
        width: 24px;
        height: 24px;
        background-size: 24px 24px;
    }
}

.meal {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    padding-bottom: 50px;
    padding-right: 40px;
    display: flex;
    position: relative;
    justify-content: space-between;
    margin-bottom: 20px;
}

.meal__order {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: gray;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.meal__order--active {
    background-color: #016e37;
}

.meal__order img {
    width: 24px;
    transform: translateY(2px);
}

@media(max-width: 980px) {
    .meal__order {
        width: 32px;
        height: 32px;
    }

        .meal__order img {
            width: 18px;
            transform: translateY(2px);
        }
}

.meal__quantity {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .meal__quantity input::-webkit-outer-spin-button,
    .meal__quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .meal__quantity input[type=number] {
        -moz-appearance: textfield;
    }

    .meal__quantity .meal__number,
    .meal__quantity input {
        width: 40px;
        height: 30px;
        outline: none !important;
        border: none !important;
        font-size: 18px;
        text-align: center;
        font-weight: 600;
    }

    .meal__quantity .meal__number {
        color: #000;
    }

.meal__quantity-plus,
.meal__quantity-minus {
    background-color: #016e37;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .meal__quantity-plus img,
    .meal__quantity-minus img {
        width: 22px;
        height: 22px;
    }

@media(max-width: 980px) {
    .meal__quantity-plus,
    .meal__quantity-minus {
        background-color: #016e37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .meal__quantity-plus img,
        .meal__quantity-minus img {
            width: 18px;
            height: 18px;
        }
}

.meal__img {
    width: 200px;
}

    .meal__img img {
        max-width: 100%;
        border-radius: 5px;
    }

.meal__text {
    width: calc(100% - 230px);
    color: #000;
}

.meal__content {
    display: none;
}

.meal__title {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.meal__title-text {
    font-weight: 600;
    font-size: 18px;
    margin-right: 20px;
}

.meal__title-btn {
    background-color: #d6d6d6;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 600;
}

.text {
    font-weight: 500;
    margin-bottom: 15px;
}

    .text span {
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
        color: #016e37;
    }

.meal__read-more-btn {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

@media(max-width: 767px) {
    .meal {
        flex-direction: column;
    }

    .meal__img {
        width: 150px;
    }

    .meal__text {
        width: 100%;
        color: #000;
    }

    .meal__content {
        display: none;
    }

    .meal__title {
        position: absolute;
        top: 20px;
        left: 185px;
        right: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .meal__title-text {
        font-size: 16px;
        margin-right: 0;
    }

    .meal__title-btn {
        height: 32px;
        margin-top: 10px;
    }

    .meal__desc {
        margin-top: 20px;
    }

    .meal__desc-mobile {
        display: none;
    }
}

@media(max-width: 480px) {
    .meal__img {
        width: 90%;
    }

    .meal__title {
        position: static;
    }

    .meal__title-text {
        font-size: 16px;
        margin-right: 0;
    }

    .meal__title-btn {
        height: 32px;
        margin-top: 10px;
    }

    .meal__desc {
        margin-top: 20px;
    }

    .meal__desc-mobile {
        display: none;
    }
}

.summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 20px;
}

.summary__col {
    display: flex;
}

    .summary__col:last-child {
        flex-direction: column;
    }

.btn-summary {
    border: 1px solid #fff;
    font-size: 14px;
    line-height: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    padding: 8px 25px;
    border: 1px solid rgb(35, 35, 35);
    background-color: #232323;
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    height: 39px;
    align-items: center;
    justify-content: center;
}

.summary .text {
    margin-left: 20px;
}

.theme-light .summary .text {
    color: #fff;
}

.theme-light .summary .text {
    color: #000;
}

.text .sum {
    display: flex;
    width: 100%;
    font-size: 18px;
}

.theme-dark .text .sum {
    color: #fff;
}

.btn-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    text-align: right;
    display: block;
    text-transform: uppercase;
}

.summary .btn {
    display: inline-flex;
    padding-left: 10px;
    padding-right: 10px;
    align-self: flex-end;
    text-decoration: none;
    margin-top: 0;
}

@media(max-width: 767px) {
    .summary {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .summary__col {
        display: flex;
    }

        .summary__col:last-child {
            flex-direction: column;
        }

    .btn-summary {
        font-size: 12px;
        line-height: 12px;
        padding: 8px 10px;
        height: 39px;
    }

    .summary .text {
        color: #fff;
        margin-left: 15px;
    }

    .text .sum {
        font-size: 16px;
    }

    .btn-link {
        color: #fff;
        font-size: 12px;
        text-align: center;
        display: block;
        text-transform: uppercase;
    }

    .summary .btn {
        font-size: 12px;
        align-self: center;
    }
}

.wallet-status {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    padding-top: 60px;
    padding-bottom: 40px;
}

.wallet-status__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}

    .wallet-status__item span {
        padding-top: 20px;
        font-size: 32px;
        font-weight: 600;
        color: #016e37;
    }

.wallet-max {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.wallet-form__title {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-top: 60px;
}

.wallet-form__wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 50px;
    margin-bottom: 30px;
}

.wallet-form__item input {
    display: none;
}

.wallet-form__wrap-btn {
    display: flex;
}

.wallet-form__item {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.wallet-form__item--active {
    background-color: #016e37;
    color: #fff;
}

.wallet-form__last .form__item {
    padding-top: 0;
}

@media(max-width: 767px) {
    .wallet-status {
        grid-template-columns: 1fr;
        grid-gap: 35px;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .wallet-status__item {
        font-size: 16px;
    }

        .wallet-status__item span {
            padding-top: 5px;
            font-size: 25px;
        }

    .wallet-form__wrap {
        flex-direction: column;
        margin-top: 30px;
        margin-bottom: 20px;
        width: 100%;
    }

    .wallet-form__wrap-btn {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    .wallet-form__item {
        margin-right: 0;
        display: flex;
        width: 100%;
    }

    .wallet-form__last {
        width: 100%;
    }
}

.orders-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.orders-heading__link {
    font-size: 18px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
}

.orders-heading__link--active {
    font-weight: 900;
}

.orders-tab {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.orders-tab__link {
    font-weight: normal;
    font-size: 14px;
    margin-right: 30px;
    text-transform: uppercase;
    cursor: pointer;
}

.orders-tab__link--active {
    font-weight: 900;
}

.orders-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 40px;
}

.orders-filters__link {
    font-weight: normal;
    font-size: 12px;
    margin: 10px;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.orders-filters__link--active {
    font-weight: 900;
    background-color: #016e37;
    color: #fff;
}

@media(max-width: 767px) {
    .orders-heading__link {
        font-size: 14px;
        font-weight: normal;
        color: #fff;
        text-decoration: none;
    }

    .orders-tab {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 30px;
    }

    .orders-tab__link {
        text-align: center;
    }
}

.orders-list {
    display: flex;
    flex-direction: column;
}

.orders-list--margin {
    margin-top: 30px;
}

.orders-list__item {
    display: grid;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    color: #000;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin-bottom: 20px;
}

.orders-list__item--img {
    display: flex;
    gap: 0;
}

.orders-list__img {
    width: 220px;
}

    .orders-list__img img {
        border-radius: 5px;
        width: 220px;
    }

.orders-list__date {
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 20px;
}

    .orders-list__date span {
        font-weight: bold;
    }

.orders-list__col {
    padding-left: 30px;
    width: calc(50% - 110px);
}

.orders-list__saldo {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
}

    .orders-list__saldo span {
        color: #016e37;
    }

.orders-list__details {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 20px;
}

.orders-list__details-text {
    font-weight: 500;
    font-size: 14px;
}

.orders-list__read-more {
    display: none;
}

.orders-list__details--margin {
    margin-top: 20px;
}

.orders-list__data-mobile {
    display: none;
}

.orders-list__data-desktop {
    display: block;
}

@media(max-width: 767px) {
    .orders-list__item--img {
        flex-direction: column;
        grid-gap: 10px !important;
    }

    .orders-list__img {
        display: flex;
        width: 100%;
    }

        .orders-list__img img {
            width: 120px;
        }

    .orders-list__col {
        padding-left: 0;
        width: 100%;
    }

    .orders-list__data-mobile {
        display: block;
        width: calc(100% - 120px);
        padding-left: 20px;
    }

    .orders-list__data-desktop {
        display: none;
    }

    .orders-list__item {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .orders-list__date {
        font-size: 16px;
    }

    .orders-list__details-text {
        height: 40px;
        overflow: hidden;
    }

    .orders-list__read-more {
        display: block;
        margin-top: 13px;
        text-decoration: underline;
        cursor: pointer;
    }
}

.opinion {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-top: 60px;
}

.opinion__item {
    background: #fff;
    color: #232323;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 5px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all .3s;
}

    .opinion__item:hover {
        border: 3px solid #016e37;
        transition: all .3s;
    }

    .opinion__item img {
        align-self: center;
        margin-bottom: 25px;
        max-width: 66px;
    }

.opinion__text {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.opinion__more-info {
    display: none;
    position: absolute;
    z-index: 22;
    top: -3px;
    left: -3px;
    right: -3px;
    background-color: #ebebeb;
    border-radius: 5px;
    padding: 20px 10px;
}

.opinion__more-info--active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.opinion__more-info-text {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 20px;
}

.opinion__btn {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #fff;
    text-align: center;
    height: 45px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: left;
}

.opinion__btn--active {
    background-color: #c52122;
    color: #fff;
}

.opinion__more-info input {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 12px;
    padding-left: 10px;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-weight: 600;
}

.btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media(max-width: 767px) {
    .opinion {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .opinion__item {
        width: calc(50% - 20px);
        height: 200px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.opinion-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.opinion-msg__text {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.opinion-msg__link {
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.comment {
    font-style: italic;
}

    .comment .note {
        color: #ccc;
    }

.editable {
    cursor: pointer;
}

.theme-light .nav__item {
    color: #000;
}

.theme-light .header.header--scroll {
    background-color: rgba(255, 255, 255, .8);
}

.theme-light .hamburger .hamburger__line {
    background-color: #000;
}

@media(max-width: 980px) {
    .nav {
        background-color: rgba(255, 255, 255, .9);
    }
}

.theme-light .calendar__next-day {
    background: url('../img/black-right.png') no-repeat;
    background-size: 24px 24px;
}

.theme-light .calendar__last-day {
    background: url('../img/black-left.png') no-repeat;
    background-size: 24px 24px;
}

@media(max-width: 980px) {
    .theme-light .calendar__next-day {
        background-size: 16px 16px;
        background-position: center;
    }

    .theme-light .calendar__last-day {
        background-size: 16px 16px;
        background-position: center;
    }
}

.theme-light .login__lang-link {
    color: #000;
}

.theme-light .form__input {
    background-color: #fff;
}

.theme-light .form__info-text
.theme-light .form__info-link
.theme-light .form__title
.theme-light .footer__text
.theme-light .summary .text
.theme-light .text .sum
.theme-light .btn-link
.theme-light .orders-heading__link
.theme-light .opinion-msg__text
.theme-light .opinion-msg__link {
    color: #000;
}

.theme-light .page-sep {
    border-bottom: 1px solid #000;
    color: #000;
}

.theme-light .orders-tab {
    border-bottom: 1px solid #000;
}

.form__btn-wrap--center {
    align-items: center;
    justify-content: center;
}

.meal__order {
    border: 1px solid #016e37;
    background-color: #fff;
}

    .meal__order img {
        display: none;
    }

.meal__order--active {
    background-color: #016e37;
}

    .meal__order--active img {
        display: inline-flex;
    }

@media(min-width: 981px) {
    .hide-desktop {
        display: none;
    }

    .header__account-link {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .header__account {
        position: relative;
    }

    .header__account-nav {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 44px;
        left: 0;
        background-color: #f8f8f8;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transition: all .3s;
        padding: 20px 15px;
    }

    .theme-light .header__account-nav {
        background-color: #e9e9e9;
    }

    .header__account-nav-link {
        font-size: 14px;
        line-height: 19px;
        letter-spacing: 2px;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 600;
        transition: all .3s;
        text-decoration: none;
        color: rgb(35, 35, 35);
        padding: 5px 0;
        display: flex;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .header__account-nav-link--last {
        border-top: 1px solid rgba(35, 35, 35, .3);
        margin-top: 10px;
        padding-top: 15px;
    }

    .header__account:hover {
        transition: all 0;
        border-top-right-radius: 22px;
        border-top-left-radius: 22px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

        .header__account:hover .header__account-nav {
            visibility: visible;
            opacity: 1;
            transition: all .3s;
        }

    .header__account-nav-link:hover {
        text-decoration: underline;
    }
}

@media(max-width: 980px) {
    .theme-dark .nav {
        background-color: rgba(255, 255, 255, 1);
    }

    .header__account-nav {
        display: flex;
        flex-direction: column;
    }

    .header__account {
        order: -1;
        margin-bottom: 20px;
    }
}

.loader-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    transform: translate(-50%,-50%);
}

.loader,
.loader::after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    margin: 0 auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(135, 135, 135, .8);
    border-right: 1.1em solid rgba(135, 135, 135, .8);
    border-bottom: 1.1em solid rgba(135, 135, 135, .8);
    border-left: 1.1em solid green;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translate(-50%, -50%);
    transform: translateZ(0);
    -webkit-animation: load 1.1s infinite linear;
    animation: load 1.1s infinite linear;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
