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

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

main {
    display: block
}

b,
strong {
    font-weight: bolder;
    color: #000
}

img {
    max-width: 100%;
    height: auto
}

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

textarea {
    overflow: auto;
    resize: vertical
}

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

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    outline: none
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

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

input[type="radio"],
input[type="checkbox"] {
    padding: 0;
    outline: none
}

/* CHECKBOX, RADIO */
input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #999;
    width: 20px;
    height: 20px;
    border-radius: 0 3px 3px;
    border: 1px solid;
    cursor: pointer;
    position: relative;
    background: #fff;
    vertical-align: middle;
    flex: 0 0 20px;
}

input[type=checkbox]:before {
    border-bottom: 2px solid;
    border-left: 2px solid;
    height: 5px;
    width: 10px;
    transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg)
}

input[type=checkbox]:before {
    content: "";
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    opacity: 0
}

input[type=checkbox]:not(:disabled):active {
    border-color: currentColor
}

input[type=checkbox]:checked {
    border-color: #0075ff;
    background-color: #0075ff;
    color: #fff
}

input[type=checkbox]:checked:before {
    opacity: 1
}

input[type=checkbox]:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none
}

    {
    border-radius: 50%
}

/* TABLE-RESPONSIVE */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

/* MOBILE-NO-SCROLL */
.mobile-no-scroll {
    overflow: hidden
}

@media (min-width: 992px) {
    .mobile-no-scroll {
        overflow: visible
    }
}

/* PAGE */
.page {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #3a3a3a;
    background-color: #f7f7f7;
    font: 400 12px/1.6 Roboto, sans-serif;
    padding-top: 80px
}

.page__push {
    flex-shrink: 0;
    margin-bottom: 50px
}

.page__header {
    margin-bottom: 33px
}

.page__footer {
    margin-top: auto
}

@media (min-width: 992px) {
    .page {
        padding-top: 0
    }
}

@media (max-width: 992px) {
    .page__push {
        margin-bottom: 10px
    }
}



/* CONTAINER */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1171px
    }
}

/* MAIN */
.main__sidebar:not(.main__sidebar--visible) {
    display: none
}

.main__content,
.main__sidebar {
    margin-bottom: 30px
}

@media (min-width: 992px) {
    .main {
        display: flex
    }

    .main__sidebar {
        width: 262px;
        flex-shrink: 0;
        margin-right: 30px;
        display: block
    }

    .main__sidebar:not(.main__sidebar--visible) {
        display: block
    }

    .main__content {
        width: calc(100% - 292px)
    }

    .main__sidebar:first-child {
        margin-right: 30px
    }

    .main__sidebar:last-child {
        margin-left: 30px
    }
}

/* TAG LIST */
.tag-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

/* BTN */
.btn {
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 37px;
    min-width: 150px;
    text-decoration: none;
    padding: .625em 1.5em;
    line-height: 1
}

.btn--primary {
    border-radius: .25em 1.5em 1.5em;
    border: 1px solid #d60000;
    color: #fff;
    border-color: transparent
}

.btn--primary:not(:disabled) {
    background-color: #d60000
}

.btn--primary:not(:disabled):hover {
    background-color: #bd0606
}

.btn--primary.disabled-btn {
    background-color: #ababab
}

.btn--primary.disabled-btn:hover {
    background-color: #c3c3c3
}

.btn--secondary {
    height: 48px;
    background-color: transparent;
    color: #676767;
    border: 2px solid #b7b7b7;
    border-radius: 24px;
    padding: 0 15px
}

.btn--secondary:hover {
    border-color: #d60000;
    color: #303030
}

.btn-fred {
    border-color: #d60000;
    color: #d60000
}

.btn--secondary:hover .btn__icon {
    color: #d60000
}

.btn--light {
    background-color: #f2f2f2;
    border-radius: 17.5px;
    color: #696b73;
    border: none
}

.btn--light:hover {
    background-color: #e3e3e3
}

.btn--light:hover .btn__icon {
    color: #d60000
}

.btn--lg {
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    padding: 0 35px;
    border-radius: 2px 25px 25px 27px
}

.btn--xl {
    font-size: 16px;
    font-weight: 700;
    height: 55px
}

.btn__icon {
    font-size: 1.3333333em;
    flex-shrink: 0
}

.btn__icon:first-child {
    margin-right: 1.25em
}

.btn__icon:last-child {
    margin-left: 1.25em
}

.btn--primary.disabled-btn .btn__icon {
    display: none
}

/* ICON */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 5px;
    border-color: transparent transparent transparent currentColor;
    transition: transform .2s
}

.arrow--small {
    border-width: 2px 0 2px 4px
}

.arrow--up {
    transform: rotate(-90deg)
}

.arrow--down {
    transform: rotate(90deg)
}

.arrow--left {
    transform: rotate(180deg)
}

/* DYNAMIC-CONTENT */
.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000
}

.dynamic-content h1 {
    font-size: 25px
}

.dynamic-content h2 {
    font-size: 20px
}

.dynamic-content h3 {
    font-size: 14px
}

.dynamic-content a {
    color: #d60000
}

.dynamic-content ul {
    list-style: none;
    padding-left: 14px
}

.dynamic-content ul li {
    display: flex;
    align-items: baseline
}

.dynamic-content ul li::before {
    content: '';
    left: 0;
    width: 11px;
    height: 11px;
    background: url(../img/list-marker.png);
    margin-right: 13px;
    flex-shrink: 0
}

.dynamic-content li:not(:last-child) {
    margin-bottom: 14px
}

.dynamic-content a:hover {
    text-decoration: none
}

.dynamic-content table {
    width: 100%;
    border-spacing: 0 6px
}

.dynamic-content thead {
    color: #000
}

.dynamic-content thead th {
    background-color: #c6c6c6
}

.dynamic-content tbody th {
    font-weight: 400;
    text-align: left
}

.dynamic-content tbody td {
    text-align: center
}

.dynamic-content tbody th,
.dynamic-content tbody td {
    background-color: #e4e4e4
}

.dynamic-content th,
.dynamic-content td {
    padding: 5px 17px
}

.dynamic-content th:first-child,
.dynamic-content td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

.dynamic-content th:last-child,
.dynamic-content td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

/* HEADING-GROUP */
.heading-group__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -30px;
    margin-top: -10px
}

.heading-group__col {
    margin-top: 10px;
    margin-left: 30px
}

/* HEADING */
.heading {
    font-weight: 700;
    color: #000;
    margin-top: 0;
    margin-bottom: 1.2em;
    line-height: 1.2
}

.heading--h1 {
    font-size: 25px
}

.heading--h2 {
    font-size: 22px
}

.heading--h3 {
    font-size: 20px
}

.heading--h4 {
    font-size: 18px
}

.heading--h5 {
    font-size: 16px
}

.heading--h6 {
    font-size: 14px;
    margin-bottom: 13px;
    margin-bottom: .929em
}

/* HEADER-DESKTOP */
.header--desktop {
    display: none
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -30px
}

.header__gap {
    margin-left: 30px
}

.header__top {
    border-bottom: 1px solid #e6e6e6;
    padding: 5px 0
}

.header__main {
    padding-top: 20px;
    padding-bottom: 20px
}

.header__bottom {
    background-color: #fff;
    padding-top: 8px;
    padding-bottom: 8px
}

.header--sticky .header__bottom {
    box-shadow: 0 0 3px rgba(0, 0, 0, .3)
}

.header__search {
    flex-grow: 1;
    max-width: 548px
}

.header__nav {
    align-self: stretch;
    margin-top: -5px;
    margin-bottom: -5px
}

@media (min-width: 992px) {
    .header--desktop {
        display: block
    }
}

/* HEADER-MOBILE */
.header-mobile {
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100
}

.phone__wrapper {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 340px) {
    .phone__wrapper .phone__link {
        font-size: 10px;
    }
}

.header-mobile__inner {
    display: flex;
    align-items: center;
    height: 54px;
    padding-top: 5px;
    padding-bottom: 5px
}

.header-mobile__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 24px;
    flex-shrink: 0;
    color: #000;
    position: relative;
    text-decoration: none
}

.header-mobile__btn:not(:last-child) {
    margin-right: 4px
}

.header-mobile__btn:hover {
    background-color: #e4e4e4;
    border-radius: 4px
}

.header-mobile__num {
    height: 15px;
    width: 15px;
    font-size: 10px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background: #d60000;
    font-weight: 700;
    color: #fff
}

.header-mobile__logo {
    flex-shrink: 0;
    margin-left: 12px;
    margin-right: 16px;
    height: 100%
}

.header-mobile__indicators {
    display: flex;
    margin-left: auto
}

.header-mobile__search {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 100%;
    transition: bottom .3s ease-in-out, visibility 0 .3s, opacity .3s, -webkit-transform .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 1px 7px rgba(0, 0, 0, .25)
}

.header-mobile__search--open {
    pointer-events: auto;
    transition-delay: 0s, 0s;
    bottom: 0;
    visibility: visible;
    opacity: 1
}

@media (min-width: 992px) {
    .header-mobile {
        display: none
    }
}

/* MOBILE-SEARCH */
.mobile-search {
    display: flex;
    background: #fff
}

.mobile-search__query {
    background-color: transparent;
    padding: 0 0 0 15px;
    min-width: 0;
    flex-grow: 1;
    border: none;
    font-size: 16px
}

.mobile-search__btn {
    width: 54px;
    border: none;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #b3b3b3
}

.mobile-search__btn:hover {
    color: #000
}

.mobile-search__btn:not(:last-child) {
    border-right: 1px solid #ebebeb
}

