:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

*,
*::before,
*::after {
    box-sizing: border-box
}

@media(prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media(min-width: 1200px) {
    h1 {
        font-size: 2.5rem
    }
}

h2 {
    font-size: calc(1.325rem + 0.9vw)
}

@media(min-width: 1200px) {
    h2 {
        font-size: 2rem
    }
}

h3 {
    font-size: calc(1.3rem + 0.6vw)
}

@media(min-width: 1200px) {
    h3 {
        font-size: 1.75rem
    }
}

h4 {
    font-size: calc(1.275rem + 0.3vw)
}

@media(min-width: 1200px) {
    h4 {
        font-size: 1.5rem
    }
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul {
    padding-left: 2rem
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: 0.875em
}

mark {
    padding: .1875em;
    background-color: var(--bs-highlight-bg)
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a {
    color: var(--bs-link-color);
    text-decoration: underline
}

a:hover {
    color: var(--bs-link-hover-color)
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: 0.875em;
    color: var(--bs-code-color);
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .1875rem .375rem;
    font-size: 0.875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: .25rem
}

kbd kbd {
    padding: 0;
    font-size: 1em
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit
}

@media(min-width: 1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
    margin-right: auto;
    margin-left: auto
}

@media(min-width: 576px) {

    .container-sm,
    .container {
        max-width: 540px
    }
}

@media(min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px
    }
}

@media(min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px
    }
}

@media(min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px
    }
}

@media(min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1*var(--bs-gutter-y));
    margin-right: calc(-0.5*var(--bs-gutter-x));
    margin-left: calc(-0.5*var(--bs-gutter-x))
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media(min-width: 576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width: 768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width: 992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media(min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

@media(min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

.alert {
    position: relative;
    padding: 12px 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 0;
    position: fixed;
    z-index: 999;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 100%;
    text-align: center
}

.alert.--success {
    color: #155724;
    background-color: #d6e8d8;
    font-weight: 500
}

article {
    padding: 60px 0 40px 0
}

.article-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 0 60px 0
}

.article-header h1 {
    padding-bottom: 10px
}

.article-info {
    display: flex;
    color: #6e6e6e;
    font-size: 14px
}

.article-info__date {
    padding: 0 20px
}

.article-info__social {
    padding: 0 20px;
    color: #6e6e6e
}

.article-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px
}

.article-content {
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e5e5e5
}

.article-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px
}

.article-content q {
    font-size: 22px;
    line-height: 2;
    color: #6e6e6e;
    margin: 40px 0 40px 0;
    display: flex;
    font-style: italic;
    text-align: center
}

.autoComplete_wrapper {
    width: 100%
}

.autoComplete_wrapper>ul {
    position: absolute;
    overflow-y: auto;
    box-sizing: border-box;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
    list-style: none;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
    outline: 0;
    transition: opacity .15s ease-in-out
}

.autoComplete_wrapper>ul:empty,
.autoComplete_wrapper>ul[hidden] {
    display: block;
    opacity: 0;
    transform: scale(0)
}

.autoComplete_wrapper>ul>li {
    margin: 0;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-align: left;
    font-size: 16px;
    color: #222427;
    border-radius: 0;
    background-color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s ease
}

.autoComplete_wrapper>ul>li mark {
    background-color: rgba(0, 0, 0, 0);
    color: #399841;
    font-weight: 500;
    padding: 0
}

.autoComplete_wrapper>ul>li:hover {
    cursor: pointer;
    background-color: rgba(255, 122, 122, .15)
}

.autoComplete_wrapper>ul>li[aria-selected=true] {
    background-color: rgba(255, 122, 122, .15)
}

.blog-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

@media screen and (max-width: 991px) {
    .blog-side {
        display: none
    }
}

.breadcrumbs {
    background: #fff;
    padding: 15px 0 0 0
}

.breadcrumbs__item {
    color: #6e6e6e;
    font-size: 13px;
    padding: 0 10px;
    line-height: 1
}

.breadcrumbs__item:first-child {
    padding-left: 0px
}

.breadcrumbs__separator {
    transform: rotate(-90deg);
    height: 5px;
    width: 8px;
    margin-bottom: 1px
}

@media screen and (max-width: 575px) {
    .breadcrumbs {
        display: none
    }
}

.btn {
    color: #fff;
    font-size: 15px;
    min-height: 52px;
    height: 100%;
    padding: 0rem 30px;
    background: #222427;
    position: relative;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    white-space: normal;
    transition: .2s ease background
}

.btn:hover,
.btn:active,
.btn:focus {
    color: #fff;
    box-shadow: none;
    background: #000
}

.btn img {
    margin-left: 15px;
    width: 6px;
    height: 10px
}

.btn.--fullWidth {
    width: 100%
}

.btn.--green {
    background: #e30909
}

.btn.--green:hover,
.btn.--green:active,
.btn.--green:focus {
    background: #000
}

.btn.--green img {
    margin-left: 0px;
    margin-right: 15px;
    width: 18px;
    height: 20px
}

.btn.--cart {
    background: #e30909;
    width: 100%;
    height: 62px
}

.btn.--cart:hover,
.btn.--cart:active,
.btn.--cart:focus {
    background: #000
}

.btn.--cart:hover img,
.btn.--cart:active img,
.btn.--cart:focus img {
    margin-left: 20px
}

.btn.--cart img {
    margin-left: 15px;
    transition: .2s ease margin
}

.btn.--cart-dark {
    width: 100%;
    height: 62px
}

.carousel {
    padding-top: 20px;
    position: relative
}

.carousel-wrapper {
    position: relative
}

.carousel-inner>.item {
    display: none
}

.carousel-inner>.item:first-child {
    display: block
}

.carousel .item {
    position: relative;
    will-change: auto
}

.carousel .item a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.carousel .prev,
.carousel .next {
    background: rgba(0, 0, 0, .6);
    height: 52px;
    width: 52px;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px
}

.carousel .prev {
    right: 62px
}

.carousel .prev img {
    transform: rotate(180deg)
}

@media screen and (max-width: 991px) {
    .carousel {
        padding: 20px 0
    }
}

@media screen and (max-width: 575px) {
    .carousel {
        padding: 10px 0
    }

    .carousel .prev,
    .carousel .next {
        display: none
    }
}

.cart-content {
    padding: 60px 0
}

@media screen and (max-width: 575px) {
    .cart-content {
        padding: 40px 0
    }
}

.cart-table__title {
    font-weight: 600;
    font-size: 14px;
    color: #6e6e6e;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.cart-table-items {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px
}

.cart-item {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5
}

.cart-item.--code .cart-item-price-pc {
    display: none
}

.cart-item.--code .cart-item-remove {
    margin: 0
}

.cart-item.--code {
    padding: 20px 0
}

.cart-item.--code .cart-item-main {
    padding: 0;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-weight: 500
}

.cart-item.--code .cart-item-bottom {
    display: none
}

.cart-item-thumb-wrap {
    position: relative;
    width: 140px;
    height: 120px;
    padding-left: 0;
    flex-shrink: 0
}

.cart-item-thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.cart-item-thumb img {
    max-height: 100%
}

.cart-item-content {
    padding-left: 20px;
    flex-grow: 1
}

.cart-item-main {
    display: flex;
    padding-bottom: 20px
}

.cart-item-name {
    padding-bottom: 10px;
    flex-grow: 1;
    color: #222427;
    font-weight: 500
}

.cart-item-name-var {
    color: #6e6e6e;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 10px
}

.cart-item-stock {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #6e6e6e;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 10px
}

.cart-item-stock img {
    margin-right: 10px
}

.cart-item-stock.--available {
    color: #399841
}

.cart-item-price-pc {
    color: #6e6e6e;
    flex-shrink: 0;
    padding-left: 20px
}

.cart-item-price,
.cart-item-code-price {
    font-weight: 500;
    color: #e30909;
    padding-left: 20px;
    flex-shrink: 0
}

.cart-item-bottom {
    display: flex
}

.cart-item-stepper input[type=radio] {
    display: none
}

.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px
}

.cart-item-remove-icon {
    background: #f5f5f5;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px
}

.cart-item-remove-text {
    color: #6e6e6e;
    font-size: 14px
}

.cart-table__footer {
    padding: 0px 0 40px 0;
    display: flex
}

.cart-table__footer-link {
    display: flex;
    align-items: center;
    margin-right: 40px
}

.cart-table__footer-icon {
    background: #f5f5f5;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px
}

.cart-table__footer-icon img {
    width: 10px;
    transform: rotate(90deg)
}

.cart-table__footer-text {
    color: #6e6e6e;
    font-size: 14px
}

@media screen and (max-width: 575px) {
    .cart-item {
        padding: 20px 0
    }

    .cart-item-price-pc {
        display: none
    }

    .cart-item-remove-text {
        display: none
    }

    .cart-item-thumb-wrap {
        width: 60px;
        height: 60px
    }
}

.cart-table-shipping {
    display: flex;
    flex-direction: column;
    padding: 10px 0 40px 0
}

.cart-table-shipping:last-child {
    margin-bottom: 40px
}

.cart-table-shipping-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #e5e5e5;
    margin-top: -1px;
    cursor: pointer;
    position: relative
}

.cart-table-shipping-item input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 22px;
    width: 22px;
    border: 1px solid #222427;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0
}

.cart-table-shipping-item input:checked {
    background-color: #222427;
    background-image: url("../img/icons/check-white.svg");
    background-position: center center;
    background-repeat: no-repeat
}

.cart-table-shipping-item input:checked~.cart-table-shipping-text::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border: 2px solid #222427;
    z-index: 2
}

.cart-table-shipping-item input:disabled~.cart-table-shipping-text::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background: rgba(0, 0, 0, .04);
    z-index: 2;
    cursor: not-allowed
}

.cart-table-shipping-item input:disabled+.cart-table-shipping-img {
    filter: grayscale(1)
}

.cart-table-shipping-img {
    padding-left: 30px;
    height: 24px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cart-table-shipping-img img {
    max-height: 100%;
    width: auto
}

.cart-table-shipping-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    align-items: flex-start
}

.cart-table-shipping-text small {
    color: #6e6e6e;
    font-size: 14px
}

.cart-table-shipping-text span {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 10px;
    background: #399841
}

.cart-table-shipping-price {
    padding-left: 20px;
    white-space: nowrap
}

.cart-table-shipping-price.--free {
    color: #399841
}

.cart-table-personal {
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -11px;
    padding: 40px 20px;
    margin-bottom: 40px
}

.cart-table-personal .form-group {
    max-width: 540px;
    width: 100%
}

