@font-face {
    font-family: Esans;
    src: url('pt-sans-regular.woff2');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: ESans;
    src: url('pt-sans-bold.woff2');
    font-weight: 700;
    font-display: swap
}

:root {
    --transition: all 0.4s 0.02s ease;
    --radius: 10px;
    --c-dark-green: rgb(40, 86, 10);
    --c-light-green: rgb(217, 235, 1);
    --c-x-green: rgb(10, 22, 2);
    --c-mid-green: rgb(100, 149, 42);
    --c-link-green: rgb(24, 131, 0);
    --c-bg: rgba(40, 86, 10, 0.05);
    --c-darker: rgb(12, 26, 3);
    --c-error: red;
    --c-star: #878787;
    --c-grey: #696969
}


#cookieConsentBanner {
    position: fixed;
    z-index: 99;
    background-color: rgba(217, 235, 1, .90);
    padding: 20px;
    color: #000;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .5s ease-out, transform .5s ease-out;
    z-index: 9999;
}

#cookieConsentBanner.visible{
    opacity: 1;
    transform: translateY(0);
}


.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-policy-link {
    text-decoration: underline;
    font-weight: bold;
}

.cookie-policy-link:hover {
    color: #218838;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Кнопки */

.cookie-btn {
    border: 1px solid var(--c-dark-green) !important;
    height: 40px;
    font-size: 13px;
    padding: 5px 15px;
    line-height: 1;
}

/* Модальное окно настроек */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal-content {
    background-color: white;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-modal-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
}

.cookie-modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-modal-body p {
    margin-top: 0;
    color: #555;
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background-color: #fdfdfd;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
}

.cookie-category-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.cookie-modal-footer {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Переключатель cookies */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    cursor: pointer;
    transition: .4s;
}

.cookie-toggle-label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

.cookie-toggle input:checked + .cookie-toggle-label {
    background-color: #28a745;
}

.cookie-toggle input:checked + .cookie-toggle-label:before {
    transform: translateX(26px);
}

.cookie-toggle input:focus + .cookie-toggle-label {
    box-shadow: 0 0 1px #28a745;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-text {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .cookie-banner-buttons {
        justify-content: center;
    }

    .cookie-modal-content {
        width: 95%;
    }
}

.p0, fieldset, figure, h1, ul {
    padding: 0
}

a, h1 {
    color: var(--c-dark-green)
}

.slick-slide.dragging img, a.not-active-link {
    pointer-events: none
}

.filter .ui-spinner, .gridlines tbody td {
    vertical-align: middle
}

.radio input, .slick-loading .slick-slide, .slick-loading .slick-track, .vh {
    visibility: hidden
}

#sup-filter .btn-white, .alert, .container, .filter .checkbox-group .checkbox a, .filter .ui-slider, .filter .ui-spinner, .filter_container a, .radio, .rel, .scroll-wrapper, .ximg {
    position: relative
}

#menu nav > ul > li > a::after, .trn, a {
    transition: var(--transition)
}

button, hr, input {
    overflow: visible
}

progress, sub, sup {
    vertical-align: baseline
}

[type=checkbox], [type=radio], legend {
    box-sizing: border-box;
    padding: 0
}

ul {
    list-style-type: none;
    margin: 0
}

h1 {
    font-size: clamp(1.3125rem, 1.1582rem + .7595vw, 1.875rem);
    text-transform: uppercase;
    font-weight: 700;
    margin: 40px 0 30px
}

hr {
    box-sizing: content-box;
    height: 0
}

a {
    background-color: transparent;
    text-decoration: underline
}

.tdn, a:hover {
    text-decoration: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

img {
    border-style: none
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

.btn, .button, .slick-list:focus, a, a img, button, input, select, textarea {
    outline: 0 !important
}

button, select {
    text-transform: none;
    cursor: pointer;
    box-sizing: border-box
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

fieldset {
    margin: 0;
    border: none
}

.form-group, .sup-cat p {
    margin-bottom: 30px
}

.container, .slick-track {
    margin: 0 auto
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 500
}

legend {
    color: inherit;
    max-width: 100%;
    white-space: normal
}

#column-left .checkbox-group-overflow > .scroll-element .scroll-bar, #information-information .in-catz a:hover span, #menu + .alert-success .container, .contentor .alert-success .container {
    background-color: var(--c-mid-green)
}

input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text] {
    width: 100%;
    padding-left: 15px;
    font-size: 18px;
    border: 1px solid #000;
    box-sizing: border-box;
    height: 50px;
    border-radius: 7px
}

textarea {
    overflow: auto;
    resize: none;
    padding: 15px;
    box-sizing: border-box;
    font-size: 18px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 7px
}

[type=search] {
    -webkit-appearance: textfield;
    outline: 0
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
    outline: 0
}

.container {
    width: 95%;
    box-sizing: border-box;
    max-width: 1400px;
    height: 100%
}

header {
    height: 180px
}

.slick-dots li {
    margin: 0 20px;
    width: 8px;
    height: 8px
}

.red, .xerror {
    color: var(--c-error)
}

.slick-slider {
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list, .slick-slider .slick-track {
    transform: translate3d(0, 0, 0)
}

.slick-track :is(::after,::before) {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

.print-btn {
    background: url('../image/printer.webp') left center/34px no-repeat;
    padding: 10px 0 10px 43px;
    font-size: 14px;
    margin-top: 20px;
    top: -8px
}

.m0, figure {
    margin: 0
}

.gridlines {
    width: 100%;
    margin-top: 3vw
}

#tab-description h2, .tab-content + h3 {
    font-size: clamp(1.0625rem, 1.0426rem + .0873vw, 1.125rem);
    color: var(--c-dark-green);
    margin-bottom: 30px
}

.gridlines :is(.row0,.row26) td {
    border-left: 3px solid #f5f8f4;
    border-right: 3px solid #f5f8f4
}

:where(#tab-specification,.gridlines) tbody td {
    font-size: clamp(.9375rem, .8777rem + .262vw, 1.125rem);
    border-top: 3px solid #f5f8f4;
    border-left: 3px solid #f5f8f4;
    border-bottom: 3px solid #f5f8f4;
    padding: 15px 10px;
    width: 50%
}

.gridlines tbody td:is(:first-of-type,:nth-of-type(2),:nth-of-type(3)) {
    width: 15%
}

:where(#tab-specification,.gridlines) tbody td:last-of-type {
    border-right: 2px solid #f5f8f4
}

#tab-description p {
    font-size: 18px;
    color: var(--c-x-green)
}

#product .form-group label {
    margin-right: 20px
}

#quanter {
    border: 2px solid
}

#quanter input {
    height: 40px;
    width: 40px;
    font-size: 18px
}

#sub-quanter, .sub-quanter {
    width: 31px
}

.wishlister {
    background: url('../image/icon-wish-2.webp') left center/40px no-repeat;
    padding: 10px 0 10px 48px
}

#sub-quanter button {
    height: 25px;
    font-size: 18px
}

#product-product #productz .product-layout {
    width: 18%
}

.contentor {
    padding-bottom: 6vw
}

.thumbnails li:first-of-type {
    margin-bottom: 1vw
}

#tab-description {
    margin: 2vw 0 3vw
}

#categoriz ul ul > li:last-of-type, #home_filter, #option_filter .container_counter {
    margin-bottom: 15px
}

.product-layout.no-available :is(.compare-btn,.price,.quant,.sup-btn-cart,.wish-btn,h4,img) {
    filter: grayscale(1) !important
}

#featured-catz .in-catz a:hover img {
    opacity: .7
}

#option_filter .checkbox-group h3 strong, #option_filter .checkbox-group-price h3 strong {
    border-bottom: none !important
}

#option_filter .checkbox-group h3, #option_filter .checkbox-group-price h3 {
    padding: 15px 30px 15px 18px
}

.filter .checkbox-group input + label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--c-dark-green);
    border-radius: 5px;
    background-color: #fff;
    margin-right: 9px
}

.filter .checkbox-group input:checked + label::before {
    background-color: var(--c-light-green) !important
}

.filter #option_filter h2 {
    padding-left: 20px
}

.filter .checkbox-group :is(.checkbox label,.radio label) {
    padding: 0 0 0 8px;
    display: flex;
    position: relative;
    width: auto;
    align-items: center;
    font-size: 15px;
    color: var(--c-darker);
    margin-left: 10px;
    cursor: pointer
}

.filter .filter_total {
    margin-right: 20px;
    padding: 4px 2px
}

.checkbox-group-overflow > .scroll-element.scroll-y .scroll-bar {
    min-height: 10px
}

.filter .ui-widget-content {
    border: 1px solid var(--c-mid-green)
}

#column-left .formCost input.form-control {
    width: 75px;
    padding-right: 10px !important;
    text-align: left !important;
    height: auto !important;
    margin-top: 13px
}

