*,
*::after,
*::before {
    box-sizing: border-box;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    height: 100%;
    color: #000000;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #922a42;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

#category_change_text {
    font-size: 1rem;
    margin-bottom: 10px;
}

.categories_dropdown_changing_text {
    cursor: pointer;
    width: 100%;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px dashed gray;
}
.categories_dropdown_item_add{
    justify-content: center;
    border-bottom: none;
    padding: 5px 5px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    background: white;
    overflow: hidden;
}
.categories_dropdown {
    max-height: 200px;
    overflow: auto;
    box-shadow: 0.1px 0.6px 0.9px rgba(0, 0, 0, 0.048), 0.1px 1.4px 2.2px rgba(0, 0, 0, 0.069), 0.3px 2.6px 4.1px rgba(0, 0, 0, 0.085), 0.4px 4.7px 7.4px rgba(0, 0, 0, 0.101), 0.8px 8.8px 13.8px rgba(0, 0, 0, 0.122), 2px 21px 33px rgba(0, 0, 0, 0.17);
}

.categories_dropdown_wrap {
    display:none;
}
.categories_dropdown_wrap.active{
    display:block;
}
.categories_dropdown_item {
    border-bottom: 1px dashed gray;
    padding: 8px 5px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    background: white;
    justify-content: space-between;
    overflow: hidden;
    height: 110%;

}
.categories_dropdown_item.chosen {
    background: lightgray;
}
.categories_dropdown_item_btns{
    display: flex;
    align-items: center;
    margin-right: 15px;
    opacity: 0;
    transition: .4s all;
}
.categories_dropdown_item_edit{
    margin-right: 10px;
    z-index: 11;
}
.categories_dropdown_item_delete{
    position: relative;
}
.categories_dropdown_item_delete img{
    display: block;
}
.categories_dropdown_item_delete--confirmation{
    position: absolute;
    top: 50%;
    right: 0;
    background: #f44336;
    padding: 2px 10px;
    opacity: 0;
    border-radius: 10px;
    transition: .4s all;
    z-index: -1;
    color: #fff;
}
.categories_dropdown_item_delete.confirm_delete .categories_dropdown_item_delete--confirmation{
    transform: translate(0%, -50%);
    opacity: 1;
    z-index: 99;
}
.categories_dropdown_item_edit img{
    display: block;
}
.categories_dropdown_wrap_wrap {
    background: white;
    z-index: 99;
    position: relative;
}

.categories_dropdown_btn {
    padding: 0 5px;
    display: inline-block;
}

.list_link_wrap {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 5px;
    text-decoration: underline;
    font-size: 16px !important;
    white-space: nowrap !important;
}

.checkmark {
    background-image: url("/images/check-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 26px;
    height: 100%;
}


.wrapper__content {
    max-width: 800px;
    margin: auto;
    padding-bottom: 70px;
}

.wrapper__content__search_on_top {
    padding-top: 70px;
}

#film_1 {
    top: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}


/*==================
	Global
==================*/


.bottom_btn {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    align-items: center;
    cursor: pointer;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    padding-top: 8px;
    transition: all 0.2s ease;
}

.bottom_btn.active {
    background-color: white;
    color: #334c86;
}


.cataloge_icon {
    display: block;
    background-image: url('/images/grip-vertical-solid.svg?1');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transform: rotate(90deg);
}

.bottom_btn.active .cataloge_icon {
    background-image: url('/images/grip-vertical-solid-active.svg');
}