@media screen and (max-width: 575px) {
    .cart-table-shipping-img {
        display: none
    }

    .cart-table-shipping-text {
        padding-left: 20px
    }
}

.cart-aside {
    padding: 30px;
    position: sticky;
    top: 20px;
    background: #f5f5f5
}

.cart-aside__title {
    font-weight: 600;
    font-size: 14px;
    color: #6e6e6e;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.cart-aside__table {
    padding: 10px 0
}

.cart-aside__row {
    padding: 5px 0;
    display: flex
}

.cart-aside__table-th {
    flex-grow: 1
}

.cart-aside__table-td {
    text-align: right
}

.cart-aside__row.--main {
    padding: 20px 0;
    margin-top: 20px;
    border-top: 4px solid #e5e5e5
}

.cart-aside__row.--main .cart-aside__table-th {
    font-size: 18px;
    font-weight: 500
}

.cart-aside__row.--main .cart-aside__table-td {
    font-size: 18px;
    color: #e30909;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    text-align: right
}

.cart-aside__row.--main .cart-aside__table-td small {
    font-size: 13px;
    color: #6e6e6e;
    font-weight: 400
}

.cart-aside__free-shipping {
    background: rgba(57, 152, 65, .1);
    margin-bottom: 20px;
    padding: 10px 20px;
    font-weight: 500
}

.cart-aside__login {
    padding: 30px;
    border: 1px solid #e5e5e5;
    background: #fff;
    margin-bottom: 40px;
    display: flex
}

.cart-aside__login-icon {
    flex-shrink: 0
}

.cart-aside__login-content {
    display: flex;
    flex-direction: column;
    padding-left: 20px
}

.cart-aside__login-title {
    font-size: 18px;
    font-weight: 500
}

.cart-aside__login-text {
    font-size: 14px;
    color: #6e6e6e
}

.cart-aside__code {
    margin-bottom: 40px
}

.cart-aside__code .btn {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 54px;
    padding: 0 20px
}

@media screen and (max-width: 991px) {
    .cart-aside {
        padding-left: 0
    }
}

@media screen and (max-width: 575px) {
    .cart-table-personal {
        border: 0;
        padding: 0;
        margin-top: 0
    }
}

.cart-summary__item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5
}

.cart-summary__item:first-child {
    border-top: 1px solid #e5e5e5
}

.cart-summary__item-content {
    display: flex;
    width: 100%
}

.cart-summary__img {
    height: 60px;
    width: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 20px;
    flex-shrink: 0
}

.cart-summary__item-title {
    padding-right: 20px;
    display: flex;
    flex-grow: 1;
    max-width: calc(100% - 80px);
    flex-direction: column
}

.cart-summary__item-title span {
    color: #6e6e6e;
    font-size: 13px
}

.cart-summary__item-qty {
    white-space: nowrap;
    width: 50px;
    flex-shrink: 0
}

.cart-summary__item-price {
    font-weight: 500;
    color: #e30909;
    text-align: right;
    padding-left: 20px;
    white-space: nowrap
}

@media screen and (max-width: 565px) {
    .cart-summary__item-content {
        flex-direction: column
    }
}

.cart-summary__price {
    width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    border-collapse: separate
}

.cart-summary__price td {
    padding: 5px 0
}

.cart-summary__price td:last-child {
    text-align: right;
    white-space: nowrap;
    font-weight: 500
}

.cart-summary__price-sum {
    margin-bottom: 60px;
    border-top: 6px solid #f5f5f5;
    width: 100%;
    padding-top: 20px;
    border-collapse: separate;
    font-size: 18px;
    font-weight: 500
}

.cart-summary__price-sum td:last-child {
    text-align: right;
    color: #e30909
}

.cart-summary__table {
    width: 100%;
    color: #6e6e6e;
    margin-bottom: 40px
}

.cart-summary__table th {
    width: 100%;
    font-weight: 500;
    border-bottom: 1px solid #e5e5e5;
    color: #222427;
    padding-bottom: 10px
}

.cart-summary__table tr:first-child td {
    padding-top: 20px
}

.cart-summary__table td {
    white-space: nowrap;
    padding: 5px 0
}

.cart-summary__table td:last-child {
    text-align: right;
    color: #222427
}

.cart-summary button {
    margin-bottom: 40px
}

.cart-summary .cart-table__footer {
    justify-content: center
}

.cart-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px 0
}

.cart-empty__title {
    padding: 40px 0 5px 0;
    text-align: center
}

.cart-empty__text {
    max-width: 380px;
    color: #6e6e6e;
    text-align: center;
    padding-bottom: 20px
}

.cart-empty__alert {
    display: flex;
    padding: 20px;
    background: #f5f5f5;
    margin-top: 40px;
    max-width: 520px
}

.cart-empty__alert-text {
    padding-left: 20px
}

@media screen and (max-width: 767px) {
    .cart-table__footer {
        display: none
    }
}

.cart-heading {
    background: #f5f5f5;
    padding: 40px 0;
    box-shadow: inset 0px 15px 15px -12px rgba(0, 0, 0, .05)
}

.cart-heading .container {
    display: flex
}

.cart-heading__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-basis: 0;
    flex-grow: 1;
    border-right: 1px solid #e5e5e5
}

.cart-heading__item:last-child {
    border-right: none
}

.cart-heading__icon {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0
}

.cart-heading__icon img {
    opacity: .6;
    height: 20px;
    width: 20px
}

.cart-heading__title {
    font-size: 16px;
    color: #6e6e6e;
    padding-left: 15px
}

.cart-heading__item.--active .cart-heading__icon img {
    opacity: 1
}

.cart-heading__item.--active .cart-heading__title {
    font-size: 16px;
    color: #222427;
    font-weight: 500
}

.cart-heading__item.--complete .cart-heading__icon::after {
    content: "";
    background: url("../img/icons/check-full.svg");
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    border: 0;
    border-radius: 50%;
    position: absolute;
    background-size: 100%;
    top: 0;
    right: 0;
    height: 48px;
    width: 48px
}

.cart-heading__item.--complete .cart-heading__icon img {
    opacity: 1
}

.cart-heading__item.--complete .cart-heading__title {
    font-size: 16px;
    color: #222427;
    font-weight: 500
}

@media screen and (max-width: 767px) {
    .cart-heading {
        padding: 0
    }

    .cart-heading .container {
        padding: 0
    }

    .cart-heading__item {
        flex-direction: row;
        padding: 10px 10px;
        border: 0;
        flex-grow: 0;
        display: none
    }

    .cart-heading__icon {
        height: 40px;
        width: 40px
    }

    .cart-heading__icon img {
        max-height: 22px;
        max-width: 22px
    }

    .cart-heading__title {
        padding: 0;
        padding-left: 20px;
        display: none
    }

    .cart-heading__item.--active {
        display: flex;
        flex-grow: 1
    }

    .cart-heading__item.--active .cart-heading__title {
        display: flex;
        white-space: nowrap
    }

    .cart-heading__item.--complete .cart-heading__icon::after {
        top: 20px;
        right: 2px
    }
}

.categories-single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f5f5f5
}

.categories-single img {
    mix-blend-mode: multiply;
    -o-object-fit: contain;
    object-fit: contain;
    height: 160px
}

.categories-single__link {
    font-size: 18px;
    color: #222427;
    font-weight: 500;
    padding: 20px 0 10px 0
}

.categories-single__text {
    margin: 0;
    text-align: center;
    color: #6e6e6e;
    height: 42px;
    overflow: hidden;
    font-size: 14px
}

@media screen and (max-width: 767px) {
    .categories-single {
        border-bottom: 2px solid #fff
    }

    .categories-single img {
        height: 140px
    }
}

@media screen and (max-width: 575px) {
    .categories-single {
        padding: 30px 20px 30px 20px
    }

    .categories-single img {
        height: 100px
    }

    .categories-single__text {
        font-size: 14px;
        height: 42px
    }
}

.contact {
    display: flex;
    padding-top: 100px;
    padding-bottom: 60px
}

.contact__content {
    background-color: #f5f5f5;
    display: flex;
    padding: 0;
    background-image: url("../img/contact-bg.png");
    background-position: left top;
    background-size: auto 100%;
    background-repeat: no-repeat
}

.contact__title {
    font-size: 30px;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
    padding: 0;
    display: flex;
    align-items: center;
    order: 2
}

.contact__wrap {
    padding-left: 60px;
    order: 3;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact__item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    display: flex;
    align-items: center
}

.contact__item img {
    margin-right: 20px
}

.contact__text {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    font-weight: 500
}

.contact__text small {
    font-size: 14px;
    font-weight: 400;
    color: #6e6e6e
}

.contact__content {
    position: relative
}

.contact__img {
    order: 1;
    margin-top: -60px;
    padding: 0 60px
}

.contact__img img {
    width: auto
}

@media screen and (max-width: 1300px) {
    .contact__wrap {
        padding-left: 30px
    }
}

@media screen and (max-width: 1200px) {
    .contact__title {
        font-size: 24px;
        max-width: 380px
    }

    .contact__img img {
        height: 280px;
        width: auto
    }
}

@media screen and (max-width: 1050px) {
    .contact__img {
        bottom: 0px
    }

    .contact__img img {
        height: 240px;
        width: auto
    }
}

@media screen and (max-width: 991px) {
    .contact__content {
        padding: 50px 40px
    }

    .contact__title {
        font-size: 24px;
        max-width: 480px
    }

    .contact__wrap {
        padding-left: 20px;
        flex-grow: 1;
        flex-shrink: 0
    }

    .contact__img {
        display: none
    }
}

@media screen and (max-width: 575px) {
    .contact {
        padding-bottom: 40px
    }

    .contact__content {
        padding: 50px 40px;
        flex-wrap: wrap
    }

    .contact__title {
        font-size: 22px
    }

    .contact__wrap {
        padding-left: 0px;
        display: flex;
        flex-direction: row
    }

    .contact__item {
        padding-right: 20px;
        padding-bottom: 0
    }
}

@media screen and (max-width: 500px) {
    .contact__title {
        font-size: 24px;
        padding-bottom: 20px;
        text-align: center
    }

    .contact__content {
        padding: 30px 20px
    }

    .contact__wrap {
        flex-direction: column
    }
}

#cookiebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222427;
    padding: 10px 0;
    z-index: 9
}

.cookiebar-wrapper {
    max-width: 1460px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center
}

.cookiebar-content {
    display: flex;
    flex-grow: 1;
    color: #fff;
    flex-wrap: wrap
}

.cookiebar-desciption {
    margin-right: 10px
}

.cookiebar-link a {
    color: #fff;
    opacity: .8
}