/* ADDITIONAL-NAV */
.additional-nav__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 -35px;
    padding: 0;
    list-style: none;
    height: 100%
}

.additional-nav__item {
    margin-left: 35px;
    display: flex;
    padding: 5px 0
}

.additional-nav__item--active {
    box-shadow: 0 1px 0 #d60000
}

.additional-nav__link {
    color: #73757f;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%
}

.additional-nav__link:hover {
    color: #000
}

/* CITY-BTN */
.city-btn {
    background-color: #e4e4e4;
    border-radius: 13.5px;
    display: inline-flex;
    align-items: center;
    color: #73757f;
    border: none;
    padding: 5px 20px;
    white-space: nowrap;
    font-size: 12px
}

.city-btn__icon {
    flex-shrink: 0;
    font-size: 14px;
    margin-right: 13px;
    color: #d60000
}

/* SIGNIN-BTN */
.signIn-btn {
    color: #73757f;
    border: none;
    background-color: #e4e4e4;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 4px 21px
}

.signIn-btn__icon {
    font-size: 17px;
    margin-left: 10px
}

.signIn-btn:hover {
    color: #3c3d44
}

.signIn-btn:hover .signIn-btn__icon {
    color: #d60000
}

/* SIGNUP-BTN */
.signUp-btn {
    color: #73757f;
    border: none;
    background-color: transparent;
    border-bottom: 1px dotted;
    padding: 0
}

.signUp-btn:hover {
    color: #d60000
}

/* DEPARTMENTS */
.departments {
    position: relative
}

.departments-btn {
    color: #000;
    background-color: #e4e4e4;
    border-radius: 22px 22px 22px 3px;
    color: #000;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    border: none;
    padding: 10px 29px 12px;
    font-weight: 700
}

.departments-btn:hover,
.departments-btn--active {
    color: #fff;
    background-color: #d60000
}

.departments-btn__icon {
    font-size: 12px;
    margin-right: 21px;
    flex-shrink: 0
}

.departments__body {
    margin-top: 3px;
    width: 262px;
    position: absolute;
    top: 100%;
    left: 30px;
    z-index: 100;
    display: none
}

.departments__body--open {
    display: block
}

/* COMPARE-BTN */
.compare-btn {
    border: 2px solid #f2f2f2;
    border-radius: 22px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none
}

.compare-btn:hover {
    border-color: #e4e4e4
}

.compare-btn:hover .compare-btn__text {
    color: #73757f
}

.compare-btn__icon-wrap {
    position: relative;
    flex-shrink: 0;
    margin-right: 16px
}

.compare-btn__icon {
    color: #d3d3d3;
    font-size: 16px
}

.compare-btn__text {
    color: #a9abb0
}

.compare-btn__num {
    font-size: 9px;
    color: #000;
    font-weight: 700;
    width: 16px;
    line-height: 16px;
    background-color: #ececec;
    border-radius: 50%;
    position: absolute;
    right: -11px;
    top: -6px;
    text-align: center
}

.compare-btn__num+.compare-btn__icon {
    color: #d60000
}

/* CART-BTN */
.cart-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #73757f
}

.cart-btn__icon {
    color: #d60000;
    font-size: 32px;
    flex-shrink: 0;
    margin-right: 16px
}

.cart-btn__title {
    font-size: 14px;
    font-weight: 700;
    color: #000
}

.cart-btn__price {
    font-size: 13px;
    font-weight: 700;
    color: #000
}

/* AUTH */
.auth__list {
    display: flex;
    align-items: center;
    margin: 0 0 0 -22px;
    padding: 0;
    list-style: none
}

.auth__item {
    margin-left: 22px
}

/* LOGO */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.logo--sm {
    color: #595959
}

.logo--lg {
    color: #000;
    font-weight: 700
}

.logo__img {
    flex-shrink: 0;
    height: 100%
}

.logo--sm .logo__img {
    width: 63px
}

.logo__text {
    margin-left: 20px
}

@media (min-width: 1200px) {
    .logo--lg .logo__text {
        margin-left: 42px
    }
}

/* PHONE */
.phone {
    white-space: nowrap;
    color: #000;
    display: inline-flex;
    align-items: center;
    font-weight: 700
}

.phone--lg {
    font-size: 20px
}

.phone--sm {
    font-size: 14px
}

.phone__icon {
    font-size: 1.285714em
}

.phone__icon+.phone__icon {
    margin-left: 5px
}

.phone__icon+.phone__link,
.phone__link+.phone__icon {
    margin-left: 9px
}

.phone__link {
    color: inherit;
    text-decoration: none
}

.phone__link:hover {
    color: #d60000
}

.header__main .phone {
    display: block;
}

.header__main .phone span,
.mob-nav__link .phone--sm span {
    font-weight: 400;
}

.mob-nav__link .phone--sm>div {
    margin-top: 10px;
}

.mob-nav__link .phone--sm {
    display: block;
    margin-top: 8px;
}

/* CONTACT-LINK */
.contact-link {
    color: #000;
    text-decoration: none;
    font-size: 14px
}

.contact-link:hover {
    text-decoration: underline
}

/* SEARCH */
.search {
    min-height: 44px;
    position: relative;
    display: flex
}

.search__icon {
    flex-shrink: 0;
    font-size: 16px;
    position: absolute;
    left: 19px;
    top: 50%;
    margin-top: -8px
}

.search__query {
    background-color: transparent;
    border: 2px solid #f2f2f2;
    border-radius: 22px;
    width: 100%;
    padding: 0 104px 0 54px;
    text-overflow: ellipsis
}

.search__query:focus {
    border-color: #d5d5d5
}

.search__btn {
    background-color: #d60000;
    border-radius: 18.5px 18.5px 18.5px 3px;
    border: none;
    color: #fff;
    padding: 0;
    width: 84px;
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px
}

.search__btn:hover {
    background-color: #cb0000
}

/* SIDEBAR */
.sidebar__widget:not(:last-child) {
    margin-bottom: 27px
}

/* BREADCRUMBS */
.breadcrumbs {
    font-size: 12px;
    color: #90939a
}

.breadcrumbs__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

.breadcrumbs__separator {
    margin: 0 12px
}

.breadcrumbs__link {
    color: inherit;
    text-decoration: none
}

.breadcrumbs__link:hover {
    text-decoration: underline
}

.breadcrumbs__current {
    color: #bcbec4
}

/* CATEGORIES */
.categories {
    background-color: #fff;
    color: #000;
    border-radius: 3px 18px 18px
}

.categories.categories--fixed {
    background-color: #e4e4e4
}

.categories__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.categories__item {
    position: relative
}

.categories__item:not(:last-child) {
    border-bottom: 1px solid #efefef
}

.categories--fixed .categories__item:not(:last-child) {
    border-bottom: 1px solid #d4d4d4
}

.categories__link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 12px 20px
}

.categories__link::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent #d60000;
    margin-right: 19px
}

.categories__item:hover .categories__link {
    color: #909090
}

.categories-sub {
    display: none;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 100%;
    background-color: #e4e4e4;
    border-radius: 3px 18px 18px;
    margin-left: -14px;
    width: 367px
}

.categories--fixed .categories-sub {
    background-color: #f7f7f7;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.14)
}

.categories__item:hover .categories-sub {
    display: block
}

.categories-sub__title {
    font-size: 14px;
    font-weight: 700;
    padding: 12px 44px;
    border-bottom: 1px solid #d8d8d8;
    line-height: 19.2px;
    position: relative
}

.categories-sub__title::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent #ccc;
    top: 50%;
    margin-top: -3px;
    left: 18px;
    position: absolute
}

.categories-sub__list {
    margin: 0;
    list-style: none;
    padding: 22px 44px 37px
}

.categories-sub__item:not(:last-child) {
    margin-bottom: 19px
}

.categories-sub__link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted transparent
}

.categories-sub__link:hover {
    color: #d60000;
    border-color: currentColor
}

/* CATEGORY-CARDS */
.category-cards__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none
}

.category-cards__link {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 0 15px 15px;
    text-decoration: none;
    padding: 4px;
    border: 1px solid transparent;
    height: 100%
}

.category-cards__link:hover {
    border-color: #d9d9d9
}

.category-cards__preview {
    max-width: 176px;
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
    align-items: center
}

.category-cards__text {
    padding: 10px;
    margin-left: 14px
}

.category-cards__title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px
}

.category-cards__descr {
    color: #9d9ea4
}

/* SUBCATEGORIES */
.subcategories__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr))
}

.subcategories__card {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    background-color: #fff;
    border: 2px solid #dfdfdf;
    border-radius: 0 15px 15px;
    height: 100%
}

.subcategories__card:hover {
    border-color: #d60000
}

.subcategories__preview {
    width: 52px;
    flex-shrink: 0;
    margin-right: 12px;
    text-align: center
}

.subcategories__title {
    color: #000;
    font-size: 14px;
    font-weight: 700
}

/* TAGS */
.tags {
    color: #73757f
}

.tags__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-left: -10px
}

.tags__title,
.tags__btn {
    margin-top: 10px;
    margin-left: 10px
}

.tags__btn {
    background-color: #ddd;
    border-radius: 12px;
    border: none;
    color: #000;
    padding: 2px 13px;
    border: 1px solid transparent
}

.tags__btn:hover,
.tags__btn--active {
    border-color: #d60000
}

/* SORT-LINE */
.sort-line {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding-top: 12px;
    padding-bottom: 12px
}

.sort-line__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -10px;
    margin-left: -30px
}

.sort-line__col {
    margin-left: 30px;
    margin-top: 10px
}

/* SORT */
.sort__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -10px;
    margin-left: -30px
}

