@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
* {
    margin: 0px;
    padding: 0px;
    font-family: "Open Sans", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

.container {
    width: 1280px;
    max-width: 100%;
    margin: 0px auto;
}

a {
    text-decoration: none;
}

.notification {
    width: 300px;
    height: auto;
    box-sizing: border-box;
    padding: 0px 10px;
    border-radius: 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    right: -400px;
    transition: 0.5s all;
    z-index: 9999999;
}
.notification.show {
    right: 20px;
}
.notification .notification_body h4 {
    font-size: 12px;
    color: #000;
    padding: 10px 0px;
    font-weight: 300;
}
.notification a {
    display: flex;
    min-width: 60px;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}
.notification a img {
}
.notification.notsuccess {
    background-color: #6ab04c;
}
.notification.notsuccess .notification_body h4 {
    color: #fff;
}
.notification.notsuccess a img {
    filter: brightness(1) invert(1);
}
.notification.notalready {
    background-color: #f9ca24;
}
.notification.notalready .notification_body h4 {
    color: #fff;
}
.notification.notalready a img {
    filter: brightness(1) invert(1);
}
.top {
    width: 100%;
    height: 40px;
    background-color: #e7e7e7;
}
.top .top__info {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top .top__info ul li {
    display: inline-flex;
    padding: 0px 7px;
}
.top .top__info ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.header {
    width: 100%;
    height: 80px;
    background-color: #000;
}
.header .header__block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.header .header__block .header__left {
    display: flex;
    align-items: center;
}
.header .header__block .header__left .header__logo {
    margin-right: 30px;
}
.header .header__block .header__left .header__logo img {
    height: 50px;
}
.header .header__block .header__left .header__menu ul {
    width: 100%;
    height: 80px;
}
.header .header__block .header__left .header__menu ul li {
    display: inline-flex;
    height: 100%;
    float: left;
    box-sizing: border-box;
    padding: 0px 25px;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.header .header__block .header__left .header__menu ul li a {
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
}
.header .header__block .header__left .header__menu ul li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.header .header__block .header__right ul {
    display: flex;
    height: 80px;
    align-items: center;
}
.header .header__block .header__right ul li {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.header .header__block .header__right ul li.hmenu {
    display: none;
}

.subnav {
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}
.subnav .subnav__block {
    width: 100%;
    height: 60px;
}
.subnav .subnav__block ul {
    width: 100%;
    height: 60px;
}
.subnav .subnav__block ul li {
    display: inline-flex;
    height: 60px;
    padding: 0px 25px;
    align-items: center;
}
.subnav .subnav__block ul li.active {
    background-color: #960a45;
}
.subnav .subnav__block ul li.active a {
    color: #fff;
}
.subnav .subnav__block ul li a {
    font-size: 15px;
    color: #000;
}
.subnav .subnav__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    display: none;
}

.cover {
    width: 100%;
    height: 500px;
    background-image: url("../img/cover.jpg");
    background-position: 50% 50%;
    background-size: cover;
    display: none;
}
.cover.cover--large {
    display: block;
}
.cover .cover__block {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cover .cover__block .cover__left {
    width: 60%;
}
.cover .cover__block .cover__left h3 {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0px 5px 3px rgba(0, 0, 0, 0.3);
}
.cover .cover__block .cover__left ul li {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 10px 0px;
    font-weight: 600;
    color: #fff;
}
.cover .cover__block .cover__right {
    width: 40%;
}
.cover .cover__block .cover__right a {
    width: 100%;
    height: 100px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 300;
}

.products {
    width: 100%;
    height: auto;
    padding: 50px 0px;
}
.products .products__block {
    width: 100%;
    height: auto;
}
.products .products__block .products__list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.products .products__block .products__list .products__item {
    margin-top: 50px;
    flex-basis: calc(20% - 10px);
}
.products
    .products__block
    .products__list
    .products__item
    .products__item-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: 50% 50%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.products
    .products__block
    .products__list
    .products__item
    .products__item-content {
    box-sizing: border-box;
    padding: 10px 5px;
}
.products
    .products__block
    .products__list
    .products__item
    .products__item-content
    h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}
.products
    .products__block
    .products__list
    .products__item
    .products__item-content
    p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.products
    .products__block
    .products__list
    .products__item
    .products__item-content
    p.red {
    color: #960a45;
}
.products .products__block .products__button {
    width: 100%;
    height: auto;
    padding-top: 30px;
    display: flex;
    justify-content: center;
}
.products .products__block .products__button a {
    width: 270px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #960a45;
    color: #fff;
    font-size: 14px;
}

.product {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 30px;
}
.product .product__breadcrumb ul li {
    display: inline-block;
    padding-right: 20px;
    font-size: 12px;
    color: #969696;
    position: relative;
}
.product .product__breadcrumb ul li::after {
    position: absolute;
    bottom: 2px;
    right: 4px;
    content: ">";
    font-size: 10px;
}
.product .product__breadcrumb ul li:last-child::after {
    display: none;
}
.product .product__block {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}
.product .product__block .product__images {
    flex-basis: calc(65% - 15px);
    display: flex;
    flex-direction: column;
}
.product .product__block .product__images .product__images-list {
    width: 100%;
    order: 2;
    padding-top: 20px;
    height: auto;
}
.product .product__block .product__images .product__images-list ul li {
    list-style: none;
    width: 80px;
    height: 80px;
    display: inline-flex;
    background-size: cover;
    background-position: 50% 0%;
    margin-right: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    cursor: pointer;
}
.product .product__block .product__images .product__images-list ul li:hover {
    border: 3px solid #6ab04c;
}
.product .product__block .product__images .product__images-list ul li.active {
    border: 3px solid #960a45;
}
.product .product__block .product__images .product__images-big {
    min-height: 600px;
    background-size: cover;
    background-position: 50% 0%;
    flex: 1;
    order: 1;
    width: 100%;
}
.product .product__block .product__content {
    flex-basis: calc(35% - 15px);
}
.product .product__block .product__content h4 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}
.product .product__block .product__content .mini-logo {
    padding-top: 35px;
}
.product .product__block .product__content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
}
.product .product__block .product__content .product__content-input {
    width: 100%;
    height: auto;
    margin-top: 35px;
    position: relative;
}
.product .product__block .product__content .product__content-input span {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}
.product .product__block .product__content .product__content-input select {
    width: 100%;
    height: 45px;
    border: 1px solid #000;
    box-sizing: border-box;
    padding-left: 15px;
    margin-top: 7px;
}
.product
    .product__block
    .product__content
    .product__content-input
    .fit-assistent-label {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 12px;
    color: #960a45;
}
.product .product__block .product__content h5 {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    padding: 15px 0px;
}
.product .product__block .product__content .product__colors ul li {
    display: inline-block;
    margin-right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    border: 1px solid #000;
}
.product .product__block .product__content .product__colors ul li::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: transparent;
}
.product .product__block .product__content .product__tabs {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.product .product__block .product__content .product__tabs .product__tab {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.product
    .product__block
    .product__content
    .product__tabs
    .product__tab
    .product__tab-top {
    width: 100%;
    height: 60px;
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.product
    .product__block
    .product__content
    .product__tabs
    .product__tab
    .product__tab-top
    h6 {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
.product
    .product__block
    .product__content
    .product__tabs
    .product__tab
    .product__tab-top::after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}
.product
    .product__block
    .product__content
    .product__tabs
    .product__tab.active
    .product__tab-top::after {
    content: "-";
}
.product
    .product__block
    .product__content
    .product__tabs
    .product__tab.active
    .product__tab-content {
    display: block;
}
.product
    .product__block
    .product__content
    .product__tabs
    .product__tab
    .product__tab-content {
    padding-bottom: 20px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    display: none;
}
.product .product__block .product__content .product__button {
    width: 100%;
    height: auto;
    padding-top: 15px;
}
.product .product__block .product__content .product__button a {
    width: 100%;
    height: 40px;
    background-color: #960a45;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.cart {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.cart .cart__title h3 {
    font-size: 1.7rem;
    color: #000;
    font-weight: 300;
}
.cart .cart__blocks {
    width: 100%;
    height: auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.cart .cart__blocks .cart__blocks--left {
    flex-basis: 43%;
}
.cart .cart__blocks .cart__blocks--left h3 {
    font-size: 20px;
    font-weight: 300;
    padding: 10px 0px;
    border-bottom: 1px solid #000;
}
.cart .cart__blocks .cart__blocks--left .cart__items {
    width: 100%;
    height: auto;
}
.cart .cart__blocks .cart__blocks--left .cart__items .cart__items--item {
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--image {
    width: 85px;
    min-width: 85px;
    height: 85px;
    background-size: cover;
    background-position: 50% 50%;
    border: 1px solid #000;
    box-sizing: border-box;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--info {
    flex: 1;
    box-sizing: border-box;
    padding: 3px 10px;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--info
    h4 {
    font-size: 16px;
    font-weight: 600;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--info
    p {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price {
    width: 80px;
    min-width: 80px;
    text-align: right;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    .item--price--quantity {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    padding-left: 25px;
    box-sizing: border-box;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    .item--price--quantity
    ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    .item--price--quantity
    ul
    li {
    list-style: none;
    font-size: 18px;
    cursor: pointer;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    .item--price--quantity
    ul
    li:hover {
    color: #960a45;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    .item--price--quantity
    ul
    li.qvalue {
    font-size: 14px;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    span {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    em {
    font-style: normal;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: block;
    transition: 0.2s color;
}
.cart
    .cart__blocks
    .cart__blocks--left
    .cart__items
    .cart__items--item
    .item--price
    em:hover {
    color: #960a45;
}
.cart .cart__blocks .cart__blocks--left .cart__row {
    box-sizing: border-box;
    padding: 15px 0px;
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
}
.cart .cart__blocks .cart__blocks--left .cart__row h4 {
    font-size: 14px;
    font-weight: 300;
}
.cart .cart__blocks .cart__blocks--right {
    flex-basis: 50%;
}
.cart .cart__blocks .cart__blocks--right h3 {
    font-size: 20px;
    font-weight: 300;
    padding: 10px 0px;
    border-bottom: 1px solid #000;
}
.cart .cart__blocks .cart__blocks--right .cart__form {
    width: 100%;
    height: auto;
}
.cart .cart__blocks .cart__blocks--right .cart__form form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cart .cart__blocks .cart__blocks--right .cart__form form .cart__form--block {
    flex-basis: calc(50% - 5px);
}
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    input,
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    select {
    -webkit-appearance: none;
    width: 100%;
    height: 40px;
    border: 1px solid #000;
    margin-top: 10px;
    box-sizing: border-box;
    padding-left: 10px;
    border-radius: 0px;
    background-color: transparent;
    outline: none;
}

.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    input[type="checkbox"] {
    display: none;
}
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    input[type="checkbox"]
    + label {
    background: #999;
    border: 1px solid #999;
    background: transparent;
    height: 20px;
    width: 20px;
    display: inline-block;
    padding: 0 0 0 0px;
    cursor: pointer;
}
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    input[type="checkbox"]:checked
    + label {
    background: #6ab04c;
    text-decoration: line-through;
    height: 20px;
    width: 20px;
    display: inline-block;
    padding: 0 0 0 0px;
}
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    input[type="checkbox"]:checked
    + label
    + label {
    text-decoration: line-through;
}
.cart
    .cart__blocks
    .cart__blocks--right
    .cart__form
    form
    .cart__form--block
    input[type="checkbox"]
    + label
    + label {
    color: white;
    font-size: 1.2em;
}

.cart .cart__blocks .cart__blocks--right .cart__form form .cart__row {
    padding: 10px 0px;
}
.cart .cart__blocks .cart__blocks--right .cart__form form .cart__row h4 {
    font-size: 16px;
    font-weight: 300;
}
.cart .cart__blocks .cart__blocks--right .cart__form form button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    font-weight: 600;
    border: 0px;
    cursor: pointer;
    margin-top: 20px;
}
.cart .cart__blocks .cart__blocks--right .cart__row ul {
    padding-top: 10px;
}
.cart .cart__blocks .cart__blocks--right .cart__row ul li {
    list-style: none;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    box-sizing: border-box;
    padding: 4px;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
}
.cart .cart__blocks .cart__blocks--right .cart__row ul li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.cart .cart__blocks .cart__blocks--right .cart__row ul li.active {
    background-color: #960a45;
    color: #fff;
}

/*# sourceMappingURL=style.css.map */

.footer {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 40px 0px;
    background-color: #000;
    margin-top: 80px;
}

.footer .footer__block {
    width: 100%;
    height: auto;
    display: flex;
}

.footer .footer__block .footer__left,
.footer .footer__block .footer__right {
    flex-basis: 50%;
}
.footer .footer__block .footer__left ul li {
    display: inline-block;
    margin: 0px;
    padding: 0px 5px;
}
.footer .footer__block .footer__left ul li a img {
    width: auto;
    height: 40px;
    margin: 0px;
}
.footer .footer__block .footer__left .bigmonri {
    max-width: 300px;
    margin-top: 15px;
}
.footer .footer__block .footer__left .bigmonri img {
    max-width: 100%;
}
.footer .footer__block .footer__right {
    display: flex;
}
.footer .footer__block .footer__right .footer__list {
    margin-right: 30px;
}
.footer .footer__block .footer__right .footer__list h5 {
    font-size: 17px;
    color: #fff;
}
.footer .footer__block .footer__right .footer__list ul li {
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.footer .footer__block .footer__right .footer__list ul li a {
    color: #fff;
}

.products__filters {
    width: 100%;
    height: auto;
}
.products__filters form {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.products__filters form .filter__block {
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.products__filters form .filter__block label {
    height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.products__filters form .filter__block input,
.products__filters form .filter__block select {
    width: 230px;
    min-width: 230px;
    max-width: 230px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.7);
    padding-left: 15px;
    color: #4d4d4d;
}
.products__filters form .filter__block button {
    width: 150px;
    height: 35px;
    border: 0px;
    background-color: #960a45;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
@media screen and (max-width: 1361px) {
    .cover--large {
        display: none !important;
    }
    .cover--big {
        display: block;
    }
}

@media screen and (max-width: 1280px) {
    .container {
        padding: 0px 15px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 960px) {
    .cover--big {
        display: none !important;
    }
    .cover--medium {
        display: block;
    }
    .products__filters form {
        flex-wrap: wrap;
    }
    .header .header__block .header__left .header__menu {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        background-color: #fff;
        display: none;
    }
    /* .header .header__block .header__left .header__menu ul {
        height: auto;
    }
    .header .header__block .header__left .header__menu ul li {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center; */
    /* } */
    .products .products__block .products__list .products__item {
        flex-basis: calc(25% - 10px);
    }
    .cart .cart__blocks {
        flex-wrap: wrap;
    }
    .cart .cart__blocks .cart__blocks--left,
    .cart .cart__blocks .cart__blocks--right {
        flex-basis: 100%;
    }
    .cart .cart__blocks .cart__blocks--right {
        margin-top: 20px;
    }
}

@media screen and (max-width: 880px) {
    .products .products__block .products__list .products__item {
        flex-basis: calc(33.33% - 10px);
    }
}

@media screen and (max-width: 840px) {
    .product .product__block {
        flex-wrap: wrap;
    }
    .product .product__block .product__images {
        flex-basis: 100%;
        /* order: 2; */
    }
    .product .product__block .product__content {
        flex-basis: 100%;
        padding-top: 20px;
        /* order: 1; */
    }
}

@media screen and (max-width: 640px) {
    .subnav {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        background-color: #fff;
        display: none;
        padding-top: 80px;
    }
    .header .header__block .header__right ul li.hmenu {
        display: flex;
    }

    .subnav .subnav__block {
        height: auto;
    }
    .subnav .subnav__block ul li {
        width: 100%;
        height: 50px;
        justify-content: center;
    }
    .subnav .subnav__close {
        display: flex;
    }
    .subnav .subnav__block ul li {
        padding: 0px;
    }

    .cover .cover__block {
        flex-wrap: wrap;
    }
    .cover .cover__block .cover__left,
    .cover .cover__block .cover__right {
        width: 100%;
    }
    .products .products__block .products__list .products__item {
        flex-basis: calc(50% - 10px);
    }
}
@media screen and (max-width: 480px) {
    .cart
        .cart__blocks
        .cart__blocks--right
        .cart__form
        form
        .cart__form--block {
        flex-basis: 100%;
    }
    .footer .footer__block {
        flex-wrap: wrap;
    }
    .footer .footer__block .footer__left,
    .footer .footer__block .footer__right {
        flex-basis: 100%;
    }
    .footer .footer__block .footer__right {
        margin-top: 20px;
    }
}

@media screen and (max-width: 420px) {
    .cover--medium {
        display: none !important;
    }
    .cover--small {
        display: block;
    }
    .products .products__block .products__list .products__item {
        flex-basis: 100%;
    }
    .cart
        .cart__blocks
        .cart__blocks--left
        .cart__items
        .cart__items--item
        .item--info
        h4 {
        font-size: 14px;
    }
    .cart
        .cart__blocks
        .cart__blocks--left
        .cart__items
        .cart__items--item
        .item--info
        p {
        font-size: 12px;
    }
    .products__filters form .filter__block {
        margin-right: 0px;
    }
    .products__filters form .filter__block input,
    .products__filters form .filter__block select {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}