.cookiebar-link a:hover {
    color: #fff;
    opacity: 1
}

.cookiebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: #fff;
    color: #222427;
    font-weight: 500;
    height: 48px;
    border: 0;
    font-size: 14px;
    white-space: nowrap
}

@media screen and (max-width: 575px) {
    .cookiebar-content {
        font-size: 14px
    }
}

.filter {
    position: relative
}

.filter__button {
    background: #e30909;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    cursor: pointer
}

.filter__button img {
    margin-left: 10px;
    height: 14px;
    width: 14px
}

.filter__content {
    position: absolute;
    z-index: 3;
    left: 0;
    top: calc(100% + 15px);
    width: 460px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08);
    opacity: 0;
    pointer-events: none
}

.filter__content::before {
    content: "";
    height: 12px;
    width: 12px;
    display: inline-flex;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    position: relative;
    transform: translateY(-12px) rotate(-45deg);
    margin-left: 100px
}

body.--filter-active .filter__button {
    background: #222427
}

body.--filter-active .filter__content {
    opacity: 1;
    pointer-events: auto
}

.filter__form {
    padding: 20px;
    padding-top: 0
}

.filter__title {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500
}

.filter .form-group {
    margin-bottom: 20px
}

@media screen and (max-width: 575px) {
    .filter__content {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        z-index: 15;
        overflow-y: scroll;
        left: auto;
        height: 100%;
        border: 0;
        transform: translateX(100%);
        transition: .2s ease transform;
        opacity: 1;
        content-visibility: hidden
    }

    body.--filter-active .filter__content {
        transform: translateX(0%);
        content-visibility: visible
    }

    .filter {
        margin-bottom: 20px
    }

    .filter__content::before {
        content: none
    }

    .filter__form {
        padding: 20px
    }

    .filter .form-group {
        margin-bottom: 10px
    }

    .filter__button {
        height: 48px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 5
    }

    body.--filter-active {
        overflow-y: hidden
    }
}

footer {
    background: #f5f5f5;
    padding: 60px 0;
    content-visibility: auto
}

.footer__title {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px
}

.footer__link {
    color: #222427;
    line-height: 2;
    display: flex
}

.footer__text {
    color: #222427;
    line-height: 2;
    display: flex;
    margin: 0
}

.copyright {
    padding-bottom: 0
}

.copyright a {
    color: #222427
}

.copyright__wrap {
    display: flex
}

.copyright__title {
    flex-grow: 1
}

.copyright__author {
    display: flex;
    align-items: center
}

.copyright__author img {
    margin-left: 10px;
    margin-top: -8px;
    width: 54px;
    height: 22px
}

@media screen and (max-width: 991px) {
    footer {
        padding: 20px 0 60px 0
    }

    .footer__title {
        padding: 40px 0 10px 0
    }

    .copyright {
        padding: 40px 0 0 0
    }
}

@media screen and (max-width: 575px) {
    footer {
        padding: 0px 0 40px 0
    }

    .footer__title {
        font-size: 16px
    }

    .footer__link,
    .footer__text {
        font-size: 14px
    }

    .copyright {
        font-size: 14px
    }

    .copyright__author img {
        width: 50px;
        height: 20px;
        margin-top: -10px
    }
}

input,
select {
    height: 54px;
    padding: 0 20px;
    display: flex;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    background-color: #fff;
    color: #222427
}

.form-group input:required:valid {
    border-color: #399841
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url("../img/icons/cheveron.svg");
    background-position: right 20px center;
    background-size: auto;
    background-repeat: no-repeat;
    padding: 0 50px 0 20px;
    background-color: #fff
}

textarea {
    padding: 20px;
    display: flex;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    background-color: #fff
}

button {
    font-size: 16px;
    font-weight: 500
}

.form-group {
    padding: 0;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column
}

.form-group label {
    padding-bottom: 2px
}

.form-group label a[data-micromodal-trigger] {
    color: #399841;
    cursor: pointer
}

.form-group .label-subtext {
    font-size: 14px;
    color: #6e6e6e;
    padding-top: 5px
}

.form-group input[type=file] {
    padding: 12px
}

.form-group input:disabled,
.form-group select:disabled {
    border: 0;
    padding-left: 0;
    height: 28px;
    background-image: none;
    margin-bottom: -10px
}

.show-password {
    position: absolute;
    right: 10px;
    top: 25px;
    cursor: pointer;
    background: url("../img/icons/show.svg");
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    border: 0;
    opacity: .5;
    transition: .2s ease opacity;
    height: 54px;
    width: 54px;
    bottom: 0;
    right: 0
}

.show-password:hover,
.show-password:active,
.show-password:focus {
    opacity: 1
}

.form-spacer {
    height: 40px
}

.form-group.--checkbox>label {
    padding: 10px 20px 10px 45px;
    height: auto;
    border: 1px solid #e5e5e5;
    display: block;
    cursor: pointer
}

.form-group.--checkbox>label span {
    color: #6e6e6e
}

.form-group.--checkbox>input {
    position: absolute;
    left: 20px;
    top: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 14px;
    width: 14px;
    padding: 0;
    border: 1px solid #222427
}

.form-group.--checkbox>input:checked {
    background-color: #222427;
    background-image: url("../img/icons/check-white.svg");
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat
}

.form-collapse {
    display: none;
    padding: 20px 0 0 0
}

.form-group.--checkbox>input:checked+.form-collapse {
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 575px) {
    .form-spacer {
        height: 20px
    }
}

.form-subtitle {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
    width: 100%;
    max-width: 540px
}

.form-alert {
    width: 100%;
    max-width: 540px;
    margin-top: 20px;
    background: rgba(57, 152, 65, .1);
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    margin-bottom: -20px
}

header {
    background: #222427
}

.header-top {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222427;
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.header-top .container {
    display: flex
}

.header-top__tel {
    display: flex;
    line-height: 1;
    flex-shrink: 0;
    flex-grow: 1;
    align-items: center
}

.header-top__tel small {
    display: flex;
    font-size: 13px
}

.header-top__tel img {
    margin: 0 10px;
    width: 14px;
    height: 14px
}

.header-top__tel span {
    font-weight: 500;
    padding-right: 10px
}

.header-top__links {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-end
}

.header-top__links a {
    margin: 0 0 0 20px;
    color: #fff
}

.header-top__links a:hover {
    color: #fff
}

@media screen and (max-width: 991px) {
    .header-top {
        display: none
    }
}

.header-main {
    padding: 20px 0
}

.header-main .container {
    display: flex;
    align-items: center
}

.logo img {
    height: 100%;
    width: 190px
}

#navToggle {
    height: 100%;
    width: 52px;
    cursor: pointer;
    display: none
}

#navToggle span {
    height: 2px;
    width: 18px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    transition: .3s all ease
}

#navToggle span::before,
#navToggle span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    transform: translate(0%, -300%);
    transition: .3s all ease
}

#navToggle span::after {
    transform: translate(0%, 300%);
    width: 14px
}

#searchToggle {
    height: 100%;
    width: 52px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center
}

#searchToggle img {
    height: 18px;
    width: 18px
}

.search {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    padding: 0 60px
}

.search-wrapper {
    max-width: 480px;
    min-width: auto;
    width: 100%
}

.search-form {
    display: flex;
    position: relative
}

.search__input {
    background: #fff;
    border: 0;
    width: 100%;
    outline: none;
    height: 48px
}

.search__button {
    border: 0;
    background: #fff;
    height: 48px;
    width: 52px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding: 0
}

.header-nav {
    display: flex
}

.header-nav .user {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px 0 0;
    cursor: pointer;
    position: relative
}

.header-nav .user.--active .user__title {
    font-weight: 500
}

.header-nav .user__wrap {
    display: flex;
    flex-direction: column
}

.header-nav .user__title {
    color: #fff
}

.header-nav .user__text {
    color: #fff;
    font-size: 14px;
    line-height: 1
}

.header-nav .user__icon {
    background: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px
}

.header-nav .user__icon img {
    height: 20px;
    width: 16px
}

.header-nav .user__dropdown {
    position: absolute;
    margin-top: 10px;
    top: 100%;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 220px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, .08);
    border: 1px solid #e5e5e5;
    background: #fff;
    padding-bottom: 10px;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease opacity
}

.header-nav .user__dropdown::before {
    content: "";
    height: 12px;
    width: 12px;
    display: inline-flex;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    position: relative;
    transform: translateY(-6px) rotate(-45deg);
    margin-left: 18px
}

.header-nav .user__dropdown a {
    background: #fff;
    padding: 10px 20px;
    color: #222427
}

.header-nav .user__dropdown a:hover,
.header-nav .user__dropdown a:active,
.header-nav .user__dropdown a:focus {
    background: #f5f5f5
}

body.--user-active .header-nav .user__dropdown {
    opacity: 1;
    pointer-events: auto
}

.header-nav .cart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0px 0 30px;
    color: #fff
}

.header-nav .cart__icon {
    background: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative
}

.header-nav .cart__icon img {
    width: 18px;
    height: 20px
}

.header-nav .cart__number {
    position: absolute;
    background: #399841;
    color: #fff;
    border: 2px solid #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    line-height: 1;
    text-align: center;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.header-nav .cart-title {
    font-size: 15px
}

.header-nav .cart.--active .cart-title {
    font-size: 14px;
    line-height: 1
}

.header-nav .cart-price {
    font-size: 15px;
    font-weight: 500
}

@media screen and (max-width: 991px) {
    header {
        padding-top: 52px
    }

    .header-main {
        padding: 0;
        height: 52px;
        background: #222427;
        position: fixed;
        z-index: 5;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, .05)
    }

    .header-main .container {
        padding: 0;
        height: 100%
    }

    .logo img {
        margin-left: 10px
    }

    .logo img {
        height: 24px;
        width: auto
    }

    #navToggle,
    #searchToggle {
        display: flex;
        flex-shrink: 0
    }

    #searchToggle img,
    .header-nav .user__icon img,
    .header-nav .cart__icon img {
        filter: invert(1) brightness(5)
    }

    .search {
        padding: 0
    }

    .search-wrapper {
        display: none
    }

    body.--search-active {
        overflow-y: hidden
    }

    body.--search-active .header-main {
        z-index: 15
    }

    body.--search-active .search-wrapper {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: 0px 10px 8px -8px rgba(0, 0, 0, .05);
        border: 10px solid #fff;
        background: #fff;
        border-top: 0
    }

    body.--search-active .search-wrapper .search-form {
        width: 100%
    }

    .header-nav {
        height: 100%
    }

    .header-nav .user {
        padding: 0;
        margin: 0
    }

    .header-nav .user__title {
        display: none
    }

    .header-nav .user__text {
        display: none
    }

    .header-nav .user__icon {
        margin: 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0);
        height: 100%;
        width: 52px;
        border: 0
    }

    .header-nav .cart {
        padding: 0;
        margin: 0
    }

    .header-nav .cart__icon {
        margin: 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0);
        height: 100%;
        width: 52px;
        border: 0
    }

    .header-nav .cart-wrap {
        display: none
    }

    .header-nav .cart__number {
        border: 1px solid #222427;
        top: 25px;
        left: 24px
    }

    .header-nav .user__dropdown {
        right: -42px;
        left: auto
    }

    .header-nav .user__dropdown::before {
        margin-left: 145px
    }
}