#maxCost, #minCost {
    color: var(--c-mid-green) !important;
    padding-left: 10px
}

#column-left #maxCost {
    text-align: right !important
}

#column-left #minCost {
    margin-left: 7px
}

.filter .ui-slider-horizontal {
    height: .67em !important
}

.filter .ui-slider .ui-slider-handle {
    background-color: var(--c-mid-green);
    border-radius: 5px;
    width: 16px;
    height: 27px;
    display: block;
    position: absolute;
    z-index: 2;
    cursor: default
}

.filter .ui-state-default, .filter .ui-widget-content .ui-state-default, .filter .ui-widget-header .ui-state-default {
    margin-top: -6px
}

#sup-filter .btn-white {
    font-size: 12px;
    color: #64952a;
    border: 1px solid var(--c-mid-green);
    background: 0 0;
    text-transform: none;
    padding: 11px
}

#column-left .filter #option_filter .formCost.checkbox {
    margin-bottom: 50px !important
}

#option_filter .pupop-filter .btn {
    padding: 5px 20px;
    font-size: 14px;
    box-sizing: border-box;
    margin-top: 10px
}

#home_filter {
    border: 2px solid rgba(40, 86, 10, .5)
}

#home_filter > #home_filter {
    border: none !important;
    margin-bottom: 0 !important
}

.filter #option_filter .checkbox {
    margin: 0 0 13px
}

#cookie-desc, #option_filter .container_count .clearfix, .filter #option_filter > .options_container, footer .phones a {
    margin-bottom: 10px
}

.filter .checkbox-group .checkbox a {
    font-size: 15px;
    display: block
}

.filter .checkbox-group .radio label::before {
    border-radius: 10px
}

#option_filter .checkbox-group .row + .checkbox-group-overflow, #option_filter .checkbox-group .row + .select-group {
    margin-top: 10px
}

.pupop-filter {
    font-size: 14px;
    left: 100%;
    margin-left: 15px;
    padding: 7px 10px;
    top: -7px
}

#formCost_popup + .pupop-filter {
    top: auto
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

@-webkit-keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

.filter_container a {
    background: #f0f0f0;
    color: #3f454b;
    display: inline-block;
    font-size: 13px;
    margin: 0 10px 10px 0;
    padding: 4px 17px 4px 10px
}

.input-group .formCost input.form-control {
    background: 0 0;
    border: 1px solid #999;
    border-radius: 3px;
    color: #434343;
    float: left;
    font-size: 14px;
    height: 28px;
    padding-right: 10px;
    text-align: right;
    top: -2px;
    width: 55px
}

.filter_cloud_mobile .formCost input.form-control {
    width: 100px
}

.filter .checkbox-group .checkbox label:before, .input-group .formCost input.form-control:not(:first-child):not(:last-child) {
    border-radius: 3px
}

.formCost label {
    margin-right: 7px
}

.filter .text_more_group {
    padding-top: 10px
}

.filter .form-control {
    border: 1px solid #999;
    padding-top: 4.5px;
    transition: border-color .15s ease-in-out, box-shadow .15s
}

a.not-active-link {
    cursor: default;
    opacity: .7;
    color: gray;
    display: none
}

.filter .checkbox-group .checkbox a.category_filter label, .filter .checkbox-group .radio a.category_filter label, .filter .checkbox-group .radio input.filter_hide + label {
    padding-left: 0
}

.load {
    opacity: .5
}

@media (min-width: 768px) {
    .filter #option_filter .hidden-sm {
        display: none !important
    }
}

.filter .checkbox-group input + input + input, .o0 {
    opacity: 0
}

.filter .ui-slider, .left {
    text-align: left
}

.filter #option_filter .formCost.checkbox .col-sm-12 {
    margin: 0 15px 0 26px
}

.filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0
}

.filter .ui-slider.ui-state-disabled :is(.ui-slider-handle,.ui-slider-range) {
    filter: inherit
}

.filter .ui-slider-horizontal .ui-slider-handle {
    top: -4px;
    margin-left: -14px
}

.filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.filter .ui-slider-horizontal .ui-slider-range-min, .l0 {
    left: 0
}

.filter .ui-slider-horizontal .ui-slider-range-max, .r0 {
    right: 0
}

.filter .ui-slider-vertical {
    width: .8em;
    height: 100px
}

.filter .ui-spinner {
    display: inline-block;
    overflow: hidden;
    padding: 0
}

.filter .ui-spinner-input {
    border: none;
    background: 0 0;
    color: inherit;
    padding: 0;
    margin: .2em 22px .2em .4em;
    vertical-align: middle
}

.filter .ui-spinner-button {
    width: 16px;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0
}

.filter :is(.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right), .non-avail, .product-layout.no-available .button-cart, .w100, .ximg {
    width: 100%
}

.filter .ui-spinner a.ui-spinner-button {
    border-top: none;
    border-bottom: none;
    border-right: none
}

.filter .ui-spinner .ui-icon {
    position: absolute;
    margin-top: -8px;
    top: 50%;
    left: 0
}

.filter :is(.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default) {
    height: 31px
}

.filter .ui-state-default :is(a,a:link) {
    color: #0073ea;
    text-decoration: none
}

.filter .ui-state-focus, .filter .ui-state-hover, .filter .ui-widget-content .ui-state-focus, .filter .ui-widget-content .ui-state-hover, .filter .ui-widget-header .ui-state-focus, .filter .ui-widget-header .ui-state-hover {
    font-weight: 700;
    color: #fff
}

.filter .ui-state-focus :is(a,a:hover,a:link), .filter .ui-state-hover :is(a,a:hover,a:link) {
    color: #fff;
    text-decoration: none
}

.filter .ui-state-active :is(a,a:link,a:visited) {
    color: #ff0084;
    text-decoration: none
}

.filter .ui-state-highlight, .filter .ui-widget-content .ui-state-highlight, .filter .ui-widget-header .ui-state-highlight {
    border: 1px solid #ccc;
    background: #fff;
    color: #444
}

.filter .ui-state-highlight a, .filter .ui-widget-content .ui-state-highlight a, .filter .ui-widget-header .ui-state-highlight a {
    color: #444
}

.filter .ui-state-error, .filter .ui-widget-content .ui-state-error, .filter .ui-widget-header .ui-state-error {
    border: 1px solid #ff0084;
    background: #fff;
    color: #222
}

.filter .ui-state-error a, .filter .ui-state-error-text, .filter .ui-widget-content .ui-state-error a, .filter .ui-widget-content .ui-state-error-text, .filter .ui-widget-header .ui-state-error a, .filter .ui-widget-header .ui-state-error-text {
    color: #222
}

#cart.fixer #cart-total strong span, .filter .ui-priority-primary, .filter .ui-widget-content .ui-priority-primary, .filter .ui-widget-header .ui-priority-primary, .fwb, .gridlines .row0 td, b, strong {
    font-weight: 700
}

.filter .ui-priority-secondary, .filter .ui-widget-content .ui-priority-secondary, .filter .ui-widget-header .ui-priority-secondary {
    opacity: .7;
    font-weight: 400
}

.filter .ui-state-disabled, .filter .ui-widget-content .ui-state-disabled, .filter .ui-widget-header .ui-state-disabled {
    opacity: .35;
    background-image: none
}

.filter :is(.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top) {
    border-top-left-radius: 2px
}

.filter :is(.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr) {
    border-top-right-radius: 2px
}

.filter :is(.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left) {
    border-bottom-left-radius: 2px
}

.filter .ui-widget-shadow {
    margin: -4px 0 0 -4px;
    padding: 4px;
    background: #aaa;
    opacity: .6;
    border-radius: 0
}

.checkbox-group-overflow {
    max-height: 250px;
    overflow-y: scroll
}

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important
}

.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scroll-element, .scroll-element div {
    box-sizing: content-box
}

.bbox, .btn, .btn-grey, .button, .cookie-warning, .modal .close, .radio label span::before, .remove-item-button, button, input[type=submit] {
    box-sizing: border-box
}

.scroll-element :is(.scroll-arrow,.scroll-bar) {
    cursor: default
}

.checkbox-group-overflow > .scroll-element, .checkbox-group-overflow > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.checkbox-group-overflow > .scroll-element div {
    height: 100%;
    width: 100%
}

.checkbox-group-overflow > .scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 12px
}

.checkbox-group-overflow > .scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    width: 8px
}

.checkbox-group-overflow > .scroll-element :is(.scroll-bar,.scroll-element_outer,.scroll-element_track) {
    border-radius: 8px
}

.checkbox-group-overflow > .scroll-content.scroll-scrollx_visible {
    top: -12px;
    margin-top: 12px
}

.checkbox-group-overflow > .scroll-element.scroll-x .scroll-bar {
    min-width: 10px
}

.checkbox-group-overflow > .scroll-element.scroll-y.scroll-scrollx_visible :is(.scroll-element_size,.scroll-element_track) {
    top: -14px
}