.sort__btn,
.sort__title {
    margin-left: 30px;
    margin-top: 10px
}

.sort__btn {
    border: none;
    padding: 2px 10px;
    background-color: transparent
}

.sort__btn.active,
.sort__btn:hover {
    background-color: #ddd;
    border-radius: 5px 5px 5px 0;
    color: #d60000
}

/* GRID-VIEW */
.grid-view {
    display: flex
}

.grid-view__btn {
    padding: 2px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #bfbfbf;
    display: flex
}

.grid-view__btn:not(:last-child) {
    margin-right: 5px
}

.grid-view__btn:hover,
.grid-view__btn.active {
    border-radius: 3px 3px 3px 0;
    color: #d60000 !important;
    background-color: #e7e7e7
}

/* PRODUCTS-LIST */
.products-list--vertical {
    display: grid;
    grid-template-columns: repeat(4, minmax(175px, 1fr));
    gap: 15px
}

.products-list--horizontal>.product-h:not(:last-child) {
    margin-bottom: 10px
}

@media (max-width: 500px) {
    .products-list--vertical {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* PRODUCT-H */
.product-h {
    background-color: #fff;
    border-radius: 3px 18px 18px 18px;
    padding: 5px
}

.product-h__preview {
    position: relative
}

.product-h__ribbons {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1
}

.product-h__img-link {
    display: block
}

.product-h__img {
    display: block;
    width: 100%
}

.product-h__text {
    flex-grow: 1;
    min-width: 0;
    padding-top: 5px
}

.product-h__title {
    margin-bottom: 10px;
    font-size: 14px
}

.product-h__title-link {
    color: #000;
    text-decoration: none
}

.product-h__title-link:hover {
    text-decoration: underline
}

.product-h__spec {
    display: none
}

.product-h__footer {
    background-color: #f2f2f2;
    border-radius: 3px 10px 10px 10px;
    padding: 8px 18px 10px 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 15px;
    justify-content: space-between;
    align-items: center
}

.product-h__price {
    font-size: 18px
}

.product-h__availability {
    font-size: 10px
}

.product-h__availability,
.product-h__actions {
    justify-self: end
}

.product-h__to-cart {
    width: 100%
}

@media (min-width: 400px) {
    .product-h {
        display: flex;
        align-items: center
    }

    .product-h__preview {
        width: 130px;
        margin-right: 10px
    }
}

@media (min-width: 576px) {
    .product-h__preview {
        width: 182px;
        margin-right: 20px
    }

    .product-h__text {
        padding: 13px
    }
}

@media (min-width: 768px) {
    .product-h__spec {
        display: block;
        margin-bottom: 30px
    }

    .product-h__title {
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 2px solid #eee
    }
}

@media (min-width: 1200px) {
    .product-h__body {
        display: flex
    }

    .product-h__spec {
        width: calc(50% - 15px);
        margin-right: 30px;
        flex-shrink: 0;
        margin-bottom: 0
    }

    .product-h__footer {
        flex-grow: 1;
        min-width: 0
    }
}

/* PRODUCT-V */
.product-v {
    background: #fff;
    border-radius: 3px 18px 18px;
    border: 1px solid transparent;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.product-v:hover {
    border-color: #d9d9d9
}

.product-v:hover .product-actions__btn,
.touchevents .product-actions__btn {
    display: inline-flex !important
}

.product-v__preview {
    position: relative;
    margin-bottom: 15px
}

.product-v__actions {
    position: absolute;
    top: -5px;
    left: 0
}

.product-v__actions .product-actions__btn:not(.product-actions__btn--active) {
    display: none
}

.product-v__img-link {
    display: block;
    color: inherit;
}

.product-v__ribbons {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.product-v__availability {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    font-size: 10px
}

.product-v__img {
    width: 100%;
    display: block
}

.product-v__title {
    margin-bottom: 18px;
}

.product-v__price {
    margin-top: auto;
    margin-bottom: 15px;
    font-size: 18px
}

.product-v__btn {
    width: 100%;
    min-width: 0
}

@media only screen and (max-width: 500px) {
    .product-v__img {
        padding: 10px;
    }
}

/* AVAILABILITY */
.availability {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none
}

.availability__icon-holder {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    margin-right: 9px;
    font-size: 8px
}

.availability--inStock .availability__icon-holder {
    background-color: #25bb21;
    color: #fff
}

.availability--outStock .availability__icon-holder {
    background-color: #c2c2c2;
    color: #676767
}

.availability__text {
    color: #484848
}

/* SPECIFICATION */
.specification__dl {
    margin: 0 0 3px
}

.specification__dt {
    color: #73757f;
    display: inline-block;
    margin-right: 12px
}

.specification__dd {
    color: #333;
    display: inline-block;
    margin-left: 0
}

.specification__link {
    text-decoration: underline;
    color: inherit
}

.specification__link:hover {
    text-decoration: none
}

/* RIBBONS */
.ribbons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none
}

.ribbons__label {
    white-space: nowrap;
    border-radius: 0 10px 10px;
    color: #fff;
    padding: 1px 9px
}

.ribbons__label:not(:last-child) {
    margin-bottom: 5px
}

.ribbons__label--sale {
    background-color: #ffae00
}

.ribbons__label--installment {
    background-color: #c400d6
}

.ribbons__label--hit {
    background-color: #00f
}

.ribbons__label--new {
    background-color: #25bb21
}

/* SWIPER */
.swiper {
    position: relative;
    overflow: hidden
}

.swiper--multiple {
    margin: 0 -8px;
    padding: 0 8px
}

.swiper-scrollbar {
    background-color: #bfbfbf
}

.swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #d60000;
    height: 4px
}

.swiper--multiple .swiper-slide {
    height: auto
}

.swiper .swiper__item {
    height: 100%
}

.swiper__nav {
    position: absolute;
    top: 50%;
    margin-top: -27px;
    z-index: 1;
    width: 26px;
    height: 54px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left .3s, right .3s;
    color: #fff;
    border-radius: 5px
}

.swiper:not(.swiper--multiple) .swiper__nav {
    background-color: #b80000
}

.swiper--multiple .swiper__nav {
    background-color: #c6c6c6
}

.swiper__nav:hover {
    background-color: #b80000
}

.swiper__nav--prev {
    left: -26px
}

.swiper__nav--next {
    right: -26px
}

.swiper-promo .swiper__nav--prev {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.swiper-promo .swiper__nav--next {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.swiper__inner:hover .swiper__nav--prev,
.touchevents .swiper__nav--prev {
    left: 0
}

.swiper__inner:hover .swiper__nav--next,
.touchevents .swiper__nav--next {
    right: 0
}

/* PRODUCT */
.product-title {
    line-height: 1.28;
    max-height: 3.84em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.product-title__link {
    color: #000;
    text-decoration: none;
}

.product-title__link:hover {
    color: #d60000;
    text-decoration: underline
}

@media (min-width: 480px) {
    .product-title {
        font-size: 14px
    }
}

/* PRICE */
.price {
    white-space: nowrap
}

.price--old {
    color: #73757f;
    text-decoration: line-through;
    font-size: .666666em
}

.price--new .price__val {
    font-weight: 700;
    color: #000
}

.price__currency {
    color: #73757f;
    font-size: 12px
}

.page-descr {
    display: flex;
    flex-direction: column
}

.page-descr__heading {
    order: -1
}

.page-descr__img {
    margin: 0 auto 30px;
    display: block
}

@media (min-width: 576px) {
    .page-descr {
        display: block
    }

    .page-descr__img {
        float: right;
        margin-left: 30px;
        max-width: 50%
    }
}

/* ARTICLES-GRID */
.articles-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(205px, 1fr))
}

/* ARTICLE-CARD */
.article-card {
    background-color: #fff;
    border-radius: 0 15px 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.article-card__img {
    display: block;
    width: 100%
}

.article__text {
    padding: 18px 20px 20px
}

.article__date {
    color: #9d9ea4;
    font-size: 10px;
    margin-bottom: 11px
}

.article-card__link {
    font-size: 14px;
    color: inherit;
    text-decoration: none
}

.article-card__link:hover {
    color: #d60000;
    text-decoration: underline
}

.article-card__descr {
    margin-top: 10px;
    color: #696969
}

/* MORE-BTN */
.more-btn {
    font-size: 18px;
    background-color: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    text-align: center;
    padding: 0
}

.more-btn__text {
    border-bottom: 1px dotted
}

.more-btn__icon {
    margin-left: 15px
}

.more-btn:hover {
    color: #d60000
}

/* SOCIAL */
.social__list {
    margin: -5px 0 0 -5px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

.social__item {
    margin-left: 5px;
    margin-top: 5px
}

.social__link {
    display: block
}

.social__img {
    display: block
}

/* WORKTIME */
.worktime {
    color: #73757f
}

.worktime__time {
    color: #000
}

.worktime__link {
    color: inherit;
    text-decoration: none
}

.worktime__link:hover {
    text-decoration: underline;
    color: #d60000
}

.worktime__contact {
    margin-top: 19px
}

/* COPYRIGHT */
.copyright {
    font-size: 10px
}

.copyright__link {
    color: #d60000
}

.copyright__link:hover {
    text-decoration: none
}

/* BOX */
.box {
    background-color: #fff;
    border-radius: 3px 18px 18px
}

.box--pad-md {
    padding: 15px
}

.box-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e4e4e4;
    font-size: 14px
}

.box-header__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-left: -30px;
    margin-top: -10px
}

.box-header__col {
    margin-left: 30px;
    margin-top: 10px
}

.box__btn,
.box__link {
    color: #676767;
    padding: 9px 20px;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center
}

.box__btn {
    border: none;
    background-color: transparent
}

.box__link {
    text-decoration: none
}

.box__btn.tabs__item--active,
.box__btn:hover,
.box__link--active,
.box__link:hover {
    color: #000;
    background-color: #e4e4e4;
    border-radius: 5px
}

.box__btn .icon,
.box__link .icon {
    font-size: 1.142857em;
    margin-right: .857142em;
    flex-shrink: 0
}

.box__body--pad {
    padding: 40px 20px
}

@media (min-width: 480px) {
    .box--pad-md {
        padding: 25px
    }
}

/* POST */
.post__date {
    color: #9d9ea4;
    font-size: 10px;
    margin-top: 25px
}

/* ALERT */
.alert {
    border: 2px solid transparent;
    border-radius: 0 15px 15px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    color: #000
}

.alert--warning {
    border-color: #d60000
}

.alert--warning:before {
    content: '!';
    width: 36px;
    line-height: 36px;
    background-color: #e4e4e4;
    font-size: 18px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 23px;
    border-radius: 50%
}

@media (min-width: 576px) {
    .alert {
        padding: 20px 25px
    }
}

/* CATALOG-META */
.catalog-meta {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding-top: 10px;
    padding-bottom: 10px
}

.catalog-meta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-left: -30px;
    margin-top: -10px
}

.catalog-meta__total,
.catalog-meta__pagination {
    margin-left: 30px;
    margin-top: 10px
}

/* PAGINATION */
.pagination {
    overflow: hidden;
    font-weight: 700
}

.pagination__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -10px
}

.pagination__item {
    padding: 0 5px;
    margin-top: 10px
}

.pagination__nav,
.pagination__link {
    text-align: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pagination__link {
    color: inherit;
    text-decoration: none
}

.pagination__link:hover,
.pagination__link--active {
    background-color: #d60000;
    color: #fff
}

.pagination__dots {
    line-height: 28px;
    white-space: nowrap
}

.pagination__nav {
    color: #898989;
    background-color: #d8d8d8
}

/* PAGE404 */
.page404 {
    padding: 30px
}

.page404__title {
    font-weight: 700;
    display: flex;
    align-items: baseline
}

.page404__code {
    color: #d60000;
    font-size: 99px;
    line-height: 1
}

.page404__message {
    color: #484848;
    margin-left: 1em;
    font-size: 18px
}

.page404__descr {
    color: #6b6b6b;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 400px
}

.page404__descr b {
    color: #000
}

@media (min-width: 576px) {
    .page404 {
        padding: 60px
    }
}

@media (min-width: 768px) {
    .page404 {
        padding: 113px
    }

    .page404__descr {
        margin-top: 44px;
        margin-bottom: 44px
    }
}

/* CONTACTS */
.contacts__group {
    margin-bottom: 30px
}

/* WORKTIME */
.worktime__time {
    font-size: 14px;
    color: #000
}

/* LOCATION */
.location {
    color: #323232;
    display: flex;
    align-items: center
}

.location__icon {
    width: 2em;
    height: 2em;
    background-color: #e4e4e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .72em;
    flex-shrink: 0;
    font-size: 1.5em;
    color: #d60000
}

.location--reverse .location__icon {
    background-color: #fff
}

.location__text {
    max-width: 210px
}

.location__address {
    border-bottom: 1px dotted;
    color: inherit;
    text-decoration: none
}

.location__address:hover {
    border: none
}

/* COMPANY */
.company__row {
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    color: #000;
    padding: 15px;
    position: relative
}

.company--picker .company__row {
    padding-left: 50px
}

.company__row:not(:last-child) {
    margin-bottom: 9px
}

.company--picker .company__row {
    cursor: pointer
}

.company__row--active {
    border-color: #25bb21
}

.company__col:not(:last-child) {
    margin-bottom: 10px
}

.company__logo {
    vertical-align: middle;
    max-width: none
}

.company__name {
    font-size: 14px
}

.company__link {
    color: inherit
}

.company__link:hover {
    color: #d60000
}

.company__radio {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%)
}

.company__price {
    font-size: 14px
}

.company__descr {
    color: #888
}

@media (min-width: 480px) {
    .company {
        display: table;
        width: 100%;
        border-spacing: 0 9px
    }

    .company__row {
        display: table-row
    }

    .company__col {
        display: table-cell;
        border-top: 1px solid #e4e4e4;
        border-bottom: 1px solid #e4e4e4;
        padding: 20px 0 20px 20px;
        vertical-align: middle
    }

    .company__col:first-child {
        border-left: 1px solid #e4e4e4;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px
    }

    .company__col:last-child {
        border-right: 1px solid #e4e4e4;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        padding-right: 20px
    }

    .company__logo {
        max-width: none;
        vertical-align: middle
    }

    .company__row--active .company__col {
        border-color: #25bb21
    }

    .company--picker .company__row {
        padding-left: 15px
    }

    .company__radio {
        margin-right: 0;
        position: static;
        transform: none
    }
}

/* ORDER-COMPLETE */
.order-complete__message {
    max-width: 460px
}

.order-complete__link {
    color: #255caf
}

.order-complete__link:hover {
    text-decoration: none
}

.order-complete__bill {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e4e4e4
}

/* INPUT */
.input {
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 12px 20px
}

.input:hover {
    border-color: #bbb
}

.input:focus {
    border-color: #848484
}

.input.is-invalid,
.input--invalid {
    box-shadow: none;
    color: red !important;
    border-color: currentColor !important
}

/* FORM */
.form__line:not(:last-child) {
    margin-bottom: 22px
}

.form__label {
    color: #000;
    display: inline-block;
    margin-bottom: 6px
}

.form__text {
    display: block;
    width: 100%
}

.form__footer {
    margin-top: 35px
}

.form__row {
    margin-top: -15px;
    margin-left: -30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.form__row--justify {
    justify-content: space-between
}

.form__col {
    margin-left: 30px;
    margin-top: 15px
}

.form__link {
    color: #6d6d6d;
    text-decoration: none;
    border-bottom: 1px dotted
}

.form__link:hover {
    color: #000
}

.form__descr {
    font-size: 10px;
    color: #969696
}

/* POPUP */
.popup {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.14);
    background-color: #fff;
    border-radius: 15px;
    width: 528px;
    padding: 0;
    display: none;
    color: #000
}

.popup__header {
    position: relative;
    padding-left: 15px;
    padding-right: 50px;
    border-bottom: 1px solid #e4e4e4;
    display: flex
}

.popup__title {
    font-size: 18px;
    font-weight: 700;
    padding: .772727em 0 .636363em
}

.popup__title:not(:first-child) {
    margin-left: 30px
}

.popup__title--active {
    border-bottom: 1px solid #d60000;
    margin-bottom: -1px
}

.popup__title--inactive {
    text-decoration: none;
    color: #a4a4a4
}

.popup__title--inactive:hover {
    color: #000
}

.popup__close {
    padding: 10px;
    border: none;
    font-size: 10px;
    color: #cdcdcd;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -15px
}

.popup__close:hover {
    color: #d60000
}

.popup__body {
    padding: 40px 15px
}

@media (min-width: 480px) {
    .popup__header {
        padding-left: 30px
    }

    .popup__body {
        padding-left: 30px;
        padding-right: 30px
    }

    .popup__title {
        font-size: 22px
    }
}

/* REVIEW-THANKS */
.review-thanks {
    color: #d60000;
    font-weight: 700;
    font-size: 14px
}

/* RATING */
.rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1
}

