@charset "UTF-8";
* {
    padding: 0;
    margin: 0;
    border: 0
}

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

body,
html {
    line-height: 1;
    height: 100%;
    width: 100%;
    font-size: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

:active,
:focus {
    outline: 0
}

a {
    color: inherit
}

a:active,
a:hover {
    outline: 0
}

a,
a:hover,
a:visited {
    text-decoration: none
}

aside,
footer,
header,
nav {
    display: block
}

button,
input,
select,
textarea {
    font: inherit
}

input::-ms-clear {
    display: none
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none
}

input,
select {
    color: currentColor;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

textarea {
    overflow-y: auto;
    resize: none
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    -moz-transition: .3s;
    transition: .3s
}

input::placeholder,
textarea::placeholder {
    transition: .3s
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    opacity: 0
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

button {
    background-color: transparent;
    cursor: pointer;
    color: currentColor
}

:root {
    --color-text: #292929;
    --grey-text-color: #BCB8AC;
    --orange-color: #ED8926;
    --orange-color-hover: #FFA144;
    --light-grey-color: #EFEEEA;
    --grey-color: #D8D7D3;
    --dark-grey: #434343;
    --with-container: 1310px
}

html {
    scroll-behavior: smooth;
    line-height: inherit
}

* {
    padding: 0;
    line-height: inherit;
    margin: 0
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    text-rendering: optimizeSpeed;
    color: var(--color-text)
}

body.fixed {
    overflow: hidden !important
}

body.lock {
    overflow: hidden !important
}

button,
input {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

body.down header.clone {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999
}

a {
    transition: .3s
}

.main {
    flex: 1 0 auto
}

.footer,
.header {
    flex-shrink: 0
}

.container {
    max-width: var(--with-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 25px
}

.bg-overley {
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    transition: .3s linear;
    width: 100%;
    height: 100%;
    visibility: hidden
}

.bg-overley.js-active {
    visibility: visible;
    opacity: .4
}

.modal-cookies {
    position: fixed;
    z-index: 500;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    padding-bottom: 53px
}

.modal-cookies__wrapper {
    padding: 30px 44px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid #a3a3a3
}

.modal-cookies__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    max-width: 736px
}

.modal-cookies__btns {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.modal-cookies__btns .btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    min-height: 46px;
    text-transform: initial;
    width: 100%;
    max-width: 135px;
    min-width: 135px;
    margin-left: 12px
}

.modal-cookies__btns .btn span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px
}

@keyframes scale {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.title {
    font-weight: 600;
    font-size: 34px;
    line-height: 32px;
    color: var(--dark-grey);
}

.text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -.5px;
    color: var(--dark-grey)
}

.text p+p {
    margin-top: 15px
}

.text a {
    text-decoration: underline
}

.input.error input {
    border-color: #d86262;
    color: #d86262
}

.input.error input::-moz-placeholder {
    color: #d86262
}

.input.error input::placeholder {
    color: #d86262
}

.input input {
    transition: .3s linear;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    min-height: 51px;
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: var(--dark-grey);
    padding: 0 16px;
    width: 100%
}

.input input::-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: var(--dark-grey)
}

.input input::placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: var(--dark-grey)
}

.input textarea {
    transition: .3s linear;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    height: 220px;
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: var(--dark-grey);
    padding: 0 16px;
    width: 100%
}

.input textarea::-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: var(--dark-grey)
}

.input textarea::placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: var(--dark-grey)
}

.textarea::-moz-placeholder {
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.textarea::placeholder {
    transition: opacity .3s ease
}

.textarea:focus::-moz-placeholder {
    opacity: 0
}

.textarea:focus::placeholder {
    opacity: 0
}

.btn {
    display: inline-block;
    transition: .3s
}

.btn--orange {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    background-color: #2e3192;
    color: #fff;
    border-radius: 3px;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: .3s;
}

.btn--orange:hover {
    background-color: var(--orange-color-hover)
}

.btn--see-more {
    display: flex;
    align-items: center;
    background: #2e3192;
    padding: 8px 18px;
    border-radius: 3px;
}

.btn--see-more span {
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    color: #fff;
    transition: .3s linear
}
.btn--see-more svg {
    width: 13px;
    height: 13px;
    color: #ffffff;
    transition: .3s linear;
    margin-left: 9px;
    transform: rotate(-90deg);
    fill: #fff;
}
.btn--see-more:hover span {
    color: var(--orange-color-hover)
}
.btn--see-more:hover svg {
    fill: var(--orange-color-hover)
}
.btn--grey {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2e3192;
    border-radius: 3px;
    transition: .3s linear;
    padding: 8px;
}
.btn--grey svg {
    width: 16px;
    height: 19px;
    fill: var(--orange-color);
    transition: .3s linear
}

.btn--grey span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-left: 10px;
    transition: .3s linear
}

.btn--grey:hover {
    background: var(--orange-color)
}

.btn--grey:hover svg {
    fill: #fff
}

.btn--grey:hover span {
    color: #fff
}

.btn--border {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #019a9a;
    border: 1px solid #019a9a;
    border-radius: 3px;
    min-height: 42px;
    transition: .3s linear;
    width: 130px;
    margin: 6px !important;
}
.added_to_cart{display:none !important;}
.btn--border svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: .3s linear
}

.btn--border span {
font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    margin-left: 10px;
    transition: .3s linear;
}

.btn--border:hover {
    background: var(--orange-color);
    border-color: var(--orange-color)
}

.btn--border:hover svg {
    fill: #fff
}

.btn--border:hover span {
    color: #fff
}

.btn--grey-line {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: 1px solid var(--dark-grey);
    border-radius: 8px;
    min-height: 63px;
    transition: .3s linear
}

.btn--grey-line span {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: var(--dark-grey);
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase
}

.btn--grey-line:hover {
    background: var(--orange-color);
    border-color: var(--orange-color)
}

.btn--grey-line:hover svg {
    fill: #fff
}

.btn--grey-line:hover span {
    color: #fff
}

.bread-crubms {
    padding-top: 20px;
    padding-bottom: 20px;
    background: url(/wp-content/uploads/2023/03/breadcrumb-blog.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bread-crubms__wrapper {
    display: flex;
    align-items: center;
    overflow-y: auto
}

.bread-crubms li,
.bread-crubms__item {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #434343;
    text-decoration-line: underline;
    white-space: nowrap
}

.bread-crubms li:after,
.bread-crubms__item:after {
    margin: 0 5px;
    content: '/'
}

.bread-crubms li:last-child,
.bread-crubms__item:last-child {
    text-decoration: none
}

.bread-crubms li:last-child:after,
.bread-crubms__item:last-child:after {
    display: none
}

.bread-crubms li a,
.bread-crubms__item a {
    transition: .3s linear
}

.bread-crubms li a:hover,
.bread-crubms__item a:hover {
    color: var(--orange-color-hover)
}

.radio label {
    cursor: pointer;
    position: relative
}

.radio label:hover span {
    color: var(--color-base)
}

.radio label:hover span::before {
    border-color: var(--color-base)
}

.radio input {
    position: absolute;
    top: 0;
    width: 1px;
    height: 1px;
    font-size: 0
}

.radio input:checked~span::after {
    transform: scale(1)
}

.radio input:checked~span::before {
    border-color: var(--color-base)
}

.radio input:checked~span {
    color: var(--color-base);
    text-shadow: 0 0 .65px var(--color-base), 0 0 .65px var(--color-base)
}

.radio span {
    display: inline-block;
    padding-left: 36px;
    font-size: 14px;
    line-height: 143%;
    color: var(--color-dark2);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: .3s
}

.radio span::before {
    position: absolute;
    left: 0;
    top: calc(50% - 18px / 2);
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-dark4);
    border-radius: 50%;
    transition: .3s;
    content: ''
}

.radio span::after {
    position: absolute;
    left: 4px;
    top: calc(50% - 10px / 2);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    background-color: var(--color-base);
    transition: all .3s ease;
    content: ''
}

.checkbox {
    position: relative;
    width: 100%;
    display: block
}

.checkbox label {
    cursor: pointer
}

.checkbox input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer
}

.checkbox input:checked~span::after {
    transform: scale(1) translateY(-50%)
}

