*,
*::after,
*::before{
    box-sizing: border-box;
}
body {
    padding-bottom: 92px;
}
.container{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.bottom_panel {
    font-size: 0.9rem;
    text-align: left;
    padding: 5px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0px 0px 0.8px rgba(0, 0, 0, 0.02),
                0px 0px 1.9px rgba(0, 0, 0, 0.028),
                0px 0px 3.5px rgba(0, 0, 0, 0.035),
                0px 0px 6.3px rgba(0, 0, 0, 0.042),
                0px 0px 11.7px rgba(0, 0, 0, 0.05),
                0px 0px 28px rgba(0, 0, 0, 0.07);
}
.bp_wrap{
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}
.bottom__panel {
    font-size: 1rem;
    background: white;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0px 0px 0.8px rgba(0, 0, 0, 0.02),
    0px 0px 1.9px rgba(0, 0, 0, 0.028),
    0px 0px 3.5px rgba(0, 0, 0, 0.035),
    0px 0px 6.3px rgba(0, 0, 0, 0.042),
    0px 0px 11.7px rgba(0, 0, 0, 0.05),
    0px 0px 28px rgba(0, 0, 0, 0.07);
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    display: flex;
}
.bottom__panel-button,
.order__modal-btn {
    background: rgba(144, 238, 144, 0.4);
    /*padding: 10px 20px;*/
    cursor: pointer;
    border-radius: 10px;
    transition: 0.4s all;
    font-size: 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    height: 36px;
}

.bottom__panel-button{
    /*margin-right:4px;*/
}

.bottom__panel-button.block {
    opacity: 0.4;
    pointer-events: none;
}

.order__modal {
    padding: 50px 15px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.order__modal-block {
    background-color: #fff;
    border-radius: 10px;
    max-width: 500px;
    font-size: 16px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-bottom: 16px;
}

.order__modal-item {
    margin-bottom: 10px;
    border-bottom: 1px dashed gray;
    display: flex;
}

.order__modal-text {
    font-weight: 700;
    /*width: 100%;*/
    display: inline-block;
    margin-right: 4px;
}

.order__modal-input {
    width: 100%;
    height: 25px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 0;
    font-size: 16px;
    line-height: 24px;
}

.order__modal-bottom {
    text-align: center;
    font-weight: bold;
    width: 100%;
    border-radius: 8px;
    display: flex;
}

.order__modal-cls-wrap {
    width: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10px;
    background: lightgray;
    border-radius: 10px;
    flex-direction: column-reverse;
}

.order__modal-cls-wrap.block {
    opacity: 0.4;
    pointer-events: none;
}

.order__modal-cls {
    width: 15px;
    height: 15px;
    flex: none;
    display: block;
    position: relative;
    cursor: pointer;
    transform: translateX(-50%);
    top:-1px;
}

.active_element{
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
    /*background-color: rgba(144, 238, 144, 0.4);;*/
    position: absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-1px;
    z-index: -1;
    /*border-radius:5px;*/
    border-bottom: 3px solid rgba(144, 238, 144, 0.4);
}
.bottom__user-panel__item{
    position: relative;
    /*height: 36px;*/
}

.order__modal-cls::before, .order__modal-cls::after {
    content: "";
    position: absolute;
    top: 8px;
    background: #000;
    width: 100%;
    height: 2px;
}

.order__modal-cls::before {
    transform: rotate(45deg);
}

.order__modal-cls::after {
    transform: rotate(-45deg);
}
.item {
    display: flex;
    margin-left: 20px;
    align-items: center;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    height: 22px;
}
.menu_item_quantity_counter{
    padding-left: 5px;
    padding-right: 5px;
    width:18px;
    text-align: center;
}
.menu_item_quantity_counter.empty{
    display: none;
}
.menu-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.item-name {
    flex: 2;
    font-size: 16px;
}

.item-price {
    flex: 1;
    font-size: 16px;
    text-align: right;
    margin-right: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-input {
    width: 40px;
    text-align: center;
    font-size: 16px;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

.quantity-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.quantity-btn:focus {
    outline: none;
}

.minus-btn {
    margin-right: 5px;
}

.plus-btn {
    margin-left: 5px;
}

.quantity-btn:hover {
    background-color: #0056b3;
}

.menu_order_btn, .side_dish_order_btn {
    padding: 0px;
    width: 29px;
    border: 1px solid transparent;
    border-radius: 100%;
    height: 29px;
    transform:scale(0.7);
    padding-top: 1px;
    cursor: pointer;
    background: rgba(189, 195, 199, 0.15);
    transition: all 0.5s ease;
    position: relative;
    right:-3px;
}
.menu_order_btn.empty{
    display: none;
}
.menu_order_btn.empty_plus{
    right:0 !important;
}

.menu_order_btn[data-btn_sign="plus"],
.side_dish_order_btn[data-btn_sign="plus"] {
    position: relative;
    right: -3px;
}
.menu_order_btn[data-btn_sign="minus"],
.side_dish_order_btn[data-btn_sign="minus"] {
    position: relative;
    left: -3px;
}

ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
}
.wrapper {
    padding-top: 10px;
}
.wrapper__title {
    text-align: center;
    font-size: 1.8rem;
    line-height: 48px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.wrapper__item-top {
    text-align: center;
    margin-bottom: 20px;
}
.wrapper__item-day {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
}
.wrapper__item-menu__price{
    font-size: 0.85rem;
    color:rgba(0,0,0,0.75);
    /*font-weight: bold;*/
    height:24px;

}
.wrapper__item-menu {
    border-bottom: 1px dashed lightgray;
    padding: 4px 10px;
}

.wrapper__item-menu__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wrapper__item-menu__item:last-child{
    border-bottom: none;
}
.wrapper__item-menu__info {
    padding-right: 10px;
    flex:1;
    border-left: 3px solid rgba(0,0,0,0.05);
    padding-left: 10px;
}
.wrapper__item-menu__info.chosen{
    border-left: 3px solid green;
}

.wrapper__item-menu__name {
    margin-bottom: 2px;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
}

.wrapper__item-menu__description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    color: #4b4b4b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.wrapper__item-menu__img {
    max-width: 135px;
    height: 55px;
    flex: none;
    /*display: none;*/
}
.wrapper__item-menu__img img{
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit:contain;
}
.wrapper__item-arrow{
    z-index: 99;
    top: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 30px;
    height: 30px;
}
.wrapper__item-arrow span{
    width: 17px;
    height: 17px;
    display: block;
    border-left: 2px solid;
    border-top: 2px solid;
    border-color: #080809;
    border-radius: 2px;
}
.wrapper__item-arrow.swiper-button-disabled{
    opacity: 0.3;
}
.wrapper__item-prev {
    transform: translateY(-50%) rotate(-45deg);
    left: 15%;
}
.wrapper__item-next {
    transform: translateY(-50%) rotate(135deg);
    right: 15%;
}
.modal__message{
    padding: 50px 15px;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}
.modal__message-body{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal__message-content{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
}
.modal__message-title{
    font-weight: 700;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}
.modal__message-btn{
    background: #fff;
    padding: 8px 25px;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    box-shadow:
            0px 0px 2.2px rgba(0, 0, 0, 0.028),
            0px 0px 5.3px rgba(0, 0, 0, 0.04),
            0px 0px 10px rgba(0, 0, 0, 0.05),
            0px 0px 17.9px rgba(0, 0, 0, 0.06),
            0px 0px 33.4px rgba(0, 0, 0, 0.072),
            0px 0px 80px rgba(0, 0, 0, 0.1);
    transition: 0.4s all;
}






/***************
  Profile
****************/
.profile{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.profile__title{
    font-size: 25px;
    margin-bottom: 5px;
}
.profile__phone{
    font-size: 16px;
    color: #858080;
}
.bottom__user-panel {
    display: flex;
    /*max-width: 200px;*/
    background: #fff;
    z-index: 11;
    align-items: center;
    right: 0;
}
.bottom__user-panel__item{
    margin-right: 5px;
    cursor: pointer;
}
.bottom__user-panel__item:last-child{
    margin-right: 0;
}
.bottom__user-panel__img{
    /*width: 34px;*/
    /*height: 34px;*/
    display: flex;
    /*margin-right: 5px;*/
    align-items: center;
    padding: 0 2px 0 5px;
}
.bottom__user-panel__img.oh{
    /*height: 36px;*/
    /*width: 36px;*/
    position: relative;
    /*top:3px;*/
}
.bottom__user-panel__img.li{
    height: 33px;
    width: 33px;
    position: relative;
    top:2px;
    transform:scale(1.1);
}
.bottom__user-panel__img:last-child{
    margin-right: 0;
}
.bottom__user-panel__img img{
    /*width: 100%;*/
    /*height: 100%;*/
}
.bottom__user-panel__item:first-child .bottom__user-panel__img:first-child{
    /*transform: rotate(90deg);*/
}





/***************
  User orders
****************/
.user__orders{
    position: relative;
}
.user__orders-top {
    position: fixed;
    top: 0;
    left: 50%;
    padding: 10px 0;
    transform: translateX(-50%);
    box-shadow:
            0px 2px 3.2px rgba(0, 0, 0, 0.02),
            0px 4.8px 7.8px rgba(0, 0, 0, 0.028),
            0px 9px 14.7px rgba(0, 0, 0, 0.035),
            0px 16.1px 26.1px rgba(0, 0, 0, 0.042),
            0px 30.1px 48.9px rgba(0, 0, 0, 0.05),
            0px 72px 117px rgba(0, 0, 0, 0.07);
    max-width: 500px;
    width: 100%;
    z-index: 999;
    border-radius: 0 0 10px 10px;
    background: #fff;
    text-align: center;
    overflow: auto;
    height: 32%;
}
.user__orders-back {
    position: absolute;
    left: 15px;
    font-size: 23px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
}
.user__orders-title {
    font-size: 20px;
}
.user__orders-item__top {
    text-align: center;
    margin-bottom: 15px;
}
.user__orders-top__date {
    font-size: 16px;
}
.user__orders-items{
    margin-top: 65px;
    padding-bottom: 72px;
}
.user__orders-item {
    margin-bottom: 25px;
}
.user__orders-item:last-child{
    margin-bottom: 0;
}
.user__orders-items__dishes {

}

.user__orders-items-list {
}
.user__orders-item {
    margin-bottom: 30px;
}
.user__orders-items__top{
    margin-top: 10px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
}
.user__orders-top__item{
    font-weight: bold;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
}
.user__orders-items__block {
    font-weight: 400;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid;
    border-color: #e7e7e7;
}
.user__orders-item__wrapper_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}
.user_number_sort_container{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.user__orders-list__info{
    display: flex;
    margin-right: 10px;
}
.user__orders-list__quantity {
    margin-right: 5px;
    white-space: nowrap;
}

.user__orders-list__name {
    font-weight: 400;
}
.user__orders-list__price {
    flex: none;
}
.user__orders-payment__status{
    margin-left: 5px;
    transition: .4s all;
}
.user__orders-payment__status.paid{
    color: #36d286;
}
.user__orders-payment__status.unpaid{
    color: #ff6666;
}
.user__orders-payment__status.admin{
    cursor: pointer;
}
.user__orders-list__dish{
    cursor: pointer;
}