.lightbox {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .15s ease-in
}

.lightbox.show {
    background-color: rgba(0, 0, 0, .85);
    opacity: 1;
    visibility: visible;
    z-index: 1000
}

.lightbox img {
    max-width: 90%;
    width: 1000px;
    height: auto;
    max-height: 90%;
    -o-object-fit: contain;
    object-fit: contain;
    background: #fff
}

.lightbox span {
    display: flex;
    width: 100%;
    text-align: left;
    color: #fff;
    max-width: 90%;
    width: 1000px;
    padding-top: 10px
}

.lightbox .close-lightbox {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 50px;
    width: 20px;
    height: 20px
}

.lightbox .close-lightbox::after,
.lightbox .close-lightbox::before {
    content: "";
    width: 3px;
    height: 20px;
    background-color: #ddd;
    position: absolute;
    border-radius: 5px;
    transform: rotate(45deg)
}

.lightbox .close-lightbox::before {
    transform: rotate(-45deg)
}

.lightbox .close-lightbox:hover::after,
.lightbox .close-lightbox:hover::before {
    background-color: #fff
}

@media screen and (max-width: 575px) {
    .lightbox .close-lightbox {
        right: 20px
    }
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    padding: 20px
}

.modal__container {
    background-color: #fff;
    padding: 0px;
    max-width: 560px;
    max-height: 100vh;
    width: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, .1)
}

.modal__header-img {
    display: flex;
    width: 100%;
    height: auto;
    border: 5px solid #fff
}

.modal__header-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    width: 100%
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 36px;
    line-height: 1
}

.modal__close {
    background: rgba(0, 0, 0, 0);
    border: 0
}

.modal__header .modal__close:before {
    content: "✕"
}

.modal__content {
    padding: 60px 40px;
    margin: 0;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.modal__side {
    width: 280px;
    border: 4px solid #fff;
    display: none
}

.modal__side img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.modal__content .form-group {
    margin-bottom: 20px
}

.modal__content .forgot-password {
    color: #6e6e6e;
    margin-bottom: 20px;
    display: inline-flex
}

.modal__content .register {
    color: #6e6e6e;
    text-align: center;
    display: block
}

.modal__content .register a {
    color: #222427
}

.modal__container.--cart {
    display: flex;
    flex-wrap: nowrap;
    max-width: 860px
}

.modal__image {
    padding: 80px 30px 80px 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal__image img {
    height: 300px;
    width: 240px;
    -o-object-fit: contain;
    object-fit: contain
}

.modal__container.--cart .modal__header {
    padding-bottom: 20px
}

.modal__container.--cart .modal__content {
    padding: 80px 60px 80px 30px;
    align-items: flex-start
}

.modal__cart-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px
}

.modal__cart-variant {
    font-size: 16px;
    font-weight: 400;
    color: #6e6e6e;
    margin-bottom: 20px
}

.modal__cart-price {
    font-size: 24px;
    font-weight: 500;
    color: #e30909
}

.modal__cart-vat {
    font-size: 13px;
    font-weight: 400;
    color: #6e6e6e
}

.modal__cart-btns {
    margin: 0 -10px;
    display: flex
}

.modal__container.--cart .btn {
    width: auto;
    margin: 0 10px;
    margin-top: 40px;
    white-space: nowrap;
    height: 52px
}

.modal__container.--cart .btn:hover img,
.modal__container.--cart .btn:active img,
.modal__container.--cart .btn:focus img {
    margin-left: 15px
}

#modal-login-content .modal__close {
    background: #fff;
    border-radius: 50%
}

#modal-delivery .modal__container,
#modal-delivery2 .modal__container {
    max-width: 860px
}

#modal-ppl .modal__container,
#modal-dpd .modal__container {
    max-width: 100vw;
    max-height: 100vh;
    height: 90vh
}

@media screen and (max-width: 767px) {
    .modal__content {
        padding: 30px
    }

    .modal__header {
        padding-bottom: 40px
    }

    .modal__title {
        font-size: 30px
    }

    .modal__container.--cart {
        flex-direction: column
    }

    .modal__container.--cart .modal__image {
        padding: 40px 0
    }

    .modal__container.--cart .modal__image img {
        height: 180px
    }

    .modal__container.--cart .modal__content {
        padding: 20px 20px 20px 20px;
        align-items: flex-start
    }

    .modal__container.--cart .modal__title {
        font-size: 22px
    }

    .modal__container.--cart .modal__cart-title {
        font-size: 16px;
        margin-top: 0px
    }

    .modal__container.--cart .modal__cart-variant {
        font-size: 14px
    }

    .modal__container.--cart .btn {
        margin: 0;
        margin-top: 10px;
        width: 100%
    }

    .modal__container.--cart #modal-delivery-content {
        padding: 20px 10px
    }

    .modal__container.--cart #modal-delivery-content .modal__header {
        padding-bottom: 10px
    }

    .modal__side {
        display: none
    }

    .modal__cart-btns {
        margin: 0;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px
    }
}

.modal__close {
    background: #fff;
    border: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

@keyframes mmfadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10%)
    }
}

.micromodal-slide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden
}

.micromodal-slide.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden=false] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform
}

nav {
    background: #222427;
    position: relative
}

nav.disabled .nav-item {
    pointer-events: none
}

nav>.container {
    display: flex;
    max-width: 1300px;
    background: #313438;
    padding: 0
}

.nav-item {
    display: flex;
    flex-grow: 1;
    justify-content: center
}

.nav-item-backdrop {
    display: none
}

.nav-link,
.nav-linkDesktop {
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    text-align: center;
    flex-grow: 1;
    font-size: 15px;
    font-weight: 500
}

.nav-link img,
.nav-linkDesktop img {
    margin-left: 10px;
    width: 8px;
    height: 5px
}

.nav-linkDesktop+.nav-link {
    display: none
}

.nav-submenu {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 3;
    background: #fff;
    padding: 0 0 20px 0
}

.nav-submenu .container {
    padding-top: 20px
}

.nav-submenu .row {
    flex-grow: 1
}

.nav-submenu__single {
    display: flex;
    flex-direction: row;
    padding: 40px 0;
    align-items: flex-start
}

.nav-submenu__single.--all {
    display: none
}

.nav-submenu__single img {
    width: 80px
}

.nav-submenu__single ul {
    list-style: none;
    margin: 0;
    padding-left: 40px;
    padding-bottom: 20px
}

.nav-submenu__single li {
    padding: 0;
    display: flex
}

.nav-submenu__title {
    color: #222427;
    font-weight: 500;
    padding-bottom: 10px
}

.nav-submenu__link {
    color: #6e6e6e
}

@media screen and (min-width: 992px) {
    .nav-item-backdrop {
        justify-content: center;
        align-items: flex-start;
        background: rgba(0, 0, 0, .2);
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 2;
        opacity: 0;
        pointer-events: none;
        transition: .2s ease opacity;
        transition-delay: .2s
    }

    .nav-item.expandable:hover~.nav-item-backdrop {
        opacity: 1;
        pointer-events: auto;
        animation: delay-pointer-events .3s linear
    }

    .nav-item:hover .nav-link,
    .nav-item:hover .nav-linkDesktop {
        background: #fff;
        color: #222427
    }

    .nav-submenu {
        opacity: 0;
        pointer-events: none;
        transition: .2s ease opacity;
        transition-delay: .2s
    }

    .nav-item.expandable:hover .nav-submenu {
        opacity: 1;
        pointer-events: auto;
        animation: delay-pointer-events .3s linear
    }

    @keyframes delay-pointer-events {}
}

@media screen and (max-width: 991px) {
    nav {
        background: #222427;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 15;
        bottom: 0;
        overflow-y: auto;
        width: 260px;
        transform: translateX(-100%);
        transition: .2s ease transform;
        height: 100%;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        content-visibility: hidden
    }

    body.--nav-active {
        overflow-y: hidden
    }

    body.--nav-active nav {
        transform: translateX(0%);
        content-visibility: visible
    }

    nav .container {
        display: flex;
        flex-direction: column;
        padding: 0
    }

    .nav-item {
        display: flex;
        flex-grow: 1;
        flex-direction: column
    }

    .nav-linkDesktop+.nav-link {
        display: flex;
        width: 100%;
        flex-grow: 1;
        justify-content: space-between
    }

    .nav-link {
        justify-content: flex-start;
        width: 100%;
        display: flex
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        color: #fff
    }

    .nav-linkDesktop {
        display: none
    }

    .nav-submenu {
        position: relative;
        flex-direction: column;
        background: #313438;
        padding: 10px 0;
        display: none
    }

    .nav-submenu .container {
        padding-top: 0
    }

    .nav-submenu__single {
        padding: 0;
        flex-grow: 1;
        width: 100%
    }

    .nav-submenu__single.--all {
        display: flex
    }

    .nav-submenu__single.--all .nav-submenu__title {
        font-weight: 500
    }

    .nav-submenu .row {
        margin-right: 0px;
        margin-left: 0px
    }

    .nav-submenu .row>* {
        padding-right: 0px;
        padding-left: 0px
    }

    .nav-submenu__single img {
        display: none
    }

    .nav-submenu__title {
        height: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 20px;
        font-weight: 400;
        color: #fff
    }

    .nav-submenu__link {
        display: none
    }

    .nav-submenu__single ul {
        padding: 0;
        width: 100%
    }

    .nav-submenu.--active {
        display: flex
    }
}

.section-news__btnWrap {
    text-align: center;
    padding-top: 40px
}

.news-single {
    background: rgba(0, 0, 0, 0);
    color: #222427;
    overflow: hidden;
    margin: 10px 0;
    width: 100%;
    display: block
}

.news-single:hover,
.news-single:active,
.news-single:focus {
    color: #222427;
    text-decoration: none
}

.news-single:hover .news-single__img,
.news-single:active .news-single__img,
.news-single:focus .news-single__img {
    opacity: .8
}