.checkbox span {
    display: inline-block;
    padding-left: 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.checkbox span::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    transition: .3s;
    content: ''
}

.checkbox span::after {
    position: absolute;
    left: 2px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: scale(0) translateY(-50%);
    background: url(../img/check-green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .3s ease;
    content: ''
}

.select {
    display: inline-flex;
    align-items: center
}

.select__title {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    display: block;
    margin-right: 8px;
    color: var(--color-dark4)
}

.select__wrapper {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.select__wrapper a {
    text-decoration: none;
    display: flex;
    align-items: center
}

.select__wrapper a .icon {
    margin-right: 5px
}

.select__content {
    position: relative;
    display: flex;
    flex-direction: column
}

.select__content.open .select__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

.select__trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.select__trigger input {
    width: 100%;
    background-color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.select__trigger span,
.select__trigger>a {
    margin-right: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--orange-color);
    white-space: nowrap
}

.select__trigger .icon {
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    min-height: 44px
}

.select__trigger .icon svg {
    width: 10px;
    fill: var(--dark-grey);
    height: 10px
}

.select__dropdown {
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 15;
    overflow: hidden;
    width: 100%;
    border: 1px solid #d8d7d3;
    background-color: #fff;
    min-width: 170px;
    padding: 15px
}

.select__options {
    max-height: 155px
}

.select__option {
    position: relative;
    display: block;
    cursor: pointer;
    transition: .3s;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--dark-grey);
    margin-bottom: 10px
}

.select__option:hover {
    color: var(--orange-color)
}

.select__option.selected {
    color: var(--orange-color)
}

.select__option.selected:before {
    opacity: 1
}

.select__checkboxs {
    overflow-y: auto
}

.select__checkbox {
    position: relative;
    display: block;
    padding: 10px 16px;
    transition: .3s;
    transition: .3s
}

.select__checkbox.checked {
    background-color: var(--color-muted)
}

.select__checkbox:last-child {
    margin: 0
}

.select__checkbox.checkbox span::before {
    left: 16px
}

.select__checkbox.checkbox span::after {
    left: 16px
}

.select__checkbox:hover {
    background-color: var(--color-muted);
    color: var(--color-base)
}

.select__checkbox:hover.checkbox span::before {
    border-color: var(--color-base)
}

.select__checkbox.selected {
    background-color: var(--color-base);
    color: var(--color-main)
}

.select__on-map {
    display: block;
    text-decoration: none;
    cursor: pointer;
    margin-top: 6px;
    padding: 6px 12px 7px 12px;
    font-size: 14px;
    line-height: 143%;
    color: var(--color-main);
    background-color: var(--color-base);
    transition: .3s
}

.select__on-map:hover {
    color: var(--color-base);
    background-color: var(--color-muted)
}

.header {
        background: #2e3192;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-grey-color)
}

.header__wrapper {
    padding-bottom: 9px
}

.header__logo-block {
    display: flex;
    align-items: center;
    justify-content: center
}

.header__logo {
    width: 93px;
    height: 31px
}

.header__logo img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__btn-burger {display: flex; width: 30px; height: 42px;}
.header__btn-burger svg{fill:#fff;}
.header__logo-tablet {
    display: none
}

.header__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.header__buttons--link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    position: relative;
}

.header__buttons--link svg {
width: 21px;
    height: 21px;
    transition: .3s linear;
    fill: #ffffff;
    margin-left: 3px;
}
.header_cart_icon{
    padding-right: 8px;	
}
.count_cart_header_icon{
position: absolute;
    right: -6px;
    top: -9px;
    background: #019a9a;
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 3px;
}
.header__buttons--link:hover svg {
    fill: var(--orange-color)
}
.header__buttons span{display:none;}
.header__buttons--link:hover span {
    color: var(--orange-color)
}

.header__buttons span {
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 1px;
    margin-left: 6px;
    transition: .3s linear
}

.header__buttons--icon {
    width: 8px !important;
    height: 8px !important
}

.header-top__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 37px
}

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

.header-top__social--item {
    width: 18px;
    height: 18px;
    margin-right: 40px
}

.header-top__social--item:last-child {
    margin-right: 0
}

.header-top__social--item:hover svg {
    fill: var(--orange-color)
}

.header-top__social--item svg {
    transition: .3s linear;
    width: 100%;
    height: 100%;
    fill: var(--dark-grey)
}

.header-top__contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: .5px;
    color: var(--dark-grey)
}

.header-top__contact a {
    transition: .3s linear
}

.header-top__contact a:hover {
    color: var(--orange-color)
}

.header-top__email {
    margin: 0 77px
}

.header-search {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.header-search__btn {
    margin-right: 11px;
    width: 18px;
    height: 18px
}

.header-search__btn svg {
    width: 100%;
    height: 100%;
    fill: var(--dark-grey);
    transition: .3s linear
}

.header-search__btn:hover svg {
    fill: var(--orange-color)
}

.header-search__input {
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    color: var(--dark-grey);
    letter-spacing: 1px;
    text-transform: uppercase
}

.header-search__input::-moz-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    color: var(--dark-grey);
    letter-spacing: 1px;
    text-transform: uppercase
}

.header-search__input::placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    color: var(--dark-grey);
    letter-spacing: 1px;
    text-transform: uppercase
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 7px;
    padding-top: 7px;
}

.header-menu__item {
    margin: 0 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    color: var(--dark-grey);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s linear
}

.header-menu__item svg {
    margin-left: 2px;
    width: 8px;
    height: 8px;
    fill: var(--dark-grey);
    transition: .3s linear
}

.header-menu__item.js-active,
.header-menu__item:hover {
    color: var(--orange-color)
}

.header-menu__item.js-active svg,
.header-menu__item:hover svg {
    fill: var(--orange-color)
}

.footer {
    background: #f5f5f0;
}

.footer__content {
    padding: 63px 0 42px 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between
}
.footer__col{
	    width: calc(23% - 15px);
}
.footer__col_contacts{
	    width: calc(34% - 50px);
}
.footer__col--title {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-transform: none; padding-bottom: 20px;
}
.footer__phone{
    color: #019a9a;font-size: 22px;
    font-weight: 600;	
}
.footer__col--content {
    padding-top: 9px
}

.footer__col--content ul {
    display: flex;
    flex-direction: column
}

.footer__col--content ul li {
font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    padding-bottom: 14px;
}

.footer__col--content ul li:last-child {
    margin-bottom: 0
}

.footer__bottom {
    border-top: 1px solid #d0d0d0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 21px 0
}

.footer__bottom--text {
    font-weight: 400;
    font-size: 13px;
    line-height: 26px
}

.footer__bottom--logos {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.footer__bottom--logos img {
    width: 40px;
    height: 23px;
    margin-left: 4px
}

.banner-global-block {
    background: var(--grey-color)
}

.banner-global-block__wrapper {
    display: flex;
    align-items: center;
    padding-top: 104px;
    padding-bottom: 140px;
    position: relative
}

.banner-global-block__left {
    width: 100%;
    max-width: 427px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.banner-global-block__img {
    position: absolute;
    width: 855px;
    height: 519px;
    top: 46px;
    right: -236px
}

.banner-global-block__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.banner-global-block__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    color: var(--dark-grey);
    text-transform: uppercase
}

.banner-global-block__btn {
    margin-top: 49px;
    width: 100%;
    max-width: 332px
}

.banner-global-block__promocode {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 40px;
    background: #fff;
    border-radius: 8px;
    min-height: 49px;
    width: 100%;
    max-width: 332px
}

.banner-global-block__promocode span {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark-grey);
    text-align: center;
    text-transform: uppercase
}

.banner-global-block__promocode--btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    width: 24px;
    height: 24px
}

.banner-global-block__promocode--btn svg {
    transition: .3s linear;
    width: 100%;
    height: 100%;
    fill: var(--light-grey-color)
}

.banner-global-block__promocode--btn:hover svg {
    fill: var(--orange-color)
}

.featured-products {
    padding: 100px 0
}

.featured-products__header {
display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}

.featured-products-slider {
    padding-top: 70px;
    position: relative
}

.featured-products-slider__pagination {
    transform: translateX(-50%);
    bottom: -29px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.featured-products-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0 10px;
    background: var(--grey-color);
    border-radius: 50%
}

