@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@1,600&display=swap');
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital@1&display=swap");
@import url(/static/user/fonts/constantia-bold-italic.ttf); 
@import url(/static/user/fonts/constantia-italic.ttf);


:root {
    --btn-color: rgb(170, 86, 86);
}

body, html {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 6%, rgba(0,70,70,0.329551889115021) 100%); 
    overflow-x: hidden;
}

/*  Notification container / boxes  */

.notification-container {
    position: fixed;
    box-sizing: border-box;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    opacity: 0.95;
    user-select: none;
    z-index: 3000;
}

.notification-container > * {
    width: 100%;
    box-sizing: border-box;
}

.notification-container > .warn-box {
    display: flex;
    position: relative;
    background: rgb(209, 65, 65);
    height: fit-content;
    padding: 13px 13px;
    align-items: center;
    justify-content: center;
    height: 100%;
}


.product-title-box h1 {
    text-align: center !important;
    font-family: "Constantia W99 Italic";
    opacity: 0.85;
    font-size: 36px;
    margin: 0;
}

.breadcrumbs-item > a {
    display: inline-block;
    height: 100%;
    color: #000;
    opacity: 0.82;
    font-size: 17px;
    font-family: "PT Serif", serif;
    cursor: pointer;
    transition: all 0.4;
    text-decoration: none;
}

.breadcrumbs-item > a:hover {
    opacity: 0.9;
}

.breadcrumbs-item:not(:first-child)::before {
    content: "/";
    opacity: 0.85;
    margin-right: 5px;
}





.notification-container > .warn-box img {
    box-sizing: border-box;
    opacity: 0.85;
    font-size: 10px;
    aspect-ratio: 1/1;
}


.notification-container > .warn-box > .warn-text-box {

    color: #ffffff;
    /* opacity: 0.85; */
    margin-left: 12px;
    line-height: 24px;
}


@media (max-width: 700px) {
    .warn-box > .warn-text-box {
        font-size: 12px;
    }
    .notification-container {
        height: 65px;
    }
}

@media (min-width: 700px) {
    .warn-box > .warn-text-box {
        font-size: 13px;
    }
    .notification-container {
        height: 50px;
    }
}





/* Search box */


.search-box {
    box-sizing: border-box;
    padding: 0 12.5px 0 12.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: rgb(241, 219, 191);
    height: 60px;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.7s ease;
    z-index: 100;
    top: 0;
}

.search-box.open {
    transform: translateY(0%);
}