#cat-trigger {
    font-size: 13px;
    padding: 11px 11px 9px;
    display: none;
    left: 80px;
    position: absolute;
    width: 110px;
    top: 9px
}

.ximg {
    height: auto;
    vertical-align: top
}

#checkout-cart .text-left .btn-danger {
    padding: 10px
}

#checkout-cart #quant-cart {
    height: 43px;
    margin-right: 5px
}

#total-carter tr:last-of-type td {
    background-color: var(--c-dark-green);
    color: #fff;
    font-weight: 700
}

#total-carter, .buttons, .flex-box {
    margin-top: 2vw
}

#recented h3, .in-catz {
    margin: 3vw 0 2vw
}

#menu + .alert-success, .contentor .alert-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999
}

#menu + .alert-success .container, .contentor .alert-success .container {
    width: 80%;
    color: #fff;
    border-radius: 5px;
    max-width: 800px;
    height: auto;
    padding: 30px
}

#vk-bottom {
    left: 54%;
    top: 56px
}

#recented .filter-closer, .filter .checkbox-group input, .hidder, .icon_mobile_filter, .slick-arrow.slick-hidden, .slick-slide.slick-loading img, [hidden], template {
    display: none !important
}

.btn, .button, .remove-item-button, button, input[type=submit] {
    display: inline-block;
    cursor: pointer;
    outline: 0;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 30px;
    text-align: center;
    border: none;
    color: #fff;
    transition: var(--transition);
    font-size: clamp(1rem, .9461rem + .1896vw, 1.125rem);
    border-radius: var(--radius);
    background-color: var(--c-dark-green);
    border: 2px solid var(--c-dark-green)
}

.btn-small, .remove-item-button {
    font-size: 14px !important;
    padding: 8px 16px;
    border-radius: 4px
}

.btn-red {
    background-color: #93282f;
    border-color: #93282f
}

.btn-invert, :is(.btn,.button,.modal .close,button,input[type=submit],remove-item-button):hover {
    background-color: var(--c-light-green);
    border-color: var(--c-light-green);
    color: var(--c-dark-green)
}

:is(#content .btn-invert,#slideshow .center .btn):hover {
    background-color: var(--c-dark-green);
    color: #fff !important
}

.product-layout .button-cart:hover {
    background-color: var(--c-link-green);
    color: #fff
}

#cart.fixer #cart-total :is(strong,strong span), #menu nav > ul > li > a, .breadcrumb, .breadcrumb a, .in-catz span, .live-search .view-all-results:hover {
    color: var(--c-dark-green)
}

#fon {
    top: 50px
}

#fon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/fon.webp') left top;
    opacity: .05
}

#top-header {
    height: 50px
}

#top-header .phones {
    top: 9px;
    background: url(../image/call.webp) left 4px/23px no-repeat;
    padding: 5px 0 5px 30px
}

#top-header .phones a {
    margin: 0 5px;
    top: 2px
}

.open {
    background: url(../image/time.webp) left center/17px no-repeat;
    padding-left: 25px
}

#top-header .open {
    left: 450px;
    top: 16px
}

.address {
    background: url('../image/pin.webp') left center/17px no-repeat;
    padding-left: 20px
}

#top-header .address {
    left: 690px;
    top: 16px;
    font-size: 14px
}

#top-header .vk {
    left: 1060px;
    width: 28px;
    height: 28px;
    background: url(../image/vk.webp) center no-repeat;
    top: 11px
}

#top-header .tg {
    left: 1115px;
    width: 24px;
    height: 24px;
    background: url(../image/tg-icon.webp) center no-repeat;
    top: 14px
}

#cart.fixer, #slideshow .center .btn, .live-search .view-all-results:hover {
    background-color: var(--c-light-green)
}

#top-links strong {
    font-size: 14px
}

header .logo {
    width: 140px;
    left: 0;
    top: 20px
}

header .titler {
    width: 300px;
    left: 160px;
    top: 28px
}

#cart {
    right: 35px;
    top: 25px
}

#cart > button {
    padding-top: 95px;
    background: url(../image/cart.webp) top left/80px auto no-repeat
}

#cart-total strong {
    margin-bottom: 4px
}

#cart-total strong:last-of-type span {
    color: var(--c-light-green)
}

#cart.fixer {
    position: fixed;
    right: 20px;
    top: 40%;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    z-index: 999
}

#cart.fixer > button {
    background-image: url(../image/cart-fixer.webp);
    background-size: 46px auto;
    padding-top: 51px
}

#cart.fixer #cart-total strong, .center {
    text-align: center
}

.contentor {
    border-radius: 0 0 50px 50px
}

#sub-footer {
    height: 45px
}

#copy, #prana, #top-links {
    top: 14px
}

#prana a {
    background: url(../image/prana_icon_white.webp) right 1px/24px auto no-repeat;
    padding-right: 29px
}

footer .logo {
    width: 107px;
    top: 35px
}

footer .titler {
    left: 130px;
    top: 44px;
    width: 210px
}

footer .address {
    top: 175px
}

footer .open {
    top: 205px
}

#warning {
    top: 250px;
    width: 420px;
    background: url('../image/warning.webp') left 4px no-repeat
}

#sup-footer {
    height: 350px
}

#yandex-footer {
    width: 190px;
    top: 200px
}

#bottom-menu {
    left: 515px;
    top: 44px
}

#bottom-menu li {
    margin-bottom: 19px
}

footer .email {
    background: url('../image/envelope.webp') left center no-repeat;
    top: 137px
}

footer .phones {
    top: 40px;
    background: url('../image/call.webp') left top no-repeat
}

.input-group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between
}

#search {
    right: 300px;
    top: 83px;
    width: 400px;
    height: 51px
}

#search input[type=text] {
    height: 30px;
    margin: 0 60px 0 40px
}

#search .btn {
    width: 25px;
    height: 25px;
    right: 17px;
    top: 13px;
    background: url(../image/search2.webp) center no-repeat;
    padding: 0
}

#mission {
    right: 300px;
    top: 30px
}

#menu {
    height: 69px;
    border-radius: 50px 50px 0 0
}

#top-contentor .container {
    min-height: 66px
}

#top-contentor.right-contentor .container {
    justify-content: flex-end
}

#top-contentor.right-contentor {
    justify-content: flex-end;
    width: 100%;
    background-color: var(--c-bg)
}

.breadcrumb, .breadcrumb a {
    font-size: clamp(.8125rem, .7527rem + .262vw, 1rem)
}

.breadcrumb li, .star, .sup-btn-cart strong {
    margin: 5px 5px 5px 0
}

.breadcrumb li:last-of-type a {
    color: var(--c-mid-green);
    cursor: default;
    text-decoration: none !important
}

.breadcrumb li::after {
    content: '/';
    margin-left: 5px
}

.breadcrumb li:last-of-type {
    margin-right: 0 !important
}

#menu nav > ul > li > a {
    font-size: 16px;
    padding: 20px 15px
}

#menu nav > ul > li > a::after {
    content: '';
    position: absolute;
    left: 15px;
    width: 0;
    height: 2.5px;
    bottom: 13px;
    background-color: var(--c-dark-green);
    display: block
}

#menu nav > ul > li > a:hover::after {
    width: 81% !important
}

.right-nav__trigger {
    font-size: 17px;
    padding: 20px 0 20px 55px;
    background: url('../image/sad.webp') left center/45px no-repeat
}

#featured-catz {
    background: url('../image/featured-catz-bg.webp') center no-repeat;
    padding: 40px 0
}

#featured-catz::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgb(0, 0, 0, .6);
    z-index: 10
}

.in-catz {
    grid-template-columns:repeat(5, 1fr);
    grid-gap: 40px
}

#prductz, .banner {
    grid-template-columns:repeat(4, 1fr)
}

#information-information .in-catz {
    grid-template-columns:repeat(3, 1fr)
}

:is(#information-information,#featured-catz) .in-catz a:hover {
    border-color: var(--c-mid-green)
}

.live-search {
    padding: 5px 0 20px;
    margin-top: 40px;
    display: none
}

.live-search ul li {
    padding: 5px;
    margin: 0 5px
}

.live-search ul li:nth-child(2n) {
    background-color: #fafafa
}

.live-search ul li:hover {
    background-color: #f0f7fa
}

.live-search ul li .product-name {
    width: 72%;
    font-size: 15px
}

.live-search ul li .product-price {
    font-size: 12px
}

.live-search .result-text {
    font-size: 14px;
    bottom: -25px
}

.live-search .view-all-results {
    padding: 10px;
    background-color: var(--c-dark-green)
}

#product-category .live-search {
    width: 70%;
    top: 5px
}

.in-catz a {
    border: 2px solid #fff
}

.in-catz span {
    background-color: #fff;
    min-height: 60px;
    padding: 0 5px
}