.featured-products-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2e3192;
}
.featured-products-item {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    transition: .3s linear
}

.featured-products-item:hover {
-webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
}

.featured-products-item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 54px;
    padding-bottom: 58px;
    position: relative
}

.featured-products-item__img--top {
    position: absolute;
    padding: 5px 16px;
    background: #d4dfe1;
    border-radius: 4px;
    top: 16px;
    left: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase
}

.featured-products-item__img img {
    width: 187px;
    height: 187px;
    -o-object-fit: contain;
    object-fit: contain
}

.featured-products-item__content {
    padding: 0 15px;
    padding-bottom: 15px
}

.featured-products-item__rating {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.featured-products-item__rating svg {
    width: 12px;
    height: 12px;
    fill: #d7e1ef;
    transition: .3s linear
}

.featured-products-item__rating svg.active {
    fill: #f8c345
}

.featured-products-item__rating span {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #c1c1c1;
    margin-left: 7px
}

.featured-products-item__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 127.5%;
    color: var(--dark-grey);
    letter-spacing: .01em;
    text-transform: uppercase;
    padding-top: 7px;
    padding-bottom: 15px
}

.featured-products-item__list {
    height: 96px
}

.featured-products-item__list--item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.featured-products-item__list--item:last-child {
    margin-bottom: 0
}

.featured-products-item__list--price {
    display: flex;
    align-items: center
}

.featured-products-item__list--price strong {
font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #019a9a;
    letter-spacing: -.01em;
    margin-right: 7px;
    padding-top: 4px;
}

.featured-products-item__list--price span {
	font-weight: 400;
    font-size: 13px;
    text-decoration-line: line-through;
    color: var(--grey-text-color);
    padding-top: 6px;
}

.featured-products-item__list--count {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--grey-text-color)
}

.featured-products-item__btn {
    width: 100%;
    margin-top: 20px
}

.home-global-product__wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between
}

.home-global-product__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    background: var(--grey-color);
    padding: 186px 79px 186px 0;
    padding-left: calc(((100vw - var(--with-container))/ 2) + 15px)
}

.home-global-product__img {
    width: 50%
}

.home-global-product__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.home-global-product__text {
    padding-top: 48px;
    padding-bottom: 42px
}

.home-global-product__btn {
    width: 100%;
    max-width: 332px
}

.about-fillers-global__wrapper {
    padding: 99px 0 65px 0
}

.about-fillers-global__content {
    padding-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.about-fillers-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(25% - 16px);
}

.about-fillers-item__img {
width: 100%;
    overflow: hidden;
    margin-bottom: 29px;
    aspect-ratio: 10/6;     min-height: 260px;
}
.entry-date{    font-size: 13px;
    color: #888;}
.about-fillers-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about-fillers-item__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    padding-top: 16px;
    color: var(--dark-grey);
}

.about-fillers-item__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-top: 19px;
    padding-bottom: 31px;
    color: var(--dark-grey)
}

.about-fillers-item__btn {
    width: 100%;
    max-width: 251px
}

.more-info-global {
    background: url(../img/more-info-bg.jpg);
    background-size: cover;
    background-position: right
}

.more-info-global__img-tablet {
    display: none
}

.more-info-global__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 172px 0
}

.more-info-global__left {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.more-info-global__title {
    line-height: 130%
}

.more-info-global__text {
    padding-top: 25px;
    padding-bottom: 39px
}

.more-info-global__btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

.more-info-global__btns a {
    width: 100%;
    max-width: 265px
}

.more-info-global__btns a:first-child {
    margin-right: 23px
}

.join-our-global {
    padding: 60px 0
}

.join-our-global__wrapper {
    display: flex;
    align-items: stretch
}

.join-our-global__text {
    padding-top: 63px;
    font-size: 16px;
    line-height: 27px
}

.join-our-global__img {
    margin-top: 100px;
    width: 629px;
    min-width: 629px;
    margin-left: 65px;
    border-radius: 15px;
    overflow: hidden
}

.join-our-global__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.product-page__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 40px
}

.product-page__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-page__sidebar {
    width: 260px;
    padding: 15px;
    background: #f5f5f0;
    box-sizing: border-box;
}

.product-page__sidebar--header {
    display: none
}

.product-page__content {width: calc(100% - 280px);}
.product-page__content--header {display: none;}
.product-page__items {padding-top: 22px;border-top: 1px solid #d0d0d0;}
.product-page__items--wrapper {
    margin: 0 -10px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.price_label{float:left;padding-left: 6px;}
.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 3px !important;
}
.product-page__filters .widget{
	margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8d7d3;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute !important;
    z-index: 2 !important;
    width: 13px !important;
    height: 13px !important;
    border-radius: 1em !important;
    cursor: ew-resize !important;
    outline: 0 !important;
    top: -5px !important;
    margin-left: -0.5em !important;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #2e3192 !important;
}
.product-page-filter {
    margin-bottom: 0px;
}
.product-page__items--btn {
    margin-top: 40px;
    border-color: #d8d7d3
}

.product-page__items .featured-products-item {
margin: 0px 6px;
    margin-bottom: 11px;
    width: calc((100%/4) - 12px);
    border: 1px solid #eaeaea;
    box-sizing: border-box;
}

.product-page-search {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px
}

.product-page-search__content {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 23px;
    border: 1px solid #d8d7d3;
    border-radius: 10px;
    padding: 5px
}

.product-page-search__content input {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px
}

.product-page-search__btn {
    min-width: 73px;
    min-height: 46px;
    margin-right: 0
}

.product-page-filter__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--dark-grey)
}

.product-page-filter__content .checkbox {
    margin-top: 18px;
    display: block
}

.product-page-tags {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.product-page-tags__items {
    margin-right: 20px;
    margin-bottom: -5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.product-page-tags__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 1px solid var(--grey-color);
    border-radius: 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: .3s linear
}

.product-page-tags__item svg {
    width: 20px;
    height: 20px;
    fill: var(--grey-color);
    transition: .3s linear
}

.product-page-tags__item span {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: var(--dark-grey);
    margin-left: 5px;
    transition: .3s linear
}

.product-page-tags__item:hover {
    border-color: var(--orange-color)
}

.product-page-tags__item:hover svg {
    fill: var(--orange-color)
}

.product-page-tags__item:hover span {
    color: var(--orange-color)
}

.product-page-tags__count {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--dark-grey);
    white-space: nowrap;
    padding-top: 12px
}

.product-new__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--dark-grey);
    padding-bottom: 14px
}

.product-new__item {
    margin-bottom: 20px;
    display: block
}

.product-new-item__wrapper {
    display: flex;
    align-items: stretch
}

.product-new-item__img {
    width: 114px;
    min-width: 114px;
    height: 114px;
    margin-right: 26px
}

.product-new-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.product-new-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product-new-item__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 127.5%;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: #434343
}

.product-new-item__rating {
    margin: auto 0
}

.product-new-item__price {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -.01em;
    color: var(--dark-grey)
}

.product-item-page {
    padding-top: 80px
}

.product-item-page-global .featured-products {
    padding-bottom: 150px
}

.product-item__wrapper {
display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
    justify-content: space-between;
}

.product-item__img {
    border-radius: 8px;
    width: 35%;
    margin-right: 20px;
    position: relative
}

.product-item__img .product-item-img__pagination {
    transform: translateX(-50%);
    bottom: -29px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.product-item__img .product-item-img__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0 10px;
    background: var(--grey-color);
    border-radius: 50%
}

.product-item__img .product-item-img__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--orange-color)
}

.product-item__img .product-item-img .swiper-slide {
    height: 523px
}

.product-item__img .product-item-img .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.product-item__content {
    width: calc(65% - 100px);
    box-sizing: border-box;
}

.product-item__title {
    display: block;
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
}

.product-item__rating {
    padding-top: 16px;
    padding-bottom: 19px;
}

.product-item__rating svg {
    width: 17px;
    height: 17px;
    margin: 0 3px
}

.product-item__rating a {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: var(--dark-grey);
    text-decoration: underline
}
.product-item__list { display: block;margin-left: 8px;}
.product-item__list--item {font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    padding-bottom: 6px;
    color: var(--dark-grey);
    float: none;
    width: 100%;
    padding-left: 16px;
    position: relative;}