.rating__text:first-child {
    margin-right: 10px
}

.rating__text:last-child {
    margin-left: 10px
}

.rating__stars {
    display: flex;
    flex-direction: row-reverse;
    flex-shrink: 0
}

.rating:not(.rating--static) .rating__stars {
    cursor: pointer
}

.rating__star {
    min-width: 0;
    flex-grow: 1;
    color: #b9b9b9;
    padding: 1.5px
}

.rating:not(.rating--static) .rating__star:hover,
.rating:not(.rating--static) .rating__star:hover~.rating__star,
.rating__star--active,
.rating__star--active~.rating__star {
    color: #f90000
}

.rating__link {
    color: #777;
    border-bottom: 1px dotted;
    text-decoration: none
}

.rating__link:hover {
    color: #d60000
}

/* CART-INFO */
.cart-info__box {
    border: 1px dashed;
    color: #777
}

.cart-info__val {
    font-weight: 700;
    color: #000;
    white-space: nowrap
}

.cart-info__num {
    margin-bottom: 29px
}

.cart-info__btn {
    width: 100%
}

.cart-info__btn:not(:last-child) {
    margin-bottom: 14px
}

.cart-info__discount {
    font-size: 14px;
    margin-bottom: 21px
}

.cart-info__delivery {
    margin-bottom: 35px
}

.cart-info__delivery .cart-info__val {
    font-size: 14px
}

.cart-info__total {
    margin-bottom: 16px
}

.cart-info__total .cart-info__val {
    font-size: 18px
}

.cart-info__sum {
    margin-bottom: 9px
}

.cart-info__address {
    color: #000
}

.cart-info__license {
    margin-top: 18px;
    color: #bbb;
    font-size: 10px;
    padding: 0 20px
}

/* CLEAR-BTN */
.clear-btn {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background-color: transparent
}

.clear-btn__icon {
    margin-right: 11px;
    color: #cdcdcd;
    font-size: 10px
}

.clear-btn:hover .clear-btn__icon {
    color: #d60000
}

.clear-btn__text {
    border-bottom: 1px dotted;
    color: #6d6d6d
}

.clear-btn:hover .clear-btn__text {
    color: #000
}