.filter-closer {
    display: none;
    background: var(--c-dark-green)
}

#slideshow .center {
    bottom: 40px
}

#slideshow .center .btn {
    border: 2px solid #fff;
    padding-left: 50px;
    padding-right: 50px;
    color: var(--c-grey)
}

#slideshow .sld span {
    top: 30%
}

.slick-dots button {
    background-color: var(--c-dark-green);
    opacity: .33;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    text-indent: -99999px
}

#prductz {
    grid-gap: 2vw
}

.product-layout p.titler {
    min-height: 57px;
    padding: 7px 5px 0
}

.product-layout .quant {
    font-size: 15px;
    padding: 10px 0
}

.product-layout .price {
    font-size: 20px;
    padding: 10px 0
}

.product-layout .price-old {
    font-size: 14px;
    padding: 10px 0
}

.product-layout :is(.button-cart,.non-avail) {
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px
}

#prductz .qty-input {
    width: 31px;
    height: 27px;
    font-size: 15px;
    margin-right: 10px
}

.flex-box #column-left {
    width: 315px
}

.flex-box #column-right {
    width: 300px
}

.flex-box #content {
    width: calc(100% - 350px)
}

#product-compare table span a.btn {
    background: url(../image/printer.webp) center/34px no-repeat;
    padding: 20px;
    margin-left: 10px
}

.product-layout .product-group {
    padding: 0 10px
}

.product-layout .product-group > :is(a,button) {
    padding: 10px 5px 11px 24px;
    font-size: 12px;
    margin-bottom: 10px
}

.product-layout .compare-btn {
    padding-right: 0;
    background: url('../image/icon-compare.webp') left center/21px no-repeat
}

.product-layout .wish-btn {
    padding-right: 0;
    background: url('../image/icon-wish.webp') left center/21px no-repeat
}

.sup-btn-cart {
    min-height: 145px;
    padding: 5px 0 6px 20px
}

.sup-btn-cart > div {
    font-size: 14px;
    padding: 10px 0 10px 30px
}

.sup-btn-cart > div strong {
    font-size: 14px;
    font-weight: 400
}

:is(#categoriz,#account) h2 {
    font-size: 18px;
    color: var(--c-darker);
    padding: 17px 0 13px 23px
}

#account, #categoriz {
    border: 1px solid var(--c-dark-green);
    border-radius: 5px
}

#column-left #option_filter h3 .fa, .pluser {
    background-image: url('../image/pluser.webp');
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: cover;
    right: 10px;
    width: 17px;
    height: 17px;
    top: 15px;
    margin-right: 0 !important
}

.table, table {
    width: 100%;
    border-collapse: collapse;
    border: none
}

.table-bordered tbody td, .table-bordered tfoot td {
    border-bottom: 1px solid #000;
    padding: 10px 15px
}

.table-bordered tfoot tr:first-of-type td {
    border-top: 1px solid #000
}

.table-bordered tbody tr:last-of-type td, .table-bordered tfoot tr:last-of-type td {
    border-bottom: none
}

.table-bordered tfoot td {
    background-color: #f5f8f4;
    font-weight: 500
}

.btn.btn-info {
    padding: 10px 30px
}

.alert .close {
    padding: 2px 9px;
    margin-left: 8px
}

.gridlines .row0 td, .gridlines .row26 td, .table-bordered thead td {
    font-size: clamp(.8125rem, .7667rem + .181vw, .9375rem);
    background-color: #f5f8f4;
    padding: 15px;
    color: var(--c-dark-green)
}

.gridlines .row26 td {
    font-weight: 700;
    text-align: center
}

:is(#categoriz,#account) > ul > li > a {
    font-size: 15px;
    color: var(--c-darker);
    border-top: 1px solid #000;
    padding: 13px 20px
}

#categoriz ul ul li a {
    font-size: 14px;
    padding: 8px 0;
    color: var(--c-darker)
}

#categoriz ul ul {
    padding-left: 30px
}

#categoriz ul ul > li:first-of-type, .slick-dots {
    margin-top: 15px
}

.banner {
    grid-gap: 30px;
    margin: 3vw auto
}

.banner .caption {
    padding: 7px;
    top: 50%;
    margin-top: -8%
}

.pagination-x {
    padding: 1.4vw;
    margin: 2vw 0
}

.pagination li, .rating a, .rating-vote label {
    margin: 0 5px
}

.pagination :is(a,span) {
    color: #669846;
    width: 31px;
    height: 27px
}

.pagination :is(a:hover,span) {
    background-color: #669846;
    color: #fff
}

.desc {
    padding: 20px;
    margin-bottom: 2vw
}

#content .right-pr {
    width: 50%
}

#content .left-pr {
    width: 45%
}

.left-pr .image-additional {
    width: 30%
}

.right-pr .price {
    margin: 1vw 0 1.3vw
}

.super {
    padding: 8px 0 10px 31px;
    margin-bottom: .4vw;
    font-size: 14px
}

.location {
    background: url('../image/icon-location.webp') left center/22px no-repeat
}

.articul {
    background: url(../image/icon-barcode.webp) left center/23px no-repeat
}

.visota {
    background: url(../image/visota.webp) left center/23px no-repeat
}

.blossom {
    background: url(../image/blossom.webp) left center/23px no-repeat
}

.wait {
    background: url(../image/wait-icon-2.png) left center/23px no-repeat
}

.stock {
    margin: 1vw 0
}

.ck-row .col-sm-3 {
    width: 33%;
    margin-bottom: 3vw
}

.text-danger {
    font-style: italic;
    font-size: 15px;
    margin-top: 5px;
    color: var(--c-error)
}

.radio input {
    opacity: 0;
    position: absolute;
    z-index: 1
}

.radio label span {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 700
}

.radio label span::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--c-mid-green);
    margin-right: 10px
}

.simplecheckout-block, .table-responsive {
    border: 4px solid var(--c-mid-green);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 3vw
}

#checkout-cart table img, .simplecheckout-cart td.image img {
    overflow: hidden;
    border: 2px solid var(--c-mid-green);
    border-radius: 5px;
    display: block
}

#simplecheckout_cart #total_shipping, #simplecheckout_cart #total_sub_total, #total-carter tr:first-of-type, #total-carter tr:nth-of-type(2), .breadcrumb li:last-of-type::after, .filter #option_filter .none, .filter .checkbox.none, .filter .options_container .filter_total, .filter .radio.none, .scroll-element, a.category_filter input {
    display: none
}

#total_total {
    background-color: #f5f8f4;
    border-top: 1px solid rgba(0, 0, 0, .5);
    font-size: 17px;
    padding: 13px 0 14px
}

#sup-sec .sup-act:hover, #wishlist-items table h5 a:hover, .accounter a:hover, .button-setting:hover, .simplecheckout-cart .name a:hover, :is(#top-links a,#bottom-menu a,#account-account .list-unstyled a,.breadcrumb a,.phones a,footer .email,.product-layout p.titler a,.print-btn):hover {
    text-decoration: underline
}

.btn-catz {
    width: 40px;
    height: 40px;
    background: url('../image/threelines.webp') center/20px no-repeat;
    background-color: var(--c-dark-green)
}

.alert {
    padding: 20px 0;
    text-align: center;
    font-weight: 500;
    font-size: clamp(.8125rem, .7527rem + .262vw, 1rem)
}

.alert-danger, .alert-warning {
    background-color: var(--c-error);
    color: #fff
}

.modal .close {
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    border-radius: 0 0 0 10px
}

.accounter {
    border: 4px solid var(--c-mid-green);
    margin-bottom: 4vw
}

.sup-cat, .sup-catp {
    margin-bottom: 3vw;
    padding: 1vw 0 3vw
}

.accounter h2 {
    margin: 0 0 20px;
    font-size: 16px;
    background-color: #f6f8f5;
    padding: 14px 0 14px 20px
}

.accounter a {
    font-size: 17px;
    padding: 8px 0 13px 15px
}

.sup-catp {
    background-color: var(--c-bg)
}

.sup-catp .live-search li > div {
    display: flex;
    align-items: center;
    width: 100%
}

.sup-catp .live-search li a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between
}

.fw400, .fwn, .sup-catp .live-search ul li .product-name {
    font-weight: 400
}

.sup-cat ul {
    grid-template-columns:repeat(8, 1fr);
    grid-gap: 40px
}

.sup-cat a span {
    padding: 9px 0
}

.sup-cat li:hover img {
    border-radius: 10px 10px 0 0
}

#featured-catz .in-catz a:hover span, #sup-filter .btn-white:hover, .sup-cat li:hover span {
    background-color: var(--c-mid-green);
    color: #fff
}

.search-category #input-search {
    width: 70%;
    margin-right: 4%
}

.button-dwn {
    background-color: var(--c-mid-green);
    margin-top: auto
}

.search-category .btn {
    width: 20%
}