.home_icon {
    display: block;
    background-image: url('/images/house-solid.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.bottom_btn.active .home_icon {
    background-image: url('/images/house-solid-active.svg');
}

.cart_icon {
    display: block;
    background-image: url('/images/cart-shopping-solid.svg?1');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.bottom_btn.active .cart_icon {
    background-image: url('/images/cart-shopping-solid-active.svg');
}

.orders_icon {
    display: block;
    background-image: url('/images/clipboard-list-solid.svg?1');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.bottom_btn.active .orders_icon {
    background-image: url('/images/clipboard-list-solid-active.svg');
}


.proile_icon {
    display: block;
    background-image: url('/images/user-solid.svg?1');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.bottom_btn.active .proile_icon {
    background-image: url('/images/user-solid-active.svg');
}

.wrapper__content-title {
    padding-right: 10px;
}

.title {
    font-size: 16px;
    line-height: 18px;
}

.button {
    /*background: #334c86;*/
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    display: block;
    padding: 15px;
    font-size: 15px;
    width: 100%;
    text-align: center;
    border-radius: 30px;
    transition: .4s all;
}

/*.button:hover{*/
/*	background: #5b6f9e;*/
/*}*/
.close {
    width: 20px;
    height: 20px;
    position: relative;
    display: block;
    cursor: pointer;
}

.close::after {
    transform: rotate(45deg);
}

.close::before {
    transform: rotate(-45deg);
}

.close::after,
.close::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(175, 175, 175);
}

.wrapper__content-close--top {
    margin-left: auto;
}

.wrapper__content-close--bottom {
    margin: 0 auto;
}

.modal {
    padding-top: 50px;
    width: 100%;
    top: 0;
    display: none;
    transition: .4s all;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
}

.modal_auth {
    justify-content: center;
}

.modal__warning {
    padding-top: 0;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.product_modal_wrapper {
    z-index: 999;
    padding-top: 0px;
}

.modal__wrapper {
    padding: 35px 18px 25px;
    background-color: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.modal__body-text {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
}

.modal__body-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    border-radius: 15px;
    background-color: #404040;
    display: inline-block;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px 25px;
}

.modal__block {
    padding: 25px 30px 90px;
    background-color: #fff;
    /*border-radius: 20px 20px 0 0;*/
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: .4s all;
    height: 100%;
    width: 100%;
    transform: translateY(200%);
}

.product_modal_block {
    max-width: 800px;
    margin: auto;
    height: calc(100% - 52px);
}

.modal__block-cls {
    display: block;
    background: #ededed;
    width: 60px;
    height: 30px;
    flex: none;
    margin-left: auto;
    cursor: pointer;
    transform: translateY(-26px);
    border-radius: 0;
    position: absolute;
    top: -5px;
    right: 0px;
    border-top-left-radius: 10px;
}

.modal__block-cls::before,
.modal__block-cls::after {
    content: "";
    position: absolute;
    width: 1px;
    top: 6px;
    left: 30px;
    background: #000;
    height: 17px;
}

.modal__block-cls::before {
    transform: rotate(45deg);
}

.modal__block-cls::after {
    transform: rotate(-45deg);
}

.modal__block-img {
    margin-bottom: 30px;
    height: 260px;
    overflow: hidden;
}

.modal__block-img img {
    height: 100%;
}

.modal__block-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal__block-desc {
    line-height: 24px;
    margin-bottom: 20px;
}

.modal__block-dop {
    line-height: 24px;
    margin-bottom: 20px;
}

.modal__block-subtitle {
    padding: 20px 30px;
    position: relative;
    margin-left: -30px;
    margin-right: -30px;
}

.modal__block-subtitle::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    border-top: 1px solid #e4e4e4;
}

.modal__block-bottom {
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    position: absolute;
    bottom: 100%;
    justify-content: space-between;
    background: #fff;
    display: flex;
    right: 0px;
    width: 100%;
    z-index: -1;
    max-width: 800px;
    transform: translateY(100%);
    transition: 0.5s all ease;
    height: 45px;
}

.modal__block-item {
    width: 200px;
    /*border: 1px solid #e4e4e4; */
    padding: 10px 10px;
    border-radius: 30px;
}

.modal__block-item--quantity {
    margin-right: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__block-item--price {
    /*background: #334c86;*/
    color: #334c86;
    height: 58px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal__item-price__delete {
    position: absolute;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
}

.modal__block-remove,
.modal__block-add {
    width: 35px;
    height: 100%;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.modal__block-add span,
.modal__block-remove span {
    width: 11px;
    display: block;
    height: 1px;
    background-color: #000;
    position: relative;
}

.modal__block-add span::before {
    content: "";
    position: absolute;
    width: 11px;
    transform: rotate(90deg);
    height: 1px;
    background-color: #000;
}

.link__cart {
    /*overflow: hidden;*/
    /*border-top-right-radius: 30px;*/
    /*border-top-left-radius: 30px;*/
    color: gray;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 50%;
    justify-content: center;
    transition: .2s all;
    width: 100%;
    z-index: 999;
    display: flex;
    background-color: #ffffff;
    max-width: 800px;
    transform: translateX(-50%);
    justify-content: space-evenly;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.065),
    0px 0px 2.3px rgba(0, 0, 0, 0.093),
    0px 0px 4.4px rgba(0, 0, 0, 0.115),
    0px 0px 7.8px rgba(0, 0, 0, 0.137),
    0px 0px 14.6px rgba(0, 0, 0, 0.165),
    0px 0px 35px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 0px 3.7px rgba(0, 0, 0, 0.031),
    0px 0px 8.8px rgba(0, 0, 0, 0.044),
    0px 0px 16.7px rgba(0, 0, 0, 0.055),
    0px 0px 29.7px rgba(0, 0, 0, 0.066),
    0px 0px 55.6px rgba(0, 0, 0, 0.079),
    0px 0px 133px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 0px 13.8px rgba(0, 0, 0, 0.031),
    0px 0px 33.3px rgba(0, 0, 0, 0.044),
    0px 0px 62.6px rgba(0, 0, 0, 0.055),
    0px 0px 111.7px rgba(0, 0, 0, 0.066),
    0px 0px 208.9px rgba(0, 0, 0, 0.079),
    0px 0px 500px rgba(0, 0, 0, 0.11);
}

.prdocut__item {
    position: relative;
}

.link__cart-btn--search {
    width: 100% !important;
}

.product__item-quantity {
    width: 30px;
    position: absolute;
    right: 25px;
    padding: 5px;
    top: 50%;
    height: 30px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: #334c86;
    border-radius: 50%;
    opacity: 0;
}

#total_price {
    text-align: right;
    position: relative;
    left: 4px;
}

.user__block {
    height: calc(100% - 52px);
    right: 0;
    top: 0;
    transition: .3s all;
    z-index: 999;
    padding: 30px 15px;
}

.user__burger-item {
    width: 100%;
    height: 2px;
    background: #334c86;
    position: relative;
}

.user__burger-item::before, .user__burger-item::after {
    content: "";
    position: absolute;
    width: 100%;
    top: -6px;
    height: 2px;
    background: #334c86;
}

.user__burger-item::after {
    top: 6px;
}

.user__block-body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.user__block-body__top {
    margin-bottom: 45px;
}

.user__block-body__name {
    font-size: 40px;
    line-height: 24px;
    padding-bottom: 20px;
}

.user__block-body__phone {
    color: #a1a1a1;
    font-size: 25px;
}

.user__block-body__content {
    flex: 1 1 0;
    font-size: 18px;
    padding-bottom: 160px;
}

.user__block-content__item {
    margin-bottom: 20px;
    cursor: pointer;
}

.user__block-content__item:last-child {
    margin-bottom: 0;
}

.user__block-close {
    margin-left: auto;
}

.admin__menu {
    top: 0;
    width: 100%;
    font-size: 18px;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    background: #fff;
    z-index: 999;
    box-shadow: 0px 3.3px 5.3px rgba(0, 0, 0, 0.028),
    0px 11.2px 17.9px rgba(0, 0, 0, 0.042),
    0px 50px 80px rgba(0, 0, 0, 0.07);
}

.admin__menu-nav {
    display: flex;
    align-items: center;
}

.admin__menu-item {
    margin-right: 15px;
}

.admin__menu-item:last-child {
    margin-right: 0;
}

.admin__menu-link {
    position: relative;
    transition: .2s all;
}

.admin__menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0;
    width: 100%;
    transition: .2s all;
    height: 2px;
    background: #334c86;
}

.admin__menu-link:hover {
    color: #00a554;
}

.admin__menu-link:hover::after {
    opacity: 1;
}

.admin__menu-logout {
    width: 22px;
    cursor: pointer;
    margin-left: 20px;
    height: 22px;
    display: block;
}

.admin__menu-logout img {
    width: 100%;
    display: block;
}

.modal__block-auth {
    height: auto;
    max-height: 95%;
    bottom: 0;
    padding-bottom: 35px;
    position: absolute;
    max-width: 800px;
}

.modal__auth-check {
    text-align: center;
}

.modal__auth-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.modal__auth-buttons {
    display: flex;
}

.modal__auth-button:first-child {
    margin-right: 10px;
}

.modal__auth-button {
    border: none;
}


/*==================
	Index
==================*/

.wrapper__top {
    margin-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper__top-img {
    margin-bottom: 15px;
}

.wrapper__top-img img {
    width: 100%;
}

.wrapper__top-title {
    margin-bottom: 5px;
    display: none;
    font-size: 19px;
    line-height: 22px;
}

.wrapper__top-subtitle {
    font-size: 16px;
    font-weight: 400;
    display: none;
    margin-bottom: 20px;
}

.wrapper__top-price {
    margin-left: 5px;
}

.wrapper__top-items {
    margin-bottom: 10px;
    padding-top: 30px;
}

.wrapper__top-item {
    position: relative;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    padding-top: 15px;
}

.wrapper__top-item--info {
    display: none;
    border-bottom: 1px solid #e4e4e4;
    padding-top: 0;
}

.wrapper__top-icon {
    position: absolute;
    color: #fff;
    top: -1px;
    left: 0;
    background-color: #bebebe;
    padding: 1px 8px;
    border-radius: 50%;
}

.wrapper__top-dots {
    position: absolute;
    left: 4px;
    letter-spacing: -1px;
    font-weight: bold;
    top: 6px;
    line-height: 0;
}

.wrapper__top-icon--chat {
    width: 21px;
    height: 18px;
    border-radius: 3px;
    display: none;
    top: 14px;
}

.wrapper__top-icon--chat::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 7px;
    top: 15px;
    border-radius: 1px;
    left: 0;
    background: #bebebe;
}

.wrapper__top-icon--chat::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 11px;
    top: 17px;
    border-radius: 30px;
    transform: rotate(37deg);
    left: 1px;
    background: #fff;
}

.wrapper__top-item--info::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    border-bottom: 2px solid #bebebe;
    border-right: 2px solid #bebebe;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
}

.wrapper__top-filter {
    display: flex;
    display: none;
    align-items: center;
}

.wrapper__top-search {
    background: #ededed;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
}

.wrapper__top-category,
.wrapper__fix-category {
    background: #ededed;
    font-weight: 700;
    padding: 15px 5px;
    text-align: center;
    border-radius: 30px;
    width: 100%;
}

.wrapper__content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wrapper__content-all,
.wrapper__menu-lunch {
    padding: 4px 10px;
    background: rgba(51, 76, 134, 0.3);
    cursor: pointer;
    border-radius: 4px;
    color: #334c86;
    font-weight: 700;
    white-space: nowrap;
}

.wrapper__content-all:focus,
.wrapper__menu-lunch:focus {
    opacity: .7;
}

.wrapper__content-lunch {
    position: fixed;
    z-index: 1111;
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px;
    overflow-y: scroll;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(200%);
    transition: .3s all;
}

.wrapper__lunch-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 40px;
}

.wrapper__lunch-item__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.wrapper__lunch-item {
    margin-bottom: 30px;
}

.wrapper__lunch-item__product {
    font-size: 16px;
    margin-bottom: 3px;
    line-height: 22px;
    position: relative;
}

.wrapper__content-item {
    margin-bottom: 20px;
}

.wrapper__content-item:last-child {
    margin-bottom: 0;
}

.swiper-container {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 20px 30px;
}

.swiper-container--lunch {
    padding-bottom: 60px;
}

.product__item-day {
    position: absolute;
    bottom: -50px;
    border-radius: 6px;
    padding: 10px 20px;
    transition: .4s all;
    border: 1px solid #45b076;
    left: 50%;
    transform: translateX(-50%);
}

