/*
 * Theme Name:        Deviant Desktop
 * Theme URI:         https://deviant.pro
 * Description:       Custom website theme for AUTLET Website
 * Version:           1.0.0
 * Author:            Atom Deviant
 * Author URI:        https://deviant.pro
 * Text Domain:       deviant
 * Domain Path:       /assets/lang
 * Tested up to:      6.4
 * Requires at least: 6.0
 * Requires PHP:      7.4
 * License:           Commercial
 * License URI:       https://deviant.pro
 */

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Rubik:wght@500;600;700&display=swap');*/
* {
    outline: none;
}
html, body {
    overflow-x: hidden;
    background-color: #F8F8F8;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #000;
    font-size: 16px;
}
body>#wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
#topline, #header, #footer {
    flex-grow: 0;
    flex-shrink: 0;
}
#content {
    flex-grow: 1;
}

body.adminbar {
    max-height: calc(100vh - 32px);
}
h1, .h1, h2, .h2, h3, .h3 {
    font-family: "Rubik", sans-serif;
}

.text a {
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -webkit-transition: all 0.5s;
    outline: none;
}
.text a, .text a:visited {
    color:#E32A17;
    border-color: rgba(227,42,23,.5);
}
.text a:hover, .text a:focus {
    color:#2B465E;
    border-color: rgba(43,70,94,.5);
}
.text a.js {
    border-bottom-style: dashed;
}
.text-muted {
    color: #64717B;
}
.text-muted a, .text-muted a:visited {
    text-decoration: none;
    color: #64717B;
    border-bottom: 1px solid rgba(100,113,123,.5);
}
.text-muted a:hover, .text-muted a:focus {
    color:#E32A17;
    border-color: rgba(227,42,23,.5);
}
.text ul {
    list-style: none;
    padding: 0;
}
.text ul li {
    padding: 8px 0 8px 36px;
    background: url("assets/img/marker-check-grey.svg") 0 50% no-repeat;
}
.text h3 {
    font-size: 20px;
}

.img-responsive {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

body::-webkit-scrollbar {
    width: 16px;
}

body::-webkit-scrollbar-track {
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(100,113,123,.35);
    border: 4px solid #F8F8F8;
    border-radius: 8px;
}
.pattern-message {
    background-image: url("assets/img/pattern-message.png");
    background-repeat: repeat;
}

/*** BLOCKS ***/

.block-separator {
    width: 100%;
    margin: 50px 0 35px 0;
    border: 1px dashed rgba(100,113,123,.2);
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.block-header .title h2,
.block-header .title h3,
.block-header .title .h2,
.block-header .title .h3 {
    font-weight: 700;
    color: #333333;
    font-size: 36px;
    font-family: "Rubik", sans-serif;
    margin: 0 0 8px 0;
}
.block-header .subtitle h2,
.block-header .subtitle h3,
.block-header .subtitle .h2,
.block-header .subtitle .h3 {
    font-weight: 400;
    color: #89939A;
    font-size: 16px;
    font-family: "Rubik", sans-serif;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

/*** BOXES ***/

.box-white {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(100,113,123,.06);
}
.box-white p:last-child {
    margin-bottom: 0;
}
.box-white__title {
    display: flex;
    gap: 12px;
}
.box-white__title-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: rgb(227,42,23);
    background: linear-gradient(90deg, rgba(227,42,23,1) 0%, rgba(238,70,53,1) 100%);
    border-radius: 50%;
}
.title-icon-arrow-white {
    width: 6px;
    height: 10px;
    background: url("assets/img/title-icon-arrow-white.svg");
    background-size: 100% 100%;
}
.box-white__title h2,
.box-white__title .h2,
.box-white__title h3,
.box-white__title .h3 {
    font-size: 18px;
    flex: 1;
}

.box-white .title h2,
.box-white .title .h2,
.box-white .title h3,
.box-white .title .h3 {
    font-size: 22px;
    font-weight: 600;
    padding-left: 36px;
    background: url(assets/img/box-white-title-marker.svg) 0 50% no-repeat;
    background-size: 20px 20px;
    margin-bottom: 0;
}

.box-menu {
    background-color: #fff;
    box-shadow: 0 8px 32px rgba(100,113,123,.25);
}
.box-banner {
    box-shadow: 0 4px 16px rgba(100,113,123,.5);
    position: relative;
    overflow: hidden;
    background-size: cover;
    display: flex;
    text-decoration: none;
}

.box-banner__background {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    transition: all ease-in-out .5s;
    background: #000;
}
.box-banner__background>* {
    object-fit: cover;
    opacity: .85;
    min-width: 100%;
    min-height: 100%;
}
a.box-banner:hover .box-banner__background {
    transform: scale(125%);
    filter: blur(12px);
}
.box-banner__content {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.box-banner .content {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    color: #fff;
    text-shadow: 0 0 16px rgba(0,0,0,.6);
}
.box-banner .content .main,
.box-banner .content .add {
    width: 100%;
}
.box-banner .content .title h2,
.box-banner .content .title h3,
.box-banner .content .title .h2,
.box-banner .content .title .h3 {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    margin-bottom: 16px;
}
.box-banner .content .desc {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    padding: 8px;
    border-radius: 8px;
    background: rgba(0,0,0,.45);
    margin-bottom: 16px;
}
.box-banner .content .desc p{
    margin-bottom: 8px;
}
.box-banner .content .desc p:last-child{
    margin-bottom: 0;
}
.box-banner .content .list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.box-banner .content .list li {
    padding: 8px 0 8px 36px;
    background: url("assets/img/marker-check-white.svg") 0 50% no-repeat;

}
.box-banner .more {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 16px;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    text-align: center;
    transition: all ease-in-out .25s;
}
a.box-banner:hover .more {
    color: rgba(255,255,255,1);
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.25);
}


.box-banner__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}
.box-banner__title h1,
.box-banner__title .h1,
.box-banner__title h2,
.box-banner__title .h2,
.box-banner__title h3,
.box-banner__title .h3 {
    text-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.box-banner-title h2,
.box-banner-title .h2 {
    font-size: 32px;
}
.box-banner-title h3,
.box-banner-title .h3 {
    font-size: 24px;
}
.box-banner__subtitle {
    background: rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.box-banner__more {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 14px;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    transition: all ease-in-out .25s;
}
a.box-banner:hover .box-banner__more {
    color: rgba(255,255,255,1);
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.25);
}

.box-grey {
    border: 1px solid rgba(100,113,123,.1);
    /*border-radius: 16px;*/
    padding: 16px;
    color: #6e7a86;
    background: rgba(255,255,255,.1);
}

.box-grey h2,
.box-grey .h2,
.box-grey h3,
.box-grey .h3 {
    font-weight: 700;
    font-size: 22px;
    color: #89939A
}
.box-grey .title h2,
.box-grey .title h3,
.box-grey .title .h2,
.box-grey .title .h3 {
    font-weight: 700;
    font-size: 22px;
    color: #64717B
}
.box-grey .content p {
    margin-bottom: 16px;
}
.box-grey .content p:last-child,
.box-grey .content ul:last-child,
.box-grey .content ul>li:last-child {
    margin-bottom: 0;
}

.box-grey a {
    color: #6e7a86;
    transition: all ease-in-out .15s;
}
.box-grey a,
.box-grey a:focus,
.box-grey a:active {

}
.box-grey a:hover {
    color: #E32A17;
}
.box-grey .icon {
    display: flex;
    position: relative;
    width: 170px;
    height: 170px;
    background: #64717B;
    margin: 0 auto 16px auto;
}
.box-grey .icon .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/img/icon-penta-overlay.svg") 50% 50% no-repeat;
    background-size: 100% 100%;
}
.box-grey .icon img {
    object-fit: cover;
}
.greys>div>.box-grey {
    height: 100%;
}


/*** MODAL ***/

.modal-wrapper {
    z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-window-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
}
.modal-close {
    position: absolute;
    top: 1%;
    right: 1%;
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,.2) url("assets/img/close-white.svg") 50% 50% no-repeat;
    box-shadow: 0 1px 0 rgba(255,255,255,.1);
    background-size: 33% 33%;
    cursor: pointer;
    border-radius: 50%;
}
.modal-window {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 48px 156px rgba(0,0,0,.16);
}