.product-item__list--item:before{
    content: '\25AA';
    position: absolute;
    z-index: 1;
    left: 0px;
    font-size: 22px;
}
.product-item__list--item img {
    margin-right: 14px;
    width: 17px;
    height: 17px;
    -o-object-fit: contain;
    object-fit: contain
}

.product-item__description {
    padding-bottom: 31px;
    border-bottom: 1px solid #d8d7d3;
    margin-bottom: 40px
}

.product-item__description--title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--dark-grey)
}

.product-item__description--text {
    padding-top: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey)
}

.product-item__description--text p {
    margin-bottom: 1.5rem
}

.product-item__description--text p:last-child {
    margin-bottom: 0
}

.product-item__description-img {
    padding-bottom: 87px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start
}

.product-item__description-img--content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey)
}

.product-item__description-img--img {
    width: 522px;
    min-width: 522px;
    margin-top: 53px;
    margin-left: 128px;
    height: 522px
}

.product-item__description-img--img img {
    width: 100%;
    height: 100%
}

.product-item__description-img--title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--dark-grey)
}

.product-item__description-img--text {
    padding-top: 21px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey)
}

.product-item__description-img--text p {
    margin-bottom: 1.5rem
}

.product-item__description-img--text p:last-child {
    margin-bottom: 0
}

.product-item-buy {
margin-top: 15px;
    background: #fff;
}

.product-item-buy__header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-item-buy__price {
display: flex;
    align-items: flex-end;
    margin-left: 6px;
    padding-bottom: 8px;
}

.product-item-buy__price strong {
    font-weight: 600;
    font-size: 25px;
    line-height: 45px;
    letter-spacing: -1px;
    color: #019a9a;
}

.product-item-buy__price span {
    margin-left: 10px;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -.01em;
    text-decoration-line: line-through;
    color: #bcb8ac
}

.product-item-buy__count {
    display: flex;
    align-items: center;
    justify-content: flex-end;     margin-left: 6px;
}

.product-item-buy__count span {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: var(--dark-grey)
}

.product-item-buy__count .input-count {
    background: #fffefe;
    border: 1px solid #e9e9e9;
    position: relative;
    padding-right: 0px;
    max-width: 115px;
    margin-left: 0px; border-radius: 3px;
}

.product-item-buy__count .input-count input {
min-height: 41px;
    width: 100%;
    padding: 0 10px;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-grey);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center
}

.product-item-buy__count .input-count__next {
	width: 14px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-item-buy__count .input-count__next svg {
    fill: #8c8c8c;
    width: 100%;
    height: 100%;
    transition: .3s linear
}

.product-item-buy__count .input-count__next:hover svg {
    fill: var(--orange-color)
}

.product-item-buy__count .input-count__prev {
    cursor: pointer;
    width: 14px;
    height: 14px;
    position: absolute;
    bottom: 14px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item-buy__count .input-count__prev svg {
    transform: rotate(180deg);
    width: 100%;
    height: 100%;
    fill: #8c8c8c;
    transition: .3s linear
}

.product-item-buy__count .input-count__prev:hover svg {
    fill: var(--orange-color)
}
.product-item-buy__list {
    padding-top: 13px;
    margin-bottom: -10px; display: none;
}
.product-item-buy__list--item {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-item-buy__list--item strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -.01em;
    color: var(--dark-grey)
}

.product-item-buy__list--item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--grey-text-color)
}

.product-item-buy__btn-buy {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    min-height: 46px;
    text-transform: initial;
    margin-top: 14px
}

.product-item-buy__btn-buy svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: .3s linear;
    margin-right: 10px
}

.product-item-buy__btn-one-click {

}

.product-item-buy__text-payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 26px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--dark-grey)
}

.product-item-buy__text-payments svg {
    width: 14px;
    height: 14px;
    margin-right: 7px;
    fill: #4856a8
}

.product-item-buy__text-payments span {
    color: #4856a8;
    margin-left: 3px
}

.customer-reviews {
    background: #fff;
}

.customer-reviews__header {
    padding: 13px 30px 10px 30px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.customer-reviews__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: var(--dark-grey)
}

.customer-reviews__btn {
    width: 100%;
    max-width: 161px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    min-height: 38px
}

.customer-reviews__content {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
}

.customer-reviews__count-reviews {
width: 100%;
    border-bottom: 1px solid #e6e6e6;
}

.customer-reviews__reviews {
    padding: 53px 35px 33px 40px
}

.customer-reviews__reviews .review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.customer-reviews-count {
    background: #fff;
    padding: 20px 16px 28px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.customer-reviews-count__header {
display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.customer-reviews-count__header--count {
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    letter-spacing: -2px;
    color: #2e3192;
    width: 100%;
}

.customer-reviews-count__header--right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 0px;
    width: 100%;
}

.customer-reviews-count__header--icons {
    display: flex;
    align-items: center
}

.customer-reviews-count__header--icons svg {
    width: 18px;
    height: 18px;
    fill: #d7e1ef
}

.customer-reviews-count__header--icons svg.active {
    fill: #f8c345
}

.customer-reviews-count__header--text {
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    color: var(--dark-grey)
}

.customer-reviews-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.customer-reviews-list__item:last-child {
    margin-bottom: 0
}

.customer-reviews-list__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--dark-grey);
    letter-spacing: .5px;
    min-width: 60px
}

.customer-reviews-list__line {
    margin-left: 20px;
    margin-right: 25px;
    background: #e9e9e9;
    border-radius: 0px;
    height: 8px;
    width: 100%;
    position: relative
}

.customer-reviews-list__line .line-progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 0px;
    background: #019a9a;
}

.customer-reviews-list__count {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--dark-grey);
    letter-spacing: .5px;
    min-width: 50px
}

.review-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 26px;
    margin-bottom: 31px;
    border-bottom: 1px solid #e9e9e9
}

.review-item__avatar {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 14px;
    min-width: 50px
}

.review-item__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%
}

.review-item__avatar .check {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px
}

.review-item__avatar .check img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.review-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.review-item__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: var(--dark-grey)
}

.review-item__date {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #a3a3a3
}

.review-item__star {
    display: flex;
    align-items: center
}

.review-item__star svg {
    width: 15px;
    height: 15px;
    fill: #d7e1ef;
    margin-right: 4px
}

.review-item__star svg.active {
    fill: #f8c345
}

.review-item__text {
    padding-top: 27px
}

.review-item__text strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: var(--dark-grey)
}

.review-item__text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    padding-top: 6px;
    color: var(--dark-grey)
}

.review-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px
}

.review-item__bottom--left .share {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -.01em;
    color: #a3a3a3;
    fill: #a3a3a3;
    transition: .3s linear
}

.review-item__bottom--left .share:hover {
    fill: var(--orange-color);
    color: var(--orange-color)
}

.review-item__bottom--left .share svg {
    width: 12px;
    height: 12px;
    transition: .3s linear;
    margin-right: 5px
}

.review-item__bottom--left .share span {
    transition: .3s linear
}

.review-item-likes {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.review-item-likes__text {
    margin-right: 19px;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -.01em;
    color: #a3a3a3
}

.review-item-likes__like {
    display: flex;
    align-items: center
}

.review-item-likes__like svg {
    width: 12px;
    height: 12px;
    transition: .3s linear;
    fill: #a3a3a3;
    margin-right: 5px
}

.review-item-likes__like span {
    color: #a3a3a3;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -.01em;
    transition: .3s linear
}

.review-item-likes__like:hover span {
    color: var(--orange-color)
}

.review-item-likes__like:hover svg {
    fill: var(--orange-color)
}

.review-item-likes__like.dislike {
    margin-left: 11px
}

.blog-page {
padding-bottom: 100px;
    padding-top: 45px;
}

.blog-page__wrapper {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 40px
}

.blog-page__item {
    margin: 0 10px;
    margin-bottom: 40px;
    width: calc((100%/3) - 20px)
}

.blog-item-global-page .home-global-product {
    padding-bottom: 60px
}

.blog-item-global-page .home-global-product.reverse .home-global-product__wrapper {
    flex-direction: row-reverse
}

.blog-item-global-page .home-global-product.reverse .home-global-product__content {
    padding: 186px 0 186px 79px;
    padding-right: calc(((100vw - var(--with-container))/ 2) + 15px)
}

.blog-item-global-page .join-our-global {
    padding: 0
}

.blog-item-global-page .join-our-global__wrapper {
    padding: 60px 0;
    border-top: 1px solid #d8d7d3
}

.blog-item-global-page__title {
    padding-bottom: 50px
}

.blog-item-global-page__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey);
    padding-bottom: 60px
}