.prdocut__item-today .product__item-day {
    background: #aef3ce;
}

.wrapper__slider-item:hover .product__item-day {
    background: #aef3ce;
}

.wrapper__slider-content--lunch {
    justify-content: center;
    text-align: center;
}

.wrapper__slider-item {
    border-radius: 15px;
    padding: 5px 10px 20px;
    cursor: pointer;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.014),
    0px 0px 2.3px rgba(0, 0, 0, 0.02),
    0px 0px 4.4px rgba(0, 0, 0, 0.025),
    0px 0px 7.8px rgba(0, 0, 0, 0.03),
    0px 0px 14.6px rgba(0, 0, 0, 0.036),
    0px 0px 35px rgba(0, 0, 0, 0.05);
    max-width: 150px;
    height: 190px;
    transition: .3s all;
}

.wrapper__slider-item:hover {
    box-shadow: 0px 0px 1px rgb(0 0 0 / 4%),
    0px 0px 2.3px rgb(0 0 0 / 6%),
    0px 0px 4.4px rgb(0 0 0 / 8%),
    0px 0px 7.8px rgb(0 0 0 / 9%),
    0px 0px 14.6px rgb(0 0 0 / 11%),
    0px 0px 35px rgb(0 0 0 / 15%);
}

.wrapper__slider-item:last-child {
    margin-right: 0 !important;
}

.wrapper__slider-item--lunch {

    margin-right: 5px !important;
}

.wrapper__slider-img,
.all-product__category-img {
    max-width: 80px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
}

.wrapper__slider-img img,
.all-product__category-img img {
    width: 100%;
}

.wrapper__slider-price,
.all-product__category-price {
    margin-bottom: 5px;
}

.product__title {
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_desc {
    display: none;
    pointer-events: none;
    opacity: 0;
}

.wrapper__top-fix {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0px 1.2px 2.2px rgb(0 0 0 / 3%),
    0px 2.8px 5.3px rgb(0 0 0 / 4%),
    0px 5.3px 10px rgb(0 0 0 / 5%),
    0px 9.4px 17.9px rgb(0 0 0 / 6%),
    0px 17.5px 33.4px rgb(0 0 0 / 7%),
    0px 42px 80px rgb(0 0 0 / 10%);
    padding: 20px;
    transition: .3s all;
    z-index: 999;
    transform: translateY(-200%);
}

.wrapper__top-fix--active {
    transform: translateY(0%);
}

.wrapper__fix-top {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
}

.wrapper__fix-title {
    width: 100%;
    font-size: 16px;
}

.wrapper__fix-title span {
    color: #5b6f9e;
}

.wrapper__fix-logout {
    position: absolute;
    right: 20px;
    width: 22px;
    height: 22px;
}

.wrapper__fix-logout img {
    width: 100%;
}

.wrapper__fix-category {
    text-align: center;
}

.wrapper__content-text {
    text-align: center;
    margin-bottom: 5px;
}


/*==================
	All products
==================*/

.all-product__top {
    margin-bottom: 20px;
}

.header__fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 15px 0 15px;
    left: 0;
    z-index: 99;
    right: 0;
    background: #fff;
    transition: .1s all;
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto;
}

.header__fixed-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.header__fixed-back {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 14px;
}

.header__fixed-back::before {
    content: "";
    position: absolute;
    top: 1px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}

.header__fixed-back::after {
    content: "";
    position: absolute;
    border-bottom: 2px solid #000;
    width: 14px;
    height: 10px;
    top: -2px;
    left: 0px;
}

.cart__edit {
    cursor: pointer;
}

.header__fixed-title {
    /*transform: translateX(-50%);*/
    font-size: 40px;
    line-height: 18px;
    position: absolute;
    left: 38px;

}

.all-product__top-serach {
    display: none;
}

.all-product__top-serach img {
    display: block;
}

.all-product__nav-menu {
    display: none;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.2s all;
}

.all-product__nav-menu:hover {
    opacity: .6;
}

.all-product__nav-menu::before,
.all-product__nav-menu::after {
    content: "";
    position: absolute;
    display: block;
    width: 17px;
    height: 2px;
    background: #000;
}

.all-product__nav-menu::before {
    top: 5px;
}

.all-product__nav-menu::after {
    top: 15px;
}

.all-product__nav-categories {
    display: none;
    width: 100%;
    padding-left: 15px;
    align-items: center;
    padding-top: 10px;
    position: relative;
    top: 5px;
}

.all-product__nav-items {
    white-space: nowrap;
    overflow-x: auto;
    padding: 5px 0;
}

.all-product__nav-item {
    display: inline-block;
    margin-right: 15px;
}

.all-product__nav-item:first-child {
    font-weight: 700;
}

.all-product__nav-menu span {
    position: absolute;
    display: block;
    width: 17px;
    top: 10px;
    height: 2px;
    background: #000;
}

.all-product__nav-items {
    white-space: nowrap;
    overflow-x: auto;
}

.all-product__nav-item {
    display: inline-block;
}

.all-product__top-categories {
    padding-top: 60px;
    padding-left: 15px;
}

.all-product__categories-item,
.modal__block-category {
    background: #ededed;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 700;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.modal__block-category {
    display: inline-block;
}

.all-product__categories-item:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

.modal__block-categories {
    display: flex;
    flex-direction: column;
}

.modal__block-category {
    align-self: start;
}

.modal__block-menu {
    position: absolute;
    bottom: 0;
    transition: 0.2s all;
    height: auto;
    padding-bottom: 20px;
    max-height: 95%;
}

.all-product__category {
    margin-bottom: 20px;
    position: relative;
}

.all-product__category-title {
    margin-bottom: 15px;
    margin-left: 15px;
}

.all-product__category-inner {
    display: flex;
    flex-wrap: wrap;
    /*margin: 0 -25px;*/
}

.all-product__category-item:nth-child(odd) {
    border-left: 1px solid #e4e4e4;
}

.all-product__category-item {
    width: 50%;
    padding: 15px;
    cursor: pointer;
    transition: .1s all;
}

.all-product__category-item:nth-child(1),
.all-product__category-item:nth-child(2) {
    border-top: 1px solid #e4e4e4;
}

.all-product__category-item {
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}

.all-product__category-item .product__item-quantity {
    right: 50px;
}


/*==================
	cart and all_orders
==================*/
.cart__content,
.orders__content {
    padding-top: 55px;
    font-size: 14px;
    max-width: 800px;
    margin: auto;
}

.orders__content {
    padding-top: 85px;
    font-size: 18px;
    line-height: 26px;
}

.cart__content-title {
    text-align: center;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 1%),
    0px 0px 2.3px rgb(0 0 0 / 2%),
    0px 0px 4.4px rgb(0 0 0 / 3%),
    0px 0px 7.8px rgb(0 0 0 / 3%),
    0px 0px 14.6px rgb(0 0 0 / 4%),
    0px 0px 35px rgb(0 0 0 / 5%);
    color: #334c86;
    font-size: 16px;
    border-radius: 30px;
    padding: 10px;
    border: 1px solid #e4e4e4;
}

.cart__content-item,
.orders__content-item {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #e4e4e4;
    transition: .4s all;
}

.cart__item-wrapper,
.orders__item-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    transition: .4s all;
    padding: 15px 0;
}

.cart__item-wrapper--delete {
    pointer-events: none;
    transform: translateX(-30%);
}

.orders__item-wrapper--info {
    display: block;
    padding-bottom: 0;
}

.orders__item-wrapper--info h6 {
    margin-bottom: 3px;
}

.cart__item-delete,
.cart__item-edit {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    padding: 5px;
    transform: translateY(-50%);
    top: 50%;
    background: #ec4555;
    border-radius: 50%;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
}

.cart__item-edit {
    background: #ededed;
    right: 40px;
    padding: 7px;
}

.cart__item-delete--active,
.cart__item-edit--active {
    opacity: 1;
    pointer-events: auto;
}

.cart__item-delete img,
.cart__item-edit img {
    width: 100%;
}