.news-single__top {
    position: relative;
    min-height: 260px;
    width: 100%;
    background: #f5f5f5;
    overflow: hidden
}

.news-single__img {
    z-index: 0;
    transition: .5s ease opacity;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 100%;
    width: 100%
}

.news-single__dateWrap {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 0px 12px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1
}

.news-single__date {
    font-size: 13px
}

.news-single__bottom {
    padding: 20px 0 0 0;
    background: rgba(0, 0, 0, 0)
}

.news-single__title {
    font-size: 16px;
    overflow: hidden;
    margin: 0
}

@media screen and (max-width: 991px) {
    .news-single__top {
        min-height: 200px
    }
}

@media screen and (max-width: 768px) {
    .news-single {
        flex-direction: row;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5px 0
    }

    .news-single__top {
        width: 140px;
        min-height: 100px;
        flex-shrink: 0
    }

    .news-single__bottom {
        flex-grow: 1;
        padding: 0 0 0 10px
    }

    .news-single__title {
        max-height: 4.5rem;
        overflow: hidden;
        height: auto
    }

    .o-sectionNews__btnWrap {
        margin-top: 15px
    }

    .news-single__dateWrap {
        display: none
    }
}

@media screen and (max-width: 575px) {
    .news-single__top {
        width: 120px;
        min-height: 80px;
        flex-shrink: 0
    }
}

.news-single.--full {
    margin-bottom: 60px
}

.news-single.--full .news-single__top {
    min-height: 340px
}

.news-single.--full .news-single__title {
    font-size: 18px;
    padding-bottom: 10px;
    margin: 0
}

.news-single.--full .news-single__text {
    margin: 0
}

.order-history {
    width: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.order-history::-webkit-scrollbar {
    display: none
}

.order-history table {
    width: 100%
}

.order-history th {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0px
}

.order-history td {
    max-width: 30%;
    padding: 15px 20px 15px 0px
}

.order-history td:first-child {
    font-weight: 500
}

.order-history__item-detail td:first-child {
    padding-left: 20px
}

.order-history span {
    display: flex;
    padding: 5px 0
}

.order-history__item-detail {
    display: none;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #f5f5f5
}

.order-history__item:target+.order-history__item-detail {
    display: table-row
}

.page-content {
    padding-top: 0
}

.page-content__cell {
    padding-bottom: 80px
}

.page-content__cell>*:last-child {
    padding-bottom: 0px;
    margin: 0
}

.page-content .row>*:last-child>.page-content__cell {
    padding-bottom: 0px
}

.page-content h2 {
    font-size: 24px;
    padding-bottom: 20px;
    margin: 0;
    margin-top: 20px
}

.page-content h3 {
    padding-bottom: 20px;
    margin: 0;
    margin-top: 20px
}

.page-content h4 {
    padding-bottom: 20px;
    margin: 0;
    margin-top: 20px
}

.page-content h5 {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    margin: 0;
    margin-top: 20px
}

.page-content h6 {
    padding-bottom: 20px;
    margin: 0;
    margin-top: 20px
}

.page-content .contact-block {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    border: 1px solid #e5e5e5;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 500;
    color: #222427;
    margin-bottom: 20px;
    transition: .2s ease box-shadow
}

.page-content .contact-block:hover,
.page-content .contact-block:active,
.page-content .contact-block:focus {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08)
}

.page-content p,
.page-content strong,
.page-content b,
.page-content i,
.page-content u {
    display: block;
    color: #6e6e6e;
    margin-bottom: 40px;
    line-height: 1.75
}

.page-content p strong,
.page-content p b,
.page-content p i,
.page-content p u {
    display: inline-block
}

.page-content ul {
    margin: 0;
    padding-bottom: 40px
}

.page-content li {
    padding: 8px 0
}

.page-content table {
    color: #6e6e6e;
    margin-bottom: 40px;
    line-height: 1.75
}

.page-content table th,
.page-content table td {
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    white-space: nowrap
}

.page-content__cell ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 40px
}

.page-content__cell li strong {
    margin: 0;
    color: #222427
}

.page-content__cell h2 {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 40px
}

.page-content__cell h5 {
    padding-bottom: 40px
}

.page-content__grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start
}

.page-content__gridItem {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    border: 1px solid #e5e5e5;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: .2s ease box-shadow
}

.page-content__gridItem:hover,
.page-content__gridItem:active,
.page-content__gridItem:focus {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08)
}

.page-content__gridItem img {
    height: 66px;
    max-width: 72px
}

.page-content__gridItem h2 {
    color: #222427;
    margin-top: 40px
}

.page-content__gridItem p {
    max-width: 340px
}

@media screen and (max-width: 991px) {
    .page-content__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px
    }
}

@media screen and (max-width: 575px) {
    .page-content__grid {
        grid-template-columns: repeat(1, 1fr)
    }
}

.page-heading {
    padding: 60px 0
}

.page-heading.--inline .container {
    display: flex;
    align-items: center
}

.page-heading h1 {
    padding: 0;
    margin: 0;
    font-size: 36px
}

.page-heading p {
    color: #6e6e6e;
    font-size: 15px;
    margin: 0;
    padding-top: 10px
}

.page-heading p span {
    display: block;
    color: #222427
}

.page-heading .read-more {
    color: #399841;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    margin-left: 10px
}

.page-heading .read-more.--less {
    display: flex;
    margin: 0;
    margin-top: 10px
}

#pageDescriptionFull {
    display: none;
    padding-top: 20px
}

#pageDescription {
    padding-top: 20px
}

#pageDescription.--active {
    display: none
}

#pageDescription.--active+#pageDescriptionFull {
    display: block
}

@media screen and (max-width: 575px) {
    .page-heading {
        padding: 40px 0
    }

    .page-heading h1 {
        padding-bottom: 0px;
        font-size: 30px
    }

    .page-heading p {
        padding-top: 10px;
        font-size: 14px
    }

    #pageDescription {
        display: none
    }
}

.page.--narrow {
    width: 100%;
    max-width: 820px;
    padding: 80px 110px 60px 110px;
    border: 1px solid #e5e5e5;
    margin: 60px auto 40px auto
}

.page.--narrow .page-heading {
    padding-top: 0
}

.page.--narrow .page-heading h1 {
    text-align: center;
    padding-top: 0
}

.page.--narrow .page-heading p {
    text-align: center;
    color: #6e6e6e;
    font-size: 14px
}

@media screen and (max-width: 991px) {
    .page.--narrow {
        width: 100%;
        max-width: 100%;
        padding: 80px 60px 60px 60px
    }
}

@media screen and (max-width: 767px) {
    .page.--narrow {
        padding: 40px 20px 40px 20px
    }
}

@media screen and (max-width: 575px) {
    .page.--narrow {
        padding: 0;
        border: 0;
        margin-bottom: 0
    }
}

.pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin: 0 -5px;
    align-items: center;
    justify-content: center
}

.pagination__item {
    padding: 0 5px
}

.pagination__item.--active .pagination__link {
    border: 1px solid #e5e5e5;
    color: #222427;
    border-radius: 50%
}

.pagination__link {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e6e
}

.points {
    padding-top: 20px;
    padding-bottom: 60px
}

.points-single {
    display: flex;
    align-items: center
}

.points-single__icon {
    content-visibility: auto;
    contain-intrinsic-size: 60px 60px
}

.points-single__icon img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain
}

.points-single__content {
    display: flex;
    flex-direction: column;
    padding-left: 20px
}

.points-single__content strong {
    font-weight: 500
}

.points-single__content span {
    color: #6e6e6e
}

@media screen and (max-width: 991px) {
    .points {
        padding-top: 0
    }

    .points-single {
        padding: 20px 0
    }

    .points-single__icon {
        contain-intrinsic-size: 60px 60px
    }

    .points-single__icon img {
        width: 60px;
        height: 60px
    }
}

@media screen and (max-width: 575px) {
    .points-single {
        padding: 10px 0
    }
}

.product-card {
    padding: 0px;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    outline: 1px solid #f5f5f5
}

.product-card__link {
    padding: 0px;
    z-index: 1;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: #222427;
    text-align: left;
    transition: .3s ease box-shadow;
    height: 100%;
    padding: 20px
}

.product-card__top {
    width: 100%;
    position: relative
}

.product-card__top:hover,
.product-card__top:active,
.product-card__top:focus {
    text-decoration: none
}

.product-card__thumb {
    position: relative;
    padding-bottom: 85%
}

.product-card__imgWrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.product-card__img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.product-card__tags {
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 1
}

.product-card__tagsRight {
    position: absolute;
    left: auto;
    right: -10px;
    top: -10px;
    z-index: 1;
    text-align: right
}

.product-card__tagSingle {
    display: block
}

.product-card__title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 20px
}

.product-card__bottom {
    width: 100%;
    padding: 0 20px 10px 20px
}

.product-card__description {
    font-size: 14px;
    color: #6e6e6e;
    text-align: center;
    height: 0;
    overflow: hidden
}

.product-card__delivery {
    flex-grow: 1;
    line-height: 1.2;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center
}

.product-card__delivery img {
    height: 16px;
    width: 16px
}

.product-card__deliveryText {
    margin: 0;
    color: #399841;
    font-weight: 500;
    text-align: left;
    font-size: 14px;
    padding-left: 6px;
    text-transform: uppercase
}

.product-card__deliveryText.--unavailable {
    color: #6e6e6e
}

.product-card__price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
    flex-shrink: 0
}

.product-card__priceOld {
    text-decoration: line-through;
    margin: 0 5px;
    line-height: 1
}

.product-card__priceMain {
    color: #e30909;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    margin: 0 5px
}

.product-card__btn {
    display: none;
    min-height: 48px;
    background: #e30909
}

@media screen and (min-width: 992px) {

    .product-card:hover,
    .product-card:active,
    .product-card:focus {
        z-index: 2;
        height: auto;
        margin-bottom: -132px;
        outline: none
    }

    .product-card:hover .product-card__link,
    .product-card:active .product-card__link,
    .product-card:focus .product-card__link {
        text-decoration: none;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, .08);
        height: auto;
        position: relative;
        left: 0;
        right: 0
    }

    .product-card:hover .product-card__link .product-card__description,
    .product-card:active .product-card__link .product-card__description,
    .product-card:focus .product-card__link .product-card__description {
        height: 42px
    }

    .product-card:hover .product-card__link .product-card__delivery,
    .product-card:active .product-card__link .product-card__delivery,
    .product-card:focus .product-card__link .product-card__delivery {
        padding-top: 20px
    }

    .product-card:hover .product-card__link .product-card__btn,
    .product-card:active .product-card__link .product-card__btn,
    .product-card:focus .product-card__link .product-card__btn {
        display: flex;
        margin-top: 20px
    }
}