.blog-item-global-page__text p {
    margin-bottom: 1.3rem
}

.blog-item-global-page__text p:last-child {
    margin-bottom: 0
}

.blog-item-global-page__text blockquote {
    padding: 60px 0;
    padding-left: 220px;
    border-top: 1px solid #d8d7d3;
    border-bottom: 1px solid #d8d7d3;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: var(--dark-grey);
    position: relative
}

.blog-item-global-page__text blockquote:before {
    position: absolute;
    content: '”';
    font-weight: 400;
    font-size: 200px;
    line-height: 100%;
    color: var(--orange-color);
    top: 30px;
    left: 105px
}

.shipping-text {
    padding-bottom: 100px
}

.shipping-text__wrapper {
    display: flex;
    align-items: stretch;
    padding-top: 50px
}

.shipping-text__sidebar {
    position: relative;
    margin-right: 46px
}

.shipping-text__content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey);
    text-transform: uppercase
}

.shipping-text__content strong {
    font-weight: 400;
    color: var(--orange-color);
    margin-bottom: 1rem;
    display: block
}

.shipping-text__content p {
    margin-bottom: 1rem
}

.shipping-text__content img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    margin-bottom: 2.5rem;
    display: block
}

.shipping-sidebar {
    display: flex;
    flex-direction: column;
    min-width: 280px
}

.shipping-sidebar__item {
    margin-bottom: 1.3rem;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--dark-grey);
    transition: .3s linear
}

.shipping-sidebar__item:hover {
    color: var(--orange-color)
}

.cart-page-global {
    margin-top: 40px;
    padding-bottom: 100px
}

.cart-page-global__menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 60px;
    background: #f8f9fa
}

.cart-page-global__menu--item {
    width: 50%;
    display: flex;
    align-items: center;
    letter-spacing: -.5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: var(--dark-grey);
    position: relative
}

.cart-page-global__menu--item:first-child {
    color: #fff;
    justify-content: flex-end;
    padding-right: 35px;
    background: #a3a3a3;
    width: calc(50% - 19px)
}

.cart-page-global__menu--item:first-child:before {
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-bottom-width: 30px;
    border-top-width: 30px;
    border-left: 19px solid #a3a3a3;
    position: absolute;
    top: 0;
    right: -19px
}

.cart-page-global__menu--item.active {
    background: #57b03a
}

.cart-page-global__menu--item.active:before {
    border-left-color: #57b03a
}

.cart-page-global__menu--item:nth-child(2) {
    padding-left: 60px
}

.cart-page-global__wrapper {
    padding-top: 40px;
    display: flex;
    align-items: stretch;
    justify-content: center
}

.cart-page-global__wrapper.two {
    align-items: center
}

.cart-page-global__content {
    width: calc(50% - 109px)
}

.cart-page-global__form {
    width: 50%;
    margin-left: 128px
}

.cart-page-item {
    padding: 10px 0;
    border-bottom: 1px solid #d8d7d3;
    display: flex;
    align-items: center;
    position: relative
}

.cart-page-item:first-child {
    border-top: 1px solid #d8d7d3
}

.cart-page-item__remove {
    position: absolute;
    top: 16px;
    right: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #515151;
    transition: .3s linear
}

.cart-page-item__remove:hover {
    color: var(--orange-color);
    text-decoration-line: underline
}

.cart-page-item__img {
    width: 108px;
    height: 108px
}

.cart-page-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.cart-page-item__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16px;
    max-width: 271px
}

.cart-page-item__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--dark-grey);
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.cart-page-item__count {
    margin-top: 10px;
    justify-content: flex-start
}

.cart-page-item__count .input-count {
    margin-left: 0;
    max-width: 70px;
    padding-right: 30px
}

.cart-page-item__count .input-count input {
    min-height: 36px;
    font-size: 14px
}

.cart-page-item__count .input-count__next {
    width: 16px;
    height: 16px;
    right: 8px
}

.cart-page-item__count .input-count__prev {
    right: 8px;
    width: 16px;
    height: 16px
}

.cart-page-item__count span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding-left: 21px
}

.cart-page-form.two {
    width: 100%;
    max-width: 844px;
    margin-left: 0
}

.cart-page-form__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column
}

.cart-page-form__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    color: var(--dark-grey);
    padding-bottom: 19px
}

.cart-page-form__payments {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%
}

.cart-page-form__payments--item {
    width: 50%;
    margin-right: 11px;
    padding: 17px 22px
}

.cart-page-form__payments--item:last-child {
    margin-right: 0
}

.cart-page-form__input {
    width: 100%;
    margin-bottom: 12px
}

.cart-page-form__row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 -9px;
    margin-bottom: 12px
}

.cart-page-form__row .input {
    margin: 0 9px;
    width: calc((100%/3) - 18px)
}

.cart-page-form__row.two .input {
    width: calc(50% - 18px)
}

.cart-page-form__checkbox {
    margin-bottom: 22px
}

.cart-page-form__btn {
    min-height: 56px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: initial
}

.cart-page-form__secure {
    padding-top: 7px;
    padding-bottom: 44px
}

.cart-page-form__secure svg {
    width: 16px;
    height: 16px;
    fill: var(--dark-grey)
}

.cart-page-form__secure span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-left: 6px;
    color: var(--dark-grey)
}

.cart-page-form__guarantee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 37px 13px 84px;
    position: relative;
    background: #fff8ef;
    border: 1px solid #e78525;
    border-radius: 10px
}

.cart-page-form__guarantee.two {
    margin-top: 30px
}

.cart-page-form__guarantee:before {
    content: '';
    background: url(../img/check-circle-orange.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 27px;
    width: 32px;
    height: 32px
}

.cart-page-form__guarantee strong {
    font-weight: 700;
    font-size: 18px;
    line-height: 128.5%;
    color: var(--orange-color);
    letter-spacing: -.5px
}

.cart-page-form__guarantee p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding-top: 3px;
    color: var(--dark-grey)
}

.cart-page-form__table {
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    margin-bottom: 34px
}

.cart-page-form__table--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 28px;
    padding-right: 25px;
    min-height: 50px;
    border-bottom: 1px solid #d0d0d0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey)
}

.cart-page-form__table--row.green {
    color: #57b03a
}

.cart-page-form__table--row:last-child {
    border-bottom: 0
}

.payments-item {
    display: flex;
    align-items: center;
    border: 1px solid #ed8926;
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

.payments-item__checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 0 10px 0 10px;
    background: var(--orange-color)
}

.payments-item__checkbox svg {
    fill: #fff;
    width: 20px;
    height: 20px
}

.payments-item__img {
    width: 65px;
    height: 38px
}

.payments-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.payments-item__title {
    font-weight: 400;
    font-size: 15px;
    line-height: 210%;
    color: #212121;
    margin-left: 14px
}

.modal-callme {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 100%;
    max-width: 500px;
    z-index: 500;
    transition: .3s linear;
    opacity: 0;
    visibility: hidden
}

.modal-callme.js-active {
    opacity: 1;
    visibility: visible
}

.modal-callme__header {
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid #e9e9e9
}

.modal-callme__header--title {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--dark-grey);
    text-transform: uppercase
}

.modal-callme__header--close {
    width: 24px;
    height: 24px
}

.modal-callme__header--close svg {
    width: 100%;
    height: 100%;
    transition: .3s linear;
    fill: #434343
}

.modal-callme__header--close:hover svg {
    fill: var(--orange-color)
}

.modal-callme__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.modal-callme__content .input {
    width: 100%;
    margin-bottom: 12px
}

.modal-callme__content .input:last-child {
    margin-bottom: 0
}

.modal-callme__btn {
    padding: 30px;
    border-top: 1px solid #d8d7d3
}

.modal-callme__btn .btn--orange {
    min-height: 51px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: initial
}

.modal-review {
    max-width: 690px
}

.modal-review__row {
    width: 100%;
    display: flex;
    align-items: stretch
}