.cart__item-quantity,
.orders__item-quantity {
    align-self: start;
    flex-shrink: 0;
    margin-right: 10px;
}

.cart__item-name,
.orders__item-name {
    font-size: 13px;
    font-weight: 400;
    margin-right: 10px;
}

.cart__item-price,
.orders__item-price {
    flex-shrink: 0;
    margin-left: auto;
}

.cart__address-input.warning {
    border-bottom: 1px solid #ef4c4b;
}

.cart__address-input.warning::placeholder {
    color: #ef4c4b;
}

.cart__content-comments,
.cart__address-input,
.orders__address-input,
.orders__content-comments {
    height: 50px;
    border: none;
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
    color: #000;
    outline: none;
    padding: 5px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.cart__content-comments::placeholder,
.cart__address-input::placeholder {
    color: #999999;
}

.cart__content-price {
    margin-bottom: 50px;
}

.cart__price-item,
.orders__price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4;
}

.cart__price-total,
.orders__price-total {
    font-weight: 700;
    font-size: 16px;
}

.cart__delivery-time {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
}

.cart__time-icon {
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    margin-right: 10px;
}

.cart__delivery-address,
.orders__delivery-address {
    display: flex;
    align-items: center;
    padding: 5px 0 20px;
    position: relative;
}

/* .cart__delivery-address::after{
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)rotate(-135deg);
    right: 5px;
    border-left: 2px solid #c3c3c3;
    border-bottom: 2px solid #c3c3c3;
    width: 10px;
    height: 10px;
} */
.cart__address-icon {
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    margin-right: 10px;
}

.cart__address-text {
    max-width: 80%;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.cart__delivery-map {
    margin-bottom: 10px;
}

.cart__content-agreement {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cart__agreement-checkbox {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    clip: rect(0 0 0 0);
    padding-left: 20px;
}

.cart__agreement-style {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 2px solid #c3c3c3;
    margin-right: 16px;
    position: relative;
}

.cart__agreement-checkbox:checked + .cart__agreement-style::before {
    content: "";
    position: absolute;
    top: 3px;
    transform: rotate(-45deg);
    right: 3px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 10px;
    height: 6px;
}

.cart__agreement-checkbox:checked + .cart__agreement-style {
    border: 2px solid #334c86;
    background-color: #334c86;
}

.cart__agreement-text {
    width: 100%;
}

.cart__content-order {
    margin: 0 -25px;
    padding: 0 25px 10px;

}

.cart__order-btn {
    display: block;
    width: 100%;
}

.cart__empty {
    height: 100%;
    transform: translateY(200%);
    transition: 0.4s all;
    background: #fff;
    justify-content: center;
    align-items: center;
    padding: 0px 35px;
    flex-direction: column;
    width: 100%;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
}

.cart__empty-title {
    margin-bottom: 15px;
    font-size: 20px;
}

.cart__empty-text {
    font-size: 14px;
    text-align: center;
}

.cart__link-cart {
    display: block;
    position: absolute;
    transform: translateY(0);
    pointer-events: auto;
}


/*==================
	Add product
==================*/
.add-product__wrapper {
    padding-top: 50px;
    padding: 80px 30px 0;
    font-size: 18px;
    line-height: 26px;
}

.add-product__container {
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 15px;
}

.add-product__title {
    font-size: 36px;
    line-height: 44px;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.add-product__table {
    width: 1800px;
    /*box-shadow: 0.1px 0px 2.2px rgba(0, 0, 0, 0.02),*/
    /*0.1px 0px 5.3px rgba(0, 0, 0, 0.028),*/
    /*0.3px 0px 10px rgba(0, 0, 0, 0.035),*/
    /*0.4px 0px 17.9px rgba(53, 35, 35, 0.042),*/
    /*0.8px 0px 33.4px rgba(0, 0, 0, 0.05),*/
    /*2px 0px 80px rgba(0, 0, 0, 0.07);*/
    /*border-radius: 10px;*/
    margin: 0px auto 50px;
}

.add-product__table-top,
.add-product__row {
    display: flex;
    justify-content: space-evenly;
    border-bottom: 3px solid #e4e4e4;
}

.add-product__table-top {
    align-items: center;
    font-size: 12px;
}

.add-product__row {
    border-bottom: 1px solid #e4e4e4
}

.table_gallery_btn, .table_pdf_btn, .table_three_d_btn, .table_montage_btn, .table_usage_btn, .table_catalogue_btn, .collections_img_btn  {
    box-shadow: 0.1px 0px 2.2px rgba(0, 0, 0, 0.02),
    0.1px 0px 5.3px rgba(0, 0, 0, 0.028),
    0.3px 0px 10px rgba(0, 0, 0, 0.035),
    0.4px 0px 17.9px rgba(53, 35, 35, 0.042),
    0.8px 0px 33.4px rgba(0, 0, 0, 0.05),
    2px 0px 80px rgba(0, 0, 0, 0.07);
    padding: 5px 13px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-bottom: 8px;
    padding-top: 6px;
}
.btn__email{
    box-shadow: 0px 0.2px 1.4px -3px rgba(0, 0, 0, 0.02),
                0px 0.4px 3.3px -3px rgba(0, 0, 0, 0.028),
                0px 0.8px 6.3px -3px rgba(0, 0, 0, 0.035),
                0px 1.3px 11.2px -3px rgba(0, 0, 0, 0.042),
                0px 2.5px 20.9px -3px rgba(0, 0, 0, 0.05),
                0px 6px 50px -3px rgba(0, 0, 0, 0.07);
    padding: 5px 13px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-bottom: 8px;
    padding-top: 6px;
}
.table__top-item,

.table__row-item,
.table_subcategory__row-item,
.table_main-page-4-buttons__row-item{

    width: 150px;
    text-align: left;
    font-weight: 700;
    padding: 10px 5px;
    padding-left: 14px;
    padding-right: 0;
    font-size: 12px;
}
.table__top-item:last-child{
    padding-right: 10px;
}
.table__top-item-center-padleft{
    text-align: center;
    padding-left:0;
}
.table_main-page-text__row-item{
    text-wrap: wrap !important;
}

.table__row-item,
.table__row-item--id,
.table_subcategory__row-item,
.table_main-page-4-buttons__row-item,
.table_main-page-text__row-item
{
    font-weight: 400;
    white-space: nowrap;
    overflow-x: hidden;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    cursor: pointer;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 12px;
    font-size: 12px;
}

.table__row-item--id {
    text-align: center;
    padding: 10px 5px;
}

.table__row-item:last-child {
    border-bottom: 0;
}

.table__top-item--id,
.table__row-item--id {
    width: 5%;
}

.table__row-item--id {
    position: relative;
}

.table__row-item--id::before {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    transform: translateY(-50%);
    left: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4c4b;
}

.table__row-item--hide.table__row-item--id::before {
    display: block;
}

.table__row-item-change {
    width: 16px;
    opacity: 0;
    transition: .2s all;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    border-radius: 50%;
    position: absolute;
    background-color: #ef4c4b;
}

.table__row-item-change--return {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid #38C923;
    border-radius: 0;
    right: 10px;
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
    background-color: transparent;
}

.table__row-item-change::before,
.table__row-item-change::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    background: #fff;
    top: 50%;
    left: 3px;
    border-radius: 2px;
}

.table__row-item-change::before {
    transform: translateY(-50%) rotate(45deg);
}

.table__row-item-change::after {
    transform: translateY(-50%) rotate(-45deg);
}

.table__row-item-change--return::after {
    width: 10px;
    height: 7px;
    background: #38C923;
    border-radius: 0;
    transform: translateY(-50%) rotate(-90deg);
    right: -5px;
    top: 13px;
    left: auto;
}

.table__row-item-change--return::before {
    width: 0;
    height: 0;
    display: none;
}

.table__row-item--image {
    cursor: pointer;
}

.add-product__btn {
    background: #fff;
    padding: 13px 25px;
    cursor: pointer;
    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;
}

.add-product__button {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 1;
}

.add-product__btn:hover {
    box-shadow: 0px 0px 2.2px rgba(0, 0, 0, 0.042),
    0px 0px 5.3px rgba(0, 0, 0, 0.061),
    0px 0px 10px rgba(0, 0, 0, 0.075),
    0px 0px 17.9px rgba(0, 0, 0, 0.089),
    0px 0px 33.4px rgba(0, 0, 0, 0.108),
    0px 0px 80px rgba(0, 0, 0, 0.15);
}

.add-product__modal {
    padding: 50px 15px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100%;

}

.add-product__modal-block {
    background-color: #fff;
    padding: 20px 25px 30px;
    border-radius: 10px;
    width: 850px;
    font-size: 16px;
    margin: 0 auto;
}

.add-product__modal-item {
    border: 1px solid lightgray;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}
#add_product_subcategories{
    position: relative;
    pointer-events: none;
}
#add_product_subcategories::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}
#add_product_subcategories.active{
    pointer-events: auto;
}
#add_product_subcategories.active::before{
    z-index: -1;
}
.add-product__modal-text {
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.add-product__modal-input {
    width: 100%;
    height: 25px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 0;
    font-size: 16px;
    line-height: 24px;
}

.add-product__modal-textarea {
    resize: none;
    height: 105px;
}

.add-product__modal-select {
    cursor: pointer;
    position: relative;
}

.add-product__modal-item--select {
    position: relative;
}

#select_subctg_btn {
    transition: .2s all;
    pointer-events: none;
    opacity: .4;
}