@media screen and (max-width: 575px) {
    .product-card {
        padding: 5px
    }

    .product-card__title {
        font-size: 15px;
        line-height: 1.25;
        text-align: left;
        padding: 20px 10px 10px 10px
    }

    .product-card__bottom {
        padding: 0 10px 20px 10px
    }

    .product-card__delivery {
        display: none
    }

    .product-card__price {
        padding-top: 0;
        justify-content: flex-start;
        align-items: baseline
    }

    .product-card__priceOld {
        margin: 0;
        margin-right: 10px;
        font-size: 14px
    }

    .product-card__priceMain {
        margin: 0;
        font-size: 16px
    }

    .product-card__thumb .product-card__tagsRight {
        display: none
    }

    .product-card__thumb .product-card__tags {
        top: 5px;
        left: 5px
    }
}

.product-detail {
    padding: 60px 0
}

.product-detail__photos {
    margin-right: 60px;
    position: relative
}

.product-detail__carousel {
    position: relative
}

.product-detail__photos .prev,
.product-detail__photos .next {
    display: none
}

.product-detail__carousel>.product-detail__carouselItem {
    display: none
}

.product-detail__carousel>.product-detail__carouselItem:first-child {
    display: flex
}

.product-detail__carouselItem {
    position: relative;
    padding-bottom: 80%
}

.product-detail__carouselLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.product-detail__carouselLink img {
    max-height: 100%
}

.product-detail__carouselLink span {
    display: none
}

.product-detail__thumbs {
    display: flex;
    margin: 0 -10px;
    padding-top: 20px
}

.product-detail__thumbWrap {
    padding: 10px;
    width: 20%;
    flex-wrap: wrap
}

.product-detail__thumb {
    cursor: pointer;
    position: relative;
    padding-bottom: 140px
}

.product-detail__thumbInner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.product-detail__thumbs img {
    max-height: 100%
}

.product-detail__title {
    font-size: 36px;
    padding-bottom: 20px
}

.product-detail__code {
    font-size: 14px;
    line-height: 1;
    color: #6e6e6e;
    padding-bottom: 30px;
    display: flex;
    align-items: center
}

.product-detail__code a {
    margin-left: 20px;
    color: #6e6e6e;
    display: flex;
    align-items: center
}

.product-detail__code a img {
    width: 16px;
    height: 16px;
    margin-right: 5px
}

.product-detail__text {
    font-size: 14px;
    line-height: 1.5;
    color: #6e6e6e;
    padding-bottom: 40px;
    margin: 0
}

.product-detail__text a {
    color: #399841
}

.variants {
    padding-bottom: 40px;
    width: 100%;
    max-width: 420px
}

.variants__title {
    font-size: 14px;
    line-height: 1;
    color: #6e6e6e;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px
}

.variants__select {
    width: 100%
}

.variants__list-wrap {
    position: relative;
    height: 54px;
    z-index: 1
}

.variants__list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    height: 54px;
    background: #fff;
    overflow: hidden;
    cursor: pointer
}

.variants__list::after {
    content: "";
    height: 8px;
    width: 8px;
    background-image: url("../img/icons/cheveron.svg");
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%)
}

.variants__list.--active {
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08)
}

.variants__list.--active::after {
    transform: translateY(-50%) rotate(180deg)
}

.variants__list.--active .variants__item:hover {
    background: #f5f5f5
}

.variants__item {
    order: 2;
    height: 54px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 0 20px
}

.variants__item>* {
    pointer-events: none
}

.variants__item.default {
    display: none
}

.variants__item.--active {
    order: 1;
    display: flex
}

.variants__item input {
    opacity: 0;
    position: absolute;
    pointer-events: none
}

.variants__item img {
    height: 34px;
    width: 34px;
    margin-right: 20px;
    -o-object-fit: contain;
    object-fit: contain
}

.product-detail__stock {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #6e6e6e;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 500;
    height: 16px
}

.product-detail__stock img {
    margin-right: 10px
}

.product-detail__stock[data-status=disabled] {
    padding-left: 22px;
    background-image: url("../img/icons/cross.svg");
    background-repeat: no-repeat;
    background-position: left center
}

.product-detail__stock[data-status=active] {
    color: #399841;
    padding-left: 22px;
    background-image: url("../img/icons/check.svg");
    background-repeat: no-repeat;
    background-position: left center
}

.product-detail__price {
    padding-bottom: 20px
}

.product-detail__priceMain {
    padding-bottom: 5px;
    line-height: 1;
    display: flex;
    gap: 5px;
    align-items: baseline
}

.product-detail__priceMain span:first-child {
    text-decoration: line-through;
    font-size: 16px;
    color: #6e6e6e
}

.product-detail__priceMain span:last-child {
    font-size: 24px;
    color: #e30909;
    font-weight: 500;
    padding-bottom: 5px;
    text-decoration: none
}

.product-detail__priceVAT {
    font-size: 13px;
    color: #6e6e6e
}

.product-detail__cta {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f5f5f5
}

.product-detail__qty.stepper {
    height: 62px;
    width: 140px
}

.product-detail__qty.stepper span,
.product-detail__qty.stepper input {
    height: 62px
}

.product-detail__qty.stepper span {
    width: 54px
}

.product-detail__cta-wrap {
    display: flex
}

.product-detail__button {
    margin-left: 10px;
    z-index: 0
}

.product-detail__button button {
    min-height: 62px;
    padding: 0 60px
}

.product-detail__description {
    padding: 60px 0 0 0
}

.product-detail__description iframe {
    max-width: 100%
}

.product-detail__description h2 {
    padding-bottom: 20px;
    margin-bottom: 0
}

.product-detail__parameters {
    padding: 60px 0 0 0
}

.product-detail__parameters h2 {
    padding-bottom: 20px;
    margin-bottom: 0
}

.product-detail__parameters table {
    width: 100%
}

.product-detail__parameters table td {
    color: #6e6e6e;
    padding: 5px 10px 5px 0
}

.product-detail__parameters table tr>td:last-child {
    font-weight: 500;
    color: #222427
}

@media screen and (max-width: 991px) {
    .product-detail__photos {
        margin: 0
    }

    .product-detail__info {
        padding-top: 20px
    }

    .product-detail__thumb {
        padding-bottom: 100px
    }
}

@media screen and (max-width: 575px) {
    .product-detail {
        padding-top: 0
    }

    .product-detail__photos {
        padding: 0;
        margin: 0 -10px;
        display: flex;
        flex-direction: column
    }

    .product-detail__photos .product-card__tags {
        position: relative;
        display: flex;
        order: 9;
        margin-top: 10px;
        margin-bottom: 0px;
        left: 10px;
        top: 10px
    }

    .product-detail__photos .product-card__tags .product-card__tagSingle {
        margin-right: 5px
    }

    .product-detail__photos .product-card__tagsRight {
        right: 10px;
        top: 10px
    }

    .product-detail__thumbs {
        margin: 0;
        display: none
    }

    .product-detail__thumbWrap {
        padding: 5px;
        width: 25%
    }

    .product-detail__photos .prev,
    .product-detail__photos .next {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        border: 0;
        background: rgba(255, 255, 255, .3);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0
    }

    .product-detail__photos .prev img,
    .product-detail__photos .next img {
        width: 10px;
        height: 6px
    }

    .product-detail__photos .prev {
        left: 0;
        right: auto
    }

    .product-detail__photos .next img {
        transform: rotate(-90deg)
    }

    .product-detail__photos .prev img {
        transform: rotate(90deg)
    }

    .product-detail__title {
        font-size: 24px;
        padding-bottom: 20px
    }

    .product-detail__text {
        display: none
    }

    .variants {
        padding-bottom: 30px
    }

    .product-detail__stock {
        margin-bottom: 30px
    }

    .product-detail__price {
        padding-bottom: 30px
    }

    .product-detail__button {
        flex-grow: 1
    }

    .product-detail__button .btn {
        flex-grow: 1;
        width: 100%;
        padding: 0 20px
    }

    .product-detail__description {
        padding-top: 40px;
        font-size: 15px;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 20px
    }

    .product-detail__parameters {
        padding-top: 40px
    }
}

.products-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0 20px 0
}

.products-footer .btn {
    margin-bottom: 40px
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 1px
}

.products-grid .product-card {
    width: 100%
}

.products-count {
    color: #6e6e6e;
    font-size: 14px;
    padding-bottom: 20px
}

@media screen and (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .products-grid .product-card {
        width: 100%
    }

    .products-count {
        display: none
    }
}

@media screen and (max-width: 575px) {
    .products-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        margin-left: -5px;
        margin-right: -5px
    }
}

.products-heading {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px
}

@media screen and (max-width: 575px) {
    .products-heading {
        flex-direction: column
    }
}

.products-sort {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.products-sort::-webkit-scrollbar {
    display: none
}

.products-sort form {
    display: flex
}

.products-sort__single {
    display: flex;
    position: relative;
    line-height: 1;
    cursor: pointer;
    margin-right: 25px;
    flex-shrink: 0
}

.products-sort__single input {
    opacity: 0;
    position: absolute;
    height: 0;
    width: 0
}

.products-sort__single label {
    display: flex;
    font-weight: 500;
    font-size: 15px;
    padding: 15px 0;
    color: #6e6e6e;
    cursor: pointer
}

.products-sort__single input:checked+label {
    color: #222427
}

.products-sort__single input:checked+label::after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: #222427
}

input[type=range] {
    -webkit-appearance: none;
    margin: 18px 0;
    width: 100%;
    pointer-events: none;
    border: 0
}

input[type=range]:focus {
    outline: none
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: .2s;
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    border: 0
}

input[type=range]::-webkit-slider-thumb {
    border: 0;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #399841;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9px;
    pointer-events: auto
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(0, 0, 0, 0)
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: .2s;
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    border: 0
}

input[type=range]::-moz-range-thumb {
    border: 0;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #399841;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9px;
    pointer-events: auto
}

@supports(-ms-ime-align: auto) {
    input[type=range] {
        pointer-events: none
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 8px;
        cursor: pointer;
        animate: .2s;
        background: rgba(0, 0, 0, 0);
        border-radius: 0;
        border: 0;
        pointer-events: none;
        background: rgba(0, 0, 0, 0);
        z-index: -9
    }

    input[type=range]::-ms-fill-lower {
        background: rgba(0, 0, 0, 0);
        pointer-events: none
    }

    input[type=range]::-ms-fill-upper {
        background: rgba(0, 0, 0, 0);
        pointer-events: none
    }

    input[type=range]::-ms-thumb {
        border: 0;
        height: 24px;
        width: 24px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #399841;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -4px;
        pointer-events: all;
        z-index: 9
    }

    input[type=range]:focus::-ms-fill-lower {
        background: rgba(0, 0, 0, 0);
        pointer-events: auto
    }

    input[type=range]:focus::-ms-fill-upper {
        background: rgba(0, 0, 0, 0);
        pointer-events: auto
    }
}