#menu-trigger {
    background: var(--c-dark-green) url('../image/threelines.webp') center no-repeat;
    left: 20px;
    top: 9px;
    display: none
}

#information-information .in-catz a {
    border: 2px solid var(--c-dark-green)
}

#information-information .in-catz a:hover, #search input[type=text]:focus, .slick-dots .slick-active button, .slick-dots button:hover {
    opacity: 1
}

#information-information .in-catz span {
    background: var(--c-dark-green);
    color: #fff
}

#notify_when_available.fade {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .9);
    display: none
}

.cookie-warning {
    position: fixed;
    z-index: 99;
    background-color: rgba(217, 235, 1, .75);
    padding: 20px;
    color: #000;
    bottom: 40px;
    right: 40px;
    text-align: center;
    border-radius: 10px;
    width: 400px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .5s ease-out, transform .5s ease-out
}

.cookie-warning.visible {
    opacity: 1;
    transform: translateY(0)
}

.cookie-warning button {
    border: 2px solid var(--c-dark-green) !important;
    height: 40px;
    font-size: 15px;
    padding: 5px 15px;
    width: 45%
}

#cookie-desc {
    font-size: 15px;
    margin-top: 10px
}

#cookie-title {
    margin: 0;
    font-size: 19px;
    text-transform: uppercase
}

#notify_when_available.fade .modal-body {
    display: block;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 100vh;
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

#notify_when_available.fade .modal-title {
    color: #fff;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 28px
}

.product-layout .modal, .right-pr .modal, .x-modal {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, .65);
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    z-index: 999
}

:is(.product-layout,.right-pr,.x-modal) .modal-dialog {
    background-color: #fff;
    width: 750px;
    border-radius: var(--radius);
    box-sizing: border-box;
    text-align: center;
    padding: 2vw 3vw;
    margin: 0 auto;
    position: relative;
    border: 4px solid var(--c-mid-green)
}

.abs, .modal:after {
    position: absolute
}

.product-layout .modal-dialog input[type=text], .product-layout .modal-dialog select, .right-pr .modal-dialog input[type=text], .right-pr .modal-dialog select, .x-modal .modal-dialog input[type=text], .x-modal .modal-dialog select {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #f5f8f4;
    padding-left: 10px;
    font-size: 16px;
    color: var(--c-x-green)
}

:is(.right-pr,.product-layout,.x-modal) .modal-footer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 2vw 0 30px
}

:is(.right-pr,.product-layout,.x-modal) .modal-footer button {
    width: 45%;
    padding: 9px 5px
}

.mail-textor, .mail-textor + td {
    padding-top: 0 !important
}

:is(.product-layout,.right-pr,.x-modal .modal-footer) .input-group {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    justify-content: center
}

.product-layout .modal-dialog .modal-title, .right-pr .modal-dialog .modal-title, .x-modal .modal-footer .modal-title {
    text-align: center;
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    color: var(--c-dark-green)
}

:is(.right-pr,.product-layout) .modal-dialog h5 {
    font-size: 16px;
    color: var(--c-dark-green);
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left
}

.mail-textor {
    width: 90%
}

.btn-grey {
    font-size: 12px;
    color: var(--c-dark-green);
    background-color: #dee3dd;
    border-radius: 4px;
    display: inline-block;
    padding: 6px 10px 7px;
    border: 2px solid #dee3dd;
    text-transform: none
}

.flx, .modal:after {
    display: flex
}

#product-compare tbody tr:nth-of-type(2n), :where(#categoriz,#account) > ul > li {
    background-color: var(--c-bg)
}

#recented .container {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    grid-template-rows:repeat(2, 1fr);
    grid-gap: 2vw
}

#product-product .compare-btn {
    background: url('../image/icon-compare.webp') left center/40px no-repeat;
    padding: 10px 0 10px 48px
}

#productz .product-layout .button-cart, .radio label input:checked + span::before {
    background-color: var(--c-mid-green) !important
}

:is(#categoriz ul ul li a,#product-product .compare-btn):hover, :is(#categoriz,#account) > ul > li > a:hover {
    color: var(--c-link-green)
}

.modal:after {
    content: 'x';
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: var(--c-dark-green);
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    font-size: 24px;
    border-radius: 0 0 0 5px;
    cursor: pointer;
    overflow: hidden
}

.cdarkgreen {
    color: var(--c-dark-green)
}

.cmidgreen {
    color: var(--c-mid-green)
}

.cxgreen {
    color: var(--c-x-green)
}

.right {
    text-align: right
}

.fxd {
    position: fixed
}

.iflx {
    display: inline-flex
}

.aic {
    align-items: center
}

.jcc {
    justify-content: center
}

.jcsb {
    justify-content: space-between
}

.flxdc {
    flex-direction: column
}

.flxwn {
    flex-wrap: nowrap
}

.flxww {
    flex-wrap: wrap
}

.fw500 {
    font-weight: 500
}

.upper {
    text-transform: uppercase
}

.ttn {
    text-transform: none
}

rdn {
    border-radius: 0
}

.rds {
    border-radius: var(--radius)
}

.checkbox-group-overflow > .scroll-element .scroll-element_outer, .descrolled, .ovf {
    overflow: hidden
}

#home_filter .filter, #information-information .flex-box h1, .mt0 {
    margin-top: 0
}

.t0 {
    top: 0
}

.bn {
    border: none !important
}

.lh1 {
    line-height: 1
}

.z99 {
    z-index: 99
}

.ls0 {
    letter-spacing: 0
}

.dib {
    display: inline-block
}

.mb0 {
    margin-bottom: 0 !important
}

#search input[type=text]::placeholder, .alert a, .white {
    color: #fff
}

.black {
    color: #000
}

.bgwhite {
    background-color: #fff
}

.curp {
    cursor: pointer
}

.h100 {
    height: 100%
}

.h0 {
    height: 0
}

.maxw100 {
    max-width: 100%
}

.ha {
    height: auto
}

.rating-vote label, .rating-vote label input, .star {
    width: 20px;
    height: 20px
}

#product-category .live-search ul, .db, .scroll-element.scroll-y.scroll-scrolly_visible, .slick-initialized .slick-slide, .slick-slide img, details, main {
    display: block
}

.displayed {
    display: flex !important
}

.b0 {
    bottom: 0
}

#tab-review, #x-cart {
    margin-top: 3vw
}

#tab-review td {
    padding-bottom: 13px
}

.empty-star {
    fill: var(--c-star)
}

.full-star, .x-star svg {
    fill: var(--c-mid-green) !important
}

#sup-filter, .tab-content {
    margin-bottom: 2vw
}

#x-cart .qty-btn {
    font-size: 22px;
    width: 40%
}

#x-cart .button-cart {
    width: 60%;
    height: 50px
}

#qty-btn {
    width: 35%
}

#qty-btn .qty {
    font-size: 20px;
    height: 51px;
    width: 51px;
    margin: 0 5px;
    padding: 0 10px
}

@media (max-width: 1410px) {
    #mission, #search {
        right: 240px
    }

    #menu nav > ul > li > a {
        font-size: 15px
    }

    .sup-cat ul {
        grid-template-columns:repeat(7, 1fr);
        grid-gap: 30px
    }

    #bottom-menu {
        left: 460px
    }

    #vk-bottom {
        left: 48%
    }

    .cookie-warning {
        bottom: 15px;
        right: 20px;
        padding: 10px
    }

    #cookie-title {
        font-size: 18px
    }
}

@media (max-width: 1310px) {
    .sup-rate .rating {
        flex-wrap: wrap
    }

    .sup-btn-cart {
        padding: 5px 0 6px 5px
    }

    .product-layout :is(.button-cart,.non-avail) {
        padding-left: 5px;
        padding-right: 5px
    }

    #menu nav > ul > li > a {
        padding: 20px 10px
    }

    h1 {
        margin: 30px 0 20px
    }

    .in-catz {
        grid-gap: 30px
    }

    #vk-bottom {
        display: none
    }

    #top-header .phones {
        background-position: left 5px;
        background-size: 20px;
        padding-left: 28px
    }

    .open {
        background-size: 15px;
        padding-left: 22px
    }

    header .logo {
        width: 110px
    }

    header .titler {
        width: 230px;
        left: 127px
    }

    #top-header .open {
        left: 350px
    }

    #top-header .address {
        left: 580px
    }

    #top-header .vk {
        left: 960px
    }

    #recented .container {
        grid-template-columns:repeat(4, 1fr);
        flex-wrap: wrap
    }
}