.modal-review__row .input {
    width: 50%;
    margin-right: 20px
}

.modal-review__row .input:last-child {
    margin-right: 0
}

.modal-review__stars {
    padding-top: 11px
}

.modal-review__btn {
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-review__btn .btn {
    width: 100%;
    max-width: 440px
}

.modal-cart-global {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    max-width: 500px;
    z-index: 500;
    transition: .3s linear;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%)
}

.modal-cart-global.js-active {
    transform: initial;
    opacity: 1;
    visibility: visible
}

.modal-cart-global__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%
}

.modal-cart-global__wrapper .simplebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%
}

.modal-cart-global__header {
    width: 100%;
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    padding-right: 20px;
    border-bottom: 1px solid #e9e9e9
}

.modal-cart-global__header--title {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--dark-grey);
    text-transform: uppercase
}

.modal-cart-global__header--close {
    width: 24px;
    height: 24px
}

.modal-cart-global__header--close svg {
    width: 100%;
    height: 100%;
    transition: .3s linear;
    fill: #434343
}

.modal-cart-global__header--close:hover svg {
    fill: var(--orange-color)
}

.modal-cart-global__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%
}

.modal-cart-global__list {
    width: 100%;
    padding-right: 30px;
    padding-left: 10px
}

.modal-cart-global__list .cart-page-item {
    border-bottom: 0
}

.modal-cart-global__btn {
    padding: 28px 30px;
    width: 100%
}

.modal-cart-global__btn .btn--orange {
    min-height: 51px;
    width: 100%;
    font-size: 16px;
    text-transform: initial
}

.modal-cart-global__total {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey);
    min-height: 49px;
    width: 100%;
    padding: 0 30px;
    border-top: 1px solid #d8d7d3;
    border-bottom: 1px solid #d8d7d3
}

.modal-cart-global__footer {
    width: 100%
}

.buy-together__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey);
    padding: 8px 30px
}

.buy-together__content {
    border-top: 1px solid #d8d7d3;
    border-bottom: 1px solid #d8d7d3
}

.buy-together__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    padding-bottom: 34px
}

.buy-together__btn a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-decoration-line: underline;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-grey)
}

.buy-together-item {
    display: flex;
    align-items: stretch;
    justify-content: flex-start
}

.buy-together-item__img {
    padding: 26px 13px 22px 30px
}

.buy-together-item__img img {
    width: 83px;
    height: 79px;
    -o-object-fit: cover;
    object-fit: cover
}

.buy-together-item__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 191px;
    margin-right: 33px
}

.buy-together-item__title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--dark-grey)
}

.buy-together-item__price {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-grey);
    padding-top: 5px
}

.buy-together-item__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.buy-together-item__btn .btn--orange {
    width: 100%;
    max-width: 120px;
    min-height: 42px
}

.buy-together-item__btn .btn--orange svg {
    width: 13px;
    height: 16px;
    fill: #fff
}

.buy-together-item__btn .btn--orange span {
    font-size: 14px;
    font-weight: 600;
    text-transform: initial;
    white-space: nowrap;
    margin-left: 5px
}

.modal-burger {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    z-index: 500;
    transition: .3s linear;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    width: 100%;
    max-width: 262px
}

.modal-burger.js-active {
    opacity: 1;
    visibility: visible;
    transform: initial
}

.modal-burger .header-search {
    transition: .3s linear;
    position: absolute;
    top: 0;
    transform: translatey(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    background: #fff;
    padding: 20px;
    max-width: 262px
}

.modal-burger .header-search__close {
    width: 24px;
    height: 24px
}

.modal-burger .header-search__close svg {
    width: 100%;
    height: 100%;
    fill: var(--dark-grey)
}

.modal-burger .header-search.js-active {
    opacity: 1;
    visibility: visible;
    transform: initial
}

.modal-burger__close {
    position: absolute;
    top: 23px;
    right: 0;
    transform: translateX(100%);
    width: 24px;
    height: 24px
}

.modal-burger__close svg {
    width: 100%;
    height: 100%;
    fill: #fff
}

.modal-burger__wrapper {
    padding: 25px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    overflow-y: auto
}

.modal-burger__header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.modal-burger__header .header__buttons--link span {
    margin-left: 5px;
    margin-right: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px
}

.modal-burger__header .header__buttons--link .header__buttons--icon {
    display: flex
}

.modal-burger__search {
    display: flex;
    align-items: center
}

.modal-burger__search svg {
    width: 18px;
    height: 18px;
    fill: var(--dark-grey)
}

.modal-burger__search span {
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    margin-left: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-grey)
}

.modal-burger__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 33px
}

.modal-burger__menu li .header-menu__item {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 44px;
    letter-spacing: 1px
}

.modal-burger__social {
    display: flex !important
}

.modal-burger__social .header-top__social--item {
    margin-right: 40px;
    width: 18px;
    height: 18px
}

.modal-burger__social .header-top__social--item:last-child {
    margin-right: 0
}

.modal-burger__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.modal-burger__footer--text {
    padding-top: 33px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .5px;
    color: var(--dark-grey)
}

@media (min-width:650px) {
    .select__checkboxs {
        max-height: 299px
    }
}

@media (max-width:1720px) {
    .banner-global-block__img {
        width: 700px;
        right: 0
    }
}

@media (max-width:1600px) {
    .title {
        line-height: 130%
    }
    .shipping-sidebar {
        min-width: 240px
    }
    .cart-page-global__content {
        width: calc(50% - 21px)
    }
    .cart-page-global__form {
        margin-left: 40px
    }
}

@media (max-width:1300px) {
    .home-global-product__content {
        padding-left: 15px;
        padding-top: 100px;
        padding-bottom: 100px
    }
    .blog-item-global-page .home-global-product.reverse .home-global-product__content {
        padding-right: 15px;
        padding-top: 100px;
        padding-bottom: 100px
    }
}

@media (max-width:1199.98px) {
    .modal-cookies {
        padding-bottom: 30px
    }
    .modal-cookies__wrapper {
        padding: 20px 15px
    }
    .modal-cookies__text {
        max-width: 600px
    }
    .modal-cookies__btns .btn {
        font-size: 14px
    }
    .modal-cookies__btns .btn span {
        font-size: 14px
    }
    .title {
        font-size: 32px;
        line-height: 130%
    }
    .btn--orange {
        min-height: 46px
    }
    .btn--grey-line {
        min-height: 46px
    }
    .select__dropdown {
        right: 0;
        left: inherit
    }
    .header__buttons span {
        display: none
    }
    .header-top__social--item {
        margin-right: 20px
    }
    .header-top__email {
        margin: 0 30px
    }
    .banner-global-block__wrapper {
        padding: 70px 0
    }
    .banner-global-block__img {
        width: 500px;
        height: 300px;
        top: 50%;
        transform: translateY(-50%)
    }
    .banner-global-block__title {
        font-size: 40px;
        line-height: 50px;
        text-align: center
    }
    .banner-global-block__btn {
        margin-top: 30px
    }
    .banner-global-block__promocode {
        min-height: 46px
    }
    .featured-products {
        padding: 50px 0
    }
    .featured-products-slider {
        padding-top: 30px
    }
    .featured-products-item__img {
        padding: 30px 0
    }
    .about-fillers-global__wrapper {
        padding: 50px 0
    }
    .more-info-global__wrapper {
        padding: 100px 0
    }
    .more-info-global__btns a {
        max-width: 230px
    }
    .join-our-global {
        padding: 50px 0
    }
    .join-our-global__wrapper {
        flex-direction: column;
        align-items: center
    }
    .join-our-global__img {
        margin-left: 0;
        min-width: initial;
        width: 100%;
        max-width: 600px;
        margin-top: 50px
    }
    .product-page-search__btn {
        min-height: 36px;
        min-width: 60px
    }
    .product-page-tags__item {
        padding: 3px 5px
    }
    .product-page-tags__item svg {
        width: 16px;
        height: 16px
    }
    .product-page-tags__item span {
        font-size: 12px
    }
    .product-item-page-global .featured-products {
        padding-bottom: 100px
    }
    .product-item__description--text {
        font-size: 14px;
        padding-top: 20px
    }
    .product-item__description--text p {
        margin-bottom: 1rem
    }
    .product-item__description-img--img {
        margin-left: 60px
    }
    .product-item__description-img--text {
        font-size: 14px;
        padding-top: 20px
    }
    .product-item__description-img--text p {
        margin-bottom: 1rem
    }
    .customer-reviews__reviews {
        padding: 30px
    }
    .blog-item-global-page__text blockquote {
        font-size: 20px;
        padding-left: 150px
    }
    .blog-item-global-page__text blockquote:before {
        left: 50px
    }
}