.range-slider {
    display: flex;
    flex-direction: column
}

.range-slider-wrap {
    position: relative;
    width: 100%;
    height: 54px;
    z-index: 2
}

.range-slider-wrap::after {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    z-index: -1
}

.range-slider input {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    margin: 0
}

#filter-range-input-2 {
    right: 0
}

.range-slider label {
    padding: 0
}

.range-slider-value {
    display: flex;
    width: 100%
}

.range-slider-value label:last-child {
    text-align: right;
    flex-grow: 1
}

#ratingSection {
    display: flex !important;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: 0 0;
    padding: 80px 0 40px 0;
    align-items: flex-start;
    background: #fff
}

#ratingSection .rating-section-inner {
    padding: 60px 0;
    border-top: 2px solid #f9f9f9;
    border-bottom: 2px solid #f9f9f9
}

#ratingSection .rating-content {
    display: flex;
    align-items: center;
    margin-bottom: 40px
}

#ratingSection .rating-content-title {
    margin-left: 20px
}

#ratingSection .rating-content-text {
    display: flex;
    margin-top: 10px
}

#ratingSectionCount {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #d9dfdd
}

#ratingSection .rating-content-title h3 {
    font-size: 26px;
    margin-bottom: 0;
    width: auto
}

#ratingSection .rating-content-title a {
    font-size: 15px;
    font-weight: 500;
    margin-top: 0
}

#ratingSection .rate-average-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f5;
    padding: 15px;
    text-align: center;
    margin-bottom: 0
}

#ratingSection .stars-label {
    display: none
}

#ratingSectionCount .stars-label {
    display: flex
}

#ratingSection .vote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px
}

#ratingSection .vote-wrap {
    border: 0;
    padding: 0
}

#ratingSection .vote-time {
    display: none
}

#ratingSection .vote-header {
    display: flex
}

#ratingSection .vote-pic {
    height: 40px;
    width: 40px;
    background-color: #f5f5f5;
    background-image: url(../img/icons/user.svg);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    margin-right: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

#ratingSection .vote-pic * {
    display: none
}

#ratingSection .vote-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%
}

#ratingSection .rate-average {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
    padding-bottom: 10px
}

#ratingSection .vote-name {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 500
}

#ratingSection .vote-name span:last-child {
    color: #6e6e6e;
    font-weight: 400;
    font-size: 14px
}

#ratingSection .stars {
    display: flex
}

#ratingSection .stars .star {
    height: 13px;
    width: 13px;
    display: flex;
    background-size: 100%
}

#ratingSection .vote-content {
    font-style: normal;
    color: #6d6c79;
    line-height: 1.5;
    margin-top: 15px;
    font-size: 14px
}

@media screen and (max-width: 991px) {
    #ratingSection {
        padding: 60px 0 40px
    }

    #ratingSection .vote-grid {
        display: flex;
        overflow: auto;
        width: 100%;
        grid-gap: 20px;
        padding-bottom: 20px
    }

    #ratingSection .vote-wrap {
        min-width: 300px
    }
}

@media screen and (max-width: 575px) {
    #ratingSection {
        padding: 40px 0
    }

    #ratingSection .rating-content-title h3 {
        font-size: 20px;
        line-height: 1.2
    }

    #ratingSection .vote-content {
        line-height: 1.3
    }

    #ratingSection .rating-content-text {
        flex-direction: column
    }

    #ratingSectionCount {
        border: 0;
        margin: 0
    }
}

.vote-grid .vote-rating {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center
}

.vote-grid .vote-checked {
    font-size: 13px;
    color: #399841;
    display: flex;
    align-items: center
}

.vote-grid .vote-checked::before {
    content: "";
    background-size: 100%;
    height: 13px;
    width: 13px;
    display: flex;
    background-image: url(../img/icons/check.svg);
    margin-right: 5px
}

.page-content .votepage-content {
    display: flex;
    margin-top: 40px;
    gap: 60px
}

.page-content .votepage-summary {
    width: 400px;
    flex-shrink: 0;
    text-align: center
}

.page-content .rate-average-wrap {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid #e5e5e5
}

.page-content .rate-star-wrap .stars {
    display: flex;
    justify-content: center
}

.page-content .rate-average-wrap .rate-average {
    font-size: 36px;
    font-weight: 600;
    display: inline-flex;
    background: #f5f5f5;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 0;
    color: #6e6e6e
}

.page-content .rate-star-wrap .star {
    height: 30px;
    width: 30px
}

.page-content .stars-label {
    padding-top: 10px
}

.page-content .vote-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    height: 100%
}

.page-content .vote-wrap {
    background: #fff;
    padding: 0px 0px 40px 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 0px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    height: auto
}

.page-content .vote-header {
    order: 10;
    display: flex
}

.page-content .vote-summary {
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    line-height: 1;
    justify-content: center
}

.page-content .vote-name {
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 5px
}

.page-content .vote-rating .stars {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center
}

.page-content .vote-checked {
    color: #399841;
    display: flex;
    line-height: 1;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    font-size: 14px
}

.page-content .vote-checked::before {
    content: "";
    background-size: 100%;
    height: 16px;
    width: 16px;
    display: flex;
    background-image: url(../img/icons/check.svg);
    margin-right: 5px
}

.page-content .vote-time {
    color: #6e6e6e;
    font-size: 14px
}

.page-content .vote-content {
    order: 0;
    margin-top: 50px;
    overflow: hidden;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 150%
}

.page-content .stars .star {
    height: 20px;
    width: 20px;
    display: flex;
    background-image: url(../img/star-empty.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0px
}

.page-content .vote-pic {
    height: 40px;
    width: 40px;
    background-color: #f5f5f5;
    background-image: url(../img/icons/user.svg);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    margin-right: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

.page-content .rate-graph {
    margin-top: 20px
}

.page-content .rate-graph .rate-list {
    display: flex;
    align-items: center;
    padding: 5px 0
}

.page-content .rate-graph .rate-value {
    width: 12px;
    text-align: center;
    font-weight: 500;
    color: #6e6e6e;
    padding-right: 5px
}

.page-content .rate-graph .rate-star {
    display: flex;
    align-items: center
}

.page-content .rate-graph .rate-block {
    display: flex;
    flex-grow: 1;
    background: #f5f5f5;
    height: 8px;
    margin-left: 15px
}

.page-content .rate-graph .rate-list[data-score="5"] .rate-bar {
    background: #7bb82a
}

.page-content .rate-graph .rate-list[data-score="4"] .rate-bar {
    background: #bae637
}

.page-content .rate-graph .rate-list[data-score="3"] .rate-bar {
    background: #d69e2e
}

.page-content .rate-graph .rate-list[data-score="2"] .rate-bar {
    background: #ed8936
}

.page-content .rate-graph .rate-list[data-score="1"] .rate-bar {
    background: #a8071a
}

.page-content .rate-graph .rate-bar {
    display: flex
}

.page-content .rate-graph .rate-count {
    display: none
}

.page-content .rate-graph .stars .star {
    height: 14px;
    width: 14px
}

@media screen and (max-width: 991px) {
    .page-content .vote-grid {
        grid-template-columns: 1fr;
        grid-gap: 0px
    }

    .page-content .votepage-content {
        gap: 40px
    }

    .page-content .votepage-summary {
        width: 360px
    }
}

@media screen and (max-width: 767px) {
    .page-content .vote-grid {
        grid-template-columns: 1fr;
        grid-gap: 0px
    }

    .page-content .votepage-content {
        flex-direction: column
    }

    .page-content .votepage-summary {
        width: 100%
    }
}

.stars .star.star-on {
    background-image: url("../img/star-full.svg")
}

.stars .star.star-off {
    background-image: url("../img/star-empty.svg")
}

.searchAutocomplete {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 5;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, .08);
    opacity: 0;
    pointer-events: none
}

.searchAutocomplete.--active {
    opacity: 1;
    pointer-events: auto
}

.searchAutocomplete__section {
    padding: 10px 0
}

.searchAutocomplete__title {
    font-size: 14px;
    font-weight: 500;
    color: #6e6e6e;
    display: flex;
    padding: 10px 20px;
    text-transform: uppercase
}

.searchAutocomplete__link {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #222427;
    display: flex
}

.searchAutocomplete__link:hover,
.searchAutocomplete__link:active,
.searchAutocomplete__link:focus {
    background: #f5f5f5
}

@media screen and (max-width: 991px) {
    .searchAutocomplete {
        left: -10px;
        right: -10px;
        width: auto
    }
}

.social {
    padding-bottom: 60px;
    content-visibility: auto
}

.social h1 {
    padding-bottom: 30px
}

.instagram-wrap {
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px
}

.instagram-single {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease opacity
}

.instagram-single:hover,
.instagram-single:active,
.instagram-single:focus {
    opacity: .8
}

.instagram-single img {
    width: 100%
}

.social-single {
    padding: 10px 0
}

.social-single__link {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    padding: 20px 20px;
    color: #222427;
    transition: .2s ease box-shadow
}

.social-single__link:hover,
.social-single__link:active,
.social-single__link:focus {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08)
}

.social-single__img {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.social-single img {
    max-height: 100%
}

.social-single__text {
    font-size: 16px;
    padding-left: 20px
}

@media screen and (max-width: 575px) {
    .social {
        padding-top: 0;
        padding-bottom: 20px
    }

    .social h1 {
        padding-bottom: 10px
    }

    .social-single {
        padding: 5px 0
    }

    .social-single__link {
        padding: 20px 20px
    }

    .social-single__img {
        height: 30px;
        width: 30px
    }

    .social-single__text {
        font-size: 16px
    }

    .instagram-wrap {
        padding-bottom: 10px
    }
}

.stepper {
    height: 54px;
    position: relative;
    width: 120px;
    color: #222427
}

.stepper input {
    height: 54px;
    border: 1px solid #e5e5e5;
    text-align: center;
    margin: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.stepper input {
    -moz-appearance: textfield
}

.stepper span {
    height: 54px;
    position: absolute;
    top: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    padding: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer
}

.stepper .minus {
    height: 54px;
    left: 0
}

.stepper .plus {
    height: 54px;
    right: 0
}

.subcategories {
    padding-top: 0;
    padding-bottom: 60px
}

.subcategories__single {
    padding: 10px 0
}

.subcategories__link {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 66px;
    border: 1px solid #e5e5e5;
    transition: .2s ease box-shadow;
    overflow: hidden
}

.subcategories__link:hover,
.subcategories__link:active,
.subcategories__link:focus {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08)
}

.subcategories__img img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 46px;
    width: 46px
}