.container-search-box {
    gap: 10px;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.search-box .search-container {
    padding: 0 7px;
    height: 80%;
    width: 600px;
    border-radius: 28px;
    border: 1px solid rgb(99, 99, 99);
    background: rgb(249, 249, 249);
}

.search-box .search-container:focus-within {
    border: 2px solid rgb(170, 86, 86);
}
.clear_input {
    cursor: pointer;
    justify-self: flex-end;
    opacity: 0.8;
}

.search-container form {
    height: 100%;
    width: 100%;
}

.search_input {
    display: block;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    border: none;
    background: none;
    outline: none;
    font-size: 20px;
    font-family: 'IBM Plex Serif', serif;
}


.search_input::-webkit-input-placeholder {
    font-size: 17px;
    font-family: 'IBM Plex Serif', serif;
}



.search_input::-moz-placeholder {
    font-size: 17px;
    font-family: 'IBM Plex Serif', serif;
}



.search_input:-ms-input-placeholder {
    font-size: 17px;
    font-family: 'IBM Plex Serif', serif;
}



.search_input::-ms-input-placeholder {
    font-size: 17px;
    font-family: 'IBM Plex Serif', serif;
}



.search_input::placeholder {
    font-size: 17px;
    font-family: 'IBM Plex Serif', serif;
}



.search-box .search-container .icon-search {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

.search-container .icon-search i {
    display: block;
    height: 10px;
    width: 10px;
}









.butt {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 45px;
}


.second-nav-box .left-con-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.second-nav-box .center-con-box {
    display: flex;
    justify-content: center;
}

.center-con-box .shop-name {
    color: black;
    text-decoration: none;
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    opacity: 0.8;
}

.butt img {
    display: block;
    margin: auto;
    height: 25px;
    opacity: 0.8;
}

.aside-box {
    position: fixed;
    background: linear-gradient(to right, rgb(241, 219, 191) 80%, rgb(218, 198, 171));
    float: left;
    height: 100%;
    width: 325px;
    left: 0;
    top: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: 0.9s ease;
    transform: translateX(-100%);
    z-index: 100;
}

.sidebar {
    position: absolute;
    width: 100%;
}

.close-svg {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 27px;
    opacity: 0.6;
    cursor: pointer;
}
.aside-box.active {
    transform: translateX(0%);
}

.info-ul {
    padding: 0;
    width: 100%;
    margin: 0;
}


.sidebar-category {
    margin-bottom: 24px;
}

.info-ul li {
    position: relative;
    list-style-type: none;
    width: 100%;
    line-height: 21px;
}

.info-ul 
.category-info a {
    text-decoration: none;
    font-size: 14px;
}


.container-body {
    position: relative;
    display: block;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    margin: 0;
    top: 0;
}

.wrapper-container {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    z-index: auto;
}

.btn-ex-more {
    position: absolute;
    cursor: pointer;
    background: none;
    border: none;
    top: 2px;
    text-align: center;
    right: 2px;
    padding: 0;
    width: 35px;
    height: 35px;
    line-height: 20px;
    transform: rotate(0deg);
    transition: 0.3s;
}

.btn-ex-more.open {
    transform: rotate(-180deg);
}




.expand-svg {
    display: block;
    right: 19px;
    margin: 0 auto;
    padding: 0;
    width: 80%;
    height: 80%;
    text-align: center;
    opacity: 0.7;
    line-height: 20px;
    pointer-events: none;
}




.wrapper-header {
    height: 100%;
}

.header {
    position: fixed;
    top: 0px;
    background: rgb(246, 225, 200);
    height: 40px;
    width: 100%;
    z-index: 90;
}

.first-nav-box .container-nav-box, .second-nav-box .container-nav-box {
    display: flex;
    position: relative;
    justify-content: center;
    box-sizing: content-box;
    height: 100%;
    width: 100%;
    padding: 0 30px;
    overflow: visible;
    max-width: 1050px;
}

.top-menu-box {
    white-space: nowrap;
}

.first-nav-box, .second-nav-box {
    display: flex;
    background: rgb(246, 225, 200);;
    justify-content: center;
    align-items: center;
}

.second-nav-box {
    box-shadow: 0 13px 15px -6px #004e4e89;
}


.top-menu-box {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.icons-li {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    height: 100%;
    width: 36px;
}
.icons-li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 5px;
}

.icons-li a .svg-icon-top-menu {
    display: block;
    margin: auto;
    height: 22px;
    opacity: 0.72;
    transition: 0.3s all;
}

.icons-li a .svg-icon-top-menu:hover {
    opacity: 0.9;
}

.first-nav-box, .second-nav-box {
    position: relative;
    display: flex;
    height: 40px;
}

.second-nav-box .left-con-box {
    width: 20%;
    min-width: 80px;
}

.second-nav-box .center-con-box {
    overflow: visible;
    min-width: 1px;
}

.left-con-box, .right-con-box {
    width: 20%;
}

.sidebar-box .ul-text-info i {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 14px;
    margin-right: 7px;
}

.right-con-box {
    display: flex;
    justify-content: flex-end;
    min-width: 120px;
}

.center-con-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.first-nav-box a {
    margin-top: auto;
    margin-bottom: auto;
}

.first-nav-box a img {
    height: 32px; 
}

.sub-category {
    padding: 0;
}

.sub-category-child {
    box-sizing: border-box;
    padding: 0px 0px 3.4px 15px;
}

.sub-category-child.open ul .sub-category-section {
    -webkit-animation: fall 0.5s;
            animation: fall 0.5s;
}

.blackout {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background: rgba(0, 0, 0, .0);
    transition: all 0.5s ease;
}

.second-nav-box .left-con-box .logo-shop img {
    height: 100%;
    top: -6px;
}

.second-nav-box .left-con-box .logo-shop {
    display: none;
    height: 24px;
    margin-left: 10px;
}

.blackout.open {
    background: rgba(0, 0, 0, .3);
}

.wrapper-page {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 40px;
}


.info-ul .category-info .ul-text-info:hover {
    opacity: 0.78;
}


.info-ul li .ul-text-info {
    display: block;
    position: static;
    box-sizing: border-box;
    padding: 10px 40px 10px 14px;
    font-family: 'IBM Plex Serif', serif;
    color: black;
    transition: opacity 0.5s ease;
    opacity: 0.62;
    font-size: 14px;
    word-wrap: break-all;
}

.info-ul li .ul-text-info.active {
    opacity: 0.8;
}

.sidebar-container {
    display: block;
    width: 100%;
    margin-top: 40px;
}

.sidebar-box {
    box-sizing: border-box;
    padding: 0 15px ;
    width: 100%;
}

.sidebar-category {
    font-size: 21px;
    font-family: "Constantia W99 Italic";
    line-height: 1.4;
    opacity: 0.9;
}


.aside-box::-webkit-scrollbar {
    width: 4.5px;
}

.aside-box::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.0);
}