/*** BUTTON ***/
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform ease-in .15s, box-shadow ease-in .15s;
}
.button-medium {
    min-height: 48px;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    gap: 8px;
}
.button-mini {
    height: auto;
    min-height: 32px;
    font-size: 14px;
    padding: 6px 12px;
    gap: 6px;
}

.button-red.button-outline,
.button-red.button-outline:focus,
.button-red.button-outline:active {
    border: 1px solid rgba(227,42,23,.5);
    color: #E32A17;
    background: rgba(227,42,23,.05);
    text-shadow: 0 1px 0 #fff;
}
.button-red.button-outline:hover {
    color: #E32A17;
    box-shadow: 0 2px 0 rgba(227,42,23,.5);
    transform: translateY(-2px);
}

.single_add_to_cart_button,
.button-red.button-solid,
.button-red.button-solid:focus,
.button-red.button-solid:active {
    border: none;
    background: rgb(228,43,24);
    background: linear-gradient(60deg, rgba(228,43,24,1) 0%, rgba(233,60,42,1) 50%, rgba(242,112,75,1) 100%);
    color: #fff !important;
    text-shadow: 0 1px 1px rgb(92, 8, 0, .35);
}
.button-red.button-solid:hover,
.header__menu__lead:hover .button-red.button-solid {
    color: #fff !important;
    box-shadow: 0 2px 0 rgb(155, 30, 16);
    transform: translateY(-2px);
}
.button-grey.button-outline,
.button-grey.button-outline:focus,
.button-grey.button-outline:active {
    border: 1px solid rgba(100,113,123,.5);
    color: #64717B;
    background: rgba(100,113,123,.05);
    text-shadow: 0 1px 0 #fff;
}
.button-grey.button-outline:hover {
    color: #64717B;
    box-shadow: 0 2px 0 rgba(100,113,123,.5);
    transform: translateY(-2px);
}

.button-grey.button-solid,
.button-grey.button-solid:focus,
.button-grey.button-solid:active {
    border: 1px solid rgba(100,113,123,.5);
    color: #f8f8f8;
    background: #64717B;
}
.button-grey.button-solid:hover {
    color: #f8f8f8;
    box-shadow: 0 2px 0 rgba(100,113,123,.5);
    transform: translateY(-2px);
}


.button-tg,
.button-tg:focus,
.button-tg:active {
    border: none;
    background: #6FB5EB;
    color: #fff !important;
}
.button-vk,
.button-vk:focus,
.button-vk:active {
    border: none;
    background: #278CFF;
    color: #fff !important;
}
.button-wa,
.button-wa:focus,
.button-wa:active {
    border: none;
    background: #4EC85A;
    color: #fff !important;
}
.button-tg:hover,
.button-vk:hover,
.button-wa:hover {
    transform: translateY(-2px);
}
.button-tg:hover {
    box-shadow: 0 2px 0 #4d81a9;
}
.button-vk:hover {
    box-shadow: 0 2px 0 #1771D6;
}
.button-wa:hover {
    box-shadow: 0 2px 0 #40a44a;
}


.button-shine {
    position: relative;
    overflow: hidden;
}
.button-shine:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 100%;
    background-image: linear-gradient(
            120deg,
            rgba(255,255,255, 0) 30%,
            rgba(255,255,255, .5),
            rgba(255,255,255, 0) 70%
    );
    top: 0;
    left: -300px;
    animation: shine 5s ease-in-out infinite;
}
@keyframes shine {
    0% {
        left: -100%;
        transition-property: left;
    }
    11.5044247788%, 100% {
        left: 100%;
        transition-property: left;
    }
}


.button-icon {
    display: inline-block;
    background-size: auto 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;

}