.add-product__modal-item--select::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 10px;
    height: 10px;
}

.add-product__modal-select {
    border: 1px solid lightgray;
    border-radius: 10px;
    position: absolute;
    padding: 10px;
    width: 100%;
    display: none;
    font-size: 16px;
    left: 0;
    z-index: 999;
    background: #fff;
}

.no-hide {
    display: block !important;
}

.add-product__modal-item--select {
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.add-product__modal-item--select label {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}
.add-product__modal-item--dropdown{
    border:none;
    padding: 0;
}
.add-product__modal-item--dropdown .add-product__modal-input{
    border: 1px solid lightgray;
    margin-bottom: 5px;
    border-radius: 5px;
}
.add-product__modal-dropdown{
    max-height: 200px;
    width: 100%;
    overflow: auto;
    box-shadow: 0.1px 0.6px 0.9px rgba(0, 0, 0, 0.048),
    0.1px 1.4px 2.2px rgba(0, 0, 0, 0.069),
    0.3px 2.6px 4.1px rgba(0, 0, 0, 0.085),
    0.4px 4.7px 7.4px rgba(0, 0, 0, 0.101),
    0.8px 8.8px 13.8px rgba(0, 0, 0, 0.122),
    2px 21px 33px rgba(0, 0, 0, 0.17);
    left: 0;
    background: #fff;
    display: none;
}
.add-product__dropdown-item{
    border-bottom: 1px dashed gray;
    padding: 6px 5px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    background: white;
    justify-content: space-between;
    overflow: hidden;
}
.add-product__dropdown-item--add{
    justify-content: center;
}
.add-product__dropdown-action{
    display: flex;
    align-items: center;
    margin-right: 15px;
    transition: .4s all;
    opacity: 0;
}
.add-product__dropdown-edit{
    margin-right: 10px;
    z-index: 11;
}
.add-product__dropdown-action.collection{
    width: 24px;
    height: 24px;
}
.add-product__dropdown-action img{
    width: 100%;
    display: block;
}
.add-product__dropdown-delete{
    position: relative;
}
.add-product__dropdown-delete--confirmation{
    position: absolute;
    top: 50%;
    right: 0;
    background: #f44336;
    padding: 2px 10px;
    opacity: 0;
    border-radius: 10px;
    transition: .4s all;
    z-index: -1;
    color: #fff;
}
.add-product__dropdown-delete.confirm_delete .add-product__dropdown-delete--confirmation{
    transform: translate(0, -50%);
    opacity: 1;
    z-index: 99;
}
.add-product__dropdown-add{
    padding: 5px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    overflow: hidden;
    background: #43B05C;
}
.add-product__modal-image, .add-product__modal-pdf {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    max-width: 500px;
    margin: auto;
}
.add-product__modal-pdf.add-product__modal-pdf-modal, .add-product__modal-catalogue.add-product__modal-catalogue-modal, .add-product__modal-montage.add-product__modal-montage-modal, .add-product__modal-usage.add-product__modal-usage-modal, .add-product__modal-three_d-modal {
    display:flex;
    margin-left: 0;
    margin-bottom: 20px;
}
.add-product__modal-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.add-product__modal-selected {
    padding: 35px 0 10px;
    cursor: pointer;
    width: 100%;
    display: block;
}

.add-product__select-item {
    margin-bottom: 5px;
}

.add-product__select-item:last-child {
    margin-bottom: 0;
}

.add-product__modal-upload {
    text-align: center;
    padding-top: 15px;
    margin-bottom: 25px;
}

.add-product__upload-btn {
    display: inline-block;
}

.add-product__modal-add {
    text-align: center;
}
.cart__wrapper-item{
    padding-bottom: 20px;
    border-bottom: 1px solid #acadb1;
    padding-top: 65px;
}
.cart__wrapper-item:first-child{
    padding-top: 0;
}
.cart__wrapper-item:last-child{
    border-bottom: none;
}
.cart__items-inner__top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.cart__items-inner__img{
    width: 275px;
    height: 190px;
    flex: none;
    margin-right: 20px;
}
.cart__items-inner__img img{
    width: 100%;
    height: 100%;
    display: block;
}
.cart__items-inner__info{
    width: 60%;
}
.cart__items-info__name{
    display: inline-block;
    margin-right: 5px;
}
.cart__wrapper-items__bottom{
    text-align: right;
}
.cart__items-bottom__total{
    font-weight: 700;
}

.add-product__add-btn {
    display: inline-block;
}

.close_cross {
    width: 20px;
    height: 20px;
    flex: none;
    display: block;
    position: relative;
    cursor: pointer;
    padding: 0px 25px 30px 7px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    transition: all 0.5s ease-in-out;
}

.close_cross::before,
.close_cross::after {
    content: "";
    position: absolute;
    top: 14px;
    background: #fff;
    width: 18px;
    height: 2px;
    transition: all 0.5s ease-in-out;
}

.close_cross::before {
    transform: rotate(45deg);
}

.close_cross::after {
    transform: rotate(-45deg);
}

.close_cross.confirm_delete {
    background: rgba(0, 0, 0, 0.0);
}

.close_cross.confirm_delete::before {
    transform: rotate(45deg) translateX(-10px);
    opacity: 0;
}

.close_cross.confirm_delete::after {
    transform: rotate(-45deg) translateX(-10px);
    opacity: 0;
}

.close_cross .delete_confirmation {
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    background: gray;
    padding: 0 10px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02), 6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028), 12.5px 12.5px 10px rgba(0, 0, 0, 0.035), 22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042), 41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05), 100px 100px 80px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    transform: translateX(50px);
    padding-bottom: 2px;
    background: rgba(0, 0, 0, 0.4);
}

.close_cross.confirm_delete .delete_confirmation {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}


.add-product__modal-cls {
    width: 20px;
    height: 20px;
    flex: none;
    display: block;
    position: relative;
    margin: 30px auto 0;
    cursor: pointer;
}

.add-product__modal-cls::before,
.add-product__modal-cls::after {
    content: "";
    position: absolute;
    top: 8px;
    background: #fff;
    width: 100%;
    height: 2px;
}

.add-product__modal-cls::before {
    transform: rotate(45deg);
}

.add-product__modal-cls::after {
    transform: rotate(-45deg);
}