@media (max-width: 1210px) {
    #top-header .open {
        display: none
    }

    #x-cart .button-cart {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 15px;
        width: 62%
    }

    .be-image {
        width: 17%
    }

    .sup-btn-cart {
        min-height: 160px
    }

    #recented .container {
        grid-template-columns:repeat(3, 1fr)
    }

    .heading_title {
        font-size: 23px
    }

    .right-pr .price h2 {
        margin-bottom: 5px
    }

    #cart.fixer {
        right: 7px;
        padding: 10px
    }

    h1 {
        margin: 24px 0 18px
    }

    #content .right-pr {
        width: 52%
    }

    .sup-cat ul {
        grid-template-columns:repeat(6, 1fr)
    }

    .flex-box :is(#column-left,#column-right) {
        width: 296px
    }

    .flex-box #content {
        width: calc(100% - 320px)
    }

    .in-catz {
        grid-template-columns:repeat(4, 1fr)
    }

    .banner {
        grid-gap: 20px
    }

    #menu nav > ul > li > a {
        padding: 14px 8px;
        font-size: 14px
    }

    #menu {
        height: 60px
    }

    .right-nav__trigger {
        padding-left: 31px;
        background-size: 27px;
        font-size: 14px
    }

    #menu nav > ul > li > a::after {
        left: 10px;
        height: 2px;
        bottom: 9px
    }

    #cart {
        right: -6px
    }

    #mission, #search {
        right: 120px
    }

    #top-header .address {
        left: 345px
    }

    #top-header .vk {
        left: 720px
    }
}

@media (max-width: 1110px) {
    #mission {
        right: 120px
    }

    .sup-btn-cart {
        min-height: 145px
    }

    #information-information .in-catz {
        grid-template-columns:repeat(2, 1fr)
    }

    .first-btn-group {
        flex-direction: column
    }

    #cart.fixer > button {
        background-size: 33px auto;
        padding-top: 39px
    }

    #quanter input {
        width: 37px;
        height: 37px
    }

    .wishlister {
        background-size: 35px;
        padding: 1px 0 10px 41px
    }

    .sup-cat ul {
        grid-template-columns:repeat(5, 1fr)
    }

    #prductz {
        grid-template-columns:repeat(3, 1fr)
    }

    #product .form-group label {
        display: none
    }

    #bottom-menu {
        left: 530px
    }

    #menu nav > ul > li > a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px
    }

    #cart > button {
        background-size: 60px auto;
        padding-top: 70px
    }

    #search {
        top: 54px
    }

    header {
        height: 160px
    }
}

@media (max-width: 1030px) {
    .alert {
        padding: 15px 10px
    }

    .table-item-quantity {
        position: relative;
        z-index: 99
    }

    .quantity-buttons .btn {
        width: 40px;
        height: 36px;
        font-size: 20px
    }

    .quantity-buttons .input-quantity-field {
        height: 37px
    }

    #cart.fixer {
        padding: 7px;
        border-radius: 4px
    }

    .sup-cat ul {
        grid-template-columns:repeat(5, 1fr)
    }

    #bottom-menu {
        left: 485px
    }

    .in-catz {
        grid-template-columns:repeat(3, 1fr)
    }

    #menu nav > ul > li > a {
        font-size: 12px;
        padding-left: 4px;
        padding-right: 4px
    }

    #top-header .vk, .pagination-x .text-right {
        display: none
    }

    header .logo {
        width: 90px;
        top: 12px
    }

    #top-header .address {
        left: 330px
    }

    header .titler {
        width: 190px;
        left: 104px;
        top: 17px
    }

    #mission, #search {
        right: 108px
    }

    #mission {
        top: 18px
    }

    #search {
        height: 42px
    }

    #search .btn {
        right: 14px;
        top: 8px
    }

    #cart {
        top: 11px
    }

    #cart > button {
        background-size: 45px auto;
        padding-top: 53px
    }

    header {
        height: 123px
    }

    #slideshow .center .btn {
        padding-left: 40px;
        padding-right: 40px
    }

    #slideshow .center {
        bottom: 30px
    }
}

@media (max-width: 905px) {
    #menu nav, .ck-row .col-sm-3 {
        width: 100%
    }

    .ck-row .col-sm-3, .pagination, .sup-cat p, h1 {
        text-align: center
    }

    #menu, #menu nav {
        overflow: hidden
    }

    #top-header .address {
        left: auto;
        right: 0;
        top: 34px
    }

    #option_filter .pupop-filter {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        margin: 0;
        border-radius: 0
    }

    #menu li:last-of-type, #sup-filter .btn-white, .ck-row .col-sm-3 {
        margin-bottom: 20px
    }

    #option_filter .pupop-filter .btn {
        width: 44%;
        margin-left: 2%;
        margin-right: 2%;
        margin-top: 0
    }

    #categoriz {
        border-radius: none
    }

    #menu nav > ul > li > a {
        font-size: 16px
    }

    #fon {
        top: 59px
    }

    #top-header {
        height: 59px
    }

    :is(.product-layout,.right-pr,.x-modal) .modal-dialog {
        width: 90%
    }

    .filter-closer {
        display: flex
    }

    #recented .container {
        grid-gap: 4vw
    }

    .simplecheckout-block, .table-responsive {
        border-width: 3px
    }

    #checkout-cart table img, .simplecheckout-cart td.image img {
        border-width: 1px
    }

    #top-contentor.right-contentor .container, .pagination {
        justify-content: center
    }

    #menu nav > ul, .flex-box {
        flex-direction: column
    }

    .flex-box #column-left {
        z-index: 1000;
        margin-left: 0;
        top: 0;
        bottom: 0;
        background-color: #fff;
        width: 100%;
        position: fixed;
        border-radius: 0;
        left: -101%;
        overflow: scroll
    }

    #home_filter {
        border: none !important
    }

    #column-right {
        margin-top: 4vw
    }

    #cart.fixer > button {
        padding-top: 34px;
        background-size: 30px auto
    }

    #menu nav > ul > li > a::after {
        left: 0
    }

    #menu nav > ul > li > a:hover::after, .flex-box #column-right, .flex-box #content {
        width: 100% !important
    }

    #top-contentor .container {
        min-height: 50px;
        flex-direction: column;
        justify-content: center
    }

    h1 {
        margin: 24px 0 15px
    }

    .tab-content + h3, :is(#tab-description,#tab-specification) h2 {
        text-align: center;
        margin-bottom: 20px
    }

    .flexor {
        margin-top: 30px
    }

    #product-category h1 {
        margin-bottom: 7px;
        padding-top: 6px
    }

    .sup-cat ul {
        grid-template-columns:repeat(4, 1fr)
    }

    .banner {
        grid-gap: 13px
    }

    #slideshow .center {
        bottom: 20px
    }

    #cat-trigger, #menu-trigger {
        display: block
    }

    #menu {
        height: auto
    }

    #menu nav {
        margin-top: 55px;
        height: 0
    }

    #right-nav {
        position: absolute;
        right: 20px;
        top: 19px
    }

    #bottom-menu, #mission {
        display: none
    }

    #top-header .phones {
        top: 15px;
        padding-bottom: 7px
    }

    #search {
        top: 40px
    }

    #top-links {
        top: 9px
    }
}

@media (max-width: 805px) {
    #search input[type=text] {
        margin-left: 0
    }

    .gridlines .row0 td, .gridlines tbody td {
        padding: 8px 3px
    }

    .gridlines tbody td:last-of-type {
        word-break: break-all
    }

    #cart.fixer #cart-total i, .modal-dialog .modal-footer .btn-small span {
        display: none
    }

    #cart.fixer #cart-total strong:first-of-type {
        position: absolute;
        right: 0;
        top: 0;
        background-color: var(--c-dark-green);
        width: 15px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%
    }

    #cart.fixer #cart-total strong {
        margin-bottom: 0
    }

    #cart.fixer {
        padding: 5px;
        right: 4px;
        box-shadow: 0 0 4px #002c53
    }

    #cart.fixer #cart-total strong:first-of-type span {
        color: var(--c-light-green);
        font-size: 9px
    }

    #recented h3 {
        margin-bottom: 4vw
    }

    .heading_title {
        font-size: 22px
    }

    .stock {
        margin: 2vw 0 3vw
    }

    .banner {
        grid-template-columns:repeat(2, 1fr)
    }

    .sup-cat ul {
        grid-gap: 20px
    }

    #slideshow .center {
        bottom: 10px
    }

    #search {
        width: 186px
    }

    #slideshow .center .btn {
        padding: 10px 30px;
        border-width: 1px
    }

    #copy, #prana {
        position: relative;
        text-align: center;
        top: 0;
        left: 0;
        right: 0
    }

    #copy {
        margin-bottom: 10px
    }

    #sub-footer {
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px
    }
}