.button-icon-callback {
    width: 13px;
    height: 18px;
    background-image: url("assets/img/button-icon-callback.svg");
}
.button-icon-wa {
    width: 20px;
    height: 20px;
    background-image: url("assets/img/button-icon-wa.svg");
}
.button-icon-vk {
    width: 20px;
    height: 20px;
    background-image: url("assets/img/button-icon-vk.svg");
}
.button-icon-tg {
    width: 20px;
    height: 16px;
    background-image: url("assets/img/button-icon-tg.svg");
}
.button-icon-catalog {
    width: 16px;
    height: 12px;
    background-image: url("assets/img/button-icon-catalog.svg");
}
.button-icon-arrow-grey {
    width: 7px;
    height: 12px;
    background-image: url("assets/img/button-icon-arrow-grey.svg");
}





/*** TOPLINE ***/
#topline {

}
.topline__city {
    padding-left: 36px;
    background: url("assets/img/topline-pin.svg") 0 50% no-repeat;
    background-size: 20px auto;
}
.topline__city__change {
    height: 48px;
    color: #64717B;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.topline__city__change>h3,
.topline__city__change>span {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(100,113,123,.5);
    line-height: 1.5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: all ease-in .15s;
}
.topline__city__change>*:first-letter {
    text-transform: uppercase;
}
.topline__city__change>*:hover {
    color:#E32A17;
    border-color: #E32A17;
}
.topline__phone__title,
.topline__messengers__title,
.topline__socials__title {
    color: #64717B;
    font-size: 16px;
}
.topline__phone__title {
    font-size: 14px;
}
.topline__contacts,
.topline__controls {
    display: flex;
    justify-content: space-between;
}
.topline__separator {
    border-left: 1px solid rgba(100,113,123,.05);
}
.topline__phone__number {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 18px;
    text-decoration: none;
}
.topline__messengers,
.topline__socials {
    display: flex;
    gap: 8px;
    align-items: center;
}
.topline__messenger,
.topline__social {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-size: 100% 100%;
    transition: all ease-in .15s;
}
.topline__messenger:hover,
.topline__social:hover {
    box-shadow: 0 2px 0 rgba(100,113,123,.5);
    transform: translateY(-2px);
}
.topline__messenger-tg {
    background-image: url("assets/img/topline-messenger-tg.svg");
}
.topline__messenger-vk {
    background-image: url("assets/img/topline-messenger-vk.svg");
}
.topline__messenger-wa {
    background-image: url("assets/img/topline-messenger-wa.svg");
}
.topline__messenger-tg:hover {
    box-shadow: 0 2px 0 #4d81a9;
}
.topline__messenger-vk:hover {
    box-shadow: 0 2px 0 #1771D6;
}
.topline__messenger-wa:hover {
    box-shadow: 0 2px 0 #40a44a;
}
.topline__social-tg {
    background-image: url("assets/img/topline-social-tg.svg");
}
.topline__social-vk {
    background-image: url("assets/img/topline-social-vk.svg");
}
.topline__social-yt {
    background-image: url("assets/img/topline-social-yt.svg");
}
.topline__control {
    display: block;
    width: 48px;
    height: 48px;
    position: relative;
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: .75;
    transition: all ease-in .15s;
}
.topline__control:hover {
    opacity: 1;
    transform: scale(110%);
}
.topline__control-search {
    background-image: url("assets/img/topline-control-search.svg");
}
.topline__control-profile {
    background-image: url("assets/img/topline-control-profile.svg");
}
.topline__control-cart {
    background-image: url("assets/img/topline-control-cart.svg");
}
.topline__control-cart>span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    min-height: 16px;
    top: 0;
    right: 0;
    padding: 2px;
    color: #fff;
    font-size: 10px;
    line-height: .9;
    border-radius: 4px;
    background-image: linear-gradient(125deg, rgb(255, 31, 0) 0%, rgb(232, 0, 0) 100%);
}
.topline__control-cart>span.cart-count-0 {
    display: none;
}

/*** HEADER ***/
.header__logo,
.header__menu {
    height: 115px;
}
.header__logo {
    width: 100%;
    background: url("assets/img/header-logo.svg") 0 50% no-repeat;
    background-size: auto 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    text-decoration: none;
}
.header__logo>span {
    height: 48px;
    display: flex;
    align-items: end;
    font-family: "Rubik", sans-serif;
    color: #2B465E;
    font-size: 11px;
    text-align: right;
    text-transform: uppercase;
}
.header__menu {
    display: flex;
    justify-content: space-between;
    align-items: start;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 32px;
    height: 48px;
}
.header__button-catalog {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 18px;
    font-weight: 500;
}
.header__menu__lead,
.header__menu__item {
    position: relative;
}
.header__menu__item>a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: all ease-in .1s;
    min-height: 48px;
}
.header__menu__item:hover>a {
    transform: translateY(1px);
    /*text-shadow: 0 8px 16px rgba(100,113,123,.25);*/
    text-shadow: 0 2px 0 #fff;
    color: #E32A17;
}
.header__submenu__wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in .3s;
    z-index:99;
}
.header__menu__lead:hover .header__submenu__wrapper,
.header__menu__item:hover .header__submenu__wrapper {
    visibility: visible;
    opacity: 1;
}
.header__menu__arrow {
    display: inline-block;
    width: 12px;
    height: 7px;
    background: url("assets/img/header-menu-arrow.svg");
    background-size: 100% 100%;
    transition: all ease-in .3s;
}
.header__menu__item:hover .header__menu__arrow {
    transform: rotateX(-180deg);
}
.header__menu__more a {
    min-width: 48px;
}
.header__menu__dots {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url("assets/img/header-menu-more.svg") 50% 50% no-repeat;
    background-size: 100% auto;
}
.header__menu__more.expanded .header__menu__dots {
    background-image: url("assets/img/header-menu-more-expanded.svg");
}
.header__submenu {
    list-style: none;
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.header__submenu li a {
    display: flex;
    text-decoration: none;
    min-width: 300px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    padding: 8px 0 8px 12px;
    border-bottom: 1px solid rgba(100,113,123,.15);
    background: url("assets/img/submenu-item-bullet.svg") 0 50% no-repeat;
}
.header__submenu li:last-child a {
    border: none;
}
.header__submenu li a:hover {
    color:#E32A17;
}

.header__more__wrapper {
    width: 100% !important;
}
.header__more {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin: 0;
}
.header__more__separator {
    border-left: 1px solid rgba(100,113,123,.15);
}
.header__more li a {
    color:#2B465E;
    text-decoration: none;
}

/*** FOOTER ***/
.footer__copy,
.footer__contacts {
    font-weight: 500;
}



/*** WELCOME ***/
.welcome__features {
    text-align: center;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    gap: 16px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}
.welcome__feature {
    flex-grow: 1;
    flex-basis: 0;
}
.welcome__feature img {
    margin-bottom: 16px;
    width: 48px;
}
.welcome__feature h3,
.welcome__feature .h3 {
    font-size: 16px;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
#welcome .box-banner {
    height: 100%;
}

/*** HOME OFFER ***/
#home-offer .box-banner {
    min-height: 200px;
    height: 100%;
}

