html {
    background-color: black;
    padding: 0;
    margin: 0;
    border: 0;
}

/* убрать полосу прокрутки для всей страницы */
::-webkit-scrollbar {
    width: 0;
    display: none;
}

body {
    margin: 0;
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    letter-spacing: -1px;
    font-weight: 100;
}

@font-face {
	font-family: 'Sangha'; 
	src: url(../assets/font/Sangha.ttf);
}

@font-face {
	font-family: 'Montserrat'; 
	src: url(../assets/font/Montserrat.ttf);
}

.bodyFix {
    overflow: hidden !important;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    margin: 0;
}

.spinner__style {
    width: 80px;
    height: 80px;
    background: black;
}

.wrapper {
    background-color: white;
    height: 100vh;
    width: 100vw;
    user-select: none;
}

.decor_blur_body__left {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -34px;
    left: -90px;
    background: #D62D30;
    filter: blur(350px);
    z-index: -999;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .decor_blur_body__left {
        width: 350px;
        filter: blur(300px);
        height: 350px;
        left: -180px;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .decor_blur_body__left {
        width: 300px;
        height: 300px;
        filter: blur(250px);
        left: -150px;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .decor_blur_body__left {
        width: 200px;
        height: 200px;
        filter: blur(150px);
        /* left: -90px; */
    }
}
@media (max-width: 320px) {
    .decor_blur_body__left {
        width: 200px;
        height: 200px;
        filter: blur(150px);
        left: -90px;
    }
}

.decor_blur_body__right {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -34px;
    right: -90px;
    background: #D62D30;
    filter: blur(350px);
    z-index: -999;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .decor_blur_body__right {
        width: 350px;
        height: 350px;
        filter: blur(300px);
        right: -180px;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .decor_blur_body__right {
        width: 300px;
        height: 300px;
        filter: blur(250px);
        right: -150px;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .decor_blur_body__right {
        width: 200px;
        height: 200px;
        filter: blur(150px);
        right: -90px;
    }
}
@media (max-width: 320px) {
    .decor_blur_body__right {
        width: 200px;
        height: 200px;
        filter: blur(150px);
        right: -90px;
    }
}


.wrapper__container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: black;
    animation: name 0.5s ease;
    position: relative;
}

.basket__icon-wrap {
    position: fixed;
    bottom: 5rem;
    right: 0;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px) contrast(100%);
    -webkit-backdrop-filter: blur(4px) contrast(100%);
    transition: all 0.3s;
    transform: translateX(200%);
    cursor: pointer;
}
.basket__icon-text {
    color: black;
    font-size: 1.9rem;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    position: relative;
}
.basket__image {
    width: 30px;
    height: 30px;
}
.basket__quantity-text {
    color: white;
    background: red;
    width: 15px;
    height: 15px;
    padding: 5px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: 20px;
}
.basket__image-active {
    transform: translateX(0%);
}
.empty-basket {
    display: none;
}

.top__btn {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    margin: 1rem;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
    border-radius: 50%;
    backdrop-filter: blur(4px) contrast(100%);
    -webkit-backdrop-filter: blur(4px) contrast(100%);
    transform: translateY(200%);
    transition: all 0.3s;
    overflow: hidden;
}

.btn__active {
    transform: translateY(0%);
}

.top__btn-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-element {
    width: 20px;
    height: 3px;
    background: black;
    border-radius: 2px;
}
.btn_element-left {
    position: absolute;
    top: 23px;
    left: 9px;
    transform: rotate(135deg);
}
.btn_element-right {
    transform: rotate(45deg);
    position: absolute;
    top: 23px;
    right: 9px;
}

/* ------------------- CONTENT -------------------  */
.content__container {
    display: flex;
    flex: 1 1 auto;
    font-size: 2rem;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1400px) {
    .content__container {
        /* background: red; */
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* main */
.content__main {
    flex: 1;
    color: hsl(0, 0%, 80%);
    max-width: 1300px;
    padding-bottom: 5rem;
    overflow: hidden;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .content__main {
        padding-bottom: 3rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .content__main {
        padding-bottom: 2.5rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .content__main {
        padding-bottom: 2rem;
    }
}
@media (max-width: 320px) {
    .content__main {
        padding-bottom: 2rem;
    }
}


/* Картинка с палочками */
.content__background {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -999;
}

@media (min-width: 1001px) and (max-width: 1300px) {
    .content__background {
        height: 31%;
        top: 6.5%;
        right: 0;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .content__background {
        height: 29%;
        top: 6.5%;
        right: 0;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .content__background {
        display: none;
    }
}
@media (max-width: 320px) {
    .content__background {
        display: none;
    }
}

/* Информация о ком сайт */
.main__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: green; */
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.main__title-fio {
    color: white;
    font-size: 1.7rem;
    font-family: 'Sangha';
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .main__title-fio {
        font-size: 1.7rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__title-fio {
        font-size: 1.5rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__title-fio {
        font-size: 1.2rem;
    }
}
@media (max-width: 320px) {
    .main__title-fio {
        font-size: 1rem;
    }
}

.main__title-icons {
    display: flex;
    flex-direction: row;
}
.title__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
    padding: 0.5rem;
    transition: all 0.4s;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .title__icon-wrap {
        margin-left: 2rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .title__icon-wrap {
        margin-left: 2rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .title__icon-wrap {
        margin-left: 0.1rem;
    }
}
@media (max-width: 320px) {
    .title__icon-wrap {
        margin-left: 0.5rem;
    }
}

.title__icon-wrap:hover {
    transform: scale(0.7);
}
.title__icon-style {}


/* Блок с баннером */
.main__banner {
    margin-top: 11rem;
    margin-bottom: 15rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .main__banner {
        /* margin-top: 7rem; */
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__banner {
        /* margin-top: 5rem; */
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__banner {
        margin-top: 1.3rem;
        margin-bottom: 4rem;
        align-items: center;
    }
}
@media (max-width: 320px) {
    .main__banner {
        margin-top: 1.3rem;
        margin-bottom: 2rem;
        align-items: center;
    }
}

.main__banner-text {
    color: white;
    font-size: 4rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 2px;
    font-family: 'Sangha';
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .main__banner-text {
        font-size: 3.5rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__banner-text {
        font-size: 2.4rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__banner-text {
        font-size: 2rem;
        text-align: center;
    }
}
@media (max-width: 320px) {
    .main__banner-text {
        font-size: 2rem;
        text-align: center;
    }
}

.main__banner-text-red {
    color: #D62D30;
}


/* тайтл для карточек */
.main__cards-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: 'Montserrat'; 
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .main__cards-title {
        font-size: 1.7rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__cards-title {
        font-size: 1.5rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__cards-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 320px) {
    .main__cards-title {
        font-size: 1.2rem;
    }
}

.card__title-red {
    color: #D62D30;
}

/* блок с картами */
.main__cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 4rem;
    overflow-x: auto;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .main__cards {
        justify-content: center;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__cards {
        justify-content: center;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__cards {
        justify-content: flex-start;
    }
}
@media (max-width: 320px) {
    .main__cards {
        justify-content: flex-start;
    }
}

.main__card-item {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;;
}
.main__card-time {
    /* margin-top: 1rem; */
    user-select: all;
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Montserrat';
    letter-spacing: 0.5px;
}
.main__card-description {
    margin-top: 0.5rem;;
    color: grey;
    font-size: 1.1rem;
    white-space: nowrap;
    text-overflow: clip;
    font-family: 'Montserrat';
}

/* Блок с меню */
.main__menu {
    display: flex;
    flex-direction: column;
}

/* Заголовок МЕНЮ */
.main__menu-title {
    font-size: 3rem;
    font-weight: 200;
    text-align: left;
    font-family: 'Sangha';
    color: white;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .main__menu-title {
        font-size: 3rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__menu-title {
        font-size: 2.3rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__menu-title {
        font-size: 2rem;
    }
}
@media (max-width: 320px) {
    .main__menu-title {
        font-size: 1.5rem;
    }
}

/* Строка с лейболами */
.main__menu-labels {
    
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    /* width: 100%; */
    flex: 1;
    overflow-x: auto;
    /* position: sticky;
    top: 0;
    background: black; */
}
/* @media (min-width: 1001px) and (max-width: 1300px) {
    .main__menu-labels {
        margin-bottom: 1.6rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__menu-labels {
        margin-bottom: 1.4rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__menu-labels {
        margin-bottom: 1rem;
    }
}
@media (max-width: 320px) {
    .main__menu-labels {
        margin-bottom: 1rem;
    }
} */

.menu__label-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D62D30;
    border-radius: 1.2rem;
    margin-right: 1rem;
    white-space: nowrap;
    transition: all 0.4s;
    cursor: pointer;
}
.menu__label-wrap:hover {
    transform: scale(0.9);
    background: #af2325;
}
.menu__label-text {
    color: white;
    font-size: 0.8rem;
    letter-spacing: 1.1px;
    padding: 0.7rem;
    font-family: 'Montserrat';

}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__label-text {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__label-text {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__label-text {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}
@media (max-width: 320px) {
    .menu__label-text {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

/* Название категории */
.main__menu-title-category {
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 1rem;
    margin-top: 5rem;
    background: linear-gradient(140deg, #2F1B1B, #2f1b1b00);
    padding: 0.5rem 0rem 0.5rem 0.5rem;
    border-radius: 1rem;
    font-family: 'Montserrat';
}
.main__menu-title-category-first {
    margin-top: 1rem !important;
}

@media (min-width: 1001px) and (max-width: 1300px) {
    .main__menu-title-category {
        font-size: 1.8rem;
        margin-top: 5rem;
    }
    .main__menu-title-category-first {
        margin-top: 1rem !important;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .main__menu-title-category {
        font-size: 1.5rem;
        margin-top: 3rem;
    }
    .main__menu-title-category-first {
        margin-top: 1rem !important;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .main__menu-title-category {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    .main__menu-title-category-first {
        margin-top: 0.5rem !important;
    }
}
@media (max-width: 320px) {
    .main__menu-title-category {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    .main__menu-title-category-first {
        margin-top: 0.5rem !important;
    }
}


.main__menu-list {
    /* background: green; */
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}



.menu__items-row {
    display: flex;
    flex-direction: row;
}

.menu__item {
    flex: 0 0 25%;
    display: flex;
    transition: all 0.4s;
    cursor: pointer;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__item {
        flex: 0 0 33.33333%;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__item {
        flex: 0 0 33.33333%;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__item {
        flex: 0 0 50%;
    }
}
@media (max-width: 320px) {
    .menu__item {
        flex: 0 0 50%;
    }
}

.menu__item:hover {
    transform: scale(0.9);
}
.menu__item-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.menu__item-img {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__item-img {
        height: 350px;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__item-img {
        height: 350px;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__item-img {
        height: 200px;
    }
}
@media (max-width: 320px) {
    .menu__item-img {
        height: 200px;
    }
}

.img__cover {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.menu__wrap-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.menu__item-title {
    text-align: left;
    color: white;
    font-size: 1.3rem;
    font-family: 'Montserrat';
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__item-title {
        font-size: 1.3rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__item-title {
        font-size: 1.1rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__item-title {
        font-size: 1rem;
        padding-bottom: 0.5rem;
        flex: 1;
    }
}
@media (max-width: 320px) {
    .menu__item-title {
        font-size: 1rem;
        padding-bottom: 0.5rem;
        flex: 1;
    }
}

.menu__item-energy {
    text-align: left;
    color: hsl(0, 0%, 60%);
    font-size: 1rem;
    padding-top: 0.5rem;
    font-weight: 600;
    font-family: 'Montserrat';
    letter-spacing: 0.5px;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__item-energy {
        font-size: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__item-energy {
        font-size: 1rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__item-energy {
        font-size: 0.9rem;
        display: none;
    }
}
@media (max-width: 320px) {
    .menu__item-energy {
        font-size: 1rem;
        display: none;
    }
}

.menu__item-description {
    text-align: left;
    color: #808080;
    font-size: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    flex: 1;
    font-family: 'Montserrat';
    letter-spacing: 0.3px;
    font-weight: 100;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__item-description {
        font-size: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__item-description {
        font-size: 1rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__item-description {
        display: none;
        font-size: 0.8rem;
    }
}
@media (max-width: 320px) {
    .menu__item-description {
        font-size: 1rem;
        display: none;
    }
}

.menu__item-total {
    color: white;
    text-align: left;
    font-size: 1.5rem;
    border-top: 1px solid #2F1B1B;
    padding-top: 0.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Montserrat';
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .menu__item-total {
        font-size: 1.5rem;
        padding-top: 0.6rem;
        border-top: 1px solid #2F1B1B;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .menu__item-total {
        font-size: 1.3rem;
        padding-top: 0.6rem;
        border-top: 1px solid #2F1B1B;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .menu__item-total {
        font-size: 1.2rem;
        padding-top: 0.6rem;
        border-top: 1px solid #2F1B1B;
    }
}
@media (max-width: 320px) {
    .menu__item-total {
        font-size: 1.2rem;
        padding-top: 0.6rem;
        border-top: 1px solid #2F1B1B;
    }
}



/* ------------------- FOOTER -------------------  */
.footer__container {
    background-color: black;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer__loyalty {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
    width: 100%;
}
.loyalty__text {
    color: black;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: 'Sangha';
}

@media (min-width: 1001px) and (max-width: 1300px) {
    .loyalty__text {
        font-size: 2rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .loyalty__text {
        font-size: 1.7rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .loyalty__text {
        font-size: 1.5rem;
    }
}
@media (max-width: 320px) {
    .loyalty__text {
        font-size: 1rem;
    }
}


.loyalty__text-red {
    color: #D62D30;
}

.footer__main {
    background: #D62D30;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
}
.footer__main-wrap {
    max-width: 1300px;
    /* float: 1; */
    display: flex;
    /* background: green; */
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 320px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 320px) {
    .footer__main-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
.footer__main-fio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    color: white;
}
.footer__main-fio-text {
    color: white;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 600;
    padding: 0.3rem;
    font-family: 'Sangha';
}

@media (min-width: 1001px) and (max-width: 1300px) {
    .footer__main-fio-text {
        font-size: 2rem;
        padding: 0.3rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .footer__main-fio-text {
        font-size: 1.7rem;
        padding: 0.2rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .footer__main-fio-text {
        font-size: 1.5rem;
        padding: 0.1rem;
    }
}
@media (max-width: 320px) {
    .footer__main-fio-text {
        font-size: 1rem;
        padding: 0.1rem;
    }
}

.footer__main-time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    color: white;
}
.footer__main-time-text {
    user-select: all;
    color: white;
    text-align: left;
    font-size: 1.5rem;
    padding: 0.3rem;
    font-family: 'Montserrat';
    letter-spacing: 1px;
}

@media (min-width: 1001px) and (max-width: 1300px) {
    .footer__main-time-text {
        font-size: 1.5rem;
        padding: 0.3rem;
        letter-spacing: 1px;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .footer__main-time-text {
        font-size: 1.3rem;
        padding: 0.3rem;
        letter-spacing: 1px;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .footer__main-time-text {
        font-size: 0.85rem;
        padding: 0.2rem;
        letter-spacing: -1px;
    }
}
@media (max-width: 320px) {
    .footer__main-time-text {
        font-size: 0.85rem;
        padding: 0.2rem;
        letter-spacing: -1px;
    }
}


.footer__main-icons {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    color: white;
    /* background: gold; */
}
.footer__main-icons-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    margin-top: 0.4rem;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .footer__main-icons-row {
        margin-bottom: 0.4rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .footer__main-icons-row {
        margin-bottom: 0.3rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .footer__main-icons-row {
        margin-bottom: 0.2rem;
    }
}
@media (max-width: 320px) {
    .footer__main-icons-row {
        margin-bottom: 0.1rem;
    }
}


.footer__main-icons-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.4s;
}
@media (min-width: 1001px) and (max-width: 1300px) {
    .footer__main-icons-item {
        margin-left: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .footer__main-icons-item {
        margin-left: 0.8rem;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .footer__main-icons-item {
        margin-left: 0.4rem;
    }
}
@media (max-width: 320px) {
    .footer__main-icons-item {
        margin-left: 0.2rem;
    }
}

.footer__main-icons-item:hover {
    transform: scale(0.7);
}


.basket__wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.567);
    backdrop-filter: blur(4px) contrast(100%);
    -webkit-backdrop-filter: blur(4px) contrast(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: scale(0); */
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0;
}

.view-basket {
    transform: translateY(0%);
    opacity: 1;
}

.basket__modal {
    width: 700px;
    height: 80%;
    max-height: 1000px;
    background: white;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    position: relative;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__modal {
        width: 85%;
        height: 60%;
        padding: 0.8rem;
        flex-direction: column;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__modal {
        width: 85%;
        height: 80%;
        padding: 0.5rem;
        flex-direction: column;
    }
}
@media (max-width: 319px) {
    .basket__modal {
        width: 85%;
        height: 80%;
        flex-direction: column;
    }
}

.basket__modal-title {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket__modal-title-text {
    font-size: 1.8rem;
    color: black;
    font-weight: bold;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__modal-title-text {
        font-size: 1.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__modal-title-text {
        font-size: 1.3rem;
    }
}
@media (max-width: 319px) {
    .basket__modal-title-text {
        font-size: 1.1rem;
    }
}

.basket__modal-img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__modal-img {
        width: 20px;
        height: 20px;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__modal-img {
        width: 16px;
        height: 16px;
    }
}
@media (max-width: 319px) {
    .basket__modal-img {
        width: 16px;
        height: 16px;
    }
}

.basket__main {
    flex: 1;
    overflow: auto;
}
.basket__item {
    padding: 1rem;
    margin-bottom: 10px;
    display: flex;
    border-bottom: 1px solid grey;
    transition: all 0.3s;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__item {
        padding: 0.8rem;
        margin-bottom: 8px;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__item {
        padding: 0.3rem;
        margin-bottom: 5px;
    }
}
@media (max-width: 319px) {
    .basket__item {
        padding: 0.3rem;
        margin-bottom: 5px;
    }
}

.basket__message-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: black;
}

.basket__img-empty {
    width: 200px;
    height: 200px;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__img-empty {
        width: 180px;
        height: 180px;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__img-empty {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 319px) {
    .basket__img-empty {
        width: 150px;
        height: 150px;
    }
}

.basket__text-empty {
    color: black;
    font-weight: 600;
    padding-top: 1rem;
    font-size: 1.8rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__text-empty {
        font-size: 1.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__text-empty {
        font-size: 1.3rem;
    }
}
@media (max-width: 319px) {
    .basket__text-empty {
        font-size: 1.3rem;
    }
}

.basket__message-text {
    padding: 1rem;
    font-weight: 600;
    color: black;
}

.basket__complete-img {
    width: 200px;
    height: 200px;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__complete-img {
        width: 180px;
        height: 180px;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__complete-img {
        width: 160px;
        height: 160px;
    }
}
@media (max-width: 319px) {
    .basket__complete-img {
        width: 160px;
        height: 160px;
    }
}

.basket__complete-text {
    font-weight: 600;
    color: black;
    padding-top: 1rem;
    font-size: 1.6rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__complete-text {
        font-size: 1.4rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__complete-text {
        font-size: 1.2rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 319px) {
    .basket__complete-text {
        font-size: 1.2rem;
        padding-right: 0.5rem;
    }
}

.basket__error-img {
    width: 200px;
    height: 200px;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__error-img {
        width: 180px;
        height: 180px;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__error-img {
        width: 160px;
        height: 160px;
    }
}
@media (max-width: 319px) {
    .basket__error-img {
        width: 160px;
        height: 160px;
    }
}

.basket__error-text {
    text-align: center;
    font-weight: 600;
    padding: 1rem;
    font-size: 1.6rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__error-text {
        font-size: 1.4rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__error-text {
        font-size: 1.2rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 319px) {
    .basket__error-text {
        font-size: 1.2rem;
        padding-right: 0.5rem;
    }
}

.basket__btn-again {
    background: white;
    color: red;
    font-weight: bold;
    border: 1px solid red;
    font-size: 1.3rem;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__btn-again {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__btn-again {
        font-size: 1.1rem;
        padding-right: 0.5rem;
        padding: 0.3rem;
    }
}
@media (max-width: 319px) {
    .basket__btn-again {
        font-size: 1.1rem;
        padding-right: 0.5rem;
        padding: 0.3rem;
    }
}

.basket__item:hover {
    border-bottom: 1px solid red;
}
.basket__item-name {
    font-weight: 600;
    font-size: 1.5rem;
    flex: 0.7;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__item-name {
        font-size: 1.2rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__item-name {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 319px) {
    .basket__item-name {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
}

.bask__item-quantity {
    color: black;
    font-weight: 600;
    font-size: 1.4rem;
    flex: 0.3;
    display: flex;
}
.basket__item-btn-dec {
    flex: 0.3333;
    background: white;
    color: black;
    border: 1px solid black;
    padding: 0.3rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 15px;
}
.basket__item-btn-dec:hover {
    transform: scale(0.9);
}

.basket__item-btn-inc {
    flex: 0.3333;
    background: red;
    color: white;
    padding: 0.3rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 15px;
}
.basket__item-btn-inc:hover {
    transform: scale(0.9);
}

.basket__item-number {
    flex: 0.3333;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 1.4rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__item-number {
        font-size: 1.4rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__item-number {
        font-size: 1rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}
@media (max-width: 319px) {
    .basket__item-number {
        font-size: 1rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}

.basket__customer {
    display: flex;
    flex-direction: column;
    overflow: auto;
}
.basket__customer-hidden {
    display: none;
}

.basket__customer-row {
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__customer-row {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__customer-row {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}
@media (max-width: 319px) {
    .basket__customer-row {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}

.basket__row-field {
    flex: 0.3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    font-weight: bold;
}

input::placeholder { color: grey; }

.basket__row-value {
    width: 100%;
    display: flex;
}
.basket__input {
    flex: 1;
    border: none;
    background: white;
    font-size: 1.3rem;
    color: black;
    font-weight: bold;
    padding: 0.5rem;
    padding-left: 1rem;
    border-bottom: 1px solid grey;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__input {
        font-size: 1.3rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__input {
        font-size: 1.1rem;
    }
}
@media (max-width: 319px) {
    .basket__input {
        font-size: 1.1rem;
    }
}

.basket__input:focus {
    outline: none;
}

.basket__input-phone {
    flex: 1;
    border: none;
    background: white;
    padding: 0.5rem;
    font-size: 1.3rem;
    color: black;
    font-weight: bold;
    padding: 0.5rem;
    padding-left: 1rem;
    border-bottom: 1px solid grey;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__input-phone {
        font-size: 1.3rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__input-phone {
        font-size: 1.1rem;
    }
}
@media (max-width: 319px) {
    .basket__input-phone {
        font-size: 1.1rem;
    }
}

.basket__input-phone:focus {
    outline: none;
}

.basket__control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__control {
        justify-content: flex-end;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__control {
        justify-content: center;
    }
}
@media (max-width: 319px) {
    .basket__control {
        justify-content: center;
    }
}

.basket__btn {
    color: white;
    font-size: 1.5rem;
    background: red;
    padding: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
}
@media (min-width: 501px) and (max-width: 860px) {
    .basket__btn {
        font-size: 1.3rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__btn {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}
@media (max-width: 319px) {
    .basket__btn {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}
/* .basket__btn:hover { */
/*     opacity: 0.6; */
/* } */

.modal__wrap {
    position: fixed;
    top: 0;
    right: 0;
    /* width: 100vw; */
    width: 100%;
    /* height: 100vh; */
    height: 100%;
    background: rgba(0, 0, 0, 0.567);
    backdrop-filter: blur(4px) contrast(100%);
    -webkit-backdrop-filter: blur(4px) contrast(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: scale(0); */
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0;
}

.view-modal {
    /* transform: scale(1); */
    opacity: 1;
    transform: translateY(0);
}

.modal__container {
    width: 80%;
    max-width: 800px;
    height: 50%;
    max-height: 500px;
    background: white;
    box-shadow: 0px 0px 30px 3px hsl(0, 0%, 30%);
    border-radius: 2rem;
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 999;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__container {
        width: 80%;
        max-width: 700px;
        height: 70%;
        max-height: 700px;
        flex-direction: column;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__container {
        width: 90%;
        max-width: 470px;
        height: 85%;
        max-height: 630px;
        max-width: none;
        flex-direction: column;
    }
}
@media (max-width: 319px) {
    .modal__container {
        width: 90%;
        max-width: 300px;
        height: 85%;
        max-height: 630px;
        flex-direction: column;
    }
}

.modal__img-container {
    flex: 0.4;
    display: flex;
    flex-direction: column;
}

.modal__top-close-container {
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__top-close-container {
        display: flex;
        padding: 1.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__top-close-container {
        display: flex;
        padding: 0;
        padding-right: 1.3rem;
        padding-top: 1rem;
    }
}
@media (max-width: 319px) {
    .modal__top-close-container {
        display: flex;
        padding-right: 1.3rem;
        padding-top: 1rem;
    }
}

.modal__img-dish-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close-icon {
    cursor: pointer;
}

.modal__main-close-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__main-close-wrap {
        display: none;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__main-close-wrap {
        display: none;
    }
}
@media (max-width: 319px) {
    .modal__main-close-wrap {
        display: none;
    }
}

.modal__main-close-container {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    overflow: hidden;
    background: black;
}
@media (min-width: 501px) and (max-width: 860px) {
    .circle {
        width: 250px;
        height: 250px;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .circle {
        width: 200px;
        height: 200px;
    }
}

.img__cover-modal {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transform: scale(0.75);
}

.modal__main-wrap {
    flex: 0.6;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: auto;
}
/* Fix for scroll mobail */
@media (min-width: 501px) and (max-width: 860px) {
    .modal__main-wrap {
        display: flex;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__main-wrap {
        display: block;
    }
}
@media (max-width: 319px) {
    .modal__main-wrap {
        display: block;
    }
}


.modal__title-wrap {
    flex: 0.5;
    display: flex;
}

.modal__title-text {
    font-weight: 600;
    font-size: 2rem !important;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__title-text {
        font-size: 1.8rem !important;
        padding-bottom: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__title-text {
        font-size: 1.5rem !important;
        padding-bottom: 0;
        padding: 0.5rem;
    }
}
@media (max-width: 319px) {
    .modal__title-text {
        font-size: 1.5rem !important;
        padding-bottom: 0;
        padding: 0.5rem;
    }
}


.modal__title-weight {
    font-size: 1.1rem !important;
    color: #808080;
    font-weight: normal;
    margin-left: 1rem;
}

.modal__description {
    flex: 0.5;
    display: flex;
}

.modal__description-text {
    /* display: flex; */
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.3rem ;
    font-weight: 600;
    color: #808080 !important;
    padding-right: 2rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__description-text {
        font-size: 1.2rem !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__description-text {
        font-size: 1.1rem !important;
        padding: 0.5rem;
    }
}
@media (max-width: 319px) {
    .modal__description-text {
        font-size: 1.1rem !important;
        padding: 0.5rem;
    }
}

.description-bold {
    font-weight: 400;
    color: black;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .description-bold {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .description-bold {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}
@media (max-width: 319px) {
    .description-bold {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}


.modal__energy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.modal__energy-table-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    padding-right: 2rem;
}

.modal__energy-name {
    flex: 0.25;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.modal__energy-main {
    flex: 0.75;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.modal__energy-name-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: black;
    font-weight: 600;
}

.modal__energy-main-item {
    display: flex;
    width: 100%;
    height: 100%;
}
.modal__energy-main-text {
    flex: 1;
    font-size: 1.3rem;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__energy-main-text {
        font-size: 1.2rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__energy-main-text {
        font-size: 1rem;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
}
@media (max-width: 319px) {
    .modal__energy-main-text {
        font-size: 1rem;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
}


.modal__energy-main-value {
    flex: 1;
    font-size: 1.2rem;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__energy-main-value {
        font-size: 1.1rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__energy-main-value {
        font-size: 1rem;
    }
}
@media (max-width: 319px) {
    .modal__energy-main-value {
        font-size: 1rem;
    }
}

.modal__total {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5rem;
}
@media (min-width: 501px) and (max-width: 860px) {
    .modal__total {
        justify-content: flex-end;
        flex: 1;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__total {
        justify-content: center;
        padding-right: 0;
        flex: 0.7;
        padding: 0.5rem;
    }
}
@media (max-width: 319px) {
    .modal__total {
        justify-content: center;
        padding-right: 0;
        flex: 0.7;
        padding: 0.5rem;
    }
}

.modal__total-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}
.modal__total-btn-wrap:hover {
    opacity: 0.6;
}

.modal__total-text {
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: #4d4d4d;
}

@media (min-width: 501px) and (max-width: 860px) {
    .modal__total-text {
        font-size: 1.5rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .modal__total-text {
        font-size: 1.3rem;
    }
}
@media (max-width: 319px) {
    .modal__total-text {
        font-size: 1.3rem;
    }
}

.basket__order-type-row {
    display: flex;
    align-items: center;
}

.basket__order-type-select {
    flex: 1;
    outline: none;
    border: none;
    background: white;
    font-size: 1.3rem;
    color: black;
    font-weight: bold;
    padding: 0.5rem;
    padding-left: 0.8rem;
    border-bottom: 1px solid grey;
}

@media (min-width: 501px) and (max-width: 860px) {
    .basket__order-type-select {
        font-size: 1.3rem;
    }
}
@media (min-width: 320px) and (max-width: 500px) {
    .basket__order-type-select {
        font-size: 1.1rem;
    }
}
@media (max-width: 319px) {
    .basket__order-type-select {
        font-size: 1.1rem;
    }
}