/* CART-CHECKOUT */
.cart-checkout__table {
    background-color: #fff;
    border-radius: 3px 18px 18px;
    color: #777
}

.cart-checkout__tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 5px 35px 5px 5px;
    border-bottom: 1px solid #f2f2f2
}

.cart-checkout__td {
    padding: 10px
}

.cart-checkout__preview-col {
    width: 110px;
    flex-shrink: 0
}

.cart-checkout__preview {
    width: 100%
}

.cart-checkout__title {
    margin-bottom: 15px
}

.cart-checkout__remove {
    background-color: transparent;
    color: #cdcdcd;
    padding: 5px;
    border: none;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center
}

.cart-checkout__remove:hover {
    color: #d60000
}

.cart-checkout__text-col {
    width: calc(100% - 110px)
}

.cart-checkout__price-col {
    font-size: 15px
}

.cart-checkout__num-col {
    font-size: 14px
}

.cart-checkout__summ-col {
    font-size: 18px;
    display: none
}

.cart-checkout__remove-col {
    position: absolute;
    top: 0;
    right: 0
}

@media (min-width: 768px) {
    .cart-checkout__table {
        margin-top: -10px;
        display: table;
        width: 100%;
        border-spacing: 0 10px;
        background-color: transparent
    }

    .cart-checkout__tr {
        display: table-row;
        padding: 0;
        border: none
    }

    .cart-checkout__td,
    .cart-checkout__th {
        display: table-cell;
        vertical-align: middle;
        background-color: #fff;
        padding: 5px
    }

    .cart-checkout__th:not(:first-child) {
        text-align: center
    }

    .cart-checkout__td:not(.cart-checkout__text-col) {
        text-align: center
    }

    .cart-checkout__td:first-child {
        border-top-left-radius: 3px;
        border-bottom-left-radius: 18px
    }

    .cart-checkout__td:last-child {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px
    }

    .cart-checkout__preview {
        max-width: none;
        width: 110px
    }

    .cart-checkout__text-col {
        width: auto
    }

    .cart-checkout__summ-col {
        display: table-cell
    }

    .cart-checkout__remove {
        visibility: hidden
    }

    .cart-checkout__tr:hover .cart-checkout__remove,
    .touchevents .cart-checkout__remove {
        visibility: visible
    }

    .cart-checkout__remove-col {
        position: static
    }

    .cart-checkout__preview-col {
        width: 1px
    }
}

@media (min-width: 1200px) {

    .cart-checkout__td,
    .cart-checkout__th {
        padding-left: 15px;
        padding-right: 15px
    }
}

/* CART-ORDERS */
.cart-orders__th:not(:first-child) {
    text-align: center
}

.cart-orders__table {
    border-radius: 3px 18px 18px;
    color: #777;
    margin-top: -10px;
    display: table;
    width: 100%;
    border-spacing: 0 10px
}

.cart-orders__tr {
    display: table-row
}

.cart-orders__td,
.cart-orders__th {
    display: table-cell;
    vertical-align: middle;
    padding: 5px 15px
}

.cart-orders__th:not(:first-child) {
    text-align: center
}

.cart-orders__td {
    border-top: 1px solid #eaeef8
}

.cart-orders__td:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 18px
}

.cart-orders__td:last-child {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px
}

.cart-orders__preview-col {
    width: 110px;
    flex-shrink: 0;
    width: 1%
}

.cart-orders__preview {
    width: 100%
}

.cart-orders__title {
    margin-bottom: 15px
}

.cart-orders__remove {
    background-color: transparent;
    color: #cdcdcd;
    padding: 5px;
    border: none;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center
}

.cart-orders__remove:hover {
    color: #d60000
}

.cart-orders__td:not(.cart-orders__text-col) {
    text-align: center
}

.cart-orders__price-col {
    font-size: 15px
}

.cart-orders__num-col {
    font-size: 14px
}

.cart-orders__summ-col {
    font-size: 18px
}

.cart-orders__preview {
    max-width: none;
    width: 110px
}

.cart-orders__text-col {
    width: auto
}

.cart-orders__summ-col {
    display: table-cell
}

.cart-orders__remove {
    visibility: hidden
}

.cart-orders__tr:hover .cart-orders__remove,
.touchevents .cart-orders__remove {
    visibility: visible
}

/* PLUS-MINUS */
.plus-minus {
    border-radius: 21px;
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 10px;
    background-color: #f2f2f2
}

.plus-minus__btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 0;
    background-color: transparent;
    font-size: 18px;
    padding-bottom: 28px
}

.plus-minus__btn:hover {
    color: #d60000
}

.plus-minus__val {
    text-align: center;
    width: 3ch;
    padding: 0;
    font-size: 14px;
    border: none;
    margin: 0 5px;
    background-color: transparent
}

.plus-minus__val::-webkit-outer-spin-button,
.plus-minus__val::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.plus-minus__val {
    -moz-appearance: textfield
}

/* ASIDE */
.aside {
    background-color: #eaeaea;
    border-radius: 15px;
    padding: 30px 35px
}

.aside__col:not(:last-child) {
    margin-bottom: 30px
}

@media (min-width: 768px) {
    .aside__row {
        display: flex;
        margin-left: -15px;
        margin-right: -15px
    }

    .aside__col {
        padding-left: 15px;
        padding-right: 15px;
        flex: 0 0 50%;
        max-width: 50%
    }

    .aside__col:not(:last-child) {
        margin-bottom: 0
    }
}

/* ABOUT-COMPANY-BTN */
.about-company-btn {
    color: #818181;
    display: inline-flex;
    align-items: center
}

.about-company-btn:hover {
    text-decoration: none
}

.about-company-btn__arrow {
    color: #d60000;
    flex-shrink: 0;
    margin-right: 12px
}

/* PRODUCT-ACTIONS */
.product-actions__inner {
    display: flex;
    align-items: center;
    margin-left: -5px;
    margin-right: -5px
}

/*.product-actions__btn:not(:last-child){margin-right:6px}*/

/* ACTION-BTN */
.action-btn {
    background-color: transparent;
    border: none;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    line-height: 1
}

.action-btn__icon {
    color: #c2c2c2;
    font-size: 15px;
    flex-shrink: 0
}

.action-btn:hover .action-btn__icon,
.action-btn:hover .action-btn__text,
.action-btn__text__active,
.action-btn--active .action-btn__icon {
    color: #d60000 !important;
}

.action-btn__text {
    color: #777;
    border-bottom: 1px dotted
}

.action-btn__text:last-child {
    margin-left: 11px
}

/* USEFUL-ARTICLES */
.useful-articles__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.useful-articles__item {
    display: flex;
    align-items: baseline
}

.useful-articles__item:not(:last-child) {
    margin-bottom: 13px
}

.useful-articles__item::before {
    content: '';
    left: 0;
    width: 11px;
    height: 11px;
    background: url(../img/list-marker.png);
    margin-right: 13px;
    flex-shrink: 0
}

.useful-articles__link {
    color: #818181;
    font-weight: 700
}

.useful-articles__link:hover {
    color: #0060de
}

/* SWIPER */
.swiper-container {
    display: none
}

.swiper-container-initialized.swiper-container {
    display: block
}

/* SLIDER */
.slider {
    border-radius: 15px;
    overflow: hidden;
    position: relative
}

.slider__link {
    display: block;
    color: inherit;
    height: 100%
}

.slider__img {
    display: block;
    height: 100%;
    object-fit: contain
}

.slider__tip {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #fff;
    min-height: 15px;
    background: url(../img/cursor.png) left center no-repeat;
    padding-left: 23px;
    z-index: 1;
    pointer-events: none
}

@media (min-width: 768px) {
    .slider__tip {
        bottom: 27px;
        right: 40px
    }
}

@media (max-width: 768px) {
    .on-mobile {
        margin: 0 auto;
    }
}

/* LIVE-SEARCH */
.live-search .ui-menu-item-wrapper {
    padding: 0 !important;
    margin: 0 !important
}

.live-search {
    color: #000;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.14);
    background-color: #fff
}

.live-search--search {
    border-radius: 15px
}

.live-search--mobile-search {
    width: 100%;
    overflow-y: scroll;
    max-height: 350px
}

.live-search__link {
    padding: 4px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none
}

.live-search__link:hover .live-search__title {
    text-decoration: underline
}

.live-search__img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    flex-shrink: 0
}

.live-search__title {
    margin: 0 30px 0 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.live-search__price {
    margin-left: auto;
    font-size: 16px;
    text-align: right;
    line-height: 1
}

.live-search__all {
    padding: 10px 15px;
    text-align: center
}

.live-search__all-link {
    color: #6d6d6d;
    text-decoration: none;
    border-bottom: 1px dotted
}

.live-search__all-link:hover {
    color: #d60000
}

/* MANUFACTURER */
.manufacturer {
    background-color: #f2f2f2;
    border-radius: 15px;
    padding: 25px 20px
}

.manufacturer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 15px 30px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))
}

.manufacturer__link {
    color: #818181;
    font-weight: 700
}

.manufacturer__link:hover {
    color: #d60000
}

/* FILTER */
.filter__section {
    padding: 15px 20px
}

.filter__section:not(:last-child) {
    border-bottom: 1px solid #e6e6e6
}

.filter__heading {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 13px
}

.filter__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.filter__item {
    margin-bottom: 8px
}