@media (max-width:991.98px) {
    .text {
        font-size: 14px
    }
    .header__wrapper {
        padding: 17px 0
    }
    .header__logo-block {
        display: none
    }
    .header__btn-burger {
		display: flex;
		width: 29px;
		height: 42px;
		margin-right: 8px;
    }
    .header__btn-burger svg {
        width: 100%;
        height: 100%;
    }
	.aws-container .aws-show-clear .aws-search-field {
		padding-right: 0px !important;     font-size: 14px;
	}
    .header__logo-tablet {
        display: flex;
        width: 113px;
        height: 65px
    }
    .header__logo-tablet img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }
    .header__search {
        display: none
    }
    .header__menu {
        display: none
    }
    .header__buttons--link:first-child {
        display: none
    }
    .header-top__social {
        display: none
    }
    .header-top__contact {
        justify-content: space-between;
        width: 100%
    }
    .header-top__text {
        display: none
    }
    .footer__content {
        flex-wrap: wrap
    }
    .footer__col:nth-child(1) {
        margin-bottom: 25px
    }
    .footer__col:nth-child(2) {
        margin-bottom: 25px
    }
    .footer__col {
        margin-left: 0 !important;
        min-width: initial !important;
        width: 50%;
        min-width: initial !important
    }
    .banner-global-block__wrapper {
        padding-top: 300px
    }
    .banner-global-block__left {
        align-items: center;
        max-width: 100%
    }
    .banner-global-block__img {
        width: 400px;
        height: 240px;
        top: 50px;
        left: 50%;
        transform: translateX(-50%)
    }
    .home-global-product__text {
        padding: 20px 0
    }
    .about-fillers-global__content {
    }
    .about-fillers-global__item {
        grid-area: initial !important
    }
    .about-fillers-item__img {
        height: 300px
    }
    .about-fillers-item__text {
        font-size: 14px;
        line-height: 140%
    }
    .about-fillers-item__btn {
        margin-top: auto
    }
	.product-page__content {width: 100%;}
    .product-page__sidebar {
        position: fixed;
        top: 0;
        background: #fff;
        padding: 20px;
        z-index: 500;
        height: 100%;
        overflow-y: auto;
        left: -100%;
        visibility: hidden;
        transition: .3s linear
    }
    .product-page__sidebar.js-active {
        left: 0;
        visibility: visible
    }
    .product-page__sidebar--header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px
    }
    .product-page__sidebar--title {
        font-size: 24px;
        font-weight: 600;
        color: var(--dark-grey)
    }
    .product-page__sidebar--close {
        width: 24px;
        height: 24px
    }
    .product-page__sidebar--close svg {
        width: 100%;
        height: 100%;
        fill: var(--dark-grey)
    }
    .product-page__content--header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px
    }
    .product-page__content--header .filter-btn {
        min-height: 32px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: 14px
    }
    .product-page__content--header .product-page-tags__count {
        display: block
    }
    .product-page-tags__items {
        margin-right: 0
    }
    .product-page-tags__count {
        display: none
    }
    .product-item__wrapper {
        flex-direction: column;
        align-items: center
    }
    .product-item__img {
        width: 100%;
        margin-right: 0
    }
    .product-item__img .product-item-img .swiper-slide {
        height: 400px
    }
    .product-item__content {
        width: 100%;
        margin-top: 50px
    }
    .product-item__title {
        font-size: 22px
    }
    .product-item__rating {
        padding: 15px 0
    }
    .product-item__rating svg {
        width: 14px;
        height: 14px
    }
    .product-item__rating a {
        font-size: 14px
    }
    .product-item__list--item {
        font-size: 14px
    }
    .product-item__list--item img {
        width: 12px;
        height: 12px;
        margin-right: 7px
    }
    .product-item__description {
        margin-bottom: 20px;
        padding-bottom: 20px
    }
    .product-item__description--title {
        font-size: 20px
    }
    .product-item__description--text {
        padding-top: 10px
    }
    .product-item__description-img {
        flex-direction: column;
        align-items: center;
        padding-bottom: 40px
    }
    .product-item__description-img--img {
        margin-left: 0;
        min-width: initial;
        width: 100%;
        max-width: 400px;
        height: initial;
        margin-top: 30px
    }
    .product-item__description-img--title {
        font-size: 20px
    }
    .product-item__description-img--text {
        padding-top: 10px
    }
    .product-item-buy__price strong {
        font-size: 30px;
        line-height: 24px
    }
    .product-item-buy__price span {
        font-size: 20px
    }
    .product-item-buy__count span {
        font-size: 14px
    }
    .product-item-buy__count .input-count {width: 80px;}
    .product-item-buy__count .input-count input {
        min-height: 40px
    }
    .customer-reviews__content {
        flex-direction: column-reverse
    }
    .customer-reviews__count-reviews {
        min-width: initial;
        max-width: 100%;
        width: 100%;
        border: none
    }
    .customer-reviews-count__header--count {
        font-size: 36px
    }
    .blog-page__item {
        width: calc(50% - 20px)
    }
    .blog-item-global-page .home-global-product {
        padding-bottom: 30px
    }
    .blog-item-global-page .join-our-global__wrapper {
        padding: 30px 0
    }
    .blog-item-global-page .join-our-global__text {
        padding-top: 30px
    }
    .blog-item-global-page__title {
        padding-bottom: 30px
    }
    .blog-item-global-page__text {
        font-size: 14px;
        padding-bottom: 30px
    }
    .blog-item-global-page__text blockquote {
        font-size: 16px;
        padding: 30px 0;
        padding-left: 150px
    }
    .shipping-text__wrapper {
        flex-direction: column
    }
    .shipping-text__content {
        font-size: 14px
    }
    .cart-page-global {
        margin-top: 0;
        padding-bottom: 80px
    }
    .cart-page-global__menu {
        min-height: 40px
    }
    .cart-page-global__menu--item {
        font-size: 16px
    }
    .cart-page-global__menu--item:first-child:before {
        border-bottom-width: 20px;
        border-top-width: 20px;
        border-left-width: 15px;
        right: -15px
    }
    .cart-page-global__wrapper {
        padding-top: 20px;
        flex-direction: column
    }
    .cart-page-global__content {
        width: 100%
    }
    .cart-page-global__form {
        margin-left: 0;
        width: 100%;
        margin-top: 20px
    }
    .modal-review {
        max-width: 500px
    }
}

@media (max-width:759.98px) {
    .product-page__items .featured-products-item {
        width: calc(50% - 20px)
    }
}