.add-product__message {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    display: none;
    padding: 0 15px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.add-product__message-title {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.add-product__message-body {
    background: #fff;
    width: 600px;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    border-radius: 20px;
}

.attention-modal__list-text {
    position: relative;
    display: block;
    padding-left: 10px;
    margin-bottom: 10px;
}

.attention-modal__list-text::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.add-product__message-close {
    width: 20px;
    top: 25px;
    height: 20px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.add-product__message-close::before,
.add-product__message-close::after {
    content: "";
    top: 8px;
    position: absolute;
    border: 1px solid gray;
    width: 20px;
}

.add-product__message-close::before {
    transform: rotate(-45deg);
}

.add-product__message-close::after {
    transform: rotate(45deg);
}

.add-product {
    padding-bottom: 50px;
}

#change_product_modal {
    justify-content: center;
    flex-direction: column;
}

.add-product__modal-selectors,
.modal__change-image,
#change_input,
#change_textarea,
#change_product_btn,
#change_image_btn {
    display: none;
}

.add-product__modal-image img {
    /*max-height: 600px;*/
}

.add-product__message-button {
    text-align: center;
}

.add-product__message-btn {
    display: inline-block;
}

#confirm_yes {
    margin-right: 10px;
}

/* PDF Upload styles */
#pdf_upload_visible, #three_d_upload_visible, #catalogue_upload_visible, #montage_upload_visible, #usage_upload_visible{
    border-radius: 5px;
    box-shadow:
            0.6px 0.5px 2.2px rgba(0, 0, 0, 0.02),
            1.3px 1.3px 5.3px rgba(0, 0, 0, 0.028),
            2.5px 2.4px 10px rgba(0, 0, 0, 0.035),
            4.5px 4.2px 17.9px rgba(0, 0, 0, 0.042),
            8.4px 7.9px 33.4px rgba(0, 0, 0, 0.05),
            20px 19px 80px rgba(0, 0, 0, 0.07);
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    border: 1px solid lightgray;
    transition: all 0.5s ease;
}

#pdf_upload_visible:hover, #three_d_upload_visible:hover, #catalogue_upload_visible:hover, #montage_upload_visible:hover, #usage_upload_visible:hover{
    background-color:rgba(0,0,0,0.08);
}

.pdf_upload_wrap, .three_d_upload_wrap, .catalogue_upload_wrap, .montage_upload_wrap, .usage_upload_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
}

/*==================
	auth
==================*/

.auth {
    padding: 25px 20px;
    height: 100vh;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 730px;
}

.login {
    min-height: 500px;
}

.auth__title {
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 20px;
}

.auth__form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.auth__form-label {
    margin-bottom: 20px;
    display: block;
    text-align: left;
    font-size: 14px;
}

.auth__form-input {
    width: 100%;
    margin-top: 5px;
    outline: none;
    height: 35px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    border: none;
    border-radius: 30px;
    background-color: #e3e3e3;
}

.auth__form-label.warning .auth__form-input {
    border: 1px solid #ef4c4b;
}

.auth__form-label.warning .auth__form-warning {
    display: block;
}

.auth__form-btn {
    margin-top: 20px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    border-radius: 30px;
    background-color: #404040;
    border: none;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
}

.auth__wrapper {
    text-align: center;
}

.auth__text {
    text-align: center;
    margin-bottom: 5px;
}

.auth__form-warning {
    display: none;
    color: #ef4c4b;
}


/*==================
	History Orders
==================*/

.orders__content-price {
    margin-bottom: 0px;
}

.orders__delivery-address {
    padding: 0;
}

.orders__item {
    margin-bottom: 50px;
}

.orders__item-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
}

.orders__item-user__info {
    margin-bottom: 10px;
}

.orders__item-date--today {
    color: #000;
    font-weight: 400;
}

.orders__time-title {
    margin-bottom: 10px;
}

.orders__content-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 28px;
    position: relative;
}

.orders__item-name {
    font-size: 18px;
}

.orders__address-input {
    font-size: 18px;
}

.orders__price-total {
    font-size: 18px;
}

.orders__price-total--user {
    font-size: 16px;
}

.orders__content--user {
    font-size: 14px;
    padding-top: 55px;
}

.orders__address-input--user {
    font-size: 14px;
}

.orders__item-name--user {
    font-size: 14px;
}

.orders__content-title--today::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #334c86;
}

.orders__content-title--tomorrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dee112;
}

.orders__item-date--user {
    font-size: 13px;
    line-height: 18px;
}

.orders__content-title--user {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
}

.orders__content-title--user::after {
    width: 15px;
    height: 15px;
}

.product-filters {
    margin: auto;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    top: 0;
    background: white;
}

#searchText {
    width: 100%;
    border: none;
    /*box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);*/
    /*-webkit-box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);*/
    padding: 8px;
    font-size: 16px;
    max-width: 800px;
    padding: 12px;
    border-radius: 0 0 10px 10px;
}

#searchText:focus-visible {
    outline: none;
}

#map {
    height: 100vh;
    width: 100%;
}

#order-download-btn-id{
    background-image: url(/images/download-pdf.svg);
    background-repeat: no-repeat;
    height: 35px;
    background-position: center;
    align-self: center;
}

/*Add Category style start*/
.add-category__wrapper {
    padding-top: 50px;
    padding: 80px 30px 0;
    font-size: 18px;
    line-height: 26px;
}

.add-category__container {
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 15px;
}