@media (max-width: 705px) {
    .in-catz {
        grid-gap: 20px
    }

    .cookie-warning {
        left: 0;
        right: 0;
        width: auto
    }

    #cookie-title {
        font-size: 16px
    }

    .be-price-total {
        font-size: 17px
    }

    .be-price {
        font-size: 15px
    }

    #top-header .address {
        font-size: 13px !important;
        padding-top: 5px;
        padding-bottom: 5px;
        top: 30px
    }

    .link-scape {
        flex-direction: column;
        align-items: center
    }

    .product-layout .compare-btn, .wish-btn {
        width: auto !important
    }

    #product-product .compare-btn {
        display: block;
        text-align: left;
        margin-bottom: 20px
    }

    .alert .close, .wishlister {
        width: auto
    }

    .btn-red {
        font-size: 12px
    }

    .btn, .button, .buttons .pull-left, .buttons .pull-left button, .buttons .pull-right, .buttons .pull-right button, button, input[type=submit] {
        width: 100%
    }

    .buttons .pull-left {
        margin-bottom: 20px
    }

    #slideshow a.sld {
        display: block;
        height: 300px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat
    }

    #slideshow a img {
        display: none
    }

    .table-bordered tbody td, .table-bordered tfoot td {
        padding: 5px 9px;
        font-size: 15px
    }

    .alert {
        padding-top: 14px;
        padding-bottom: 15px
    }

    .buttons {
        flex-direction: column
    }

    .heading_title {
        font-size: 21px
    }

    .buttons .btn:not(:first-of-type) {
        margin-top: 3vw
    }

    .buttons span {
        text-align: center
    }

    #cart.fixer {
        padding: 5px
    }

    .flexor {
        margin-top: 15px
    }

    #cart.fixer > button {
        background-size: 24px auto;
        padding-top: 29px
    }

    .sup-cat ul {
        grid-template-columns:repeat(3, 1fr)
    }

    .banner {
        margin: 5vw auto
    }

    #featured-catz {
        padding-top: 26px
    }

    #slideshow .center {
        bottom: 36px
    }

    #slideshow .center .btn {
        width: 84%
    }
}

@media (max-width: 605px) {
    #top-header :is(.address,.phones) {
        background: 0 0;
        padding-left: 0
    }

    #product .btn-group {
        justify-content: center;
        margin: 7px 0 10px
    }

    #product-product .btn-group button, #product-product .btn-group div, #product-product .btn-group span {
        flex: 0 0 30%;
        text-align: left
    }

    .print-btn {
        background-size: 29px;
        margin-top: 0;
        top: 0;
        font-weight: 700
    }

    #product-product .wishlister {
        position: relative;
        top: 4px
    }

    #product-product .compare-btn {
        margin-bottom: 0
    }

    #vk-bottom, #warning, .product-price-container, footer #sup-footer .email, label {
        display: block
    }

    #cart-total strong, #cart > button {
        text-align: right
    }

    header .logo {
        width: 70px;
        top: 10px
    }

    .breadcrumb, .rating-vote {
        justify-content: center
    }

    #tab-review {
        margin-top: 5vw
    }

    .sup-rate {
        align-items: center;
        flex-direction: column;
        margin-bottom: 15px
    }

    .sup-rate .rating a {
        margin: 0 13px
    }

    :is(.product-layout,.right-pr,.x-modal) .modal-dialog {
        border-width: 3px;
        text-align: center;
        padding: 4vw 2vw
    }

    :is(.right-pr,.product-layout) .modal-dialog h5 {
        text-align: center;
        font-size: 15px
    }

    #top-header .phones, #top-links {
        position: relative;
        left: 0;
        top: 0;
        right: 0;
        display: block;
        text-align: center
    }

    #top-header {
        height: 80px
    }

    #top-header .address {
        padding-top: 0;
        padding-bottom: 0;
        top: 0;
        left: 0;
        position: relative;
        margin: 5px 0 6px;
        text-align: center
    }

    #fon {
        top: 80px
    }

    #menu + .alert-success .container, .contentor .alert-success .container {
        padding: 20px
    }

    .product-price-container, label {
        text-align: center
    }

    #vk-bottom {
        position: relative;
        top: 0;
        left: 0;
        margin: 25px auto
    }

    #warning, footer #sup-footer :is(.address,.email,.phones) {
        left: 0;
        background: 0 0;
        padding-left: 0;
        margin-top: 20px
    }

    .product-layout .modal-dialog .modal-title, .right-pr .modal-dialog .modal-title, .x-modal .modal-footer .modal-title {
        font-size: 19px
    }

    .alert {
        padding: 10px 10px 13px
    }

    .product-layout .modal-dialog input[type=text], .product-layout .modal-dialog select, .right-pr .modal-dialog input[type=text], .right-pr .modal-dialog select, .x-modal .modal-dialog input[type=text], .x-modal .modal-dialog select {
        height: 40px;
        font-size: 13px;
        text-align: center;
        padding-left: 0
    }

    .btn-small {
        font-size: 13px !important
    }

    .button-setting {
        margin-bottom: 8px
    }

    .btn-grey {
        padding-left: 2px;
        padding-right: 2px
    }

    .pagination-x {
        margin: 5vw 0
    }

    .pagination li {
        margin: 0 3px
    }

    input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text] {
        height: 45px;
        font-size: 17px;
        text-align: center;
        padding-left: 0
    }

    .sup-cat p {
        margin-bottom: 20px;
        font-size: 15px;
        margin-top: 10px
    }

    h1 {
        margin: 18px 0 12px
    }

    .contentor {
        border-radius: 0 0 30px 30px
    }

    #product .form-group {
        justify-content: center;
        margin-top: 1vw
    }

    .flexor {
        flex-direction: column;
        justify-content: center
    }

    #content .left-pr {
        width: 90%;
        margin: 0 auto 30px
    }

    #content .right-pr, #warning {
        text-align: center;
        width: 100%
    }

    .right-pr .list-unstyled {
        flex-direction: column;
        justify-content: center;
        display: flex;
        align-items: center
    }

    #product-product .super {
        display: inline-flex
    }

    #prductz {
        grid-template-columns:repeat(2, 1fr);
        grid-gap: 4vw
    }

    .in-catz span {
        font-size: 16px
    }

    .in-catz {
        grid-gap: 11px
    }

    .banner {
        margin: 5vw auto
    }

    #sup-footer {
        height: auto;
        padding-top: 20px
    }

    footer #sup-footer :is(#warning,#yandex-footer,.address,.email,.logo,.open,.phones) {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        text-align: center
    }

    footer #sup-footer .open {
        padding-left: 0;
        margin-bottom: 10px;
        background: 0 0
    }

    #yandex-footer {
        margin: 20px auto
    }

    #warning, .form-group {
        margin-bottom: 20px
    }

    footer #sup-footer .logo {
        margin: 0 auto
    }

    footer .titler {
        display: none
    }

    header .titler {
        width: 150px;
        left: 80px
    }

    #slideshow .sld span {
        top: 38%
    }

    #search {
        width: 57px;
        top: 26px
    }

    #cart > button {
        background-size: 33px auto;
        padding-top: 38px;
        background-position: right top
    }

    header {
        height: 99px
    }

    #tab-specification tbody td, .simplecheckout-block, .table-responsive {
        border-width: 2px
    }

    .modal:after {
        width: 35px;
        height: 35px;
        font-size: 21px
    }
}

@media (max-width: 505px) {
    #information-information .in-catz, .in-catz, .sup-cat ul {
        grid-template-columns:repeat(2, 1fr)
    }

    #cookie-desc {
        font-size: 14px;
        margin-top: 7px;
        margin-bottom: 9px
    }

    .cookie-warning button {
        border-width: 1px !important;
        height: 34px;
        font-size: 12px;
        padding: 5px 15px;
        width: 39%
    }

    #qty-btn .qty {
        height: 42px;
        width: 42px
    }

    #x-cart .qty-btn {
        font-size: 20px;
        height: 40px
    }

    :is(.right-pr,.product-layout,.x-modal) .modal-footer {
        flex-direction: column;
        padding: 0 0 8px
    }

    #checkout-cart .table-bordered tbody td, #checkout-cart .table-bordered tfoot td {
        font-size: 13px
    }

    :is(.right-pr,.product-layout,.x-modal) .modal-footer button {
        width: 100%;
        margin-bottom: 10px
    }

    #checkout-cart .imagexer {
        display: none !important
    }

    #product-category .live-search {
        top: 0
    }

    #cart.fixer #cart-total strong span {
        font-size: 11px
    }

    #product-product .compare-btn {
        background-size: 29px;
        padding-left: 34px;
        width: auto;
        margin-bottom: 6px
    }

    .wishlister {
        background-size: 28px;
        padding-left: 32px
    }

    .right-pr .btn-group {
        justify-content: center;
        align-items: center
    }

    .print-btn {
        background-size: 27px;
        padding-left: 33px;
        margin: 10px 0 7px 13px;
        top: -1px
    }

    .alert .close {
        padding: 1px 7px;
        width: auto;
        margin: 8px 0 0
    }

    #column-right {
        margin-top: 5vw
    }

    .buttons {
        margin-top: 6vw
    }

    #recented h3 {
        margin: 5vw 0 6vw
    }

    #cart.fixer .btn {
        padding-left: 3px;
        padding-right: 3px;
        padding-bottom: 3px
    }

    .btn, .button, button, input[type=submit] {
        padding: 12px
    }

    #product-category #top-contentor {
        padding: 9px 0 10px;
        margin-bottom: 7vw
    }

    .alert {
        padding: 10px 10px 11px
    }

    .heading_title {
        margin-bottom: 3vw;
        font-size: 20px
    }

    #tab-description h2 {
        margin-bottom: 12px
    }

    #content .left-pr {
        margin-bottom: 20px
    }

    #featured-catz {
        padding-top: 20px
    }

    .slick-dots li {
        margin: 0 15px
    }

    #top-header .phones {
        background-position: left 8px;
        background-size: 17px;
        padding-left: 25px
    }

    .buttons .center {
        width: 100%
    }
}