@media (max-width:649.98px) {
    .container {
        padding: 0 20px
    }
    .modal-cookies {
        padding-bottom: 15px
    }
    .modal-cookies__wrapper {
        padding: 15px;
        flex-direction: column
    }
    .modal-cookies__text {
        max-width: initial;
        font-size: 12px
    }
    .modal-cookies__btns {
        justify-content: center;
        padding-top: 15px
    }
    .modal-cookies__btns .btn {
        min-height: 40px
    }
    .title {
        font-size: 20px
    }
    .input input {
        min-height: 40px;
        font-size: 14px
    }
    .input input::-moz-placeholder {
        font-size: 14px
    }
    .input input::placeholder {
        font-size: 14px
    }
    .input textarea {
        height: 130px;
        font-size: 14px
    }
    .input textarea::-moz-placeholder {
        font-size: 14px
    }
    .input textarea::placeholder {
        font-size: 14px
    }
    .btn--orange {
        font-size: 14px
    }
    .btn--see-more span {
        white-space: nowrap;
        font-size: 14px
    }
    .btn--grey span {
        font-size: 14px
    }
    .btn--border span {
        font-size: 14px
    }
    .btn--grey-line span {
        font-size: 14px
    }
    .select__checkboxs {
        padding: 8px 16px
    }
    .select__checkbox {
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px
    }
    .header-top__contact {
        font-size: 12px
    }
    .header-top__email {
        margin: 0
    }
    .footer__content {
        padding-bottom: 22px;
        padding-top: 33px
    }
    .footer__col--title {
        font-size: 16px
    }
    .footer__col--content {
        padding-top: 0
    }
    .footer__col--content ul li {
        font-size: 12px;
        margin-bottom: 11px
    }
    .footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        border: 0;
        padding: 0;
        padding-bottom: 28px
    }
    .footer__bottom--text {
        width: 100%
    }
    .footer__bottom--logos {
        margin-bottom: 13px;
        padding-bottom: 36px;
        border-bottom: 1px solid #000;
        width: 100%;
        justify-content: flex-start
    }
    .banner-global-block__wrapper {
        padding-top: 200px;
        padding-bottom: 50px
    }
    .banner-global-block__img {
        width: 300px;
        height: 200px;
        top: 0
    }
    .banner-global-block__title {
        font-size: 28px;
        line-height: 34px
    }
    .banner-global-block__btn {
        margin-top: 25px
    }
    .banner-global-block__promocode {
        max-width: 100%
    }
    .banner-global-block__promocode span {
        font-size: 14px
    }
    .featured-products-slider__pagination .swiper-pagination-bullet {
        margin: 0 5px
    }
    .featured-products-item__img img {
        width: 150px;
        height: 150px
    }
    .home-global-product__wrapper {
        flex-direction: column;
        align-items: center
    }
    .home-global-product__content {
        width: 100%;
        padding-right: 15px
    }
    .home-global-product__content {
        padding-top: 50px;
        padding-bottom: 50px
    }
    .home-global-product__img {
        width: 100%
    }
    .about-fillers-global__content {
        grid-template-columns: repeat(1, 1fr)
    }
    .more-info-global {
        background: #dadbd6;
        background-size: cover;
        background-position: right
    }
    .more-info-global__img-tablet {
        display: block;
        width: 100%
    }
    .more-info-global__img-tablet img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right
    }
    .more-info-global__wrapper {
        padding: 50px 0
    }
    .more-info-global__btns {
        flex-direction: column
    }
    .more-info-global__btns a {
        margin-right: 0 !important;
        max-width: 100%
    }
    .more-info-global__btns a:last-child {
        margin-top: 15px
    }
    .join-our-global__text {
        padding-top: 20px
    }
    .product-page__header {
        padding-bottom: 20px;
        align-items: center
    }
    .product-page__content--header .filter-btn {
        max-width: initial;
        width: initial
    }
    .product-page__items--wrapper {
        margin: 0;
        margin-bottom: -25px
    }
    .product-page__items .featured-products-item {
        margin: 0;
        margin-bottom: 25px;
        width: 100%
    }
    .product-item-page-global .featured-products {
        padding-bottom: 80px
    }
    .product-item__img .product-item-img__pagination .swiper-pagination-bullet {
        margin: 0 5px
    }
    .product-item__img .product-item-img .swiper-slide {
        height: 300px
    }
    .product-item__title {
        font-size: 18px
    }
    .product-item__rating {
        padding: 10px 0
    }
    .product-item__rating a {
        font-size: 12px
    }
    .product-item__list {
        -moz-column-count: 1;
        column-count: 1
    }
    .product-item__list--item {
        font-size: 12px;
        padding-bottom: 0
    }
    .product-item-buy {
        padding: 0;
        border: 0
    }
    .product-item-buy__price strong {
        font-size: 20px
    }
    .product-item-buy__price span {
        font-size: 14px
    }
    .product-item-buy__list--item {
        padding-bottom: 5px
    }
	.product-item-buy__count .input-count__next{right: 5px;}
	.product-item-buy__count .input-count__prev{left:5px;}
    .product-item-buy__list--item strong {
        font-size: 14px
    }
    .product-item-buy__list--item span {
        font-size: 12px
    }
    .product-item-buy__text-payments {
        font-size: 12px
    }
    .customer-reviews__header {
        padding: 10px 15px;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
    .customer-reviews__title {
        font-size: 16px
    }
    .customer-reviews__btn {
        max-width: 161px;
        margin-top: 10px
    }
    .customer-reviews__count-reviews {
        padding: 15px;
        padding-top: 0
    }
    .customer-reviews__reviews {
        padding: 15px
    }
    .customer-reviews-count {
        padding: 0;
        border-radius: 0;
        border: 0
    }
    .customer-reviews-list__line {
        margin: 0 10px
    }
    .review-item__avatar {
        width: 30px;
        height: 30px;
        min-width: 30px
    }
    .review-item__avatar .check {
        width: 12px;
        height: 12px
    }
    .review-item__title {
        font-size: 16px
    }
    .review-item__star svg {
        width: 12px;
        height: 12px
    }
    .review-item__text {
        padding-top: 10px
    }
    .review-item__text strong {
        font-size: 14px
    }
    .review-item__text p {
        padding-top: 0
    }
    .review-item-likes__text {
        display: none
    }
    .blog-page {
        padding-bottom: 50px
    }
    .blog-page__wrapper {
        margin: 0;
        margin-top: 20px
    }
    .blog-page__item {
        width: 100%;
        margin: 0;
        margin-bottom: 20px
    }
    .blog-page__btn .btn {
        margin-top: 20px
    }
    .blog-item-global-page .home-global-product.reverse .home-global-product__wrapper {
        flex-direction: column-reverse
    }
    .blog-item-global-page .home-global-product.reverse .home-global-product__content {
        padding: 50px 15px
    }
    .blog-item-global-page__text blockquote {
        padding: 15px;
        padding-top: 70px
    }
    .blog-item-global-page__text blockquote:before {
        font-size: 150px;
        left: 50%;
        transform: translateX(-50%);
        top: 0
    }
    .shipping-text {
        padding-bottom: 50px
    }
    .cart-page-global {
        padding-bottom: 50px
    }
    .cart-page-global__menu--item {
        font-size: 14px
    }
    .cart-page-global__menu--item:first-child {
        padding-right: 15px
    }
    .cart-page-global__menu--item:nth-child(2) {
        padding-left: 30px
    }
    .cart-page-item__remove {
        top: initial;
        bottom: 16px
    }
    .cart-page-item__img {
        min-width: 80px;
        width: 80px;
        height: 80px
    }
    .cart-page-form__payments--item {
        width: 100%
    }
    .cart-page-form__row {
        margin: 0;
        flex-direction: column
    }
    .cart-page-form__row .input {
        width: 100%;
        margin: 0;
        margin-bottom: 12px
    }
    .cart-page-form__row.two .input {
        width: 100%
    }
    .cart-page-form__btn {
        min-height: 40px
    }
    .cart-page-form__secure {
        padding: 16px 0
    }
    .cart-page-form__guarantee {
        padding-left: 50px
    }
    .cart-page-form__guarantee:before {
        width: 24px;
        height: 24px;
        left: 16px
    }
    .cart-page-form__guarantee strong {
        font-size: 16px
    }
    .cart-page-form__guarantee p {
        font-size: 12px
    }
    .modal-callme {
        max-width: 300px
    }
    .modal-callme__header {
        padding: 0 15px;
        min-height: 40px
    }
    .modal-callme__header--title {
        font-size: 16px
    }
    .modal-callme__content {
        padding: 15px
    }
    .modal-callme__btn {
        padding: 15px
    }
    .modal-callme__btn .btn--orange {
        min-height: 40px
    }
    .modal-review {
        max-width: 300px
    }
    .modal-cart-global {
        max-width: 300px
    }
    .modal-cart-global__header {
        padding: 0 15px;
        min-height: 40px
    }
    .modal-cart-global__header--title {
        font-size: 16px
    }
    .modal-cart-global__list {
        padding-right: 10px
    }
    .modal-cart-global__list .cart-page-item__remove {
        bottom: 5px
    }
    .modal-cart-global__btn .btn--orange {
        min-height: 40px
    }
    .buy-together-item {
        flex-wrap: wrap;
        padding-bottom: 15px
    }
    .buy-together-item__img {
        padding-left: 15px;
        padding-right: 15px
    }
    .buy-together-item__content {
        max-width: calc(100% - 126px);
        margin-right: 0
    }
    .modal-burger__menu {
        padding: 20px 0
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }
}