.subcategories__title {
    font-size: 15px;
    color: #222427;
    font-weight: 400;
    margin: 0;
    padding-left: 20px
}

@media screen and (max-width: 575px) {
    .subcategories {
        overflow-x: auto;
        padding: 0;
        padding-bottom: 30px
    }

    .subcategories .row {
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: scroll
    }

    .subcategories .row::-webkit-scrollbar {
        display: none
    }

    .subcategories__single {
        padding: 0
    }

    .subcategories__link {
        padding: 0 10px;
        height: 56px
    }

    .subcategories__title {
        padding-left: 10px
    }
}

.tag {
    font-size: 12px;
    font-weight: 400;
    background: #222427;
    color: #fff;
    height: 22px;
    padding: 0 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
    position: relative
}

.tag.--sale {
    background: #e30909
}

.tag.--new {
    background: #399841
}

.tag.--recommended {
    background: #5a5e6a
}

.tag.--top {
    background: #222427
}

.tag.--circleSale {
    background: #e30909;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    font-weight: 500
}

.tag.--circle {
    background: #f7e517;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 12px;
    color: #000;
    font-weight: 500
}

.tag.--free-delivery {
    background: #399841;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    line-height: 1
}

@media screen and (max-width: 575px) {
    .tag {
        font-size: 12px;
        font-weight: 400;
        height: 22px;
        padding: 0 6px;
        margin-bottom: 2px
    }
}

body {
    background: #fff;
    color: #222427;
   
    overflow-x: hidden;
    font-size: 15px
}

body.cart #navToggle {
    display: none
}

a {
    color: #e30909;
    text-decoration: none
}

a:hover,
a:active,
a:focus {
    color: #222427
}

img,
svg {
    vertical-align: middle;
    max-width: 100%;
    height: auto
}

strong {
    font-weight: 500
}

h1 {
    font-size: 36px
}

small {
    font-size: 13px
}

h6,
h5,
h4,
h3,
h2,
h1 {
    font-weight: 600
}

.container {
    max-width: 1340px;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    margin: 0 auto
}

.row {
    margin-right: -10px;
    margin-left: -10px
}

.row>* {
    padding-right: 10px;
    padding-left: 10px
}

@media screen and (max-width: 575px) {
    .container {
        padding-right: 10px;
        padding-left: 10px
    }

    .row {
        margin-right: -5px;
        margin-left: -5px
    }

    .row>* {
        padding-right: 5px;
        padding-left: 5px
    }
}

section {
    padding: 40px 0
}

section h1 {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 40px;
    margin: 0;
    color: #222427
}

@media screen and (max-width: 575px) {
    section {
        padding: 20px 0
    }

    section h1 {
        font-size: 24px;
        padding-bottom: 20px
    }
}

section.products {
    padding-bottom: 40px;
    padding-top: 0
}

section.products h1 {
    padding-bottom: 20px
}

#darkBackdrop {
    display: flex;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10
}

@media screen and (max-width: 991px) {
    body.--nav-active #darkBackdrop {
        opacity: 1;
        pointer-events: auto
    }

    body.--search-active #darkBackdrop {
        opacity: 1;
        pointer-events: auto
    }

    body.--filter-active #darkBackdrop {
        opacity: 1;
        pointer-events: auto
    }
}

.logout-wrap {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end
}

.delete-account {
    margin-top: 60px
}

.delete-account h2 {
    margin-bottom: 10px
}

.cart-aside__free-shipping {
    display: none
}

#modal-ppl .modal__container {
    max-width: 100vw;
    max-height: 100vh
}

#ppl-parcelshop-map .smap {
    touch-action: none;
    height: 80vh !important
}

.infomessage {
    background-color: rgba(57, 152, 65, .1);
    color: #399841;
    padding: 7px 15px;
    padding-left: 50px;
    background-image: url(../img/icons/info-green.svg);
    background-size: 21px;
    background-repeat: no-repeat;
    background-position: center left 15px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.3
}

.review-thanks,
.review-error {
    background-color: rgba(57, 152, 65, .1);
    color: #399841;
    width: 100%;
    max-width: 820px;
    padding: 80px 110px 60px 110px;
    margin: 60px auto 40px auto;
    text-align: center
}

.review-thanks h2,
.review-error h2 {
    padding-top: 30px;
    font-size: 26px
}

.review-thanks img,
.review-error img {
    height: 80px
}

.review-error {
    background-color: #f5f5f5;
    color: #222427
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 20px
}

.rating-box .rating-container {
    direction: rtl !important;
    display: flex;
    justify-content: flex-end
}

.rating-box .rating-container label {
    display: inline-block;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    transition: color .2s
}

.rating-box .rating-container input {
    display: none
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold
}

@media screen and (max-width: 575px) {

    .review-thanks,
    .review-error {
        max-width: 100%;
        padding: 60px 20px 50px 20px;
        margin: 40px auto 40px auto
    }
}

.cart-aside__code.disabled {
    display: none
}

.product-detail__cta {
    flex-direction: row
}

.product-detail__files-wrap {
    padding: 60px 0 0 0
}

.product-detail__files-wrap h3 {
    margin-bottom: 20px
}

.product-detail__files {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px
}

.product-detail__files a {
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    color: #222427
}

.product-detail__files img {
    padding-left: 10px
}

.product-detail__files span {
    flex-grow: 1;
    padding: 0 15px
}

.product-detail__files .btn {
    min-height: 44px;
    padding: 0 15px;
    background: #f5f5f5;
    color: #222427
}

@media screen and (max-width: 991px) {
    .product-detail__files {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px
    }

    .product-detail__files a {
        padding: 8px 15px
    }
}

#styleSwitcher {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99
}

.style-switcher {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    outline: none
}

.style-switcher:nth-child(1) {
    background-color: #e30909;
    color: #fff
}

.style-switcher:nth-child(2) {
    background-color: #399841;
    color: #fff
}

.header-notice {
    background: #e30909;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    text-align: center
}

.header-notice a {
    color: #fff
}

.header-notice a:hover {
    color: #fff
}

/*# sourceMappingURL=maps/style.min.css.map */


.product-detail__sestava{
    margin-bottom: 40px;
}
.product-detail__sestava h2{
    font-size: 26px;
}
.product-detail__sestava-wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-detail__sestava-item{
        display: flex;
        align-items: center;
        gap: 10px;
            padding: 10px 15px;
        border: 1px solid #e5e5e5;
        position: relative;
}
.product-detail__sestava-qty{
            background: #e30909;
       height: 28px;
       width: 28px;
       border-radius: 50%;
         color: #fff;
         display: flex;
         justify-content: center;
         align-items: center;
         font-weight: 600;
         font-size: 14px;
}
.product-detail__sestava-item img{
    height: 60px;
}
.product-detail__sestava-name{
    flex-grow: 1;
          color: #222427;
          font-weight: 500;
}
.product-detail__sestava-item .btn{
        background: #f5f5f5;
        min-height: 44px;
         color: #222427;
         padding: 0 20px;
}
.product-detail__sestava-item::after{
    content: "+";
    position: absolute;
    bottom: -20px;
    z-index: 1;
    left: 50%;
    background: #f5f5f5;
    height: 30px;
    width: 30px;
        color: #222427;
           border-radius: 50%;
                   display: flex;
         justify-content: center;
         align-items: center;
            font-weight: 500;
         
}
.product-detail__sestava-item:last-child::after{
    content: none;
}

.product-detail__code {
    gap: 20px;
}
.product-detail__code a {
    align-items: baseline;
    color: var(--gray);
    display: inline-flex;
    margin-left: 5px;
}

.product-detail__sestava-sale{
    display: flex;
        align-items: center;
    gap: 10px;
    padding: 15px 15px;
    border: 2px solid #222427;
    margin-bottom: 40px;
}
.product-detail__sestava-sale img{
    height: 30px;

}
.product-detail__sestava-sale-name{
    font-size: 18px;
    font-weight: 600;
}
.product-detail__sestava-qty{
    flex-shrink: 0;
}
.product-detail__sestava-item img{
    width: 60px;
    object-fit: contain;
}

.product-detail__cta-wrap {
    background: var(--light);
    flex-direction: column;
    padding: 0px;
}
.product-detail__price {
    align-items: center;
    display: flex;
    gap: 35px;
}
.product-detail__price-wrap {
    flex-shrink: 0;
}

.product-detail__price-delivery {
    align-items: center;
    background: white;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    color: #399841;
    display: flex;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
}

.cart-item[data-typ="sleva"] .cart-item-bottom{
    display: none;
}
.cart-item[data-typ="sleva"] .cart-item-content{
        align-items: center;
    display: flex;
    width: 100%;
}
.cart-item[data-typ="sleva"] .cart-item-main{
        width: 100%;
        padding: 0;
}    
.cart-item[data-typ="sleva"] .cart-item-name{
    padding: 0;
}

.form-group-inliner {
    display: flex;
    gap: 10px;
}
.form-group-inliner input {
    flex-grow: 1
}

.form-group.--short input {
    max-width: 200px
}
.product-detail__sestava-notice{
    padding: 10px 15px;
    background: #f5f5f5;
    margin-bottom: 2px;
    display: flex;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
}
.modal__content .product-detail__sestava-notice{
    margin-top: 20px;
}

.cart-aside__free-shipping{
    display: flex;
}

.cart-aside__free-shipping {
    background: #f6faf4;
    border-radius: 0;
    flex-direction: column;
    gap: 15px;
    padding: 25px 30px
}

.free-shipping-content {
    align-items: center;
    display: flex;
    gap: 20px
}

.free-shipping-text {
    font-weight: 700;
    margin-bottom: 0
}

.free-shipping-content img {
    width: 40px
}

.free-shipping-text h4 {
    display: none;
    line-height: 1.2;
    margin: 0;
}

.free-shipping-line {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.progress-bar-container {
    background-color: #d3e6cb;
    border-radius: 5px;
    height: 8px;
    overflow: hidden;
    width: 100%
}

.progress-bar {
    background-color: #399841;
    border-radius: 5px;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
    width: 100%
}

@media screen and (max-width: 575px) {
    .cart-aside__free-shipping {
        padding:20px
    }
}