/*** PERIODIC LIST ***/

.periodic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.periodic {
    flex: 1;
    display: flex;
    height: 100%;
    max-height: 100%;
    flex-direction: column;
}
.periodic-list__item {
    border-bottom: 1px solid rgba(100,113,123,.1);
}

/*** HOME NEWS SALES ***/
.home-news{
    display: flex;
    flex-direction: column;
}
.home-news .periodic-wrapper {
    flex: 1;
}
.periodic-list__item {
    display: flex;
    justify-content: start;
    gap: 16px;
}
.periodic-list__item__img {
    display: flex;
    width: 72px;
    height: 72px;
    overflow: hidden;
}
.periodic-list__item__img img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}
.periodic-list__item__title {
    flex: 1;
    text-decoration: none;
}
.periodic-list__item__date,
.periodic-list__item__category {
    background-color: rgba(100,113,123,.05);
    border: 1px solid rgba(100,113,123,.1);
    color: #6e7a86;
    font-size: 12px;
}
.periodic-list__item__text {
    display: block;
    width: 100%;
    color:#2B465E;
    line-height: 1.2;
    transition: all ease-in-out .15s;
}
.periodic-list__item:hover .periodic-list__item__text {
    color:#E32A17;
}
.home-sales {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr;
}

/*** FORM WIDGET ***/

.form-features-list {
    list-style: none;
    padding: 0;
}
.form-features-list li {
    padding: 8px 0 8px 36px;
    background: url("assets/img/marker-check-green.svg") 0 50% no-repeat;

}

.consultant-message {
    display: flex;
    gap: 16px;
}
.consultant-message__left {
    flex: 1;
}
.consultant-message__right {
    width: 150px;
}
.consultant-message__right img {
    width: 100%;
    height: auto;
}
.consultant-message__bubble {
    position: relative;
    background: #F0F1F2;
    border-bottom-right-radius: 0;
}
.consultant-message__bubble:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #F0F1F2 transparent transparent;
    transform: rotate(0deg);
    bottom: -8px;
    right: 0;
}
.consultant-message__title  {
    color: #2B465E;
    font-weight: 500;
}
.consultant-message__text {
    color: #64717B;
}
.consultant-message__date {
    font-size: 11px;
    color: rgb(100, 113, 123);
}
.consultant-message__name {
    font-family: "Rubik", sans-serif;
    text-align: right;
    display: flex;
    justify-content: right;
    align-items: center;
}
.consultant-message__name span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #5BE307;

    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(91, 227, 7, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(91, 227, 7, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(91, 227, 7, 0);
    }
}
.consultant-message__job {
    font-size: 14px;
    color: #64717B;
    text-align: right;
}
.form-widget-quiz__header {
    background: #F0F1F2;
    min-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-widget-quiz__header .question {
    color: #2B465E;
}
.form-widget-quiz__header .state {
    color: #fff;
    background: #E32A17;
    font-weight: 500;
    font-size: 12px;
}
.form-widget-quiz__progress {
    display: flex;
    border-radius: 2px;
    overflow: hidden;
}
.form-widget-quiz__progress span {
    width: 100%;
    height: 2px;
    background: #F0F1F2;
}
.form-widget-quiz__progress .current,
.form-widget-quiz__progress .completed {
    background: #E32A17;
}
.bordered-list-item {
    display: flex;
    justify-content: left;
    align-items: center;
    border: 1px solid rgba(100,113,123,.25);
    background: #fff;
    gap: 8px;
    min-height: 48px;
}
a.bordered-list-item {
    text-decoration: none;
    color: #333;
    transition: all ease-in .15s;
}
a.bordered-list-item:hover {
    color: #E32A17;
}

.item-bullet {
    background: #E32A17;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
}
.item-text {
    flex: 1;
}
.item-arrow {
    display: block;
    width: 10px;
    height: 18px;
    background: url("assets/img/item-icon-arrow-left.svg") 50% 100% no-repeat;
    background-size: 100% 100%;
    transition: all ease-in .15s;
    opacity: .5;
}

.form-input {
    height: 48px;
}
.contact-method {
    display: flex;
    min-height: 48px;
    justify-content: left;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #2B465E;
}
.contact-method label {
    display: flex;
    align-items: center;
    gap: 8px;
}
input[type='radio'] {
    accent-color: #2B465E;
}

/*** COMMON FEATURE ***/
.common-feature {
    text-decoration: none;
    color: #64717B;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.common-feature img {
    width: 64px;
    height: auto;
}
.common-feature h3,
.common-feature .h3 {
    font-size: 18px;
    color: #333;
    min-height: 32px;
    width: 100%;
    border-bottom: 1px solid #E32A17;
}
.common-feature .desc {
    width: 100%;
    min-height: 48px;
}
.common-feature .button {
    width: 100%;
}

/*** COMMON RESPONSE ***/
.common-response {
    display: flex;
    flex-direction: column;
}
.common-response__header {
    display: flex;
    gap: 12px;
}
.common-response__photo {
    width: 48px;
    height: 48px;
    background: #F7F8F8 url("assets/img/response-icon-photo.svg") 50% 50% no-repeat;
    background-size: 24px 24px;
    border-radius: 50%;
}
.common-response__person .h3 {
    font-size: 18px;
    color: #2B465E;
    font-weight: 500;
    display: block;
    text-decoration: none;
    margin-bottom: 0;
}
.common-response__person span {
    color: #64717B;
    font-size: 14px;
}
.common-response__rating {
    display: flex;
    gap: 8px;
}
.response-star {
    width: 15px;
    height: 15px;
    background-size: 100% 100%;
}
.star-yellow {
    background-image: url("assets/img/response-icon-star-yellow.svg");
}
.star-grey {
    background-image: url("assets/img/response-icon-star-grey.svg");
}
.common-response__text {
    flex: 1;
}
.common-response__text *:last-child {
    margin-bottom: 0;
}
.common-response__footer {
    display: flex;
    justify-content: space-between;
    color: #64717B;
    font-size: 14px;
}
.response-icon-checked {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("assets/img/response-icon-checked.svg");
    background-size: 100% 100%;
}
.common-response__footer .checked {
    display: flex;
    align-items: center;
    gap: 8px;
}
.common-response__text .more {
    color: #64717B;
}
.common-response__text .more:hover {
    color: #E32A17;
}
#common-responses .block-header {
    gap: 16px;
}
#common-responses .block-header .add {
    flex-grow: 1;
}
.yandex-ratings {
    display: flex;
    gap: 16px;
}
.yandex-ratings .title {
    font-weight: 500;
    color: #64717B;
}
.yandex-ratings .warehouse {
    width: 50%;
}
.yandex-ratings .warehouse>a {
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;

}
.yandex-ratings img {
/*    max-width: 150px;*/
    width: 100%;
    border: 1px solid rgba(100,113,123,.2);
}
/*** HOME RESPONSES ***/
#common-responses .common-response {
    height: 100%;
}
#common-responses .f-carousel {
    --f-carousel-spacing: 16px;
    --f-carousel-slide-width: calc((100% - 32px) / 3);
}
.f-carousel__nav {
    visibility: hidden;
    opacity: 0;
    transition: all ease-in .15s;
}
.f-carousel__nav button.f-button[disabled] {
    display: none;
}
.f-carousel:hover .f-carousel__nav {
    visibility: visible;
    opacity: 1;
}
.f-carousel__nav button.f-button {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(100,113,123,.06);
    border: 1px solid rgba(100,113,123,.2);
}

