section {
    max-width: 1200px;
    width: calc(100% - 40px);
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
}

section .filter {
    width: 280px;
    margin-right: 30px;
    padding-top: 5px;
}

section .filter .buttons {
    width: 100%;
    display: flex;
    margin-top: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F3F3F3;
}

section .filter .buttons button[type="submit"] {
    font-family: "Roboto-Regular";
    font-size: 18px;
    color: #FFFFFF;
    background: #424242;
    height: 40px;
    width: calc(50% - 5px);
    border: none;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 3px;
}

section .filter .buttons button[type="reset"] {
    width: 50%;
    font-family: "Roboto-Regular";
    height: 40px;
    font-size: 18px;
    color: #2B2A29;
    border: 1px solid rgba(176, 176, 176, 0.5);
    cursor: pointer;
    border-radius: 3px;
}

section .filter .groups {
    width: 100%;
    padding: 30px 0;
    position: relative;
}

section .filter > div > span:not(.show) {
    font-family: "Roboto-Regular";
    font-size: 16px;
    color: #2B2A29;
    display: flex;
    cursor: pointer;
    width: calc(100% - 30px);
}

section .filter > div > span:not(.show)::after {
    display: block;
    content: '';
    background-image: url("/static/img/filter-up.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 25px;
    right: 0;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

section .filter > div.open > span:not(.show)::after {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

section .filter > div.element > span:not(.show)::after {
    background-image: url("/static/img/filter-plus.svg");
    top: 25px;
}

section .filter > div.element.open > span:not(.show)::after {
    background-image: url("/static/img/filter-minus.svg");
}

section .filter .element {
    border-top: 1px solid #F3F3F3;
    width: 100%;
    padding: 30px 0;
    position: relative;
}

section .filter .element.first {
    border: none;
    padding: 0 0 30px;
}

section .filter .element > span:not(.show) {
    font-family: "Roboto-Regular";
    font-size: 16px;
    color: #2B2A29;
    display: flex;
}

section .filter .element > span > a {
    font-weight: normal;
    font-size: 14px;
    color: #414141;
    opacity: 0.7;
    margin-left: auto;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 10px;
}

section .filter .element:not(.open) > span > a {
    display: none;
}

section .filter > div > .content:not(.search) {
    margin-top: 20px;
}

section .filter > div .content label {
    display: block;
    width: calc(100% - 35px);
    margin-top: 10px;
    margin-left: 35px;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    color: #2B2A29;
    position: relative;
    cursor: pointer;
    font-family: "Roboto-Light";
}

section .filter > div .content input[type="checkbox"], section .filter > div .content input[type="radio"] {
    position: absolute;
    left: -99999px;
}

section .filter > div .content > div.param {
    position: relative;
}

section .filter > div span.show {
    padding: 18px 30px;
    display: block;
    position: absolute;
    z-index: 2;
    top: -17px;
    right: -180px;
    background-color: #FFE402;
    font-family: "Roboto-Regular";
    font-size: 18px;
    color: #2B2A29;
    cursor: pointer;
    border-radius: 3px;
}

section .filter > div span.show::after {
    content: '';
    position: absolute;
    left: -28px;
    top: 16px;
    border: 15px solid transparent;
    border-right: 15px solid #FFE402;
}

section .filter > div .content input[type="checkbox"] + label:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 3px;
    width: 17px;
    height: 17px;
    display: block;
    border-radius: 2px;
    border: 1px solid #B0B0B0;
}

section .filter > div .content input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 3px;
    width: 17px;
    height: 17px;
    display: block;
    border-radius: 50px;
    border: 1px solid #B0B0B0;
}

section .filter > div .content input[type="checkbox"]:checked + label:before,
section .filter > div .content input[type="radio"]:checked + label:before {
    background: #212121;
    border: solid 1px #212121;
}

section .filter > div .content input[type="checkbox"]:checked + label:after {
    content: '';
    width: 10px;
    height: 7px;
    display: block;
    position: absolute;
    top: 9px;
    left: -30px;
    background-image: url('/static/img/checked.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

section .filter > div .content input[type="radio"]:checked + label:after {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #ffffff;
    border-radius: 50px;
    position: absolute;
    top: 9px;
    left: -29px;
}

section .filter > div .content {
    display: none;
}

section .filter > div.open .content {
    display: block;
}

section .filter > div.open .content.feature-range,
section .filter > div.open .content.cost {
    display: flex;
    flex-wrap: wrap;
}

.slider-range,
#slider-range {
    width: 100%;
    margin-top: 25px;
    margin-bottom: -10px;
    padding: 0 10px;
}

section .filter > div.open .content .show-a-lot {
    font-weight: normal;
    font-size: 14px;
    color: #2B2A29;
    opacity: 0.8;
    cursor: pointer;
    margin-top: 20px;
    display: block;
}

section .filter .element .content.search input {
    width: calc(100% - 42px);
    padding: 0 20px;
    height: 48px;
    font-weight: normal;
    font-size: 17px;
    z-index: 4;
    border: solid 1px rgba(43, 42, 41, 0.2);
    border-radius: 3px;
    color: #2B2A29;
    background-color: #f6f6f6;
}

section .filter .element .content.search button {
    border: none;
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    z-index: 5;
    width: 25px;
    height: 25px;
    background: url('/static/img/new-search.png?2');
    background-repeat: no-repeat;
    background-size: contain !important;
    background-position: center;
    opacity: 0.5;
    padding: 0 !important;
}

section .filter .element .content.cost input:nth-child(1),
section .filter .element .content.cost input:nth-child(2),
section .filter .element .content.feature-range input:nth-child(1),
section .filter .element .content.feature-range input:nth-child(2) {
    display: inline-flex;
    font-weight: normal;
    font-size: 17px;
    height: 40px;
    padding: 0 15px;
    width: calc(50% - 32px);
    border: solid 1px rgba(43, 42, 41, 0.2);
    border-radius: 3px;
    color: #2B2A29;
    background-color: #f6f6f6;
}

section .filter .element .content.cost input:nth-child(2),
section .filter .element .content.feature-range input:nth-child(2) {
    width: calc(50% - 40px);
    margin-left: auto;
}

section .filter .element-search,
section .filter .element-filter:not(.open),
section .filter .element-group {
    border-bottom: 2px solid #F3F3F3;
}

section .filter .element-search > span,
section .filter .element-filter > span,
section .filter .element-group > span {
    text-transform: uppercase;
    font-size: 20px;
}

section .filter .element-search {
    border-bottom: 2px solid #F3F3F3;
    border-top: none;
    padding-top: 0;
}

section .filter .element-search .content {
    display: flex !important;
}

section .catalog {
    width: calc(100% - 310px);
    position: relative;
}

section .catalog .product-item .vendor-code {
    display: block;
    width: calc(100% - 30px);
    padding: 0 15px;
    margin: 5px 0;
    font-family: "Roboto-Light";
    font-size: 15px;
    line-height: 170%;
    color: #2B2A29;
}

section .catalog .product-item .vendor-code > span {
    margin-left: 3px;
    font-family: "Roboto-Regular";
    font-size: 15px;
    color: #2B2A29;
}

section .catalog.not-main-city .product-item .vendor-code,
section .catalog.not-main-city .product-item .price-store {
    display: none !important;
}

section.product.not-main-city .price-store {
    display: none !important;
}

section .catalog .product-item .delivery {
    position: absolute;
    top: 6px;
    left: 15px;
    width: 22px;
    height: 22px;
    display: block;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/static/img/delivery.svg');
    cursor: pointer;
}

section .catalog .product-item.this-dop-sale .delivery {
    left: 120px;
}

section .catalog .product-item .discount {
    position: absolute;
    top: 2px;
    left: 50px;
    width: 27px;
    height: 27px;
    display: block;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/static/img/discount.svg');
    cursor: pointer;
}

section .catalog .product-item.this-dop-sale .discount {
    left: 155px;
}

section .catalog .product-item .discount-text,
section .catalog .product-item .delivery-text {
    display: none;
}

section .catalog .product-item .discount:hover ~ .discount-text,
section .catalog .product-item .delivery:hover ~ .delivery-text {
    display: block;
    width: calc(100% - 30px);
    position: absolute;
    left: 0;
    top: 35px;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    background-color: #ffffff;
    padding: 15px;
    font-family: "Roboto-Regular";
    font-size: 14px;
    line-height: 130%;
    color: #2B2A29;
    z-index: 2;
}

section .catalog .product-item .discount-text > span {
    color: #f90101;
    font-family: "Roboto-Regular";
}

section .catalog .product-item .discount-text .russia-ruble {
    width: 9px;
    margin-left: 0;
}

section .catalog .product-item .favorite {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/static/img/new-not-like.png');
    opacity: 0;
}

section .catalog .product-item .favorite.selected {
    background-image: url('/static/img/new-like.png');
    opacity: 1;
}

section .catalog .product-item:hover .favorite {
    opacity: 1;
}

section.crumbs {
    margin: 25px auto;
}

section.crumbs-categories {
    margin: 25px auto -25px !important;
}

section.crumbs > span {
    font-size: 14px;
    line-height: 135%;
    display: flex;
    align-items: center;
    color: rgba(43, 42, 41, 0.75);
    margin-left: -5px;
    flex-wrap: wrap;
    font-family: "Roboto-Light";
}

section.crumbs > span > a {
    color: rgba(43, 42, 41, 0.75);
    margin: 0 5px;
    cursor: pointer;
    font-family: "Roboto-Light";
}

section .catalog .mobile-sorting {
    display: none;
}

section .catalog .sorting {
    width: 100%;
    display: flex;
    margin: 18px 0 20px;
    justify-content: space-between;
}

section .catalog .sorting > span {
    font-family: "Roboto-Light";
    font-size: 14px;
    line-height: 135%;
    color: rgba(43, 42, 41, 0.8);
}

section .catalog .sorting > span > a {
    font-weight: normal;
    font-size: 14px;
    line-height: 170%;
    color: #2B2A29;
    margin: 0 13px;
    cursor: pointer;
}

section .catalog .sorting > span > a.active {
    font-family: "Roboto-Medium";
}

section .catalog .sorting > span > select {
    margin-left: 13px;
    border: none;
    font-size: 14px;
    line-height: 170%;
    color: #2B2A29;
    background-color: transparent;
}

section .catalog .product-item .this-new,
section .catalog .product-item .this-chine-order,
section .catalog .product-item .this-sale,
section .catalog .product-item .this-hit,
section .catalog .product-item .this-quantity-discount {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100px;
    padding: 8px 0;
    color: #ffffff;
    border-radius: 3px 0 3px 0;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    font-family: "Roboto-Light";
}

section .catalog .product-item .this-chine-order {
    background-color: #ffee00;
    color: #000000;
}

section .catalog .product-item .this-new {
    background-color: #219653;
}

section .catalog .product-item .this-sale {
    background-color: #bf0202;
}

section .catalog .product-item .this-hit,
section .catalog .product-item .this-quantity-discount {
    background-color: #333333;
}

section .catalog .products-grid {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    position: relative;
    left: -5px;
}

section .catalog .display-actions > p,
section .catalog .display-products > p {
    font-size: 20px;
    line-height: 150%;
    color: #2B2A29;
    font-family: "Roboto-Light";
}

section .catalog .products-grid .product-item {
    width: calc(33.33% - 14px);
    border: 1px solid rgba(43, 42, 41, 0.1);
    border-radius: 3px;
    margin: 5px;
    position: relative;
    padding-bottom: 65px;
    background-color: #ffffff;
    box-shadow: 0 0 16px rgba(208, 208, 208, 0.2);
}

section .catalog .products-grid .product-item:hover {
    box-shadow: 0 0 16px rgba(208, 208, 208, 0.8);
}

section .catalog .products-grid .product-item:hover .add {
    background-color: #FFE402 !important;
    border-color: #FFE402 !important;
}

section .count-orders,
section .sale-basket {
    display: none;
}

section .line-cards .card .sale-basket,
section .catalog .products-grid .product-item .sale-basket {
    position: absolute;
    bottom: -2px;
    right: -3px;
    display: block;
    z-index: 5;
    width: 70px;
    height: 70px;
}

section .line-cards .card .sale-basket .button,
section .catalog .products-grid .product-item .sale-basket .button {
    position: relative;
    width: 70px;
    height: 70px;
    background: #FFFF00;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: block;
}

section .line-cards .card .sale-basket .button:before,
section .catalog .products-grid .product-item .sale-basket .button:before {
    content: '';
    position: absolute;
    top: 23px;
    right: 23px;
    width: 27px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/static/img/checkout-page.svg');
}

@keyframes spinsalebasket {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

section .line-cards .card .sale-basket > img,
section .catalog .products-grid .product-item .sale-basket > img {
    position: absolute;
    top: -23px;
    left: -23px;
    animation: spinsalebasket 5s linear 0s infinite;
}

section .line-cards .card:hover .sale-basket .button,
section .catalog .products-grid .product-item:hover .sale-basket .button {
    display: none !important;
}

section .catalog .products-grid .product-item .count-orders {
    font-size: 12px;
    line-height: 15px;
    color: #A2A2A2;
    position: relative;
    display: block;
    width: calc(100% - 15px);
    height: auto;
    top: 0;
    text-align: left;
    left: 15px;
}

section .catalog .products-grid .product-item .availability {
    font-family: "Roboto-Regular";
    font-size: 15px;
    line-height: 135%;
    color: #219653;
    margin-bottom: 10px;
    display: block;
    width: calc(100% - 30px);
    padding: 0 15px;
}

section .catalog .products-grid .product-item .availability > a {
    color: #2B2A29;
    cursor: pointer;
    font-size: 14px;
    font-family: "Roboto-Light";
}

section .catalog .products-grid .product-item.empty > * {
    opacity: 0.4;
}

section .catalog .products-grid .product-item.empty .availability {
    color: #f90101;
}

section .catalog .products-grid .product-item.d-none {
    display: none;
}

section .catalog .products-grid .product-item .img {
    width: 100%;
    height: 270px;
    display: flex;
    justify-content: center;
}

section .catalog .products-grid .product-item .img img {
    max-width: 100%;
    max-height: 100%;
    align-self: center;
}

section .catalog .products-grid .product-item .name {
    width: calc(100% - 30px);
    padding: 0 15px;
    display: block;
    margin: 5px 0;
    font-size: 17px;
    line-height: 140%;
    color: #202020;
    font-family: "Roboto-Regular";
}

section .catalog .products-grid .product-item .price {
    width: calc(100% - 30px);
    padding: 7px 15px;
    display: block;
    font-family: "Roboto-Medium";
    font-size: 30px;
    line-height: 130%;
    color: #2B2A29;
}

section .catalog .products-grid .product-item .price > a {
    color: #2B2A29;
    font-size: 14px;
    position: relative;
    font-family: "Roboto-Light";
    top: -5px;
    left: 5px;
}

section .catalog .products-grid .product-item .price > a::before {
    background: #2B2A29;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
}

section .catalog .products-grid .product-item .price-store {
    width: calc(100% - 30px);
    padding: 0 15px;
    display: block;
    font-family: "Roboto-Light";
    font-size: 12px;
    line-height: 135%;
    color: #333333;
}

section .catalog .products-grid .product-item .price-store span {
    font-family: "Roboto-Light";
    font-size: 12px;
    line-height: 135%;
    color: #EB5757;
}

section .catalog .products-grid .product-item .price-store span img {
    height: 8px;
    margin-right: 5px;
}

section .catalog .products-grid .product-item .add {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    background-color: transparent;
    border-top: 1px solid #E6E6E6;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    font-family: "Roboto-Regular";
    font-size: 16px;
    text-transform: uppercase;
    color: #2B2A29;
    text-align: center;
    padding: 20px 0;
    border-radius: 0 0 3px 3px;
}

section .catalog .products-grid .product-item .buy {
    display: none;
}

section .catalog .products-grid .product-item .info .manufacturer {
    display: none;
}

section .catalog .products-grid .product-item .info .features {
    display: none;
}

section .catalog .products-grid .product-item .info .features > span.d-none {
    display: none !important;
}

.paginator .show-a-lot {
    margin-top: 70px;
    position: relative;
    left: 153px;
}

.catalog .paginator .show-a-lot {
    left: 0;
}

.paginator .pages > div {
    width: 890px;
    padding: 0;
    position: relative;
    left: 155px;
}

section.product {
    display: flex;
    margin-bottom: 35px;
    align-items: start;
}

section.product .similar-products {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

section.product .similar-products .item {
    width: 46px;
    height: 46px;
    border: solid 1px #909090;
    overflow: hidden;
    display: block;
    padding: 2px;
    opacity: 0.7;
    margin: 0 5px 5px 0;
}

section.product .similar-products .item:hover {
    opacity: 1;
}

section.product .similar-products .item img {
    width: 42px;
    height: 42px;
}

section.product > .mobile-images {
    display: none;
}

section.product > .images {
    display: flex;
    width: calc(100% - 540px);
    max-height: 765px;
    align-items: start;
}

section.product > .images > .pictures {
    width: 80px;
    margin-right: auto;
    height: 100%;
}

section.product > .images > .pictures > span.min-image {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
}

section.product > .images > .pictures > span.min-image img {
    max-height: 100%;
    max-width: 100%;
    align-self: center;
}

section.product > .images > .pictures > span.prev,
section.product > .images > .pictures > span.next {
    justify-content: center;
    height: 25px;
    background-color: #dedede;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

section.product > .images > .pictures > span.prev img,
section.product > .images > .pictures > span.next img {
    height: 15px;
    position: relative;
}

section.product > .images > .pictures > span.prev {
    margin-bottom: 12px;
}

section.product > .images > .pictures > span.prev img {
    transform: rotate(-180deg);
    top: 1px;
}

section.product > .images > .pictures > span.next {
    margin-top: 12px;
}

section.product > .images > .pictures > span.next img {
    top: -1px;
}

section.product > .images > span {
    width: calc(100% - 90px);
    height: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 550px;
}

section.product > .images > span img {
    max-width: 100%;
    max-height: 765px;
    align-self: center;
    cursor: pointer;
}

section.product > .info {
    width: 480px;
    margin-left: 60px;
    margin-top: 10px;
    position: relative;
}

section.product > .info .minor {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

section.product > .info .minor > span {
    font-family: "Roboto-Light";
    font-size: 15px;
    color: #2B2A29;
}

section.product > .info .minor > span > span {
    font-family: "Roboto-Regular";
    font-size: 16px;
    color: #2B2A29;
}

section.product > .info h1 {
    display: block;
    font-weight: normal;
    font-size: 28px;
    line-height: 130%;
    color: #2B2A29;
    width: calc(100% - 50px);
}

section.product > .info .price-store {
    font-family: "Roboto-Light";
    font-size: 12px;
    line-height: 135%;
    color: #333333;
    margin-bottom: 30px;
    display: block;
}

section.product > .info .price-store > span {
    font-family: "Roboto-Light";
    font-size: 12px;
    line-height: 135%;
    color: #EB5757;
    margin-right: 10px;
    text-decoration: line-through;
}

section.product > .info .price-store .russia-ruble {
    height: 9px;
}

section.product > .info .price {
    display: block;
    font-family: "Roboto-Medium";
    font-size: 40px;
    line-height: 130%;
    color: #2B2A29;
    margin-bottom: 0;
}

section.product > .info .desc-quantity-discount {
    color: rgba(43, 42, 41, 0.7);
    font-size: 14px;
    font-family: "Roboto-Light";
    display: block;
    margin-bottom: 20px;
}

section.product > .info .quantity-discount {
    font-family: "Roboto-Light";
    font-size: 16px;
    color: #2B2A29;
    display: block;
    margin-bottom: 8px;
}

section.product > .info .quantity-discount > span {
    color: #f90101;
    font-family: "Roboto-Medium";
    font-size: 20px;
}

section.product > .info .price > a {
    color: #2B2A29;
    font-size: 15px;
    position: relative;
    font-family: "Roboto-Light";
    top: -5px;
    left: 5px;
}

section.product > .info .price > a::before {
    background: #2B2A29;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
}

section.product > .info .price > a img {
    width: 16px;
    margin-left: 5px;
}

section.product > .info .price-mobile {
    display: none;
}

section.product > .info .description {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    color: #505050;
    margin: 10px 0;
}

section.product > .info .availability {
    margin-top: 30px;
    width: 100%;
}

section.product > .info .availability > span {
    font-size: 18px;
    color: #2B2A29;
    margin-bottom: 25px;
    display: flex;
    width: 100%;
    align-items: center;
}

section.product > .info .availability > span button {
    height: 40px;
    border: 1px solid #CDCDCD;
    border-radius: 3px;
    background-color: #EFEFEF;
    color: #2B2A29;
    font-size: 14px;
    cursor: pointer;
    padding: 0 15px;
    margin-left: auto;
}

section.product > .info .availability > div {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}

section.product > .info .availability > div.provider-slug {
    padding-top: 5px;
}

section.product > .info .availability > div > a {
    font-size: 14px;
    line-height: 135%;
    color: #2B2A29;
    cursor: pointer;
    text-decoration: underline;
    font-family: "Roboto-Medium";
}

section.product > .info .availability > div > span:nth-child(1) {
    width: 65%;
    font-family: "Roboto-Regular";
    font-size: 16px;
    line-height: 135%;
    color: #2B2A29;
}

section.product > .info .availability > div > span:nth-child(1) > span {
    font-size: 14px;
    line-height: 135%;
    display: block;
    margin-top: 5px;
    color: #2B2A29;
}

section.product > .info .availability > div > span:nth-child(2) {
    font-family: "Roboto-Regular";
    font-size: 16px;
    line-height: 135%;
    color: #219653;
    text-align: right;
    width: 35%;
}

section.product > .info .availability > div > span.value-null {
    color: #f90101;
}

section.product > .info .availability > div > span:nth-child(2) > span {
    font-family: "Roboto-Regular";
    color: #219653;
}

section.product > .info .availability > div > span.value-null > span {
    color: #f90101;
}

section.product > .info .buy {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 35px;
}

.products-line .product-item .buy .count {
    position: absolute;
    right: 0;
    bottom: 75px;
    display: flex;
}

section.product > .info .buy select,
.products-line .product-item .buy select {
    border: 1px solid #E5E5E5;
    font-size: 16px;
    text-align: center;
    color: #2B2A29;
    width: 140px;
    padding: 0 36px;
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 3px;
}

section.product > .info .buy input,
.products-line .product-item .buy input {
    display: none;
}

section.product > .info .buy > span,
.products-line .product-item .buy .count > span {
    font-family: "Roboto-Medium";
    font-size: 20px;
    line-height: 24px;
    color: #505050;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 40px;
    height: calc(100% - 17px);
    text-align: center;
    padding-top: 17px;
}

section.product > .info .buy .plus {
    left: 100px;
}

.products-line .product-item .buy .count > span.plus {
    left: 90px;
}

section.product > .info .buy > span:hover,
.products-line .product-item .buy .count > span:hover {
    color: #2B2A29;
}

section.product > .info .buy button {
    cursor: pointer;
    height: 60px;
    width: 200px;
    background: #FFE402;
    border: none;
    border-radius: 3px;
    font-family: "Roboto-Regular";
    font-size: 18px;
    color: #2B2A29;
}

section.product > .info .buy button:hover {
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
}

.products-line .product-item .buy .count select {
    height: 40px;
    width: 130px;
}

.products-line .product-item .buy .count > span {
    padding-top: 8px;
}

section.product > .info .buy .lot-block,
.products-line .product-item .buy .lot-block {
    position: absolute;
    top: 20px;
    left: 160px;
}

section.product > .info .buy .lot-block img,
.products-line .product-item .buy .lot-block img {
    width: 16px;
    cursor: pointer;
}

section.product > .info .buy .lot-block span,
.products-line .product-item .buy .lot-block span {
    display: none;
}

section.product > .info .buy .lot-block img:hover + span,
.products-line .product-item .buy .lot-block img:hover + span {
    display: block;
    font-size: 14px;
    border: 1px solid #E5E5E5;
    padding: 5px 10px;
    background: #f6f6f6;
    position: relative;
    left: 20px;
    top: -23px;
    white-space: nowrap;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
}

.products-line .product-item .buy .lot-block {
    position: relative;
    top: 12px;
    left: 0;
    margin-left: 5px;
}

.products-line .product-item .buy .lot-block img:hover + span {
    position: absolute;
    right: 20px;
    left: initial;
    top: -5px;
}

section.product > .favorite {
    display: none;
}

section.product .favorite,
.mobile-product .favorite {
    position: absolute;
    cursor: pointer;
    width: 35px;
    height: 32px;
    top: 0;
    right: 0;
}

section.product .favorite::before,
.mobile-product .favorite::before {
    content: '';
    cursor: pointer;
    width: 35px;
    height: 32px;
    display: block;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/static/img/favorite-big.svg');
}

section.product .favorite.selected:hover::before,
section.product .favorite.selected::before,
.mobile-product .favorite.selected:hover::before,
.mobile-product .favorite.selected::before {
    background-image: url('/static/img/new-like.png');
}

section.product > .info .eval-code {
    display: flex;
    margin-top: 25px;
    align-items: center;
}

section.product > .info .eval-value,
.mobile-product .eval-value {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #605F5F;
    font-family: "Roboto-Light";
}

section.product > .info .eval-value img,
.mobile-product .eval-value img {
    margin-right: 10px;
    position: relative;
    top: -1px;
}

section.product > .info .eval-value a,
.mobile-product .eval-value a {
    font-size: 16px;
    color: #605F5F;
    margin-left: 3px;
    font-family: "Roboto-Light";
}

section.product > .info .code-value {
    margin-left: auto;
    font-size: 14px;
    color: #2B2A29;
}

section.product > .info .price-value {
    margin-top: 30px;
    font-size: 32px;
    color: #2B2A29;
    font-family: "Roboto-Medium";
    display: flex;
    align-items: center;
    white-space: nowrap;
}

section.product > .info .price-value span {
    color: #2B2A29;
    margin-right: 20px;
    font-size: 16px;
    font-family: "Roboto-Regular";
}

section.product > .info .price-value a {
    color: #2B2A29;
    font-size: 15px;
    margin-left: 15px;
    position: relative;
    font-family: "Roboto-Light";
}

section.product > .info .price-value a::before {
    background: #2B2A29;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
}

section.tabs > div {
    width: 660px;
}

section.tabs .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

section.tabs .header > span {
    cursor: pointer;
}

section.tabs .header > span {
    font-family: "Roboto-Regular";
    font-size: 16px;
    line-height: 170%;
    color: rgba(43, 42, 41, 0.6);
}

section.tabs .header > span.active {
    color: #2B2A29;
    border-bottom: 2px solid #FCD400;
}

section.tabs .content.d-none {
    display: none !important;
}

section.tabs .content .button-modal {
    height: 60px;
    width: 200px;
    font-family: "Roboto-Regular";
    font-size: 16px;
    color: #2B2A29;
    border-radius: 3px;
}

section.tabs .content .review {
    margin-top: 20px;
    border: 1px solid #E0E0E0;
    padding: 20px;
    width: calc(100% - 40px);
    border-radius: 3px;
}

section.tabs .content .review > span {
    display: flex;
    margin-bottom: 20px;
}

section.tabs .content .review > span > span:nth-child(1) {
    font-family: "Roboto-Light";
    font-size: 18px;
    line-height: 130%;
    color: rgba(43, 42, 41, 0.9);
    margin-right: 15px;
}

section.tabs .content .review > span > span:nth-child(2) {
    position: relative;
    top: 3px;
}

section.tabs .content .review > span > span:nth-child(3) {
    margin-left: auto;
    font-weight: normal;
    font-size: 14px;
    line-height: 135%;
    color: #2B2A29;
}

section.tabs .content .review > p {
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    color: #2B2A29;
    margin-bottom: 20px;
}

section.tabs .content .review > p > span {
    font-size: 18px;
    line-height: 170%;
    color: #2B2A29;
    display: block;
    margin-bottom: 10px;
}

section.tabs .content .review > .replay-text {
    background-color: #f6f6f6;
    width: calc(100% - 40px);
    padding: 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    color: #2B2A29;
}

section.tabs .content .review > .replay-text > span {
    display: block;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #2B2A29;
}

section.tabs .content .review > img {
    max-width: 100%;
    max-height: 300px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}

section.tabs .content .review > .images > img {
    width: 130px;
    margin-right: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

#magnify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: url('/static/img/cursor_close.cur'), auto;
}

#magnify img {
    align-self: center;
    max-width: 1200px;
    max-height: calc(100% - 100px);
    margin: 0 auto;
}

section.tabs .content > .title {
    display: none;
}

section.tabs .content div.description,
section.description > div {
    display: block;
    font-size: 16px;
    line-height: 130%;
    color: #2B2A29;
    font-family: "Roboto-Regular";
}

section.tabs .content div.description *,
section.description > div * {
    font-family: "Roboto-Regular" !important;
    color: #2B2A29 !important;
    font-size: 16px !important;
}

section.tabs .content div.description h5,
section.description h5 {
    font-family: "Roboto-Medium" !important;
}

section.tabs .content div.description table,
section.tabs .content div.description td,
section.tabs .content div.description th,
section.description > div table,
section.description > div td,
section.description > div th {
  border: 1px solid #dee2e6;
}

section.tabs .content div.description table,
section.description > div table {
  width: 100%;
  border-collapse: collapse;
}

section.tabs .content div.description a,
section.description > div a {
    white-space: nowrap;
}

section.tabs .content div.description b,
section.description > div b {
    font-family: "Roboto-Medium" !important;
}

section.tabs .content div.description span:not(.payment-card),
section.description > div span:not(.payment-card) {
    font-size: 15px;
    font-family: "Roboto-Medium";
    display: block;
}

section.tabs .content div.description span.payment-card,
section.description > div span.payment-card {
    font-size: 12px;
    border-top: solid 1px #000000;
    padding-top: 20px;
    display: block;
}

section.tabs .content div.description iframe,
section.description > div iframe {
    width: 100%;
}

section.tabs .content div.description img,
section.description > div img {
    max-width: 100%;
}

section.tabs .content div.files {
    width: calc(100% + 6px);
    position: relative;
    left: -3px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

section.tabs .content div.files > a {
    display: block;
    margin: 3px;
    background: #F5F5F5;
    height: 60px;
    display: flex;
    width: calc(50% - 6px);
    position: relative;
}

section.tabs .content div.files > a > span {
    display: block;
    width: calc(100% - 90px);
    padding-left: 20px;
    align-self: center;
    font-size: 14px;
    line-height: 115%;
    color: #333333;
    word-break: break-word;
}

section.tabs .content div.files > a:after {
    content: '';
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    background-image: url('/static/img/download.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 22px;
    right: 20px;
}

section.tabs .content div.equipment, section.tabs .content div.features {
    display: block;
}

section.tabs .content div.equipment > a, section.tabs .content div.features > a {
    display: block;
    font-family: "Roboto-Light";
    font-size: 16px;
    line-height: 135%;
    color: rgba(43, 42, 41, 0.9);
    margin-bottom: 15px;
}

section.tabs .content div.equipment > span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    color: #505050;
    margin-bottom: 10px;
}

section.tabs .content div.features > span {
    display: flex;
    padding: 18px 0;
    border-bottom: solid 1px #CDCDCD;
}

section.tabs .content div.features > span:first-of-type {
    padding-top: 10px;
}

section.tabs .content div.features > span > span:first-of-type {
    display: block;
    width: calc(60% - 25px);
    font-size: 16px;
    line-height: 135%;
    color: #2B2A29;
    margin-right: auto;
}

section.tabs .content div.features > span > span:last-of-type {
    font-size: 16px;
    line-height: 135%;
    color: #2B2A29;
    width: 40%;
    margin-left: auto;
}

section.description {
    display: block;
    margin-top: 50px;
}

section.description h5 {
    color: #2B2A29;
    font-family: "Roboto-Regular";
    font-size: 18px;
    margin-bottom: 25px;
}

section.product .info .price-block {
    margin-top: 30px;
}

section.product .info .price-block .top {
    margin-top: 30px;
    display: flex;
}

section.product .info .price-block .top span {
    background-color: #EFEFEF;
    padding: 18px;
    color: #2B2A29;
    display: block;
    border-radius: 3px 3px 0 0;
    cursor: pointer;
}

section.product .info .price-block .top span.active {
    background-color: #FCD400;
}

section.product .info .price-block .bottom {
    width: calc(100% - 34px);
    border: solid 2px #FCD400;
    padding: 15px;
    border-radius: 0 0 3px 3px;
}

section.product .info .price-block .bottom .info-text {
    color: #605F5F;
    width: 100%;
    display: flex;
    margin-top: 15px;
    font-size: 13px;
}

section.product .info .price-block .bottom .one {
    display: flex;
    align-items: center;
    position: relative;
}

section.product .info .price-block .bottom .price-value {
    margin: 0;
}

section.product .info .price-block .bottom .one .one-price {
    color: #2B2A29;
    margin-right: auto;
    font-size: 24px;
}

section.product .info .price-block .bottom .one > .one-price {
    font-size: 28px;
}

section.product .info .price-block .bottom .one input {
    display: none;
}

section.product .info .price-block .bottom .one button {
    width: 150px;
    height: 60px;
    border: none;
    border-radius: 3px;
    background-color: #FCD400;
    color: #2B2A29;
    margin-left: 25px;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
}

section.product .info .price-block .bottom .one select {
    border: 1px solid #CDCDCD;
    font-size: 16px;
    text-align: center;
    color: #2B2A29;
    width: 120px;
    padding: 0 36px;
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 3px;
    background-color: #EFEFEF;
}

section.product .info .price-block .bottom .one .minus,
section.product .info .price-block .bottom .one .plus {
    font-family: "Roboto-Medium";
    font-size: 20px;
    line-height: 24px;
    color: #505050;
    position: absolute;
    top: 0;
    right: 255px;
    cursor: pointer;
    width: 40px;
    height: 43px;
    text-align: center;
    padding-top: 17px;
}

section.product .info .price-block .bottom .one .plus {
    right: 175px;
}

section.product .info .price-block .bottom.col-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

section.product .info .price-block .bottom .col-1 {
    width: calc(100% - 180px);
    display: block;
}

section.product .info .price-block .bottom .col-1 .col-header {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
}

section.product .info .price-block .bottom .col-1 .col-header span {
    width: 50%;
    text-align: center;
    color: #2B2A29;
}

section.product .info .price-block .bottom .col-1 .col-value {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

section.product .info .price-block .bottom .col-1 .col-value span {
    width: 50%;
    text-align: center;
    color: #2B2A29;
}

section.product .info .price-block .bottom .col-1 .col-value span:first-of-type {
    color: #F90101;
    font-size: 24px;
    font-family: "Roboto-Medium";
}

section.product .info .price-block .bottom .col-2 {
    width: 150px;
    flex-wrap: wrap;
    position: relative;
    margin-left: auto;
}

section.product .info .price-block .bottom .col-2 select {
    width: 100%;
}

section.product .info .price-block .bottom .col-2 button {
    margin-left: 0;
    margin-top: 15px;
}

section.product .info .price-block .bottom .col-2 .minus {
    right: 110px;
}

section.product .info .price-block .bottom .col-2 .plus {
    right: 0;
}

.favorites {
    display: block;
}

.favorites h1 {
    margin: 20px 0 50px;
    font-weight: normal;
    font-size: 28px;
    line-height: 130%;
    color: #000000;
}

.favorites .none {
    margin: 20px 0 30px;
    font-size: 18px;
}

section.favorites .catalog {
    width: 100%;
}

section.favorites .catalog .products-grid {
    padding: 0;
}

section.favorites .catalog .products-grid .product-item {
    width: calc(25% - 12px);
}

section.products-similar,
section.products-relevant {
    margin-top: 100px;
    display: block;
    background-color: #ffffff !important;
}

.catalog-page-h1 {
    margin: 0 auto 25px !important;
}

.catalog-page-h1 h1 {
    display: block;
    font-weight: normal;
    font-size: 28px;
    line-height: 130%;
    color: #000000;
    margin: 0 0 40px;
}

section.products-similar span.header,
section.products-relevant span.header {
    margin-bottom: 30px !important;
}

section .display-actions .action-item {
    width: calc(100% - 2px);
    border: 1px solid #E0E0E0;
    border-radius: 3px;
    display: flex;
    min-height: 150px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 0 16px rgba(208, 208, 208, 0.2);
}

section .display-actions .action-item .image {
    align-self: center;
    width: 290px;
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 160px;
    border-radius: 3px 0 0 3px;
}

section .display-actions .action-item .info {
    width: calc(100% - 350px);
    padding: 20px;
    position: relative;
    min-height: 120px;
}

section .display-actions .action-item .info .name {
    font-family: "Roboto-Regular";
    font-size: 18px;
    line-height: 135%;
    color: #2B2A29;
    display: block;
    margin-bottom: 25px;
}

section .display-actions .action-item .info .date {
    font-family: "Roboto-Light";
    font-size: 14px;
    line-height: 135%;
    color: rgba(43, 42, 41, 0.8);
    display: block;
    margin-bottom: 25px;
}

section .display-actions .action-item .info .category {
    font-family: "Roboto-Light";
    border-radius: 3px;
    background-color: rgba(33, 150, 83, 0.2);
    color: #219653;
    font-size: 14px;
    padding: 3px 8px;
}

.mobile-product {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 20px rgba(208, 208, 208, 1);
    border-bottom: solid 1px #CDCDCD;
    height: 85px;
    width: 100%;
    z-index: 10;
    background-color: #ffffff;
}

.mobile-product.fixed {
    display: block;
}

.mobile-product .content {
    max-width: 1200px;
    width: calc(100% - 20px);
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    position: relative;
    height: 85px;
    align-items: center;
}

.mobile-product .content .favorite {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 50px;
}

.mobile-product .content .image {
    height: 80px;
    margin-right: 50px;
}

.mobile-product .content .info .name {
    display: block;
    font-size: 18px;
    color: #2B2A29;
    margin-bottom: 10px;
    line-height: 130%;
}

.mobile-product .content button {
    margin-left: auto;
    width: 240px;
    height: 55px;
    background-color: #FCD400;
    color: #2B2A29;
    font-family: "Roboto-Regular";
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
}

@media screen and (min-width: 1200px) {
    section.tabs .content[data-id="0"] {
        display: none;
    }
}

@media screen and (min-width: 730px) {
    section .catalog .products-line .product-item {
        width: calc(100% - 2px);
        border: 1px solid #E0E0E0;
        border-radius: 3px;
        display: flex;
        min-height: 230px;
        margin-bottom: 5px;
        flex-wrap: wrap;
        position: relative;
        box-shadow: 0 0 16px rgba(208, 208, 208, 0.2);
    }

    section .catalog .products-line .product-item:hover {
        box-shadow: 0 0 16px rgba(208, 208, 208, 0.8);
    }

    section .catalog .products-line .product-item.empty > * {
        opacity: 0.3;
    }

    section .catalog .products-line .product-item .none-buy {
        display: none !important;
    }

    section .catalog .products-line .product-item > .availability,
    section .catalog .products-line .product-item > .price-store {
        display: none !important;
    }

    section .catalog .products-line .product-item.d-none {
        display: none !important;
    }

    section .catalog .products-line .product-item .img {
        align-self: center;
        width: 260px;
        height: auto;
        text-align: center;
    }

    section .catalog .products-line .product-item .img img {
        max-width: 285px;
        max-height: 195px;
    }

    section .catalog .products-line .product-item .info {
        width: calc(100% - 560px);
        padding: 20px;
        position: relative;
        height: 160px;
    }

    section .catalog .products-line .product-item .info .name {
        font-family: "Roboto-Regular";
        font-size: 18px;
        line-height: 135%;
        color: #2B2A29;
        display: block;
    }

    section .catalog .products-line .product-item .info .manufacturer {
        font-weight: normal;
        font-size: 14px;
        line-height: 170%;
        color: #505050;
        display: none;
    }

    section .catalog .products-line .product-item .info .features {
        position: absolute;
        bottom: -5px;
        left: 20px;
        max-height: 130px;
        width: 100%;
    }

    section .catalog .products-line .product-item .info .features > span {
        display: flex;
        margin-bottom: 3px;
        width: 100%;
    }

    section .catalog .products-line .product-item .info .features > span > span:first-of-type {
        font-family: "Roboto-Light";
        font-size: 14px;
        line-height: 135%;
        color: rgba(43, 42, 41, 0.8);
        display: block;
        margin-right: auto;
    }

    section .catalog .products-line .product-item .info .features > span > span:last-of-type {
        font-weight: normal;
        font-size: 14px;
        line-height: 135%;
        color: #2B2A29;
        display: block;
    }

    section .catalog .products-line .product-item .price {
        display: none;
    }

    section .catalog .products-line .product-item .add {
        display: none;
        cursor: pointer;
    }

    section .catalog .products-line .discount {
        z-index: 2;
    }

    section .catalog .display-products.products-line .product-item .vendor-code {
        display: none !important;
    }

    section .catalog .products-line .product-item .favorite {
        right: 190px;
        top: 175px;
        z-index: 5;
    }

    section .catalog .products-line .product-item .buy {
        width: 220px;
        padding: 20px 0;
        position: relative;
        margin-left: 20px;
    }

    section .catalog .products-line .product-item .buy > span {
        font-family: "Roboto-Medium";
        font-size: 25px;
        line-height: 135%;
        color: #2B2A29;
        display: block;
        width: 100%;
        text-align: right;
    }


    section .catalog .products-line .product-item .buy > span.price-online {
        color: #2B2A29;
        font-size: 30px;
        white-space: nowrap;
    }

    section .catalog .products-line .product-item .buy > span.price-online > a {
        color: #2B2A29;
        font-size: 14px;
        font-family: "Roboto-Light";
        position: relative;
        top: -3px;
        margin-left: 3px;
    }

    section .catalog .products-line .product-item .buy > span.price-online > a::before {
        background: #2B2A29;
        content: "";
        display: block;
        height: 1px;
        position: absolute;
        top: 50%;
        right: 0;
        width: 100%;
    }

    section .catalog .products-line .product-item .buy > span.price-online > a img {
        width: 12px;
    }

    section .catalog .products-line .product-item .buy > button {
        width: 150px;
        height: 40px;
        position: absolute;
        bottom: 20px;
        right: 0;
        font-family: "Roboto-Light";
        font-size: 16px;
        border-radius: 3px;
        color: #2B2A29;
        text-transform: uppercase;
    }

    section .catalog .products-line .product-item .buy > .availability {
        font-family: "Roboto-Regular";
        font-size: 14px;
        line-height: 135%;
        color: #219653;
        margin-bottom: 10px;
    }

    section .catalog .products-line .product-item .buy > .availability > a {
        color: #2B2A29;
        cursor: pointer;
        font-size: 13px;
        font-family: "Roboto-Light";
    }

    section .catalog .products-line .product-item .buy > .price-store {
        font-family: "Roboto-Light";
        font-size: 12px;
        line-height: 135%;
        color: #333333;
    }

    section .catalog .products-line .product-item .buy > .price-store > span {
        font-family: "Roboto-Light";
        font-size: 12px;
        line-height: 135%;
        color: #EB5757;
    }

    section .catalog .products-line .product-item .count-orders {
        display: none !important;
    }

    section .catalog .products-line .this-basket {
        display: none !important;
    }
}

@media screen and (max-width: 1200px) {
    .mobile-product {
        display: block !important;
        top: initial !important;
        bottom: 50px;
        height: 70px;
        border-top: solid 1px #CDCDCD;
        border-bottom: none;
        box-shadow: 0 -18px 20px rgba(208, 208, 208, 0.3);
    }

    .mobile-product .content {
        height: 70px;
        justify-content: center;
    }

    .mobile-product .content button {
        margin: 0;
        width: 100%;
        height: 40px;
    }

    .mobile-product .image,
    .mobile-product .info,
    .mobile-product .favorite {
        display: none;
    }

    section.tabs .content div.features > span {
        flex-wrap: wrap;
        margin-bottom: 15px;
        border-bottom: none;
        border-top: solid 1px #CDCDCD;
    }

    section.tabs .content div.features > span:first-of-type {
        padding-top: 18px;
    }

    section .count-orders,
    section .sale-basket {
        display: none !important;
    }
    
    .catalog-page-h1 h1 {
        font-size: 20px;
    }

    section {
        display: block;
    }

    section.crumbs > span {
        display: block;
    }

    section .filter {
        display: none;
    }

    section .filter.hover {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 20px);
        height: calc(100% - 130px);
        overflow-y: auto;
        overflow-x: hidden;
        background-color: #ffffff;
        z-index: 999999;
        margin: 0;
        padding: 30px 10px 100px 10px;
    }

    section .filter .buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 5;
        background-color: #ffffff;
        width: calc(100% - 20px);
        padding: 30px 10px;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    }

    section .catalog {
        width: 100%;
        min-height: 300px;
    }

    .paginator .show-a-lot {
        margin-top: 40px;
        left: 0;
        margin-bottom: 50px;
    }

    .paginator .pages > div {
        width: calc(100% - 40px);
        padding: 0 20px;
        left: 0;
    }

    section .catalog .sorting {
        display: none;
    }

    section .catalog .mobile-sorting {
        width: 100%;
        display: flex;
        margin-bottom: 15px;
    }

    section .catalog .mobile-sorting > span {
        font-family: "Roboto-Light";
        font-size: 14px;
        line-height: 135%;
        color: rgba(43, 42, 41, 0.8);
    }

    section .catalog .mobile-sorting > span:nth-child(2) {
        margin-left: 25px;
    }

    section .catalog .mobile-sorting > span > select {
        margin-left: 0;
        border: none;
        font-size: 14px;
        line-height: 170%;
        color: #2B2A29;
        background-color: transparent;
    }

    section .catalog .mobile-sorting > a {
        font-family: "Roboto-Regular";
        font-size: 16px;
        line-height: 170%;
        color: #2B2A29;
        margin-left: auto;
    }

    section .catalog .mobile-sorting > a::after {
        content: '';
        float: right;
        background-image: url("/static/img/plus.svg");
        width: 12px;
        height: 12px;
        background-size: 12px;
        background-position: center;
        background-repeat: no-repeat;
        margin: 7px 0 0 10px;
    }

    section.crumbs {
        margin: 10px 0 25px !important;
        position: relative;
        z-index: 5;
    }

    section.crumbs > span {
        font-size: 12px;
        line-height: 150%;
    }

    section.crumbs > span > a {
        margin: 0 3px;
    }

    section.product > .info {
        width: calc(100% - 300px);
        margin-left: 20px;
        margin-top: 0;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        height: auto !important;
    }

    section.product > .images {
        width: 280px;
        height: 450px;
    }

    section.tabs > div {
        width: 100%;
    }

    section.tabs .header {
        display: none;
    }

    section.tabs .content,
    section.tabs .content.d-none {
        display: block !important;
        width: 100%;
        position: relative;
        left: -20px;
        padding: 0 20px;
    }

    section.tabs .content:nth-child(2) {
        border-top: solid 1px rgba(0, 0, 0, 0.1);
    }

    section.tabs .content {
        border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    }

    section.tabs .content .button-modal {
        margin: 0 0 20px;
    }

    section.tabs .content .review {
        margin: 0 0 20px;
        width: calc(100% - 20px);
        padding: 20px 10px;
    }

    section.tabs .content .review > .replay-text {
        padding: 20px 10px;
        left: -10px;
    }
    section.tabs .content > .title {
        display: block;
        width: 100%;
        padding: 20px 0;
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 170%;
        color: #2B2A29;
    }

    section.tabs .content.active > .title {
        font-family: "Roboto-Medium";
        color: #2B2A29;
        font-size: 20px;
    }

    section.tabs .content > div {
        display: none;
    }

    section.tabs .content.active > div {
        display: block;
        padding-bottom: 20px;
    }

    section.tabs .content div.equipment,
    section.tabs .content div.features,
    section.tabs .content div.description {
        border-bottom: none;
    }

    section .filter > div .content > div.param > span.show {
        display: none;
    }

    section.product > .info .buy .lot-block {
        max-width: calc(100% - 200px);
    }

    section.product > .info .buy .lot-block img:hover + span,
    .products-line .product-item .buy .lot-block img:hover + span {
        white-space: normal;
    }

    section.description {
        display: none;
    }

    section.product {
        flex-wrap: wrap;
        position: relative;
    }

    section.product .info .favorite {
        display: none;
    }

    section.product > .info {
        margin: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    section.product > .info h1 {
        margin-top: 30px;
        width: 100%;
    }

    section.product > .info .eval-code,
    section.product > .info .price-value {
        width: 100%;
    }

    section.product .info .price-block {
        width: 55%;
    }

    section.product .info .price-block .top {
        margin-top: 0;
    }

    section.product .info .price-block .top span {
        width: 50%;
        font-size: 14px;
        text-align: center;
        padding: 18px 0;
    }

    section.product > .info .availability {
        width: calc(45% - 50px);
        margin-left: auto;
    }

    section.product .info .price-block .bottom .col-1 {
        width: 100%;
        order: 1;
    }

    section.product .info .price-block .bottom .col-2 {
        width: 100%;
        order: 3;
        margin-top: 25px;
    }

    section.product .info .price-block .bottom .info-text {
        order: 2;
    }

    section.product .info .price-block .bottom .col-2 select {
        width: 120px;
    }

    section.product .info .price-block .bottom .col-2 .minus {
        right: initial;
        left: 0;
    }

    section.product .info .price-block .bottom .col-2 .plus {
        right: initial;
        left: 80px;
    }

    section.product .info .price-block .bottom .col-2 button {
        margin-top: 0;
        margin-left: auto;
    }

    section.product .favorite {
        right: 20px;
        display: block;
        z-index: 5;
    }

    section.product > .images {
        width: 100%;
    }

    section.product > .images > span {
        min-height: 450px;
    }

    section.product > .images > span img {
        max-height: 100%;
    }

    section.product > .info .availability > div {
        flex-wrap: wrap;
    }

    section.product > .info .availability > span {
        margin-bottom: 15px;
    }

    section.product > .info .availability > span button {
        padding: 3px 10px;
        width: 220px;
        height: auto;
    }

    section.product > .info .availability > div {
        margin-bottom: 20px;
    }

    section.product > .info .availability > div > span:nth-child(1) {
        width: 100%;
    }

    section.product > .info .availability > div > span:nth-child(2) {
        width: 100%;
        text-align: left;
        margin-top: 5px;
    }

    section.product .info .price-block .bottom > .one {
        flex-wrap: wrap;
    }

    section.product .info .price-block .bottom .one .one-price {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 25px;
        font-size: 24px;
    }

    section.product .info .price-block .bottom > .one .minus,
    section.product .info .price-block .bottom > .one .plus {
        top: initial !important;
        bottom: 0 !important;
        left: 0 !important;
        right: initial !important;
    }

    section.product .info .price-block .bottom > .one .plus {
        left: 80px !important;
    }

    section.product .info .price-block .bottom > .one button {
        margin-left: auto;
    }

    section.product .info .price-block .bottom .one .one-price {
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    section .catalog .products-line .product-item .img {
        width: 100px;
    }

    section .catalog .products-line .product-item .img img {
        max-width: 95%;
        max-height: 95%;
    }

    section .catalog .products-line .product-item .info {
        width: calc(100% - 400px);
    }
}

@media screen and (max-width: 730px) {
    section {
        width: calc(100% - 20px);
        padding: 0 10px;
    }

    section .catalog {
        overflow: visible;
    }

    section .catalog .mobile-sorting > span:nth-child(2) {
        display: none;
    }

    section .catalog .product-item {
        width: calc(100% - 2px) !important;
        margin: -1px 0 0 0;
    }

    section .catalog .products-grid .product-item {
        width: calc(50% - 14px) !important;
    }

    section .catalog .product-item .favorite {
        display: none;
    }

    section .catalog .product-item .discount {
        top: 45px;
    }

    section .catalog .product-item .discount:hover ~ .discount-text {
        top: 45px;
    }

    section .catalog .products-line {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    section .catalog .products-line .product-item .img {
        width: 100%;
        height: 270px;
        display: flex;
        justify-content: center;
    }

    section .catalog .products-line .product-item .img img {
        max-width: 100%;
        max-height: 100%;
        align-self: center;
    }

    section .catalog .products-line .product-item {
        border: 1px solid #E6E6E6;
        position: relative;
        width: calc(50% - 2px) !important;
    }

    .paginator .show-a-lot {
        width: calc(100% - 20px);
    }

    section.product {
        margin-bottom: 25px;
    }

    section.product > .images {
        display: none;
    }

    section.product > .mobile-images {
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }

    section.product > .mobile-images .images > div img {
        max-height: 100%;
        max-width: 100%;
        align-self: center;
        margin: 0 auto;
    }

    section.product > .info {
        width: 100%;
        margin-left: 0;
    }

    section.tabs .content div.files {
        margin-bottom: 30px;
    }

    section.tabs .content div.files > a {
        width: calc(100% - 6px);
    }

    section .display-actions .action-item {
        flex-wrap: wrap;
    }

    section .display-actions .action-item .image {
        width: 100%;
    }

    section .display-actions .action-item .info {
        width: calc(100% - 20px);
        height: auto;
        padding: 20px 10px;
    }

    section.tabs .content,
    section.tabs .content.d-none {
        left: -10px;
        padding: 0 10px;
    }

    section.product > .images > .pictures {
        width: 40px;
    }

    section.product > .images > .pictures > span.min-image {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }

    section.product .info .price-block {
        width: 100%;
    }

    section.product > .info .availability {
        width: 100%;
    }

    section.product > .info .availability > span button {
        width: auto;
    }
}

@media screen and (max-width: 500px) {
    section .catalog .products-grid .product-item {
        width: calc(100% - 4px) !important;
    }
}

.content.cost .ui-state-active,
.content.feature-range .ui-state-active {
    border: 1px solid #424242 !important;
    background: #424242 !important;
    font-weight: normal;
    color: #fff;
    outline: none;
}

.content.cost .ui-state-focus,
.content.feature-range .ui-state-focus {
    border: 1px solid #424242 !important;
    outline: none;
}