.filter__label {
    color: #000;
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.filter__check {
    margin-right: 8px
}

.filter-range__row {
    display: flex;
    margin-bottom: 20px
}

.filter-range__col {
    flex: 0 0 50%;
    max-width: 50%
}

.filter-range__val {
    width: 72px;
    border: none;
    padding: 0 10px;
    background-color: #f2f2f2;
    border-radius: 12px;
    color: #000;
    margin-left: 5px;
    height: 24px
}

.filter-range__val:focus {
    background-color: #e9edf6
}

.filter__toggle {
    text-align: center
}

.filter-toggle {
    border: none;
    background-color: transparent;
    padding: 0;
    color: #bcbcbc;
    display: inline-flex;
    align-items: center;
    text-align: center
}

.filter-toggle:hover {
    color: #d60000
}

.filter-toggle__icon {
    margin-left: 5px
}

/* SLIDER-RANGE */
.slider-range {
    height: 3px;
    background-color: #dee4f2;
    border-right: 1.5px;
    margin-bottom: 20px
}

.slider-range .ui-slider-handle {
    width: 12px;
    height: 10px;
    background-color: #d2d2d2;
    top: 100%;
    margin-top: 6px;
    cursor: grab
}

.slider-range .ui-slider-handle::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px;
    border-color: transparent transparent #d2d2d2
}

.slider-range .ui-slider-range {
    height: 100%;
    background-color: #d60000
}

/* PRODUCT-CODE */
.product-code__title {
    color: #777
}

.product-code__val {
    color: #000
}

/* SPEC-TABLE */
.spec-table {
    font-size: 14px
}

.spec-table__tr {
    margin: 0
}

.spec-table__th,
.spec-table__td {
    padding: 6px 18px;
    border-radius: 4px
}

.spec-table__th {
    background-color: #e9e9e9
}

.spec-table__td {
    color: #000;
    margin-left: 0
}

.spec-table__th {
    background-color: transparent
}

@media (min-width: 480px) {
    .spec-table {
        display: table;
        width: 100%;
        border-collapse: collapse
    }

    .spec-table__tr {
        display: table-row
    }


    .spec-table__th {
        border-radius: 4px 0 0 4px
    }

    .spec-table__td {
        border-radius: 0 4px 4px 0
    }

    .spec-table__th,
    .spec-table__td {
        display: table-cell;
        padding: 6px 18px
    }

    .spec-table__td {
        text-align: right
    }
}

.spec-table__tr:nth-child(odd) .spec-table__th,
.spec-table__tr:nth-child(odd) .spec-table__td {
    background-color: #e9e9e9
}

/* REVIEWS */
.reviews__header {
    border-bottom: 1px solid #e4e4e4;
    padding: 41px 20px 43px
}

.reviews__item {
    padding: 20px;
    border-bottom: 1px solid #e4e4e4
}

.reviews__footer {
    text-align: center;
    padding: 15px 20px 34px
}

/* REVIEWS-INFO */
.reviews-info__inner {
    display: flex;
    align-items: center;
    margin-left: -30px;
    margin-top: -10px
}

.reviews-info__text {
    flex-grow: 1;
    margin-left: 30px;
    margin-top: 10px
}

.reviews-info__title {
    width: 100%
}

.reviews-info__meta {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px
}

.reviews-info__rating .rating__stars {
    font-size: 14px
}

.reviews-info__btn {
    margin-left: 30px;
    margin-top: 10px;
    flex: 0 0 175px;
}

.reviews-info__rating,
.reviews-info__total {
    margin-left: 30px
}

.reviews-info__num {
    color: #f90000;
    font-size: 14px;
    font-weight: 700
}

/* REVIEW */
.review__header {
    display: flex;
    flex-wrap: wrap
}

.review__rating {
    margin-bottom: 8px;
    margin-right: 16px
}

.review__name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px
}

.review__date {
    color: #585858;
    background-color: #e4e4e4;
    border-radius: 5px;
    display: inline-block;
    padding: 5px 13px;
    margin-bottom: 14px
}

.review__heading {
    margin-bottom: 7px
}

.review__text p:last-child {
    margin-bottom: 0
}

.review__group:not(:last-child) {
    margin-bottom: 13px
}

/* PRODUCT */
.product {
    color: #585858
}

.product__main {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "media" "sidebar" "content"
}

.product__media {
    grid-area: media
}

.product__content {
    grid-area: content
}

.product__sidebar {
    grid-area: sidebar
}

.product__info {
    background-color: #e4e4e4;
    border-radius: 0 20px 20px 20px;
    padding: 20px
}

.product__price {
    font-size: 24px;
    margin-bottom: 25px
}

.product__buttons {
    margin-bottom: 15px
}

.product__btn {
    width: 100%;
    margin-bottom: 10px
}

.product__delivery {
    background-color: #d3d3d3;
    border-radius: 0 10px 10px 10px;
    padding: 13px 18px
}

.product__delivery a {
    color: #2858a6;
    text-decoration: none;
    border-bottom: 1px dotted
}

.product__delivery a:hover {
    color: #d60000
}

.product__delivery b {
    font-weight: 700;
    color: #000
}

.product__availability {
    margin-bottom: 22px
}

.product__advantages {
    margin-bottom: 30px
}

.product-meta__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -70px;
    margin-top: -10px
}

.product-meta__col {
    margin-left: 70px;
    margin-top: 10px
}

.product__descr {
    font-size: 14px
}

.product__descr ul {
    margin: 0;
    padding-left: 10px;
    list-style: none
}

.product__descr li::before {
    content: "\2022";
    color: #d60000;
    margin-right: 10px
}

.product__descr a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted
}

.product__descr a:hover {
    color: #d60000
}

.product__photos {
    display: flex
}

.product__ribbons {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2
}

.product__gallery {
    margin-right: 10px;
    width: 50px;
    flex-shrink: 0
}

.product__gallery,
.product-photo__swiper {
    height: 162px
}

.product__photo {
    flex-grow: 1;
    min-width: 0;
    position: relative
}

@media (min-width: 400px) {

    .product__gallery,
    .product-photo__swiper {
        height: 210px
    }

    .product__gallery {
        margin-right: 30px
    }
}

@media (min-width: 480px) {
    .product__gallery {
        width: 75px
    }

    .product__gallery,
    .product-photo__swiper {
        height: 239px
    }
}

@media (min-width: 576px) {

    .product__gallery,
    .product-photo__swiper {
        height: 287px
    }
}

@media (min-width: 768px) {

    .product__gallery,
    .product-photo__swiper {
        height: 395px
    }

    .product__gallery {
        width: 122px
    }

    .product__photo:hover .product__ribbons {
        display: none
    }
}

@media (min-width: 992px) {
    .product__main {
        grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
        grid-template-areas: "media sidebar" "content sidebar"
    }

    .product__gallery,
    .product-photo__swiper {
        height: 322px
    }
}

@media (min-width: 1200px) {
    .product__info {
        padding: 30px
    }

    .product__gallery,
    .product-photo__swiper {
        height: 436px
    }
}

/* ADVANTAGES */
.advantages__list {
    margin: 0;
    padding: 0;
    list-style: none
}

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

.advantages__item:not(:last-child) {
    margin-bottom: 12px
}

.advantages__icon {
    font-size: 17px;
    margin-right: 11px
}

.advantages__link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted
}

.advantages__link:hover {
    color: #d60000
}

/* COMPARE */
.compare__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-left: -30px
}

.compare__total,
.compare__clear {
    margin-left: 30px
}

.compare__row {
    display: flex
}

.compare__row--products {
    margin-left: -15px;
    margin-right: -15px
}

.compare-products__row {
    margin-left: -15px;
    margin-right: -15px
}

.compare__sidebar--products,
.compare__content--products {
    padding-left: 15px;
    padding-right: 15px
}

.compare__sidebar {
    flex: 0 0 50%;
    max-width: 50%
}

.compare__content {
    flex: 0 0 50%;
    max-width: 50%
}

.compare__diff-label {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    line-height: 1
}

.compare__diff-checkbox {
    flex-shrink: 0;
    margin-right: 19px
}

@media (min-width: 768px) {
    .compare__sidebar {
        flex: 0 0 25%;
        max-width: 25%
    }

    .compare__content {
        flex: 0 0 75%;
        max-width: 75%
    }
}

/* COMPARE-TABLE */
.compare-table__th,
.compare-table__td {
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px
}

.compare-table__th {
    color: #585858
}

.compare-table__td {
    color: #000;
    font-size: 14px
}

.compare-table__th:nth-child(odd),
.compare-table__td:nth-child(odd) {
    background-color: #e9e9e9
}

.compare-table__swiper {
    padding-bottom: 25px
}

.compare-products__swiper {
    padding-bottom: 35px
}

/* ORDERS */
.orders__table {
    width: 100%;
    border-spacing: 0 5px
}

.orders__colname {
    padding: 0 10px 10px;
    color: #6e7584;
    text-align: left;
    font-weight: 400;
    white-space: nowrap
}

.orders__cell {
    padding: 5px 10px;
    color: #51596a
}

.orders__row td {
    background-color: #ebeff7;
    height: 36px
}

.orders__row--open .orders__dropdown {
    transform: rotate(180deg)
}

.orders__dropdown {
    cursor: pointer;
    padding: 5px;
    background-color: transparent;
    line-height: 1;
    border: none
}

.orders__cell:first-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
    padding-left: 20px
}

.orders__cell:last-child {
    border-radius: 0 10px 10px 0;
    padding-right: 30px
}

.orders__num {
    font-size: 14px;
    cursor: pointer;
    color: #000;
    font-weight: 700
}

.orders__num:hover {
    color: #d60000
}

.orders__price {
    font-size: 14px
}

.orders__repeat {
    color: #51596a;
    text-decoration: underline;
    white-space: nowrap
}

.orders__repeat:hover {
    text-decoration: none
}