.f-carousel__nav button.f-button:hover {
    background: #fff;
}
#common-responses .response-comment {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#common-responses .response-comment .text {
    flex: 1;
}
#common-responses .response-comment .text *:last-child {
    margin-bottom: 0;
}

/*** FAQ WIDGET ***/
.faq-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    list-style: none;
    padding: 0;
}
.faq-list>li {
    border-bottom: 1px solid #D8DBDE;
    padding-bottom: 8px;
}.faq-list>li:last-child {
    border-bottom: none;
}
.faq-question {
    text-decoration: none;
}
.faq-question h3,
.faq-question .h3 {
    font-weight: 400;
    margin: 8px 0;
    padding-left: 32px;
    color: #333;
    font-size: 18px;
    background: url("assets/img/faq-marker-plus.svg") 0 50% no-repeat;
}
.faq-answer {
    background: #F0F1F2;
    display: none;
    width: 100% !important;
    margin: 8px 0;
}
.faq-answer>* {
    width: 100%;
}
.faq-answer p:last-child {
    margin: 0;
}
.faq-list .expanded .faq-question h3,
.faq-list .expanded .faq-question .h3 {
   background-image: url("assets/img/faq-marker-minus.svg");
}


/*** HOME FAQ ***/
#home-faq .faq-widget-list__wrapper {
    height: 300px;
}
#home-faq .faq-widget {
    justify-content: space-between;
}

/*** HOME ABOUT ***/
.home-about-features {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr;
}
.home-about-video,
.home-about-comments .box-grey {
    height: 100%;
}


/*** SHIPPING LIST ***/
.shipping-cities__wrapper {
    background: #F0F1F2;
}
.shipping-cities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}
.shipping-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64717B;
    border-bottom: 1px solid rgba(100,113,123,.15);
    margin-right: 30px;
}
.shipping-city__title {
    padding-left: 22px;
    background: url("assets/img/shipping-icon-pin.svg") 0 5px no-repeat;
    text-decoration: none;
    color: #64717B;
}
.shipping-city .title {
    color: #2B465E;
    font-weight: 500;
}
.shipping-city .region {
    font-size: 14px;
}


/*** CATALOG ITEM ***/
.view-table .catalog-item {
    display: flex;
    gap: 16px;
}