.aside-box::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgb(0, 0, 0, .5);
}

@media (max-width: 800px) {
    .aside-box {
        width: 275px;
    }
}

@media (max-width: 530px) {
    .aside-box {
        width: 260px;
    }
    .header {
        height: 40px;
    }
    .first-nav-box {
        display: none;
    }
    .second-nav-box .shop-name{
        visibility: hidden;
    }
    .second-nav-box .left-con-box .logo-shop {
        display: block;
    }
}





@-webkit-keyframes fall {
    0% {
        transform: translateY(-35%);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0%);
    }
}





@keyframes fall {
    0% {
        transform: translateY(-35%);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0%);
    }
}
@-webkit-keyframes falll {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}
@keyframes falll {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

/* breadcrumbs */

.product-title-box {
    height: fit-content;
    padding-top: 30px;
    margin-bottom: 40px;
}

.product-title-box h1 {
    text-align: center !important;
    font-family: "Constantia W99 Italic";
    opacity: 0.85;
    font-size: 36px;
    margin: 0;
}

/* breadcrumbs Box */

.product-breadcrumbs {
    margin-top: 35px;

    box-sizing: border-box;
    height: 22px;
}

.breadcrumbs-container {
    display: inline-block;
    list-style-type: none;
    white-space: nowrap;
    padding: 0;
    height: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
}

.breadcrumbs-item {
    display: inherit;
    height: 100%;
}

.breadcrumbs-item > a {
    display: inline-block;
    height: 100%;
    color: #000;
    opacity: 0.82;
    font-size: 17px;
    font-family: "PT Serif", serif;
    cursor: pointer;
    transition: all 0.4;
}

.breadcrumbs-item > a:hover {
    opacity: 0.9;
}

.breadcrumbs-item:not(:first-child)::before {
    content: "/";
    opacity: 0.85;
}


#footer {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 180px;
    margin-top: 150px;
    width: 100%;
    background: #004e4e;
    align-items: center;
    padding: 20px;
    bottom: 0;
}

#footer span {
    color: #ffffff;
    font-family: 'Lora', sans-serif;
}

#footer .footer-title {
    font-family: 'Constantia W99 Italic', cursive;
    font-size: 34px;
    margin-bottom: 15px;
}

.social-network-container {
    height: 30px;
    width: fit-content;
    margin-top: 20px;
    display: flex;
    gap: 20px
}

.social-network-container a {
    display: block;
    text-decoration: none;
    color: #ffff;
    height: 30px;
    aspect-ratio: 1/1;
    font-size: 30px;
    cursor: pointer;
    transition: 0.6s;
}

.social-network-container a.telegram:hover {
    color: #0088cc;
}

.social-network-container a.vkontakt:hover {
    color: #4C75A3;
}

.social-network-container a.instagram:hover {
    color: #fe308b;
}

.social-network-container i {
    height: 100%;
    width: 100%;
    display: block;
}


.search-container {
    height: 100%;
    width: 100%;
}


.search-container form {
    box-sizing: border-box;
    padding: 6px;
}


.search-container input {
    border-radius: 15px;
    background: rgb(249, 249, 249);
    box-sizing: border-box;
    padding-left: 38px;
    font-size: 14px;
}

.search-container .icon-search {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: none;
    border: none;
    height: 100%;
    aspect-ratio: 1/1;
    margin-right: 4px;
}

.icon-search.clear_input {
    right: 0;
}

.container-search-box {
    position: relative;
}

.container-search-box .icon-search {
    cursor: pointer;
}


.category-list-container {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
    max-width: 1100px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-item-box {
    height: 45px;
    width: 155px;
    text-align: center;
    background: var(--btn-color);;
    color: #fff;
    cursor: pointer;
    font-family: "Constantia W99 Italic";
    font-size: 19px;
}

.category-item-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    height: 100%;
    width: 100%;
    line-height: 18px;
}