.orders__details {
    display: none
}

.orders__row--open+.orders__details {
    display: table-row
}

.orders__content {
    padding: 15px 0
}

/* ORDER-METHODS */
.order-methods {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

/* RADIO-CARD */
.radio-card {
    cursor: pointer;
    padding: 15px;
    display: block;
    position: relative
}

.radio-card__holder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #e4e4e4;
    border-radius: 15px;
    pointer-events: none
}

.radio-card__control:checked+.radio-card__holder,
.radio-card__control.checked+.radio-card__holder {
    border-color: #d60000
}

.radio-card__row {
    display: flex;
    align-items: center
}

.radio-card__control {
    flex-shrink: 0;
    margin-right: 12px
}

.radio-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #000
}

.radio-card__descr {
    color: #777;
    margin-left: 34px;
    margin-top: 5px;
    display: block
}

@media (min-width: 992px) {
    .radio-card {
        padding: 16px 23px
    }
}

/* RADIO */
.radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle
}

.radio:checked::before,
.radio.checked::before {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    margin-top: -2px
}

.radio--primary {
    background-color: #e4e4e4
}

.radio--primary:checked,
.radio--primary.checked {
    color: #fff;
    background-color: #d60000
}

.radio--secondary {
    background-color: #f7f7f7;
    border: 1px solid #ccc
}

.radio--secondary:checked {
    color: #25bb21;
    background-color: transparent;
    border-color: currentColor
}

/* STYLED-PICKER */
.styled-picker {
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.styled-picker__control {
    flex-shrink: 0;
    margin-right: 10px
}

.styled-picker__text {
    color: #888
}

/* TABS */
.tabs__item--active {
    cursor: default
}

.tabs__pane {
    display: none
}

.tabs__pane--active {
    display: block
}

/* GALLERY */
.gallery__swiper {
    height: 100%
}

.gallery__item {
    padding: 1px;
    height: 100%
}

.gallery__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid #e4e4e4;
    cursor: pointer
}

.gallery .swiper-slide-thumb-active .gallery__img {
    border-color: #d60000
}

.product-popup {
    display: flex;
    align-items: center
}

.product-popup__img {
    width: 110px;
    flex-shrink: 0;
    margin-right: 15px
}

.product-popup__title {
    color: #000;
    font-size: 14px;
    margin-bottom: 20px
}

.product-popup__price {
    font-size: 18px;
    margin-left: 30px;
    margin-top: 5px
}

.product-popup__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -30px
}

.product-popup__count {
    margin-left: 30px;
    margin-top: 5px
}

.product-popup__info {
    background-color: #e8e8e8;
    border-radius: 0 15px 15px 15px;
    padding: 5px 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 45px
}

.product-popup__meta,
.product-popup__button {
    margin: 5px 12px
}

/* GO-BACK-LINK */
.go-back-link {
    color: #6d6d6d;
    text-decoration: none;
    display: inline-flex;
    align-items: center
}

.go-back-link:hover {
    text-decoration: underline
}

.go-back-link__icon {
    flex-shrink: 0;
    margin-right: 12px
}

/* ACCOUNT-GRID */
.account-grid {
    display: grid;
    gap: 50px 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

@media (min-width: 768px) {
    .account-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

/* FOOTER-TOP */
.footer-top {
    background-color: #ddd;
    padding: 10px 0
}

.footer-top__grid {
    display: grid;
    gap: 15px 30px;
    align-items: center;
    justify-items: center
}

@media (min-width: 576px) {
    .footer-top__logo {
        grid-area: logo
    }

    .footer-top__location {
        grid-area: location;
        display: flex;
        justify-content: space-between;
    }

    .footer-top__phones {
        grid-area: phones
    }

    .footer-top__grid {
        grid-template-areas: "logo logo" "location phones"
    }
}

@media (min-width: 992px) {
    .footer-top__grid {
        justify-items: legacy;
        grid-template-areas: "logo location phones"
    }
}

@media (max-width: 991px) {
    .footer-top__location .footer-phone:first-child {
        padding-right: 10px;
    }

    .footer-top__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

    }

    .footer-top__logo {
        width: 100%;
        text-align: center;
    }

    .footer-top__logo a {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .footer-phone:first-child {
        padding-bottom: 10px;
    }
}

@media (max-width: 450px) {
    .footer-top__grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer-top__location .footer-phone span {
    display: block;
    line-height: 100%;
}

.footer-top__location .footer-phone a {
    font-weight: 600;
    font-size: 14px;
}

/* FOOTER-BOTTOM */
.footer-bottom {
    padding-top: 30px;
    padding-bottom: 50px
}

.footer-bottom__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr))
}

.footer-bottom__social {
    margin-bottom: 40px
}

.footer-bottom__worktime {
    margin-bottom: 54px
}

/* FOOTER-NAV */
.footer-nav__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-nav__item:not(:last-child) {
    margin-bottom: 7px
}

.footer-nav__link {
    color: #73757f;
    text-decoration: none
}

.footer-nav__link:hover {
    text-decoration: underline;
    color: #d60000
}

.footer-phones__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -58px;
    justify-content: center
}

.footer-phones__item {
    margin-left: 58px
}

@media (min-width: 992px) {
    .footer-phones__inner {
        justify-content: flex-end
    }
}

/* MOB-SIDEBAR */
.mob-sidebar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    font-size: 16px;
    display: none
}

.mob-sidebar--open {
    display: block
}

.mob-sidebar__overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3d464d;
    opacity: 0;
    transition: opacity .3s
}

.mob-sidebar--animated .mob-sidebar__overlay {
    opacity: .9
}

.mob-sidebar__body {
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    transition: transform .3s;
    display: flex;
    flex-direction: column;
    transform: translateX(calc(-100% - 30px))
}

.mob-sidebar--animated .mob-sidebar__body {
    transform: translateX(0)
}

.mob-sidebar__header {
    height: 55px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    border-bottom: 1px solid #ebebeb
}

.mob-sidebar__title {
    padding: 0 20px;
    font-weight: 700;
    flex-grow: 1
}

.mob-sidebar__close {
    border: none;
    border-left: 1px solid #ebebeb;
    background: transparent;
    height: 54px;
    width: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    fill: #999;
    transition: fill .2s
}

.mob-sidebar__close:focus,
.mob-sidebar__close:hover {
    color: #d60000
}

.mob-sidebar__content {
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

/* MOB-NAV */
.mob-nav {
    list-style: none;
    padding: 0;
    margin: 0
}

.mob-nav__item {
    border-bottom: 1px solid #ebebeb
}

.mob-nav__title {
    display: flex
}

.mob-nav__link {
    padding: .75em 20px;
    flex-grow: 1;
    color: inherit;
    text-decoration: none
}

a.mob-nav__link:hover {
    color: #d60000
}

.mob-nav__toggle {
    border: none;
    border-left: 1px solid #ebebeb;
    background: transparent;
    padding: 0;
    width: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d60000;
    transition: color .2s
}

.mob-nav__toggle--active .arrow {
    transform: rotate(-90deg)
}

.mob-subnav {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f7f7f7;
    font-size: 14px;
    display: none
}

.mob-subnav .mob-nav__item:last-child {
    border: none
}

/* UTILITES */
.u-text-accented {
    color: #000;
    font-size: 14px
}

.u-text-center {
    text-align: center
}

.u-text-right {
    text-align: right
}

.u-text-nowrap {
    white-space: nowrap
}

.u-color-primary {
    color: #d60000
}

.u-color-success {
    color: #249b00
}

.u-color-secondary {
    color: #8e8e8e
}

.u-color-info {
    color: #2d55ac
}

.u-color-dark {
    color: #000
}

.u-min-width {
    width: 1%
}

.u-mt-sm {
    margin-top: 35px
}

.u-mt-lg {
    margin-top: 50px
}

.u-mt-xl {
    margin-top: 65px
}

.u-mb-sm {
    margin-bottom: 15px
}

.u-mb-md {
    margin-bottom: 30px
}

.u-mb-lg {
    margin-bottom: 50px
}

.u-mb-xl {
    margin-bottom: 65px
}

.filter__section .filter__item {
    margin-bottom: 0px !important;
}

.filter__section.yes-no {
    border: 0px !important;
    padding-bottom: 0px;
}

.hover-pointer:hover {
    cursor: pointer;
}

.text-center {
    text-align: center;
}

#msMiniCart {
    font-size: .8em;
}

#msMiniCart h5 {
    margin: 0;
}

#msMiniCart .empty {
    display: block;
}

#msMiniCart .not_empty {
    display: none;
}

#msMiniCart.full .empty {
    display: none;
}

#msMiniCart.full .not_empty {
    display: block;
}

.city_select_wrapper {
    display: flex;
    justify-content: space-between;
}

#city_placement .ui-menu {
    background: white !important;
}

@media (max-width: 1199px) {
    .products-list--vertical {
        grid-template-columns: repeat(3, minmax(175px, 1fr));
    }
}

@media (max-width: 767px) {
    .products-list--vertical {
        grid-template-columns: repeat(2, minmax(175px, 1fr));
    }
}

@media (max-width: 310px) {
    .products-list--vertical {
        grid-template-columns: repeat(1, minmax(175px, 1fr));
    }
}

.filter__title {
    line-height: 1;
}

.filter__section .filter__item {
    margin-bottom: 3px !important;
}

.yes-no:not(.yesno-outer) {
    padding-top: 0px !important;
}

.cart-btn__text:hover,
.cart-btn__text:hover * {
    color: #d60000 !important;
}

.filter__section:last-child {
    border-top: 1px solid #e6e6e6;
    margin-top: 8px;
}