.add-category__name {
    font-size: 36px;
    line-height: 44px;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.add-category__table {
    box-shadow: 0.1px 0px 2.2px rgba(0, 0, 0, 0.02),
    0.1px 0px 5.3px rgba(0, 0, 0, 0.028),
    0.3px 0px 10px rgba(0, 0, 0, 0.035),
    0.4px 0px 17.9px rgba(53, 35, 35, 0.042),
    0.8px 0px 33.4px rgba(0, 0, 0, 0.05),
    2px 0px 80px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin: 70px auto 50px;
}

.add-category__table-top,
.add-category__row {
    display: flex;
    justify-content: space-evenly;
    border-bottom: 3px solid #e4e4e4;
}

.add-category__row {
    border-bottom: 1px solid #e4e4e4
}

.add-category__btn {
    background: #fff;
    padding: 13px 25px;
    cursor: pointer;
    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;
}

.add-category__button {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 999;
}

.add-category__btn:hover {
    box-shadow: 0px 0px 2.2px rgba(0, 0, 0, 0.042),
    0px 0px 5.3px rgba(0, 0, 0, 0.061),
    0px 0px 10px rgba(0, 0, 0, 0.075),
    0px 0px 17.9px rgba(0, 0, 0, 0.089),
    0px 0px 33.4px rgba(0, 0, 0, 0.108),
    0px 0px 80px rgba(0, 0, 0, 0.15);
}

.add-category__modal {
    padding: 50px 15px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100%;

}

.add-category__modal-block {
    background-color: #fff;
    padding: 20px 25px 30px;
    border-radius: 10px;
    width: 850px;
    font-size: 16px;
    margin: 0 auto;
}

.add-category__modal-item {
    border: 1px solid lightgray;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}

.add-category__modal-text {
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.add-category__modal-input {
    width: 100%;
    height: 25px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 0;
    font-size: 16px;
    line-height: 24px;
}

.add-category__modal-textarea {
    resize: none;
    height: 105px;
}

.add-category__modal-select {
    cursor: pointer;
    position: relative;
}

.add-category_modal-item--select {
    position: relative;
}

.add-category__modal-item--select::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 10px;
    height: 10px;
}

.add-category__modal-select {
    border: 1px solid lightgray;
    border-radius: 10px;
    position: absolute;
    padding: 10px;
    width: 100%;
    display: none;
    font-size: 16px;
    left: 0;
    z-index: 999;
    background: #fff;
}

.add-category__modal-item--select {
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.add-category__modal-item--select label {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

.add-category__modal-image {
    margin-bottom: 20px;
    text-align: center;
}

.add-category__modal-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.add-category__modal-selected {
    padding: 35px 0 10px;
    cursor: pointer;
    width: 100%;
    display: block;
}

.add-category__select-item {
    margin-bottom: 5px;
}

.add-category__select-item:last-child {
    margin-bottom: 0;
}

.add-category__modal-upload {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 25px;
}

.add-category__upload-btn {
    display: inline-block;
}

.add-category__modal-add {
    text-align: center;
}

.add-category__add-btn {
    display: inline-block;
}

.add-category__modal-cls {
    width: 20px;
    height: 20px;
    flex: none;
    display: block;
    position: relative;
    margin: 30px auto 0;
    cursor: pointer;
}

.add-category__modal-cls::before,
.add-category__modal-cls::after {
    content: "";
    position: absolute;
    top: 8px;
    background: #fff;
    width: 100%;
    height: 2px;
}

.add-category__modal-cls::before {
    transform: rotate(45deg);
}

.add-category__modal-cls::after {
    transform: rotate(-45deg);
}

.add-category__message {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    display: none;
    padding: 0 15px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.add-category__message-title {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.add-category__message-body {
    background: #fff;
    width: 600px;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    border-radius: 20px;
}

.add-category__message-close {
    width: 20px;
    top: 25px;
    height: 20px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.add-category__message-close::before,
.add-category__message-close::after {
    content: "";
    top: 8px;
    position: absolute;
    border: 1px solid gray;
    width: 20px;
}

.add-category__message-close::before {
    transform: rotate(-45deg);
}

.add-category__message-close::after {
    transform: rotate(45deg);
}

.add-category {
    padding-bottom: 50px;
}

#change_category_modal {
    justify-content: center;
    flex-direction: column;
}

.add-category__modal-selectors,
.modal__change-image,
#change_input,
#change_textarea,
#change_category_btn,
#change_image_btn {
    display: none;
}

.add-category__modal-image img {
    max-height: 600px;
}

.add-category__message-button {
    text-align: center;
}

.add-category__message-btn {
    display: inline-block;
}

/*Add Subategory style start*/
.add-subcategory__wrapper {
    padding-top: 50px;
    padding: 80px 30px 0;
    font-size: 18px;
    line-height: 26px;
}

.add-subcategory__container {
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 15px;
}

.add-subcategory__name {
    font-size: 36px;
    line-height: 44px;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.add-subcategory__table {
    box-shadow: 0.1px 0px 2.2px rgba(0, 0, 0, 0.02),
    0.1px 0px 5.3px rgba(0, 0, 0, 0.028),
    0.3px 0px 10px rgba(0, 0, 0, 0.035),
    0.4px 0px 17.9px rgba(53, 35, 35, 0.042),
    0.8px 0px 33.4px rgba(0, 0, 0, 0.05),
    2px 0px 80px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin: 70px auto 50px;
}

.add-subcategory__table-top,
.add-subcategory__row {
    display: flex;
    justify-content: space-evenly;
    border-bottom: 3px solid #e4e4e4;
}

.add-subcategory__row {
    border-bottom: 1px solid #e4e4e4
}

.add-subcategory__btn {
    background: #fff;
    padding: 13px 25px;
    cursor: pointer;
    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;
}

.add-subcategory__button {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 999;
}

.add-subcategory__btn:hover {
    box-shadow: 0px 0px 2.2px rgba(0, 0, 0, 0.042),
    0px 0px 5.3px rgba(0, 0, 0, 0.061),
    0px 0px 10px rgba(0, 0, 0, 0.075),
    0px 0px 17.9px rgba(0, 0, 0, 0.089),
    0px 0px 33.4px rgba(0, 0, 0, 0.108),
    0px 0px 80px rgba(0, 0, 0, 0.15);
}

.add-subcategory__modal {
    padding: 50px 15px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100%;

}

.add-subcategory__modal-block {
    background-color: #fff;
    padding: 20px 25px 30px;
    border-radius: 10px;
    width: 850px;
    font-size: 16px;
    margin: 0 auto;
}

.add-subcategory__modal-item {
    border: 1px solid lightgray;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}

.add-subcategory__modal-text {
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.add-subcategory__modal-input {
    width: 100%;
    height: 25px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 0;
    font-size: 16px;
    line-height: 24px;
}

.add-subcategory__modal-textarea {
    resize: none;
    height: 105px;
}

.add-subcategory__modal-select {
    cursor: pointer;
    position: relative;
}

.add-subcategory__modal-item--select {
    position: relative;
}

.add-subcategory__modal-item--select::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 10px;
    height: 10px;
}

.add-subcategory__modal-select {
    border: 1px solid lightgray;
    border-radius: 10px;
    position: absolute;
    padding: 10px;
    width: 100%;
    display: none;
    font-size: 16px;
    left: 0;
    z-index: 999;
    background: #fff;
}

.add-subcategory__modal-item--select {
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.add-subcategory__modal-item--select label {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

.add-subcategory__modal-image {
    margin-bottom: 20px;
    text-align: center;
}

.add-subcategory__modal-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.add-subcategory__modal-selected {
    padding: 35px 0 10px;
    cursor: pointer;
    width: 100%;
    display: block;
}

.add-subcategory__select-item {
    margin-bottom: 5px;
}

.add-subcategory__select-item:last-child {
    margin-bottom: 0;
}

.add-subcategory__modal-upload {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 25px;
}

.add-subcategory__upload-btn {
    display: inline-block;
}

.add-subcategory__modal-add {
    text-align: center;
}

.add-subcategory__add-btn {
    display: inline-block;
}

.add-subcategory__modal-cls {
    width: 20px;
    height: 20px;
    flex: none;
    display: block;
    position: relative;
    margin: 30px auto 0;
    cursor: pointer;
}

.add-subcategory__modal-cls::before,
.add-subcategory__modal-cls::after {
    content: "";
    position: absolute;
    top: 8px;
    background: #fff;
    width: 100%;
    height: 2px;
}

.add-subcategory__modal-cls::before {
    transform: rotate(45deg);
}

.add-subcategory__modal-cls::after {
    transform: rotate(-45deg);
}

.add-subcategory__message {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    display: none;
    padding: 0 15px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.add-subcategory__message-title {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.add-subcategory__message-body {
    background: #fff;
    width: 600px;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    border-radius: 20px;
}

.add-subcategory__message-close {
    width: 20px;
    top: 25px;
    height: 20px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.add-subcategory__message-close::before,
.add-subcategory__message-close::after {
    content: "";
    top: 8px;
    position: absolute;
    border: 1px solid gray;
    width: 20px;
}

.add-subcategory__message-close::before {
    transform: rotate(-45deg);
}

.add-subcategory__message-close::after {
    transform: rotate(45deg);
}

.add-subcategory {
    padding-bottom: 50px;
}

#change_subcategory_modal {
    justify-content: center;
    flex-direction: column;
}

/* Start Material */

/*Add Subategory style start*/
.add-material__wrapper {
    padding-top: 50px;
    padding: 80px 30px 0;
    font-size: 18px;
    line-height: 26px;
}

.add-material__container {
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 15px;
}

.add-material__name {
    font-size: 36px;
    line-height: 44px;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.add-material__table {
    box-shadow: 0.1px 0px 2.2px rgba(0, 0, 0, 0.02),
    0.1px 0px 5.3px rgba(0, 0, 0, 0.028),
    0.3px 0px 10px rgba(0, 0, 0, 0.035),
    0.4px 0px 17.9px rgba(53, 35, 35, 0.042),
    0.8px 0px 33.4px rgba(0, 0, 0, 0.05),
    2px 0px 80px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin: 70px auto 50px;
}

.add-material__table-top,
.add-material__row {
    display: flex;
    justify-content: space-evenly;
    border-bottom: 3px solid #e4e4e4;
}

.add-material__row {
    border-bottom: 1px solid #e4e4e4
}

.add-material__btn {
    background: #fff;
    padding: 13px 25px;
    cursor: pointer;
    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;
}

.add-material__button {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 999;
}

.add-material__btn:hover {
    box-shadow: 0px 0px 2.2px rgba(0, 0, 0, 0.042),
    0px 0px 5.3px rgba(0, 0, 0, 0.061),
    0px 0px 10px rgba(0, 0, 0, 0.075),
    0px 0px 17.9px rgba(0, 0, 0, 0.089),
    0px 0px 33.4px rgba(0, 0, 0, 0.108),
    0px 0px 80px rgba(0, 0, 0, 0.15);
}

.add-material__modal {
    padding: 50px 15px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.add-material__modal-block {
    background-color: #fff;
    padding: 20px 25px 30px;
    border-radius: 10px;
    width: 850px;
    font-size: 16px;
    margin: 0 auto;
}

.add-material__modal-item {
    border: 1px solid lightgray;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}

.add-material__modal-text {
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.add-material__modal-input {
    width: 100%;
    height: 25px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 0;
    font-size: 16px;
    line-height: 24px;
}

.add-material__modal-textarea {
    resize: none;
    height: 105px;
}

.add-material__modal-select {
    cursor: pointer;
    position: relative;
}

.add-material__modal-item--select {
    position: relative;
}

.add-material__modal-item--select::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 10px;
    height: 10px;
}

.add-material__modal-select {
    border: 1px solid lightgray;
    border-radius: 10px;
    position: absolute;
    padding: 10px;
    width: 100%;
    display: none;
    font-size: 16px;
    left: 0;
    z-index: 999;
    background: #fff;
}

.add-material__modal-item--select {
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.add-material__modal-item--select label {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

.add-material__modal-image {
    margin-bottom: 20px;
    text-align: center;
}

.add-material__modal-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.add-material__modal-selected {
    padding: 35px 0 10px;
    cursor: pointer;
    width: 100%;
    display: block;
}

.add-material__select-item {
    margin-bottom: 5px;
}

.add-material__select-item:last-child {
    margin-bottom: 0;
}

.add-material__modal-upload {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 25px;
}

.add-material__upload-btn {
    display: inline-block;
}

.add-material__modal-add {
    text-align: center;
}

.add-material__add-btn {
    display: inline-block;
}

.add-material__modal-cls {
    width: 20px;
    height: 20px;
    flex: none;
    display: block;
    position: relative;
    margin: 30px auto 0;
    cursor: pointer;
}

.add-material__modal-cls::before,
.add-material__modal-cls::after {
    content: "";
    position: absolute;
    top: 8px;
    background: #fff;
    width: 100%;
    height: 2px;
}

.add-material__modal-cls::before {
    transform: rotate(45deg);
}

.add-material__modal-cls::after {
    transform: rotate(-45deg);
}

.add-material__message {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    display: none;
    padding: 0 15px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.add-material__message-title {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.add-material__message-body {
    background: #fff;
    width: 600px;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    border-radius: 20px;
}

.add-material__message-close {
    width: 20px;
    top: 25px;
    height: 20px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.add-material__message-close::before,
.add-material__message-close::after {
    content: "";
    top: 8px;
    position: absolute;
    border: 1px solid gray;
    width: 20px;
}

.add-material__message-close::before {
    transform: rotate(-45deg);
}

.add-material__message-close::after {
    transform: rotate(45deg);
}

.add-material {
    padding-bottom: 50px;
}

.add-material__message-btn {
    display: inline-block;
}

.add-material__message-button {
    text-align: center;
}

#change_material_modal {
    justify-content: center;
    flex-direction: column;
}

/* Finish Material */


.add-subcategory__modal-selectors,
.modal__change-image,
#change_input,
#change_textarea,
#change_category_btn,
#change_image_btn {
    display: none;
}

.add-subcategory__modal-image img {
    max-height: 600px;
}

.add-subcategory__message-button {
    text-align: center;
}

.add-subcategory_message-btn {
    display: inline-block;
}

.padding-top150 {
    padding-top: 150px;
}

/* Common elements */
.delete-button {
    margin-left: 50px;
    display: none;
}

.delete-button:hover {
    /*display: block;*/
}
.add-product__modal-item#desc2-info-message {
    background-color: rgb(255, 214, 0);
    border-color: rgb(255, 214, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.delete-btn {
    cursor: pointer;
    font-weight: 600;
    position: absolute;
    display: none;
    right: 30px;
    align-items: center;
    margin-top:3px;
    position: absolute;
    right: -5px;
    /*top: 22px;*/
}
.products-delete-btn {
    position: absolute;
    right: 2px;
    top: 10px;
}
.add-product__row:hover .delete-btn {
    display:flex;
}
#yes-no-dropdown-container {
    font-size: 32px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 30px;
}
#yes-no-dropdown-label {
    margin-right: 10px;
    font-weight: bold;
    font-size:1.4rem;
}
#yes-no-dropdown{
    font-size: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(226 226 226);
    padding: 8px;
    width: auto;
    height: auto;
}
#yes-no-dropdown option{
    border: none;
    border-radius: 5px;
    background-color: rgb(226 226 226);
}
#select_pdf_btn {
    height: 70px;
    width: 70px;
    left: 50%;
    top: 50%;
    position: relative;
    font-size: 40px;
}

/* Promocode dropdown*/
.promocode__select-dropdown{
    display: flex;
    border-radius: 10px;
    height: 50px;
    cursor: pointer;
    padding: 0 10px;
    border: 1px solid lightgray;
    align-items: center;
    position: relative;
    background-color: white;
    width: 100%;
    margin-bottom: 20px;
}
.promocode__dropdown-title{
    font-size: 1rem;
    font-weight: bold;
    width: auto;
    padding-right: 10px;
}
.promocode__dropdown-list{
    display: none;
    position: absolute;
    z-index: 1;
    left: -1px;
    border-radius: 0 0 10px 10px;
    background: #fff;
    list-style: none;
    border: 1px solid lightgray;
    bottom: -108px;
    overflow: hidden;
    width: calc(100% + 2px);
}
.promocode__dropdown-item{
    padding: 15px;
    transition: .4s all;
    text-align: center;
}
.promocode__dropdown-item:hover{
    background: #e7e3e3a6;
}




@media (max-width: 300px) {
    .header__fixed-title {
        font-size: 10px;
    }
}

@media (min-width: 300px) and (max-width: 600px) {
    .header__fixed-title {
        font-size: 16px;
    }
}

@media (min-width: 600px) {
    .header__fixed-title {
        font-size: 25px;
    }

    .wrapper__content__search_on_top {
        padding-top: 120px;
    }
}

@media (max-width: 900px) {
    .wrapper__slider-content--lunch {
        justify-content: start;
    }

    .cart__content, .orders__content {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/*move categories up and down*/

/* Container for each row */
.categories_dropdown_item {
    position: relative;
}

/* Arrow images */
.category_arrow_top,
.category_arrow_bottom {
    position: absolute;
    top: 0;
    left: 5px;
    opacity: 0%; /* Initially hide arrows */
    width: 18px; /* Limit width */
    height: 18px;
    transform: rotate(-90deg);
    /*border: 1px solid white;*/
    padding: 1px;
    /*border-radius: 50%;*/
}

.category_arrow_top{
    top:-5%;
    transform: rotate(-90deg);
}



.category_arrow_bottom{
    top:32%;
    transform: rotate(90deg);
     margin-top: 10px;
    left:5px;
  }



/* Show arrow images on hover */
.categories_dropdown_item:hover .category_arrow_top,
.categories_dropdown_item:hover .category_arrow_bottom,
.add-product__row:hover .category_arrow_top,
.add-product__row:hover .category_arrow_bottom{
    opacity: 1; /* Display arrows on hover */
    cursor: pointer;

}

/* Other styling for the menu */
.categories_dropdown_item_text {
    padding-left: 30px;
}

.arrow-container {
    position: relative;
    float: left;
    margin-right: 2px;
}

/*product search input*/

.search-container {
    position: relative;
    padding-left: 15px;
}
#search-input {
    width: 200px;
    padding: 5px;
    padding-left: 19px;
    border: 1px solid whitesmoke;
    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);
    height: 46px;
    position: relative;
    left:-1723px;
    top:1px;
}

#search-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #777;
    cursor: pointer;
}

#search-input.active {

    width: 200px;
    transition: width 0.3s ease; /* Add smooth transition */
}


.blog_table{
    min-width: 80px;
    max-width: 80px;
    white-space: nowrap;
}

/*category icon*/
.category_icon{

    max-width: 30px;
    height: auto;
    padding-right: 8px;
}