.video-caption {
    background: #000;
    color: #b6b6b6;
    font-size: 14px;
    text-align: center;
}
.video-caption p:last-child {
    margin: 0;
}
.fancybox__html5video {
    height: 100%;
    max-height: 100%;
    width: auto;
}
.catalog-item__photo {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 125%;
}
.view-table .catalog-item__photo {
    width: 100px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.catalog-item__photo-inner {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    transition: all ease-in-out .5s;
    background: #F0F1F2;
}
.catalog-item__photo-inner img,
.catalog-item__photo-inner video {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}
.catalog-item__no-photo-label {
    padding-top: 80px;
    background: url("assets/img/no-photo-label.svg") 50% 0 no-repeat;
    background-size: 64px 64px;
    text-align: center;
    font-size: 18px;
    color: #8D9BA8;
    position: absolute;
}
.view-table .catalog-item__no-photo-label {
    padding-top: 48px;
    background: url("assets/img/no-photo-label.svg") 50% 0 no-repeat;
    background-size: 42px 42px;
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
    color: #8D9BA8;
}
a.catalog-item__photo:hover .catalog-item__photo-inner {
    transform: scale(105%);
}
.view-table .catalog-item__details {
    flex: 1;
}

.catalog-item__title {
    text-decoration: none;
    display: block;
}
.catalog-item__title h3,
.catalog-item__title .h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-item__spec {
    font-size: 14px;
    line-height: 1.2;
    color: #64717B;
    flex: 1;
}
.catalog-item__price {
    height: 48px;
}
.catalog-item__spec .val,
.catalog-item__spec .val a {
    color: #2B465E;
    text-decoration: none;
}
.catalog-item__spec .val .price {
    font-weight: 500;
    font-size: 16px;
}
.catalog-item__spec .sale-label {
    color: #E32A17;
}
.catalog-item__spec .val .sale-price-current {

}
.catalog-item__spec .val .sale-price-old {
    font-weight: 400;
    position: relative;
    color: #64717B;
}

.catalog-item__spec .val .sale-price-old:before {
    border-bottom: 2px solid #E32A17;
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    transform: rotate(-12deg);
}

.catalog-item__more,
.catalog-item__prices {
    display: flex;
    gap: 8px;
}

.catalog-item__specs {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: .75;
}
.view-grid .catalog-item__specs {
    display: block;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.view-grid .catalog-item__specs .catalog-item__spec {
    display: inline;
}
.view-grid .catalog-item__specs .catalog-item__spec .label {
    display: none;
}
.view-grid .catalog-item__specs .catalog-item__spec .val {
    text-wrap: nowrap;
    display: inline;
}
.view-grid .catalog-item__specs .catalog-item__spec .val:after {
    content: "•";
    margin-left: 4px;
}
.view-grid .catalog-item__specs .catalog-item__spec:last-child .val:after {
    display: none;
}

.view-grid .catalog-item__more>*,
.view-table .catalog-item__more .catalog-item-go,
.view-table .catalog-item__more .out-of-stock {
    flex: 1;
}
.catalog-item-icon-video {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("assets/img/catalog-item-icon-video.svg");
    background-size: 100% 100%;
}
.catalog-item-icon-cart {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("assets/img/catalog-item-icon-cart.svg");
    background-size: 100% 100%;
}
.catalog-item__price {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    background: #F0F1F2;
    padding: 0 8px;
    overflow: hidden;
    text-wrap: nowrap;
    position: relative;

}
.catalog-item-price-info {
    width: 16px;
    height: 16px;
    display: block;
    background-image: url("assets/img/catalog-item-price-info.svg");
    background-size: 100% 100%;
    position: absolute;
    top:4px;
    right: 4px;
}
.view-grid .catalog-item__prices-per-item {
    display: none;
}
.view-grid .catalog-item__prices:hover .catalog-item__prices-per-item {
    display: flex;
}
.view-grid .catalog-item__prices:hover .catalog-item__prices-per-piece {
    display: none;
}
.view-grid .catalog-item-add-to-cart,
.view-table .catalog-item-video {
    width: 48px;
}
.view-grid .catalog-item-add-to-cart .button-label,
.view-table .catalog-item-video .button-label {
    display: none;
}
.view-table .catalog-item-add-to-cart,
.view-table .catalog-item__more {
    width: 200px;
}
.view-table .catalog-item__info {
    display: flex;
    gap: 10px;
}
.view-table .catalog-item__specs {
    flex: 1;
    background: #FBFBFC;
    justify-content: space-between;
    padding: 8px;
    margin-bottom: 0;
    height: 48px;
 }
.view-table .catalog-item__title {
    margin-bottom: 16px;
}
.catalog-item .sale-table {
    display: none;
}
.add-to-cart-wrapper {
    position: relative;
}
.added_to_cart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: #4EC85A url("assets/img/added-to-cart-check.svg") 50% 50% no-repeat;
    text-indent: -9999px;
}
.catalog-item .button {
    padding-left: 8px;
    padding-right: 8px;
}
.catalog-item-gallery:hover .catalog-item-front-image {
    display: none;
}

/*** CATALOG LOOP ***/
.pc-active-filter {
    margin-bottom: 16px;
}
.pc-active-filter__list {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 8px;
}
.pc-active-filter__list-item {
    width: auto;
}


.pc-active-filter__item-link,
.pc-active-filter__item-link:focus,
.pc-active-filter__item-link:active,
.pc-active-filter__item-link:hover {
    border: 1px solid rgba(100,113,123,.5);
    color: #64717B;
    background: rgba(100,113,123,.05);
    text-shadow: 0 1px 0 #fff;
    text-decoration: none !important;
    display: flex;
    width: auto;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(100,113,123,.5);
}

.pc-active-filter__item-delete {
    display: block;
    width: 14px;
    height: 14px;
    background: url("assets/img/header-menu-more-expanded.svg") 50% 50% no-repeat;
    background-size: 100% auto;
    border: none;
    float: none;
    text-indent: -9999px;
}
.pc-active-filter__item-link:after {
    display: none;
}

.catalog-loop__meta,
.catalog-loop-view,
.catalog-loop-view-changer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.catalog-loop-view-changer {
    gap: 8px;
}
.view-changer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background:rgba(100,113,123,.05);
    cursor: pointer;
}
.view-changer-grid span {
    background: url("assets/img/catalog-loop-view-grid.svg") 50% 50% no-repeat;
}
.view-changer-table span {
    background: url("assets/img/catalog-loop-view-table.svg") 50% 50% no-repeat;
}
.view-changer-item span {
    display: block;
    width: 22px;
    height: 22px;
    background-size: 100% auto;
    opacity: .5;
}
.view-changer-item.active span {
    opacity: 1;
}

.catalog .catalog-loop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}
.catalog .catalog-loop.view-table {
    grid-template-columns: 1fr;
}


.filter--style-premmerce .filter__item, .filter--style-custom .filter__item {
    padding: 0;
    margin-bottom: 16px;
}
.filter--style-premmerce .filter__item:last-child, .filter--style-custom .filter__item:last-child {
    margin-bottom: 0;
}
.filter--style-premmerce .filter__title, .filter--style-custom .filter__title {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding-left: 24px;
    background: url("assets/img/box-white-title-marker.svg") 0 50% no-repeat;
    background-size: 16px 16px;
}
.filter__inner {
    padding: 8px;
    border-radius: 8px;
    background: rgba(100,113,123,.05);
    margin-top: 8px;
}
.filter__checkgroup-check {
    border-color: rgba(100,113,123,.5);
    border-radius: 2px;
}
.filter--style-premmerce .filter__checkgroup-title, .filter--style-custom .filter__checkgroup-title {
    font-size: 14px;
}