.filter-toggle {
    text-decoration: underline;
}

.filter__heading {
    padding-left: 20px;
    position: relative;
}

.filter__section .filter__heading:hover {
    cursor: pointer;
}

.filter__section .filter__heading:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #d60000;
    top: 50%;
    margin-top: -4px;
    left: 4px;
}

.filter__section.active .filter__heading:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #d60000 transparent transparent transparent;
    top: 50%;
    margin-top: -3px;
    left: 4px;
}

.filter__section:not(.yes-no):not(.active) .filter__heading {
    margin-bottom: 0px;
}

.filter__section:not(.yes-no):not(.active) .filter-range,
.filter__section:not(.yes-no):not(.active) .filter__list,
.filter__section:not(.yes-no):not(.active) .u-text-center {
    display: none;
}

.product__sidebar {
    position: relative;
}

.siderbar_widget_inner {
    position: relative;
    height: 100%;
}

.red {
    color: #d60000 !important;
}

.popup .rating__icon {
    width: 1.5em;
    height: 1.5em;
}

.italic {
    font-style: italic;
}

.reviews__item:last-child {
    border-bottom: 0px !important;
}

.btn-fred {
    background: transparent !important;
    border: 2px solid #d60000;
    color: #d60000;
}

.text-underline {
    text-decoration: underline;
}

.popup-large {
    width: 800px;
}

.bigred {
    color: #d60000;
    font-size: 1.2em;
}

.order-table {
    overflow-y: hidden;
}

.map-wrapper {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-between;
}

.contacts-wrapper .left,
.contacts-wrapper .right {
    flex: 0 0 50%;
    flex-grow: 1;
}

.alertify-notifier {
    z-index: 1000000000 !important;
}

.ui-autocomplete {
    left: 0px !important;
    top: 43px !important;
}

.yaMap {
    height: 647px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.yaMapSpinner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center
}

.yaMapShowBtn {
    background: #fff;
    border-radius: 3px 18px 18px;
    border: 1px solid transparent;
    padding: 15px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.17;
    transition: all ease 0.2s;
    cursor: pointer;
}

.yaMapShowBtn:hover {
    box-shadow: inset 0 0 0 1px #D60000;
}

.yaMapShowBtn.active {
    box-shadow: inset 0 0 0 2px #D60000;
}

.yaMapWorkTimeBlock {
    font-size: 12px;
    line-height: 1.17;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.iconWorkTime {
    margin-right: 8px;
}

.yaBallonBlock {
    position: absolute;
    padding: 32px;
    background: #FFFFFF;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.14);
    border-radius: 15px;
}

.yaBallonBlock .arrow {
    display: none;
}

.yaBallonBlock .arrow {
    display: none;
}

.yaBallonBlock .close {
    position: absolute;
    right: 15px;
    top: 10px;
    text-decoration: none;
    font-size: 22px;
    color: inherit;
}

.yaMapRow {
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.yaMapRow:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.yaMapRowAddress {
    font-weight: 500;
    font-size: 14px;
}

.yaMapWorkTimeZg {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.17;
    color: #222222;
    margin-bottom: 16px;
}

.yaMapRow .phoneBig a {
    margin-bottom: 8px;
    text-decoration: none;
    white-space: nowrap;
    color: #000;
    display: inline-block;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.yaMapRow .phonesViberWhatsApp {
    white-space: nowrap;
    color: #000;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
}

.yaMapRow .phoneMin {
    color: inherit;
    margin-right: 16px;
    text-decoration: none;
}

.phonesVWitem {
    margin-right: 8px;
}

.galleryRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}

.galleryCol {
    padding: 8px;
}

.galleryRow img {
    border-radius: 16px;
}

.galleryCol4 {
    width: 25%;
}

.galleryCol3 {
    width: 33.3333%;
}

.galleryCol2 {
    width: 50%;
}

.hoverBlock {
    position: relative;
}

.galleryCol a {
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
}

.galleryCol img {
    display: block;
}

.hoverInset {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    background: rgba(214, 0, 0, 0.67);
    opacity: 0;
    transition: all ease 0.2s;
}

.hoverBlock:hover .hoverInset {
    opacity: 1;
}

.hoverInset svg {
    width: 20px;
}

.hoverInset svg path {
    fill: #fff;
}

.hoverInset .search__icon {
    position: initial;
}

@media (min-width: 768px) {
    .on-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {

    .contacts-wrapper .left,
    .contacts-wrapper .right {
        flex: 0 0 100%;
        flex-grow: 1;
    }

    .contacts-wrapper {
        display: block;
    }

    .on-desktop {
        display: none !important;
    }

    .yaBallonBlock {
        padding: 18px;
    }
}

@media (max-width: 991px) {
    .sidebarNoHiddenMobile {
        display: block !important;
    }

    #sticker {
        display: none !important;
    }

    .articles-grid {
        grid-template-columns: repeat(3, minmax(205px, 1fr));
    }
}

@media (max-width: 767px) {

    .galleryCol4,
    .galleryCol2 {
        width: 33.33%;
    }

    .articles-grid {
        grid-template-columns: repeat(2, minmax(205px, 1fr));
    }

    .sort__btn {
        margin-left: 10px;
    }

    .product__media .product__photos .product__gallery {
        display: none !important;
    }

    .product__media .product__photos .swiper__nav--prev {
        left: 0px !important;
    }

    .product__media .product__photos .swiper__nav--next {
        right: 0px !important;
    }
}

@media (max-width: 575px) {

    .galleryCol4,
    .galleryCol2,
    .galleryCol3 {
        width: 50%;
    }

    .yaMap {
        height: 600px;
    }

    .articles-grid {
        grid-template-columns: repeat(1, minmax(205px, 1fr));
    }

    .sort__title--inner {
        display: none !important;
    }

    .comparison .action-btn__text {
        display: none !important;
    }

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

    .spec-table__tr {
        display: flex;
        justify-content: space-between;
    }

    .spec-table__tr>*:first-child {
        flex-grow: 1;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .spec-table__tr>*:last-child {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        text-align: right;
    }

    .box__link {
        padding: 9px 9px;
    }

    .company__row {
        display: block !important;
        width: 100%;
    }
}

@media (max-width: 410px) {
    .products-list--vertical {
        gap: 5px;
    }

    .product-v {
        padding: 10px;
    }

    .sort__btn {
        padding-left: 5px;
        padding-right: 5px;
    }
}


#cdek2_map_ajaxx {
    display: block !important;
}

#transport_delivery_id {
    border: 2px solid #e4e4e4;
}


::-webkit-scrollbar-button {
    background-image: url('');
    background-repeat: no-repeat;
    width: 6px;
    height: 0px
}

::-webkit-scrollbar-track {
    background-color: #cacaca
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 40px;
    border-radius: 40px;
    background-color: #9d9d9d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9d9d9d;
}

::-webkit-resizer {
    background-image: url('');
    background-repeat: no-repeat;
    width: 5px;
    height: 0px
}

::-webkit-scrollbar {
    width: 5px;
}

.select2-container--default .select2-selection--single {
    border: 2px solid #e4e4e4 !important;
    border-radius: 10px !important;
    height: 48px !important;
}

.select2-results__option {
    border-bottom: 1px solid #cacaca !important;
    margin-right: 15px !important;
    color: #000 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #000 !important;
    border-bottom: 1px solid #cacaca !important;
    background: #cacaca url(http://goodweld.ru/galka2.png) no-repeat !important;
    background-position: right center !important;
}

.select2-dropdown {
    background-color: #e4e4e4 !important;
    border: 0px solid #aaa !important;
    border-radius: 4px !important;
}

.select2-container .select2-selection--single {
    z-index: 99999 !important;
    position: relative !important;
}

.select2-search--dropdown {
    display: none !important;
}

.select2-dropdown {
    padding-top: 10px !important;
    margin-top: -10px !important;
}

:focus {
    outline-style: none;
    outline-width: 0px !important;
    outline-color: none !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 0px 0px 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
    background: url(http://goodweld.ru/strel.png) no-repeat !important;
    background-position: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 0px 0px 0 4px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 47px !important;
    padding-left: 20px !important;
}

.select2-container {
    width: 100% !important;
}

cont .company__days {
    width: 5px;
}

cont .company__price {}

cont .company__descr {
    width: 170px;
}

cont .company__name {
    width: 170px;
}

@media screen and (max-width:600px) {
    cont .company__days {
        width: auto;
    }

    cont .company__price {}

    cont .company__descr {
        width: auto;
    }

    cont .company__name {
        width: auto;
    }
}

.product-v__img {
    padding: 5px;
    height: 180px;
    object-fit: contain;
}

.cust-font {
    font-size: 25px;
}

/* КНОПКА НАВЕРХ */
.btn-scroll-to-top {
    position: fixed;
    bottom: 8vw;
    opacity: 0;
    pointer-events: none;
    right: 3vw;
    border: unset;
    background: #d60000;
    z-index: 9999999;
    transition: all ease 0.3s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.show {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

/* бЛОК ПРЕИМУЩЕСТВ */
.advantages_title {
    font-weight: 600;
    font-size: clamp(1.625rem, 1.187rem + 1.75vw, 2.5rem);
    color: #424242;
}

.advantages_inner * {
    margin-bottom: 0;
}

.advantages_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 55px;
}

.advantages_item {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.advantages_number {
    font-weight: 800;
    font-size: clamp(1.625rem, 1.187rem + 1.75vw, 2.5rem);
    line-height: 112%;
    color: #d60000;
}

.advantages_item_title {
    font-weight: 700;
    font-size: 22px;
    color: #000;
}

.advantages_item_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}