@media (max-width: 455px) {
    #search {
        width: 54px;
        right: 90px
    }

    #qty-btn .qty {
        height: 39px;
        width: 40px;
        font-size: 19px
    }

    :is(.product-layout,.right-pr,.x-modal) .modal-dialog {
        border-width: 2px
    }

    #checkout-cart #quant-cart {
        height: 25px;
        margin-right: 3px;
        width: 30px;
        font-size: 14px
    }

    #checkout-cart .table-bordered thead td {
        padding: 8px
    }

    #checkout-cart .text-left .btn-danger {
        padding: 5px 10px;
        font-size: 11px
    }

    .btn, .button, button, input[type=submit] {
        padding: 10px
    }

    #recented .container {
        grid-template-columns:repeat(2, 1fr)
    }

    .pagination :is(a,span) {
        width: 22px;
        height: 22px
    }

    .pagination-x {
        padding: 1.2vw;
        justify-content: center
    }

    .btn.btn-info {
        padding: 3px 12px
    }
}

@media (max-width: 405px) {
    #information-information .in-catz, #prductz, .banner {
        grid-template-columns:repeat(1, 1fr)
    }

    #cookie-title {
        font-size: 14px
    }

    .banner {
        grid-gap: 30px
    }

    #tab-review {
        margin-top: 8vw
    }

    .star {
        width: 16px;
        height: 16px;
        margin-right: 4px
    }

    .sup-rate .rating a {
        margin: 0 8px
    }

    .tab-content {
        margin-top: 6vw
    }

    .be-image {
        width: 50%
    }

    .product-layout p.titler {
        min-height: auto;
        font-size: 15px
    }

    :is(.product-layout,.right-pr,.x-modal) .modal-dialog {
        padding: 6vw 3vw
    }

    :is(.right-pr,.product-layout) .modal-dialog h5 {
        font-size: 14px
    }

    #checkout-cart .table-bordered thead td, #checkout-cart .table-bordered thead th, .table-bordered .greenex {
        font-size: 11px
    }

    #cart.fixer #cart-total strong span {
        font-size: 10px
    }

    #checkout-cart .table-bordered tbody td {
        font-size: 12px
    }

    #menu + .alert-success .container, .contentor .alert-success .container {
        padding: 10px
    }

    .product-layout .modal-dialog .modal-title, .right-pr .modal-dialog .modal-title, .x-modal .modal-footer .modal-title {
        font-size: 18px
    }

    #slideshow .sld span {
        top: 23%
    }

    #cart > button {
        background-size: 28px auto;
        padding-top: 34px
    }

    #menu-trigger {
        left: 5px
    }

    #right-nav {
        right: 5px
    }

    .simplecheckout-block, .table-responsive {
        border-width: 2px
    }

    #top-links strong {
        font-size: 13px;
        margin-top: 6px
    }

    .table-bordered .greenex {
        padding: 5px
    }

    .table-bordered tbody td, .table-bordered tfoot td {
        padding: 3px 7px;
        font-size: 14px
    }

    .form-group {
        margin-bottom: 15px
    }

    input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text] {
        font-size: 16px;
        height: 40px
    }

    .heading_title {
        font-size: 19px
    }

    .sup-cat p {
        font-size: 14px
    }

    #menu {
        border-radius: 30px 30px 0 0
    }

    header .logo {
        width: 55px;
        top: 16px
    }

    #search .btn {
        right: 8px;
        width: 25px
    }

    header .titler {
        width: 120px;
        left: 64px
    }

    #search {
        right: 87px;
        width: 42px
    }

    #top-contentor .container {
        min-height: 40px
    }

    .contentor {
        border-radius: 0 0 30px 30px
    }

    .ck-row .col-sm-3 {
        margin-bottom: 17px
    }

    #product .form-group {
        margin-top: 4vw
    }

    #content .left-pr {
        width: 100%;
        margin-bottom: 14px
    }

    #prductz {
        grid-gap: 8vw
    }

    .sup-cat ul {
        grid-template-columns:repeat(2, 1fr);
        grid-gap: 15px
    }

    #tab-specification tbody td {
        border-width: 1px
    }

    .sup-cat a span {
        font-size: 13px;
        padding: 7px 0
    }

    .sup-btn-cart {
        min-height: auto
    }

    .product-layout .price {
        font-size: 23px;
        padding: 9px 0
    }

    .super {
        display: flex
    }

    .wishlister {
        background-size: 24px;
        padding: 2px 0 7px 17px
    }

    #cart.fixer > button {
        background-size: 21px auto;
        padding-top: 22px
    }
}

@media (max-width: 365px) {
    .product-layout .price {
        font-size: 22px
    }

    #x-cart .button-cart {
        height: 39px
    }

    #qty-btn .qty {
        height: 38px;
        width: 37px
    }

    #x-cart .button-cart {
        padding: 7px;
        font-size: 14px;
        width: 60%
    }

    #qty-btn {
        width: 38%
    }

    .pagination a, .pagination span {
        width: 20px;
        height: 20px
    }

    .product-layout .modal-dialog .modal-title, .right-pr .modal-dialog .modal-title, .x-modal .modal-footer .modal-title {
        font-size: 17px
    }

    :is(.product-layout,.right-pr,.x-modal) .modal-dialog {
        border-width: 1px
    }

    #cart.fixer .btn {
        padding-left: 1px;
        padding-right: 1px;
        padding-bottom: 1px
    }

    #cart.fixer #cart-total strong:first-of-type span {
        font-size: 8px
    }

    #cart.fixer #cart-total strong:first-of-type {
        width: 12px;
        height: 12px
    }

    .btn-small {
        font-size: 12px !important
    }

    #recented h3 {
        margin: 7vw 0
    }

    .table-bordered tbody td, .table-bordered tfoot td {
        padding: 3px 5px;
        font-size: 13px
    }

    .alert {
        padding: 9px 10px 11px
    }

    .print-btn {
        background-size: 22px;
        padding-left: 27px;
        font-size: 12px
    }

    #product-product .compare-btn {
        background-size: 27px;
        padding-left: 28px;
        width: auto;
        margin-bottom: 6px;
        font-size: 12px
    }

    .heading_title {
        font-size: 18px
    }

    #content .right-pr h1 {
        margin-bottom: 20px
    }

    .sup-cat ul {
        grid-gap: 10px
    }

    .in-catz {
        grid-template-columns:repeat(1, 1fr);
        grid-gap: 22px
    }

    h1 {
        margin: 20px 0 15px
    }

    .accounter {
        border-width: 2px
    }

    .product-layout .modal-dialog {
        width: 95%
    }
}

@media (max-width: 325px) {
    .product-layout .price {
        font-size: 20px
    }

    #checkout-cart .table-bordered tbody td {
        font-size: 11px
    }

    .accounter a, .product-layout .modal-dialog .modal-title, .right-pr .modal-dialog .modal-title, .x-modal .modal-footer .modal-title {
        font-size: 16px
    }

    :is(.product-layout,.right-pr,.x-modal) .modal-dialog {
        border-width: 1px
    }

    #recented .container {
        grid-template-columns:repeat(1, 1fr);
        grid-gap: 8vw
    }

    #vk-bottom {
        width: 300px !important
    }

    .sup-cat a span {
        font-size: 12px
    }

    .table-bordered tbody td, .table-bordered tfoot td {
        padding: 3px 5px;
        font-size: 12px
    }

    input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text] {
        font-size: 15px;
        height: 39px
    }

    .product-layout :is(.price,.quant) {
        padding: 6px
    }

    #menu-trigger {
        left: 10px;
        top: 9px
    }

    #right-nav {
        right: 10px
    }

    .right-nav__trigger {
        padding-left: 36px;
        background-size: 28px
    }

    .super strong {
        padding-left: 8px
    }

    #content .left-pr {
        margin-bottom: 10px
    }

    body {
        font-size: 14px
    }

    header .titler {
        width: 103px;
        left: 63px
    }

    #menu nav > ul > li > a {
        font-size: 16px;
        padding: 10px 4px
    }

    h1 {
        margin: 17px 0 10px
    }

    .heading_title {
        font-size: 17px
    }
}