/*** COMMON PAGE ***/
.common-page__header h1 {
    font-weight: 600;
}
.common-page__header .box-banner .text-muted {
    color: #fff !important;
}
.common-page__header .box-banner .text-muted a, .common-page__header .box-banner .text-muted a:visited {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.common-page__header .box-banner .text-muted a:hover, .common-page__header .box-banner .text-muted a:focus {
    color:#fff;
    border-color: rgba(255,255,255,.5);
}
.common-page__header__breadcrumbs {
    opacity: .75;
    transition: all ease-in-out .5s;
}
.common-page__header__breadcrumbs a {
    border: none;
}
.common-page__header__breadcrumbs:hover {
    opacity: 1;
}
.common-page__content img {
    max-width: 100%;
}

/*** MODAL CITY ***/
#modal-city .toponim-list__wrapper {
    background: #F0F1F2;
}
#modal-city .toponim-list {
    max-height:400px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
#modal-city .toponim-list li {
    margin-right: 24px;
}
#modal-city .toponim-list a {
    display: block;
    text-decoration: none;
    color: #64717B;
    border-bottom: 1px solid rgba(100,113,123,.15);
    background: url("assets/img/shipping-icon-pin.svg") 0 12px no-repeat;
    padding: 8px 0 8px 24px;
}
#modal-city .toponim-list span {
    color: #2B465E;
    font-weight: 500;
    display: block;
}

/*** MODAL SEARCH ***/
#modal-search input[name=s] {
    height: 48px;
}
#modal-search form {
    position: relative;
}
#modal-search input[name=s]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
#modal-search .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent url("assets/img/topline-control-search.svg") 50% 50% no-repeat;
    background-size: 24px auto;
    opacity: .5;
    transition: all ease-in-out .5s;
}
#modal-search .search-submit {
    opacity: 1;
}



/*** NEWS LOOP ***/
.news-loop-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 16px;
}
.news-loop-item__img {
    overflow: hidden;
}
.news-loop-item__img img {
    width: 100%;
    height: auto;
}
.news-loop-item__content {
    flex: 1;
}
.news-loop-item__content h2 {
    font-size: 24px;
    margin: 0;
}
.news-loop-item__content h2 a {
    color: #333;
    text-decoration: none;
}
.news-loop-item__meta {
    display: flex;
    gap: 8px;
}
.news-loop-item__meta .date,
.news-loop-item__meta .category {
    background-color: rgba(100,113,123,.05);
    border: 1px solid rgba(100,113,123,.1);
    color: #6e7a86;
    font-size: 14px;
}
.news-loop-item__meta .category a {
    color: #6e7a86;
    text-decoration: none;
}
.news-loop-item .button-more {
    display: inline-flex;
}
.sales-loop-item .box-banner__content {
    min-height: 300px;
    justify-content: center;
}

/*** FORM ***/
.form {
    transition: all ease-in-out .5s;
    position: relative;
}
.note {
    /*position:absolute;*/
    /*top:15px;*/
    /*left:15px;*/
    /*right:15px;*/
    display:none;
    z-index:99;
}
.notification_error, .notification_ok {
    padding: 10px;
    background-color: #ededf5;
    border-radius: 5px;
    text-align: center;
}
.notification_error {
    background: #ffdfdf;
    color: #a12221;
}
.notification_ok {
    background: #81be40;
    color: #ffffff;
}
.form-send[disabled] {
    pointer-events: none;
    opacity: .75;
    cursor:not-allowed;
}
input.required-field {
    display: none;
}
.accept {
    font-size: 12px;
}
.form-desc {
    background: #F0F1F2;
    color: #6e7a86;
    font-size: 14px;
}

.form-load {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(231,231,243,.25);
}
.form-load>div {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
}
.form-load>div div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.form-load>div div:nth-child(1) {
    animation-delay: -0.45s;
}
.form-load>div div:nth-child(2) {
    animation-delay: -0.3s;
}
.form-load>div div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*** PAGINATION ***/
.woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin-top: 32px;
}
.woocommerce-pagination ul.page-numbers a,
.woocommerce-pagination ul.page-numbers span.current {
    display:flex;
}


.wp-paginate .next,
.wp-paginate .prev,
.wp-paginate .page,
.wp-paginate a:hover,
.woocommerce-pagination ul.page-numbers span.current,
.woocommerce-pagination ul.page-numbers a,
.woocommerce-pagination ul.page-numbers a:hover {
    border: 1px solid rgba(227,42,23,.5);
    color: #E32A17;
    background: rgba(227,42,23,.05);
    text-shadow: 0 1px 0 #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}
.wp-paginate a:hover,
.wp-paginate .page.current,
.woocommerce-pagination ul.page-numbers a:hover,
.woocommerce-pagination ul.page-numbers span.current {
    background: transparent;
    border: 1px solid rgba(100,113,123,.25);
    color: #6e7a86;
}

/*** WAREHOUSE CARD ***/
.warehouse-map {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(100,113,123,.5);
}
.warehouse-contacts-list {
    list-style: none;
    padding: 0;
}
.warehouse-contacts-list li {
    padding: 8px 0 8px 36px;
    background: url("assets/img/marker-check-grey.svg") 0 50% no-repeat;

}

/*** QUICK MENU ***/
#quick-menu {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 20;
    transform: translateY(100%);
}
#quick-menu>.inner {
    display: flex;
    width: fit-content;
    justify-content: start;
    align-items: start;
    gap: 8px;
    box-shadow: 0 4px 32px rgba(100,113,123,.35);
}
@keyframes qmSlideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes qmSlideDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}
#quick-menu.qm-unfixed {
    position: fixed;
    animation-name: qmSlideDown;
    animation-duration: .5s;
}
#quick-menu.qm-fixed {
    position: fixed;
    animation-name: qmSlideUp;
    animation-duration: .5s;
    transform: translateY(0);
}



#lp-second-category .row>div:first-child>.box-banner,
#lp-second-country .row .box-banner,
#lp-second-inside .row .box-banner,
#lp-store-differences .row .box-banner,
#lp-stock-type .row .box-banner {
    height: 100%;
}

#lp-second-popular .catalog-loop .products {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}


/*** STOCK BRAND LIST ***/
.f-carousel {
    margin-bottom: 0 !important;
}
#lp-stock-brands .stock-brand {
    height: 100%;
}
#lp-stock-brands .f-carousel {
    --f-carousel-spacing: 16px;
    --f-carousel-slide-width: calc((100% - 32px) / 6);
}
.f-carousel__slide {
    padding-bottom: 16px;
}
.stock-brand {
    text-align: center;
}
.stock-brand h3,
.stock-brand .h3 {
    font-size: 22px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff url("assets/img/stock-brand-bg.svg") 50% 50% no-repeat;
    background-size: auto 100%;
    margin-bottom: 8px;
    padding: 20px 0;
}

/*** PRODUCTS CAROUSELS ***/

.products-carousels > div {
    display: none;
}
.products-carousels-item.active {
    display: block;
}
.products-carousels-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
}
.products-carousels-tabs li {
    cursor: pointer;
}
.products-carousel .catalog-item {
    height: 100%;
}
.products-carousel.f-carousel {
    --f-carousel-spacing: 16px;
    --f-carousel-slide-width: calc((100% - 48px) / 4);
}
.f-carousel__dots {
    position: relative !important;
    left: inherit !important;
    right: inherit !important;
    bottom: inherit !important;
}

/*** SHOWROOM PHOTOS ***/
#lp-stock-showroom .f-carousel {
    --f-carousel-spacing: 16px;
    --f-carousel-slide-width: calc((100% - 48px) / 6);
}
#lp-stock-showroom .f-carousel__slide img {
    width: 100%;
}

.catalog-item-card-details .added_to_cart {
    text-indent: 0;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.catalog-item-card-details .woocommerce-product-details__short-description {
    font-size: 14px;
    color: #64717B;
}
.out-of-stock {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100,113,123,.15);
    color: #64717B;
    border-radius: 8px;
}

.catalog-item-card-details .cart .quantity {
    display: none;
}


.catalog-item-card-details .table tr:last-child>* {
    border: none;
}
.catalog-item-card-details .table th {
    font-weight: 400;
    width: 50%;
    color: #64717B;
 }
.catalog-item-card-details .table a {
    color: #333 !important;
}

.woocommerce-info a.button {
    color: #333;
    font-weight: 400;
}
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a,
.cart_item .product-name a {
    color: #606060;
    text-decoration: none;
    border-color: #ccc;
}
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
    color: #333;
    border: none;
    font-weight: 500;
}

.woocommerce-Input,
.woocommerce-form .input-text,
.woocommerce-input-wrapper input,
#order_comments {
    height: 48px;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#order_comments {
    height: 96px;
}

.cart_item .product-thumbnail img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}
.woocommerce a.remove {
    color: #606060 !important;
}
.woocommerce a.remove:hover {
    background: transparent;
    color:#E32A17 !important;
}
.woocommerce-shipping-destination,
.woocommerce-privacy-policy-text {
    display: none;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment,
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    background: rgba(100,113,123,.15);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    background: rgb(228,43,24);
    background: linear-gradient(60deg, rgba(228,43,24,1) 0%, rgba(233,60,42,1) 50%, rgba(242,112,75,1) 100%);
    color: #fff !important;
    text-shadow: 0 1px 1px rgb(92, 8, 0, .35);
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}
.form-row.place-order {
    display: flex;
    align-content: center;
    justify-content: center;
}
.woocommerce-EditAccountForm span>em {
    font-size: 12px;
    font-style: normal;
    color: #64717B;
}
#billing_first_name_field {
    width: 100%;
}
#billing_country_field,
#billing_address_1_field .optional {
    display: none;
}

.cart-price-crossed>span {
    text-decoration: line-through;
    color: #64717B;
    font-size: .85em;
}
.cart-price-min-title>span {
    color: rgb(228,43,24);
    font-size: .85em;
}
.cart-price-sale {
    color: rgb(228,43,24);
}

.cart-price-sale>span.sale-value {
    display: inline-block;
    padding: 4px;
    line-height: 1;
    color: #fff;
    background: rgb(228,43,24);
    border-radius: 4px;
    margin-right: 8px;
    font-size: 12px;
}
.cart-sale-info,
.cart-sale-info a {
    background: #c4dab2;
    color: #425138;
}

/*.catalog-item__prices.special .catalog-item__spec .label {*/
/*    color: rgb(184, 111, 107);*/
/*}*/
/*.catalog-item__prices.special .catalog-item__spec .val {*/
/*    color: rgb(202, 42, 31);*/
/*}*/

.ajax_add_to_cart.added {
    opacity: 0;
}
.ajax_add_to_cart.loading {
    position: relative;
}
.ajax_add_to_cart.loading span {
    opacity: 0;
}
.ajax_add_to_cart.loading:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background:  url("assets/img/loading.svg") 50% 50% no-repeat;
    background-size: auto 90%;
}

.catalog-item-card-details p.stock.in-stock {
    display: inline-block;
    color: #fff;
    border-radius: 8px;
    background: #4EC85A url("assets/img/added-to-cart-check.svg") 8px 50% no-repeat;
    background-size: 12px 12px;
    padding: 4px 8px 4px 28px;
}

.sales-loop-item.expired img {
    filter: grayscale(1);
}

.grecaptcha-badge {
	right: -256px !important;
}

.term-description {
    border: 1px solid rgba(100,113,123,.1);
    border-radius: 16px;
    padding: 16px;
    color: #6e7a86;
    color: #64717B;
    margin-bottom: 16px;
}
.term-description>p:last-child {
    margin-bottom: 0;
}

.catalog-item__labels {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 8px;
}

.catalog-item__label {
    background-color: var(--wc-green);
    color: #fff;
    line-height: 1;
    padding: 4px 6px;
    font-size: 13px;
    text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

.catalog-item__label.label-lot {
    background: #129cf4;
}
.catalog-item__label.label-sale {
    background: rgb(228,43,24);
}
#clearfy-cookie {
    left: 50%;
    right: inherit;
    bottom: 16px;
    padding: 16px;
    border-radius: 16px;
    width: 678px;
    margin-left: -339px;
}
.clearfy-cookie-container {
    display: flex;
    gap: 8px;
    flex-direction: row;
    text-align: left;
}
#clearfy-cookie a {
    color: #64717B;
}
#clearfy-cookie-accept {
    border-radius: 8px;
    background-color: #909ca5;
    margin: 0;
}