@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

/* reset */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, abbr, acronym, address,
img, center, ol, ul, li, dl, dt, dd, form, fieldset, label, legend, input, select, button, textarea, table, tbody, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, nav, section, time, mark, audio, video {
	border: 0; font-size: 100%; font: inherit; vertical-align: baseline; padding: 0; margin: 0; }
header, footer, nav, section, article, time { display: block; }
ol, ul { list-style: none; }
table { border-spacing: 0; }
input, button { background: none; }
button::-moz-focus-inner, input[type=submit]::-moz-focus-inner, input[type=button]::-moz-focus-inner { padding: 0; border: 0; }

/* basic */

html, body { width: 100%; height: auto; min-height: 100vh; }
body { background: #fff; color: #1e1e1e; font: 400 1em/1 'PT Sans', sans-serif; display: flex; flex-direction: column; }
a { color: #548eff; text-decoration: underline; outline: none; }
a:hover { text-decoration: none; }
b { font-weight: 700; }
input:focus { outline: none; }
input::-webkit-input-placeholder, input::-moz-placeholder, input::-ms-placeholder { color: #888; opacity: 1; }
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.red { color: #fb6751; }
img, svg { display: block; }
img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.trigger { cursor: pointer; }
.min_flag { display: none; }
.cut { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* form elements */

.fieldset {
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.fieldset:not(:first-of-type) { margin-top: 1rem; }
label { user-select: none; }

input[type=text], input[type=password], input[type=search], input[type=tel], input[type=email], input[type=time], textarea, select {
    background: #fcfcfc;
    border: #e7e7e7 0.0625rem solid;
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    outline: none;
}

input[type=text], input[type=password], input[type=search], input[type=tel], input[type=email], input[type=time], select {
    line-height: 2.25rem;
    height: 2.25rem;
    padding: 0 1rem;
}

textarea {
    line-height: 1.25;
    min-height: 5.5rem;
    padding: 1rem;
    resize: vertical;
}

input[type=text]:focus, input[type=password]:focus, input[type=search]:focus,
input[type=tel]:focus, input[type=email]:focus, input[type=time]:focus, textarea:focus, select:focus { border-color: #afafaf; background: #fff; }


input[type=text]:hover, input[type=password]:hover, input[type=search]:hover,
input[type=tel]:hover, input[type=email]:hover, input[type=time]:hover, textarea:hover, select:hover { border-color: #afafaf; }

input:not(:placeholder-shown), textarea:not(:placeholder-shown) { border-color: #ccc; }

button, .button, input[type=button], input[type=submit] {
    background: #fdc101;
    border-radius: 0.25rem;
    color: #1e1e1e;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 2.25rem;
    height: 2.25rem;
    display: block;
    min-width: 10rem;
    padding: 0 1.5rem;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s linear;
}

button:hover, .button:hover, input[type=button]:hover, input[type=submit]:hover { background: #fd9a01; }

button:disabled, .button.disabled, input[type=button]:disabled, input[type=submit]:disabled {
    opacity: 0.5;
    cursor: default;
}

/* layout */

.wrapper {
    width: 100%;
    min-height: 100vh;
    margin: auto;
}

.container {
    background: #fbfbfb;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
}

.header, .footer, .content {
    min-width: 20rem;
    max-width: 100%;
}

.header {
    order: -1;
    z-index: 2;
}
.footer {
    order: 3;
    z-index: 0;
}

.header .inner, .footer .inner {
    display: flex;
    align-items: center;
    position: relative;
    margin: auto;
}

.content {
    position: relative;
    flex: 1;
}

section[role=main], article[role=main] { flex: 1; }

/* .content > .inner {
    transition: opacity 0.3s linear, visibility 0.3s linear;
} */

.content.loading > .inner {
    opacity: 0;
    visibility: hidden;
}

/* helpers */

.overlay, .sub_overlay, .amenu_overlay {
    background: rgba(0,0,0,0.4);
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
}

.overlay { z-index: 2; }
.sub_overlay, .amenu_overlay { z-index: 1; }


/* header */

.header .top_line { background: #fff; }
.header .inner { justify-content: space-between; }


/* logo */

.logo {
    display: block;
    overflow: hidden;
}

.logo svg {
    width: 15rem;
    height: 3.125rem;
}

.logo svg > * { transform-origin: left center; }
.mobile_header .logo .house, .mobile_header .logo .text,
.header .logo .house, .header .logo .text, .header .logo .slogan, .footer .logo .speaker { fill: #1e1e1e; }
footer .logo .house, .footer .logo .slogan{ fill: #ffff; }
.mobile_header .logo .speaker, .header .logo .speaker, .footer .logo .text { fill: #fdc101; }

.header .top_line svg { fill: #8e8e8e; }
.header .top_line svg .back { fill: none; }

.theme_switch { cursor: pointer; }
.theme_switch span { display: none; }

.theme_switch svg {
    width: 1.25rem;
    height: 1.25rem;
}

.theme_light .t_light { display: block; }
.theme_dark .t_dark { display: block; }

/* catalog menu */

.menu_switch {
    order: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3rem;
    margin: 0 0 0 -1rem;
}

.menu_switch svg {
    fill: #1e1e1e;
    width: 1.25rem;
    height: 1.25rem;
}

.menu_switch use {
    background: #877566;
    position: absolute;
    width: 1.25rem;
    height: 0.125rem;
    margin: auto;
    transition: transform 0.3s linear, opacity 0.3s linear;
    transform-origin: center;
}

.menu_switch use:nth-child(1) { top: 0.8125rem; }
.menu_switch use:nth-child(2) { top: 0; bottom: 0; }
.menu_switch use:nth-child(3) { bottom: 0.8125rem; }

.menu_switch.active use:first-child { transform: rotate(45deg) translateY(0.375rem); }
.menu_switch.active use:last-child { transform: rotate(-45deg) translateY(-0.375rem); }
.menu_switch.active use:nth-child(2) { opacity: 0; }

.catalog_menu { position: relative; }
.catalog_menu li { position: relative; }

/* dev - dummy elements for hover */
/*.catalog_menu .tabs dd >  ul > li:hover::before, .catalog_menu ul > li:hover::after { 
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    height: 0.25rem;
}

.catalog_menu .tabs dd >  ul > li:hover::before { top: -0.25rem; }
.catalog_menu .tabs dd >  ul > li:hover::after { bottom: -0.25rem; }*/

.catalog_menu a {
    color: #1e1e1e;
    text-decoration: none;
}

.catalog_menu .tabs dd > ul > li > a {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0.25rem 1rem 0.25rem 2.625rem;
}

.catalog_menu .tabs dd > ul > li > a::before {  dev 
    content: '';
    background: #548eff;
    border: 0.0625rem solid #548eff;
    box-shadow: 0 0 0 0.25rem #fff inset;
    border-radius: 50%;
    display: block;
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
    flex: 0 0 1rem;
}

.catalog_menu .tabs dd > ul > li > a > svg {
    fill: #3b79c4;
    width: 1.125rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    flex: 0 0 1.125rem;
}

.catalog_menu .submenu { display: none;  }

.submenu a {
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    white-space: nowrap;
    display: block;
}

/* brands */

.brands_legend {
    border-bottom: 0.0625rem solid #e2e2e2;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
}

.brands_legend, .brands_legend li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.brands_legend li {
    color: #999;
    font-size: 0.75rem;
}

.brands_legend li:not(:last-child) { margin-right: 1.25rem; }

.brands_legend li::before {
    content: '';
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 0.5rem;
}

.brands li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.brands i {
    color: #999;
    font-size: 0.75rem;
    font-style: normal;
    display: block;
    margin-left: 0.3125rem;
}

/*.brands i::before { content: '('; }
.brands i::after { content: ')'; }*/

.brands a {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

.sidebar .brands a, .panel .brands a {
    color: #1e1e1e;
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    white-space: nowrap;
    flex: 1;
    padding: 0.125rem 0 0.125rem 0.625rem;
}

.sidebar .brands a:hover, .panel .brands a:hover { color: #548eff; }

.brands a::before, .search_categories a::before {
    content: '';
    border-radius: 0.125rem;
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    margin-right: 0.5rem;
}

.brands_legend li.hi_end::before, .hi_end a::before { background: #54c930; }
.brands_legend li.hi_mid::before, .hi_mid a::before { background: #fdd80a; }
.brands_legend li.hi_low::before, .hi_low a::before { background: #fa2607; }
.not_supplied a::before { background: #999; }

.brands svg, .f_brands svg {
    width: 1rem;
    height: 0.6875rem;
    margin-left: 0.5rem;
}

 .box_title + .box_body.brands {  margin-top: -1rem; }

/* popular items */

.popular_items ul { margin-left: 0.5rem; }
.popular_items li:not(:last-child) { margin-bottom: 0.5rem; }

.popular_items a {
    text-decoration: none;
    font-size: 0.8125rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    transition: color 0.2s linear;
}

.popular_items a:hover { color: #1e1e1e; }

.popular_items a::before {
    content: '';
    background: #999;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    width: 0.375rem;
    height: 0.375rem;
    margin: -0.125rem 0.625rem 0 0.125rem;
}

.popular_items a:hover::before { background: #1e1e1e; }

/* search */

.search, .search form { position: relative; }
.search input[type=text] { min-width: 100%; }

.search input[type=submit] {
    background: url(../images/sprite.svg#search) center / 1.125rem 1.125rem no-repeat;
    text-indent: -999rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2.25rem;
    height: 2.25rem;
    min-width: inherit;
    padding: 0;
    opacity: 0.3;
    transition: opacity 0.2s linear;
}

.search input[type=submit] {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    width: 
}

.search input:focus::placeholder { opacity: 0; }

.search_switch svg {
    fill: #1e1e1e;
    width: 1.125rem;
    height: 1.125rem;
}

.search_results {
    background: #fff;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s ease-out, opacity 0.25s ease-out, top 0.25s ease-out;
}

.search_results.loading, .search_results.complete {
    visibility: visible;
    opacity: 1;
    z-index: 99;    
}

.search_results.loading {
    background: #fff url(../images/sprite.svg#preloader) center / 2.5rem 0.625rem no-repeat;
    min-height: 10rem;
}

.search_results.complete { background: #fff; }

/* cart, promos, user box */

.promos, .user_box a, .cart_switch {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.cart_switch b, .promos b {
    color: #fff;
    background: #548eff;
    border-radius: 0.4375rem;
    font-size: 0.625rem;
    font-weight: 700;
    font-style: normal;
    line-height: 0.875rem;
    text-align: center;
    display: block;
    position: absolute;
    min-width: 0.875rem;
}

.promos, .user_box a {
    color: #1e1e1e;
    text-decoration: none;
}

.user_box, .cart_switch { position: relative; }
.user_menu a { font-size: 0.875rem; }
.user_menu a:hover { text-decoration: underline; }

.promos svg, .user_box svg, .shopping_cart .cart_switch svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.user_box .trigger svg:last-of-type:not(:first-of-type) {
    width: 0.75rem;
    height: 0.375rem;
    margin: 0 0 0 0.5rem;
}

/* footer */

.footer {
    background: #1e1e1e;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.copyrights {
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
}

/* header & footer content boxes */

.site_menu, .site_menu li, .language, .language ul, .language li, .messengers ul,
.apps a, .contact_box .tel, .address_box a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.site_menu { flex-wrap: wrap; }
.site_menu li { line-height: 1.5; }
.site_menu li:not(:last-child), .language li:not(:last-child) { margin-right: 0.625rem; }

.site_menu li:not(:last-child)::after, .language li:not(:last-child)::after {
    content: '•';
    display: block;
    font-size: 0.75rem;
    margin-left: 0.625rem;
}

.site_menu a, .language { font-size: 0.875rem; }
.site_menu a:hover, .language a:hover, .apps a:hover { text-decoration: underline; }

.language, .language li:not(.current) a, .apps > span { color: #999; }

.language li {
    font-size: 0.875rem;
    line-height: 1.25;
}

.language > span {
    display: block;
    margin-right: 0.625rem;
}

.contact_box dt {
    color: #999;
    font-size: 0.875rem;
}

.footer .contact_box dt { margin-bottom: 0.75rem; }
.footer .contact_box.showroom { display: none; }

.contact_box .phone svg {
    width: 0.875rem;
    height: 1.25rem;
    margin-right: 0.25rem;
}

.contact_box .tel { white-space: nowrap; }

.footer .messengers { margin-top: 0.75rem; }
.messengers li:not(:last-child) { margin-right: 1rem; }

.messengers a {
    display: block;
    position: relative;
}

.messengers .telegram a::after, .messengers .bot a::after {
    content: '';
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.messengers svg {
    width: 1.75rem;
    height: 1.75rem;
}

.footer .phone svg, .footer .messengers svg .main, .footer .apps svg { fill: #fff; }
.footer .messengers .back { fill: none; }

.messengers a:hover .back { fill: #fff; }

.header .messengers .telegram a::after, .header .messengers .bot a::after { background: #fff; }
.header .messengers .telegram a .main, .header .messengers .bot a .main { fill: #29a9eb; }
.header .messengers .viber .main { fill: #7360f2; }
.header .messengers .viber .back { fill: #fff; }
.header .messengers .whatsapp .main { fill: #23cb62; }
.header .messengers .whatsapp .back { fill: #fff; }
.header .messengers .signal .main { fill: #3a76f0; }

.header .messengers .viber:hover .main { fill: #7360f2; }
.header .messengers .viber:hover .back { fill: #fff; }
.header .messengers .whatsapp:hover .main { fill: #00b745; }
.header .messengers .whatsapp:hover .back { fill: #fff; }

.address_box a {
    color: #1e1e1e;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding-left: 1.3125rem;
}

.address_box svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.8125rem;
    height: 1.25rem;
    margin-top: -0.125rem;
}

.address_box:hover svg { fill: #548eff; }

.address_box span {
    color: #999;
    font-size: 0.75rem;
    display: block;
    margin-top: 0.25rem;
}

.apps {
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
}

.apps > span, .apps li:not(:last-child) { margin-bottom: 0.5rem; }

.apps svg {
    width: 1.25rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

.fogma {
    background: url(../images/sprite.svg#fogma) left center / 2rem 2rem no-repeat;
    font-size: 0.875rem;
    line-height: 1.2;
    height: 2rem;
    padding-left: 2.875rem;
    transition: opacity 0.2s linear;
}

.fogma b {
    display: block;
    min-width: 100%;
}
.fogma:hover { opacity: 1; }

/* articles list */

section header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

article h2 a { 
    color: #1e1e1e;
    text-decoration: none;
}

article h2 a:hover { 
    color: #548eff;
    text-decoration: underline;
}

article .img {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    max-width: 30rem;
    margin: auto;
}

article .img_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

article .img div:not(:first-child) { margin-left: 0.25rem; }

.no_img {
    background: #fbfbfb;
    border-radius: 0.25rem;
    overflow: hidden;
}

.no_img img { opacity: 0.2; }

article footer, article footer > div, .article_stats > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

article footer { margin-top: 1rem; }
article footer > div:not(:last-child), .article_stats > div:not(:last-child) { margin-right: 1.5rem; }
article .views, article .comments { font-size: 0.75rem; }

article footer svg, article header svg {
    fill: #1e1e1e;
    margin-right: 0.25rem;
}

article .views svg {
    width: 1rem;
    height: 0.75rem;
}

article .comments svg {
    width: 0.875rem;
    height: 0.875rem;
}

article .author { font-size: 0.875rem; }
article .author b { margin-left: 0.25rem; }

/* article */

.article_stats {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

article[role=main] footer {
    border-top: 0.0625rem solid #ebebeb;
    font-size: 0.875rem;
    margin-top: 1.75rem;
}

article .thanx span {
    color: #54c930;
    font-weight: 700;
    text-decoration: underline;    
}

article .thanx span:hover { text-decoration: none; }

/* text content */

.product_info .text ul { margin-left: 0 }
.text ol { list-style: decimal inside; }

.text ul { 
        list-style: square;
        list-style-position: inside;
    }

.text ul li::marker { color: #548eff; }

/* breadcrumbs */

/*.breadcrumbs {
    overflow-x: auto;
    overflow-y: hidden;
}*/

.breadcrumbs, .breadcrumbs .mCSB_container, .breadcrumbs li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.breadcrumbs li > * {
    font-size: 0.8125rem;
    white-space: nowrap;
    display: block;
}

.breadcrumbs li:not(:last-child) { margin-right: 0.5rem; }

.breadcrumbs li:not(:last-child)::after {
    content: '';
    background: url(../images/sprite.svg#arrow_next) center / cover no-repeat;
    display: block;
    width: 0.3125rem;
    height: 0.5625rem;
    margin-left: 0.5rem;
    opacity: 0.45;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #666;
    text-decoration: underline;
}

.breadcrumbs span {
    color: #666;
    font-weight: bold;
}

.breadcrumbs svg {
    fill: #1e1e1e;
    width: 1.125rem;
    height: 1.125rem;
    opacity: 0.45;
}

.breadcrumbs a:hover svg { opacity: 0.7; }

.breadcrumbs .mCustomScrollBox {
    max-width: inherit;
    /*margin: 0 -5.5%;*/
}

.breadcrumbs .mCSB_horizontal.mCSB_inside > .mCSB_container {
    /*padding-left: 5.5%;*/
    margin-bottom: 1rem;
}

.breadcrumbs .mCSB_draggerContainer {/* margin: 0 5.5%;*/ }
.breadcrumbs .mCSB_scrollTools.mCSB_scrollTools_horizontal { height: 0.25rem; }

.breadcrumbs .mCSB_scrollTools {
    opacity: 0;
    transition: opacity 0.2s linear;
}

.no-touchevents .breadcrumbs:hover .mCSB_scrollTools { opacity: 1; }

.breadcrumbs .mCSB_draggerContainer {
    background: #ddd;
    border-radius: 0.125rem;
    overflow: hidden;
}

.breadcrumbs .mCSB_dragger { background: #bbb; }

.touchevents .breadcrumbs .mCSB_horizontal.mCSB_inside > .mCSB_container { margin-bottom: 0; }
.touchevents .breadcrumbs .mCSB_scrollTools.mCSB_scrollTools_horizontal { height: 0; }

/* pagination */

.pagination { text-align: center; }

.pagination ul, .pagination li > * {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.pagination li:not(:first-child):not(:last-child) > * { font-weight: 700; }
.pagination li:not(:last-child) { margin-right: 0.5rem; }

.pagination a, .pagination span {
    border-radius: 0.25rem;
    text-decoration: none;
    line-height: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
    box-sizing: border-box;
}

.pagination a { color: #1e1e1e; }
.pagination li:not(:first-child):not(:last-child) a:hover { background: #fff; }

.pagination i {
    font-style: normal;
    display: block;
}

.pagination .current span {
    background: #fff;
    color: #548eff;
}

.pagination li:first-child > *, .pagination li:last-child > * { font-size: 0.875rem; }
.pagination li:first-child span, .pagination li:last-child span { color: #999; }

.pagination svg {
    fill: #1e1e1e;
    width: 0.625rem;
    height: 1.125rem;
}

.pagination li:first-child svg { margin-right: 0.5rem; }
.pagination li:last-child svg { margin-left: 0.5rem; }

.pagination li:first-child span svg, .pagination li:last-child span svg { fill: #999; }

/* sidebar */

.side_box:not(:last-child) {
    border-bottom: 0.0625rem solid #e2e2e2;
    padding-bottom: 1.25rem;
}

.box_title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.comments_date {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.comments_date:not(:first-of-type) { margin-top: 1.25rem; }

.comments_box dl {
    font-size: 0.75rem;
    line-height: 1rem;
}

.comments_box dl { margin-top: 1.125rem; }
.comments_date + dl { margin-top: 0; }

.comments_box dt {
    color: #3b79c4;
}

.comments_box a {
    color: #1e1e1e;
    text-decoration: none;
}

.comments_box a:hover { color: #3b79c4; }
.comments_box span { color: #666; }

/* mini price */

.mini_price {
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.mini_price > ul > li:not(:last-child), .mini_price .sub > li:not(:last-child) { margin-bottom: 0.25rem; }
.mini_price li { position: relative; }

.mini_price ul li .sub { margin-left: 0.625rem; }

.mini_price li > * {
    display: block;
    padding: 0.1875rem 0;
}

.mini_price li > span {
    cursor: pointer;
    user-select: none;
}

.mini_price li > span b { font-weight: normal; }

.mini_price li > span::after {
    content: '';
    background: url(../images/sprite.svg#arrow_down) center / cover no-repeat;
    display: block;
    flex: 0 0 auto;
    width: 0.5rem;
    height: 0.5rem;
    opacity: 0.3;
}

.mini_price li > span:hover::after { opacity: 0.7; }
.mini_price .active > span::after { transform: rotate(180deg); }

.mini_price .price_list {
    margin-left: 0.625rem;
    display: none;
}

.mini_price .active > .price_list { display: block; }

.mini_price li > span, .mini_price .price_list a, .mini_price .price_list i {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mini_price .price_list a {
    color: #1e1e1e;
    font-size: 0.75rem;
    text-decoration: none;
}

.mini_price .price_list span {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}

.mini_price li > span:hover, .mini_price .price_list li:not(.current) a:hover span { color: #548eff; }

.mini_price .price_list i {
    font-style: normal;
    flex: 1;
}

.mini_price .price_list a i::before {
    content: '';
    display: block;
    background: url(../images/sprite.svg#dots) left bottom / 1.125rem 1.125rem repeat-x;
    flex: 1;
    min-width: 0.5rem;
    height: 0.625rem;
    margin: 0 0.25rem;
}

.mini_price .price_list a::before {
    background: center / cover no-repeat;
    content: '';
    flex: 0 0 auto;
    display: block;
    width: 0.6875rem;
    height: 0.6875rem;
    margin-right: 0.5rem;
}

.mini_price .mp_instock a::before { background-image: url(../images/sprite.svg#mp_instock); }
.mini_price .mp_limited a::before { background-image: url(../images/sprite.svg#mp_limited); }
.mini_price .mp_pending a::before { background-image: url(../images/sprite.svg#mp_pending); }
.mini_price .mp_notavlbl a::before { background-image: url(../images/sprite.svg#mp_notavlbl); }

.mini_price .price_list .dscnt {
    background: #cc0033;
    color: #fff;
    font-size: 0.6875rem;
    line-height: 1rem;
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    height: 1rem;
    padding: 0;
    padding: 0 0.25rem;
    margin: auto 0.5rem auto 0;
}

.mini_price .current a {
    background: #fff;
    border-radius: 0.125rem;
    font-weight: 700;
    padding: 0 0.25rem;
    margin: 0 -0.25rem;
}

.panel .mini_price .current a { background: #f7f7f7; }

/* filters */

.filter:not(:first-child), .active_filters.active + .filter:not(:first-child) { border-top: 0.0625rem solid #e2e2e2; }
.active_filters + .filter:not(:first-child) { }
.active_filters { padding-bottom: 0.75rem; }
.filter:not(:last-child):not(.closed) { padding-bottom: 0.75rem; }
.filter.closed > *:not(h5), .panel *.closed > *:not(h5) { display: none; }
.filter.range.closed + .f_discount { display: none; }

.filter h5, .panel h5.title, .active_filters h5 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 2.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    position: relative;
    overflow: hidden;
    padding-right: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.filter h5::after, .panel h5.title::after {
    content: '';
    background: url(../images/sprite.svg#arrow_down) center / cover no-repeat;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 2.5rem;
    width: 0.5rem;
    opacity: 0.3;
}

.filter h5:hover, .panel .brands h5:hover { color: #548eff; }
.filter h5:hover::after, .panel .brands h5:hover::after { opacity: 0.7 }
.filter:not(.closed) h5::after, .panel .brands:not(.closed) h5::after { transform: rotate(180deg); }

.filter h5 i {
    font-weight: 400;
    font-style: normal;
}

.filter .reset_bttn {
    background: url(../images/sprite.svg#close_button) left center / 0.625rem 0.625rem no-repeat;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1rem;
    height: 1rem;
    margin: auto;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s linear;
}

.filter .reset_bttn:hover { opacity: 1; }

.filter.active h5 { padding-left: 1rem; }
.filter.active .reset_bttn { display: block; }

.fields_group, .fieldset.inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.fields_group .fieldset:not(:first-child) { margin: 0 0 0 1rem; }
.fieldset.inline label { margin-right: 0.5rem; }
.filter input[type=text] { height: 1.75rem; }

.filter .fieldset.inline input[type=text] {
    font-size: 0.875rem;
    min-width: inherit;
    width: 100%;
    padding: 0 0.5rem;
}

.filter .fieldset:not(:first-of-type):not(.inline) { margin-top: 0.25rem; }

.filter label {
    border-radius: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.25;
    padding: 0.25rem 0.125rem 0.25rem 0.375rem;
}

.filter label:hover { background: #fff3cd; }

.filter.checkbox input {
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.filter.checkbox label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: color 0.2s linear;
}

/*.filter.checkbox label:hover { color: #3b79c4; }*/

.filter.checkbox b {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.filter.checkbox b::before {
    content: '';
    background: #fff url(../images/sprite.svg#check_white) center / cover no-repeat;
    border: 0.0625rem solid #e7e7e7;
    border-radius: 0.125rem;
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    box-sizing: border-box;
    transition: all 0.15s linear;
}

.filter.checkbox input:checked + label b::before {
    background-color: #3b79c4;
    border-color: #3b79c4;
    border-radius: 0.25rem;
    width: 1rem;
    height: 1rem;
}

.filter.checkbox.f_brands b::before { border: none; }
.filter.checkbox .hi_end b::before { background: #54c930; }
.filter.checkbox .hi_mid b::before { background: #fdd80a; }
.filter.checkbox .hi_low b::before { background: #fa2607; }
.filter.checkbox .hi_no b::before { background: #858585; }

.filter.checkbox.f_brands input:checked + label b::before { background-image: url(../images/sprite.svg#check_white); }

.filter.checkbox label:hover b::before { border-color: #3b79c4; }

.filter.checkbox i {
    color: #999;
    font-size: 0.8125rem;
    font-style: normal;
    display: block;
    padding-left: 0.25rem;
    margin-left: auto;
}

/*.filter.checkbox i::before { content: '('; }
.filter.checkbox i::after { content: ')'; }*/

.range_slider {
    position: relative;
    height: 0.75rem;
    margin: 0.75rem 0.3125rem auto;
    cursor: pointer;
}

.range_slider::after, .range_slider .ui-slider-range::after {
    content: '';
    border-radius: 0.125rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.25rem;
    margin: auto -0.3125rem;
}

.range_slider::after { background: #ddd; }
.range_slider .ui-slider-range::after { background: #3b79c4; }

.range_slider .ui-slider-handle {
    background: #fff;
    border: 0.0625rem solid #ddd;
    border-radius: 0.1875rem;
    top: -0.25rem;
    width: 0.625rem;
    height: 1.25rem;
    margin: auto auto auto -0.3125rem;
    box-sizing: border-box;
    z-index: 1;
    cursor: pointer;    
    transition: opacity 0.2s linear;
}

.no-touchevents .range_slider .ui-slider-handle { opacity: 0; }
.no-touchevents .filter:hover .ui-slider-handle { opacity: 1; }

.filter.f_discount { border: none; }
.filter.f_discount h5 { display: none; }

.filters .controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.filters .controls > * {
    flex: 1;
    min-width: inherit;
}

.filters .controls > *:not(:last-child) { margin-right: 0.5rem; }

.sub_button, .sub_button:disabled:hover {
    background: #fff;
    border: solid 0.0625rem #fdc101;
    font-size: 0.75rem;
    letter-spacing: 0.03125rem;
    padding: 0 0.5rem;
}

/* filters & brands spoilers */

.filter.minimized .fieldset:nth-child(n+12) { display: none; }
.brands.minimized li.hidden { display: none; }

.box_body .toggle {
    color: #548eff;
    font-size: 0.875rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem;
    cursor: pointer;
}

.box_body .toggle::after {
    content: '';
    background: url(../images/sprite.svg#arrow_down) center / cover no-repeat;
    display: block;
    height: 0.875rem;
    width: 0.5rem;
    margin: 0.125rem 0 0 0.5rem;
    opacity: 0.3;
}

.filter .toggle:hover::after { opacity: 0.7; }
.filter:not(.minimized) .toggle::after { transform: rotate(180deg); }

/* active filters */

.active_filters.active {
    border-top: 0.0625rem solid #e2e2e2;
	padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.active_filters h5 { cursor: default; }
.active_filters ul { overflow: hidden; }

.active_filters li {
    background: #fdc101;
    border-radius: 0.25rem;
    color: #1e1e1e;
    font-size: 0.825rem;
    text-decoration: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    float: left;
    padding: 0.3125rem 0.25rem 0.3125rem 0.625rem;
    box-sizing: border-box;
    cursor: pointer;
}

.active_filters li:not(:last-child) { margin: 0 0.5rem 0.5rem 0; }
.active_filters li:hover { background: #fed75a; }

.active_filters li i {
    background: url(../images/sprite.svg#close_button) left center / 0.625rem 0.625rem no-repeat;
    text-indent: -999rem;
    display: block;
    overflow: hidden;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    opacity: 0.5;
    cursor: pointer;
}
    
.active_filters li:hover i { opacity: 1; }

/* panels */

.panel {
    background: #fff;
    position: fixed;
    bottom: 0;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: auto;
    width: 90%;
    max-width: 33.75rem;
}

.mobile .panel.active, .desktop .panel { transition: left 0.3s ease-out,  right 0.3s ease-out; }

.panel.left_side { left: -33.75rem; }
.panel, .panel.right_side { right: -33.75rem }

.panel.min_width { max-width: 20rem; }
.panel.left_side.min_width:not(.active) { left: -20rem; }
.panel.min_width:not(.active), .panel.right_side.min_width:not(.active) { right: -20rem }

.panel.left_side.active { left: 0; }
.panel.active, .panel.right_side.active { right: 0; }

.panel_title {
    background: #fbfbfb;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 3rem;
    padding: 0 2rem;
}

.panel .close_bttn {
    background: none;
    position: static;
    margin: 0 -0.625rem 0 auto;
}

.panel_body { padding: 1rem 2rem 2rem; }

.favs .panel_body { padding: 0; }
.fltrs .panel_body { padding: 1rem 2rem 2rem; }
.panel .box_body.closed { margin-bottom: -1.25rem; }

/* spoilers */

.spoiler {
    position: relative;
    padding-bottom: 2.5rem;
}

.spoiler.ready .sp_body { 
    overflow: hidden;
    max-height: 12.5rem;
}

.spoiler.ready .sp_body.long { max-height: 30rem; }

.spoiler.active .sp_body, .spoiler.active .sp_body.long { max-height: inherit; }

.spoiler p {
    font-size: 0.875rem;
    line-height: 1.5;
}

.spoiler.ready .inner > *:not(:last-child), .spoiler:not(.ready) > *:not(:last-child) { margin-bottom: 1rem; }

.spoiler .read_more {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.5rem;
    cursor: pointer;
}

.spoiler .read_more::before {
    content: '';
    background: url(../images/sprite.svg#arrow_down) center / 0.875rem 0.5rem no-repeat;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    transition: opacity 0.2s linear;
}

.spoiler .read_more:hover::before { opacity: 1; }
.spoiler.active .read_more::before { transform: rotate(180deg); }

.spoiler.ready:not(.active)::after {
    content: '';
    background: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
    background: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
    background: -ms-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
    background: -0-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
    background: linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    height: 4rem;
}

.company_info.spoiler { margin-top: 2.25rem; }

.company_info.spoiler:not(.active)::after {
    background: -webkit-linear-gradient(top, rgba(251,251,251,0), rgba(251,251,251,1));
    background: -moz-linear-gradient(top, rgba(251,251,251,0), rgba(251,251,251,1));
    background: -ms-linear-gradient(top, rgba(251,251,251,0), rgba(251,251,251,1));
    background: -o-linear-gradient(top, rgba(251,251,251,0), rgba(251,251,251,1));
    background: linear-gradient(top, rgba(251,251,251,0), rgba(251,251,251,1));
}

/* category */
    
.category:not(:last-child) { margin-bottom: 2.25rem; }
.category h2 { margin-bottom: 1rem; }

.category .inner {
    background: #fff;
    border: 0.0625rem solid #efefef;
    border-radius: 0.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 9.625rem));
    grid-gap: 1.5rem;
    justify-content: space-around;
    padding: 1.5rem;
}

.category dl {
    display: flex;
    flex-flow: column-reverse;
    align-items: stretch;
    justify-content: flex-end;
    box-sizing: border-box;
}

.category dt {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.875rem;
}

.category dt a {
    color: #1e1e1e;
    line-height: 1.125rem;
    text-decoration: none;
    font-size: 0.9375rem;
}

.category dt:has(+ dd:hover) a, .category dt a:hover {
    color: #548eff;
    text-decoration: underline;
}

.category dd, .category .img_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category dd {
    position: relative;
    padding-top: 100%;
}

.category .img_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0.5rem;
}

/* catalog */

.catalog { position: relative; }
.catalog:not(:last-child) { margin-bottom: 2.25rem; }
.catalog:first-of-type h1 { padding-right: 32rem; }
.catalog .inner { border-radius: 0.25rem; }

.catalog[data-view=cards]:not(.single_line) .inner {
    border: solid #efefef;
    border-width: 0.0625rem 0 0 0.0625rem;
}

.catalog[data-view=cards] .inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.625rem, 1fr));
    justify-content: space-around;
}

.no_items_found {
    background: #fff;
    border: 0.0625rem solid #efefef;
    border-radius: 0.25rem;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.25;
    padding: 0.75rem;
    display: none;
}

.catalog[data-view=cards] .item_card.off, .catalog[data-view=list] .item_card.off, .catalog[data-view=price] .item_card.off,
.catalog[data-view=cards] .item_card.filtered, .catalog[data-view=cards] .item_card .item_photo .zoom_photo,
.catalog[data-view=list] .item_card.filtered, .catalog[data-view=price] .item_card.filtered
{ display: none; }

/* items */

.item_card {
    background: #fff;
    border: solid #efefef;
    position: relative;
    box-sizing: border-box;
    transition: border-color 0.2s linear, box-shadow 0.2s linear;
}

.item_card:hover {
    border-color: #dddddd;
    z-index: 1;
}

.touchevents .item_card > * { user-select: none; }

.catalog[data-view=cards] .item_card {
    border-width: 0 0.0625rem 0.0625rem 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 0.75rem;    
}

.catalog[data-view=list] .item_card {
    display: grid;
    grid-template-columns: 17.51% auto 11.625rem;
    grid-column-gap: 1.25rem;
    padding: 1rem;
}

.catalog[data-view=price] .item_card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.catalog[data-view=list] .item_card, .catalog[data-view=price] .item_card, .catalog[data-view=cards].single_line .item_card { border-width: 0.0625rem; }

.catalog .item_photo {
    order: -2;
    position: relative;
}

.catalog[data-view=cards] .item_photo {
    position: relative;
    height: 0;
    padding-top: 100%;
}

.catalog[data-view=list] .item_photo, .catalog[data-view=price] .item_photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.catalog[data-view=list] .item_photo {
    grid-row-start: 1;
    grid-row-end: 5;
    height: 100%;
    max-height: 12.125rem;
}

.catalog[data-view=price] .item_photo {
    flex: 0 0 2.5rem;
    height: 2.5rem;
    margin: 0.25rem 0;
}

.catalog[data-view=list] .img_link, .catalog[data-view=price] .img_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.catalog[data-view=cards] .item_photo img, .catalog[data-view=cards] .img_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.catalog[data-view=list] .item_photo::before {
    content: '';
    background: rgba(0,0,0,0.4) url(../images/sprite.svg#zoom) center no-repeat;
    border-radius: 0.25rem;
    display: block;
    position: absolute;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.catalog[data-view=list] .item_photo::before {
    background-size: 1.125rem 1.125rem;
    right: 0;
    width: 2rem;
    height: 2rem;
    
}

.catalog[data-view=list] .item_card:not(.no_photo):hover .item_photo::before { opacity: 1; }

.no_photo .item_photo { background: #fbfbfb; }
.no_photo .item_photo img { opacity: 0.2; }

.item_photo .ap {
    opacity: 0;
    visibility: hidden;
    /*transition: opacity 0.1s linear, visibility 0.1s linear;*/
}

.catalog:not([data-view=cards]) .item_photo .ap { height: 0; }

.item_photo.a_photo_active:hover .ap {
    opacity: 1;
    visibility: visible;
}

/* catalog photo bullits */
.catalog[data-view=cards] .item_card.a_photo .item_options::before, .catalog[data-view=cards] .item_card.a_photo .item_options::after {
    content: '';
    border-radius: 50%;
    display: none; /* change to 'block' to show bullits */
    position: absolute;
    z-index: 1;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: -1rem;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.item_card.a_photo .item_options::before {
    left: 50%;
    margin-left: -0.75rem;
}

.item_card.a_photo .item_options::after {
    right: 50%;
    margin-right: -0.75rem;
}

.item_card.a_photo .item_options::after, .item_card .a_photo_active:hover + .item_options::before { background: #ccc; }
.item_card.a_photo .item_options::before, .item_card .a_photo_active:hover + .item_options::after { background: #548eff; }
.catalog[data-view=cards] .item_card.a_photo:hover .item_options::before, .catalog[data-view=cards] .item_card.a_photo:hover .item_options::after { opacity: 1; }

.zoom_photo {
    background: #fff;
    border: 0.0625rem solid #ddd;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
	display: none;
    overflow: hidden;
    position: absolute;
	z-index: 999;
    padding: 0.75rem;
}

.zoom_photo img { border-radius: 0.25rem; }

.catalog[data-view=cards] .item_title {
    padding: 0.5rem 0;
    position: relative;
}

.catalog[data-view=cards] .item_card:hover .item_title { z-index: 2; }

.catalog[data-view=price] .item_title {
    order: -1;
    padding-right: 1rem;
    margin: 0 auto 0 2rem;
}

.item_title a {
    color: #1e1e1e;
    line-height: 1.25rem;
    text-decoration: none;
    display: block;
}

.catalog[data-view=list] .item_title a {
    font-size: 1.125rem;
    font-weight: 700;
}

.catalog[data-view=price] .item_title a {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.125rem;
}

.item_title a:hover { color: #548eff; }
.item_descr { word-break: break-word; }

.catalog[data-view=price] .item_descr, .catalog[data-view=price]
.item_specs, .catalog[data-view=price] .item_comments, .catalog[data-view=price] .warehouses,
.catalog[data-view=cards] .item_articul, .catalog[data-view=list] .item_articul { display: none; }

.no-touchevents .catalog[data-view=cards] .item_card:not(.in_favs) .add_favs,
.catalog[data-view=cards] .item_descr span, .no-touchevents .item_descr svg,
.no-touchevents .catalog[data-view=cards] .item_card .buy, .admin_toolbar, .warehouses {
    visibility: hidden;
    opacity: 0;
}

.ready .item_card:not(.in_favs) .add_favs, .catalog[data-view=cards].ready .item_descr span,
.ready .item_descr svg, .catalog[data-view=cards].ready .item_card .buy, .ready .admin_toolbar, .ready .warehouses {
    transition: visibility 0.25s ease-out, opacity 0.25s ease-out, bottom 0.2s ease-out, background 0.2s ease-out;
}

.catalog[data-view=cards] .item_card:not(.in_favs):hover .add_favs, .no-touchevents .catalog[data-view=cards] .item_descr:hover span, .catalog[data-view=cards] .item_descr.active span,
.item_card:hover svg, .catalog[data-view=cards] .item_card:hover .buy, .item_card:hover .admin_toolbar, .catalog:not([data-view=cards]) .item_card:hover .warehouses {
    visibility: visible;
    opacity: 1;
}

.catalog[data-view=cards] .item_descr span, .catalog .item_comments, .admin_toolbar, .warehouses, .catalog:not([data-view=price]) .item_discount { position: absolute; }

.catalog[data-view=cards] .item_options {
    order: -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding-top: 0.5rem;
    margin-top: -2.125rem;
    transition: background 0.2s linear;
}

.catalog[data-view=list] .item_options {
    grid-column-start: 2;
    grid-column-end: 3;
    margin-top: 0.75rem;
}

.catalog[data-view=price] .item_options {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 4.25rem;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
}

.add_favs { cursor: pointer; }

.add_favs svg {
    fill: #fff;
    stroke: #d0d0d0;
    stroke-width: 0.078125rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: fill 0.25s linear, stroke 0.25s linear;
}

.add_favs svg:hover {
    stroke: #fb6751;
    opacity: 1;
}

.in_favs .add_favs svg {
    fill: #fb6751;
    stroke: #fb6751;
    opacity: 1;
}

.catalog[data-view=list] .add_favs {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

.catalog[data-view=cards] .item_descr span {
    background: #fbfbfb;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
    word-wrap: break-word;
    display: block;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: -1rem;
    max-height: 12rem;
    padding: 0.75rem 0.75rem 2.5rem 0.75rem;
    box-sizing: border-box;
}

.catalog[data-view=cards] .item_descr { margin-left: auto; }
.no-touchevents .catalog[data-view=cards] .item_descr:hover span, .catalog[data-view=cards] .item_descr.active span { bottom: 0; }

.catalog[data-view=list] .item_descr span {
    font-size: 0.875rem;
    line-height: 1.25;
}

.catalog[data-view=cards] .item_descr svg, .catalog[data-view=cards] .item_descr::after {
    width: 1.375rem;
    height: 1.625rem;
}

.catalog[data-view=cards] .item_descr svg { display: block; }

.item_descr svg {
    fill: #d0d0d0;
    display: none;
    position: relative;
    z-index: 3;
    opacity: 0.3;
    transition: fill 0.25s linear;
}

.no-touchevents .item_descr:hover svg, .touchevents .item_descr svg { fill: #999; }

.no-touchevents .item_card:hover .item_descr::after, .touchevents .item_descr::after {
    content: '';
    background: #fff;
    border-radius: 0.125rem;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.catalog[data-view=cards] .no_specs .item_buy { margin-bottom: 1.5rem; }

.catalog:not([data-view=price]) .item_buy {
    position: relative;
    padding-right: 3rem;
    margin-top: auto;
}

.catalog[data-view=list] .item_buy {
    grid-column-start: 3;
    grid-row-end: 5;
}

.catalog[data-view=list] .oop .item_buy { padding-right: 0; }

.oop { opacity: 0.6; }

.catalog[data-view=price] .item_buy {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item_status { white-space: nowrap; }
.catalog:not([data-view=list]) { font-size: 0.875rem; }
.catalog:not([data-view=price]) .item_status { margin-bottom: 0.5rem; }

.catalog[data-view=price] .item_status { min-width: 6.5rem; }

.in_stock .item_status { color: #54c930; }
.on_order .item_status { color: #e2ac00; }
.pending .item_status { color: #e2ac00; }
.limited .item_status { color: #e2ac00; }
.not_available .item_status { color: #fa2607; }
.show_room .item_status { color: #548eff; }

.item_price {
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.catalog[data-view=price] .item_price_box {
    min-width: 9.5rem;
    margin: 0 1rem;
}

.catalog[data-view=price] .oop .item_price_box { padding-right: 4.5rem; }

.item_price b { color: #1e1e1e; }
.item_price span::before, .cart_price span span::before { content: '('; }
.item_price span::after, .cart_price span span::after { content: ')'; }

.catalog[data-view=cards] .item_price { font-size: 0.875rem; }
.catalog[data-view=cards] .item_price b { font-size: 1rem; }
.catalog[data-view=list] .item_price b { font-size: 1.125rem; }

.item_card .buy {
    flex: 1 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: inherit;
    padding: 0;
}

.catalog[data-view=price] .item_card .buy { margin-left: 2rem; }

.catalog:not([data-view=price]) .item_card .buy {
    position: absolute;
    bottom: 0;
    right: 0;
}

.catalog .item_card .buy { background: none; }
.catalog .item_card:hover .buy { background: #fdd80b; }
.catalog .item_card .buy:hover svg { transform: scale(1.1); }

.item_card .buy svg {
    fill: #1e1e1e;
    width: 1.625rem;
    height: 1.625rem;
    margin-left: -0.125rem;
    transition: fill 0.2s linear;
}

.in_cart {
    border-left-color: #fdd80b !important;
    box-shadow: 0.0625rem 0 0 #fdd80b inset;
}

.catalog[data-view=cards] .in_cart { box-shadow: -0.0625rem 0 0 #fdd80b, 0.0625rem 0 0 #fdd80b inset; }

.no-touchevents .catalog[data-view=cards] .in_cart .buy, .no-touchevents .catalog[data-view=list] .in_cart .buy, .no-touchevents .catalog[data-view=price] .in_cart .buy,
.touchevents .catalog[data-view=cards] .in_cart .buy, .touchevents .catalog[data-view=list] .in_cart .buy, .touchevents .catalog[data-view=price] .in_cart .buy
{ transition: none; } 

.no-touchevents .catalog[data-view=cards] .in_cart .buy {
    opacity: 1;
    visibility: visible;
}

.no-touchevents .catalog[data-view=cards] .in_cart .buy svg, .in_cart .buy svg { visibility: hidden; }

.catalog[data-view=cards] .in_cart .buy, .catalog[data-view=list] .in_cart .buy,
.catalog[data-view=price] .in_cart .buy, .items_list .in_cart .buy { background: #fdd80b url(../images/sprite.svg#check) center / 1.5rem 1.5rem no-repeat };

.item_comments { color: #548eff; }

.catalog[data-view=cards] .item_comments {
    background: rgba(255,255,255,0.9);
    border-radius: 0 0.25rem 0 0.125rem;
    font-size: 0.75rem;
    top: 0;
    right: 0;
    padding: 0.75rem 0.75rem 0.5rem 0.5rem;
}

.catalog[data-view=list] .item_comments {
    font-size: 0.8125rem;
    top: 1rem;
    right: 1rem;
    width: 11.625rem;
}

.item_specs {
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog[data-view=cards] .item_specs {
    font-size: 0.75rem;
    line-height: 1rem;
    margin-top: 0.5rem;
}

.catalog[data-view=list] .item_specs {
    font-size: 0.8125rem;
    grid-row-end: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.item_discount {
    background: #cc0033;
    border-radius: 0 0.125rem 0.125rem 0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1.5rem;
    height: 1.5rem;
    padding: 0 0.75rem;
}

.catalog:not([data-view=price]) .item_discount {
    left: -0.0625rem;
    top: 1rem;
}

.catalog[data-view=price] .item_discount {
    order: -1;
    flex: 0 1 auto;
    margin-right: 2rem;
}

.catalog[data-view=price] .discount .item_buy {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.item_price_box { position: relative; }

.discount .item_price, .discount .item_price b { color: #cc0033; }

.discount .item_old_price {
    color: #666;
    font-size: 0.75rem;
    text-decoration: line-through;
    margin-bottom: 0.125rem;
}

.discount .item_old_price b { font-size: 0.875rem; }

.catalog[data-view=price] .item_articul {
    font-size: 0.75rem;
    order: -3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
    flex: 0 0 3.5rem;
    display: none; /* hide articul in item card */
}

.admin_toolbar, .warehouses {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.admin_toolbar {
    background: #fbfbfb;
    border: 0.0625rem solid #efefef;
    border-radius: 0.25rem;
    padding: 0.75rem;
    box-sizing: border-box;
    z-index: 2;
}

.warehouses {
    background: #fff;
    box-shadow: 0 0 0 0.5rem #fff;
}

.catalog[data-view=cards] .warehouses {
    justify-content: flex-start;
    overflow: hidden;
}

.catalog[data-view=cards] .warehouses li { flex: 0 1 auto; }

.catalog[data-view=cards] .admin_toolbar, .catalog[data-view=cards] .warehouses {
    left: 0.75rem;
    right: 0.75rem;
}

.catalog[data-view=cards] .admin_toolbar { top: 0.75rem; }
.catalog:not([data-view=cards]) .admin_toolbar { width: 11.625rem; }

.catalog[data-view=list] .admin_toolbar {
    top: 1rem;
    right: 1rem;
}

.catalog[data-view=price] .admin_toolbar {
    right: 23.5rem;
    z-index: 1;
    margin: auto;
}

.catalog[data-view=list] .warehouses {
    bottom: 1rem;
    right: 13.75rem;
}

.catalog[data-view=cards] .item_card.show_wh .warehouses {
    opacity: 1;
    visibility: visible;
}

.admin_toolbar li { cursor: pointer; }
.admin_toolbar li:hover { transform: scale(1.1); }

.admin_toolbar svg {
    width: 1.125rem;
    height: 1.125rem;
}

.admin_move_up svg { fill: #777; }
.admin_move_down svg { fill: #777; }
.admin_add svg { fill: #54c930; }
.admin_edit svg { fill: #fdc101; }
.admin_delete svg { fill: #fa2607; }

.warehouses {
    color: #666;
    font-size: 0.75rem;
    bottom: 0.75rem;
}

.warehouses li:not(:last-child) {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 0.25rem;
}

.warehouses li:not(:last-child)::after {
    content: '|';
    display: block;
    margin-left: 0.25rem;
}

.admin_price {
    display: none;
    flex-direction: row;
    align-items: center;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.catalog[data-view=cards] .admin_price { margin: -0.375rem 0; }
.catalog[data-view=list] .admin_price { margin: -0.3125rem 0; }
.catalog[data-view=price] .admin_price { width: 15rem; }
.admin_price > *:not(:last-child) { margin-right: 0.5rem; }

.admin_price input {
    line-height: 1.75rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    width: 100%;
    max-width: 8rem;
}

.item_card.show_ap .admin_price, .admin_mode .catalog[data-view=price] .admin_price { display: flex; }
.item_card.show_ap .item_price, .item_card.show_ap .item_old_price, .catalog[data-view=price] .item_card.show_ap .item_options,
.item_card.show_ap .buy, .catalog[data-view=cards] .item_card.show_ap:hover .buy,
.admin_mode .catalog.main[data-view=price] .item_price, .admin_mode .catalog.main[data-view=price] .item_old_price, .admin_mode .catalog.main[data-view=price] .item_options,
.admin_mode .catalog.main[data-view=price] .buy
{ visibility: hidden; opacity: 0; }
.catalog:not([data-view=price]) .item_card.show_ap .item_buy { padding-right: 0; }

/* admin controls */

.admin_controls {font-size: 0.875rem;
    background: #fff;
    border: 0.0625rem solid #efefef;
    border-radius: 0.25rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}

.admin_controls > * {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.admin_controls > *:not(:last-child) { margin-right: 2rem; }
.admin_controls .fieldset.inline label { margin: 0; }

.admin_box li { font-size: 0.875rem; }
.admin_box li:not(:last-child) { margin-bottom: 0.5rem; }
.admin_controls a, .admin_box a { text-decoration: none; }
.admin_controls a:hover, .admin_box a:hover { text-decoration: underline; }

/* toolbar */

.catalog_toolbar {
    position: absolute;
    top: 2.5rem;
    right: 0;
}

.catalog_toolbar, .catalog_toolbar > *, .catalog_toolbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.sortings span {
    color: #666;
    margin-right: 0.875rem;
}

.sortings::before, .sortings { font-size: 0.875rem; }
.sortings li:not(:last-child) { margin-right: 0.875rem; }
.sortings .current { font-weight: 700; }
.sortings li:not(.current) { cursor: pointer; }

.view_type li {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.view_type svg {
    fill: #888;
    width: 1.125rem;
    height: 1.125rem;
    transition: opacity 0.2s linear;
}

.view_type li:not(.current) svg {
    opacity: 0.4;
    cursor: pointer;
}

.view_type li:not(.current):hover svg { opacity: 0.6; }

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

.hc { display: none !important; } /* for hidden cards in full catalog */

/* tags */

.tag_cloud {
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.tag_cloud:not(.closed) { margin-bottom: 0.375rem; }
.tag_cloud + .tag_cloud { margin-top: 1.25rem; }

.tag_cloud ul, .tag_cloud dl {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.tag_cloud_title { margin-right: 0.625rem; }
.tag_cloud li, .tag_cloud dd { margin: 0 0.625rem 0.625rem 0; }

.tag_cloud a {
    background: #fdc101;
    border-radius: 1.5rem;
    color: #1e1e1e;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    padding: 0.3125rem 0.625rem;
    box-sizing: border-box;
}

.tag_cloud a:hover { background: #fed75a; }
.tag_cloud li.active a { background: #fea75a; }

.tag_cloud.closed {
    height: 1.5rem;
    padding-right: 3rem;
}

.more_tags {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
}

.more_tags svg {
    width: 0.75rem;
    height: 0.375rem;
    opacity: 0.5;
    transition: opacity 0.2s linear;
}

.more_tags:hover svg { opacity: 1; }

/* product */

.product {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.product h1 {
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.product_main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 1.75rem;
}

.product_buy { margin-right: 1.5rem; }
.product .item_price_box { margin-top: 0.25rem; }
.product .item_price { font-size: 1.125rem; }
.product .item_price b { font-size: 1.25rem; }

.product .item_old_price {
    font-size: 1rem;
    padding: 0.125rem 0;
}

.product .item_old_price b { font-size: 1.125rem; }

.product .buy {
    font-weight: normal;
    text-transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}
    
.product .buy svg {
    fill: #1e1e1e;
    flex: 1 0 1.25rem;
    max-width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    transition: fill 0.2s linear;
}

.product.not_available .buy {
    background: #fff;
    border: 0.0625rem solid #fdc101;
}

.product.not_available .buy svg { fill: #fdc101; }
.product.not_available .buy:hover { background: #fdcd33; }
.product.not_available .buy:hover svg { fill: #1e1e1e; }

.product_options {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: -0.5rem;
}

.product_delivery {
    font-size: 0.75rem;
    line-height: 0.875rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    order: -1;
    min-width: 100%;
}

.product_delivery svg {
    fill: #54c930;
    flex: 0 1 1.875rem;
    height: 1.25rem;
    margin-right: 1rem;
}

.product .add_favs svg {
    stroke-width: 0.09375rem;
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 1rem;
}

.share { cursor: pointer; user-select: none; }
.product .share { display: block; }

.product .share svg {
    fill: #fff;
    stroke: #ccc;
    stroke-width: 1.3;
    width: 1.75rem;
    height: 1.75rem;
    margin-right: 1rem;
    transition: stroke 0.2s linear;
}

.product .share:hover svg, .product .share.active svg { stroke: #548eff; }
.product .share.active svg { fill: #548eff; }

.product .item_comments {
    font-size: 0.875rem;
    text-decoration: none;
}

.product .item_comments:hover { text-decoration: underline; }

.product .item_articul {
    color: #666;
    font-size: 0.875rem;
}

/* .window_product .product .item_comments, .window_product .item_articul { margin-left: auto; } */

.product .item_comments + .item_articul { margin-left: 1rem; }

.shop_features_box {
    border: 0.0625rem solid #ebebeb;
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 1.25rem;
}

.product_photo { position: relative; }

.product_photo_box {
    position: relative;
    height: 0;
    padding-top: 100%;
    cursor: pointer;
}

.product_photo_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.product_photo_box span {
    background: rgba(0,0,0,0.2);
    box-shadow: 0 0 0 0.0625rem rgba(255,255,255,0.5);
    border-radius: 0.25rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.25rem;
    transition: background 0.2s linear, box-shadow 0.2s linear;
}

.product_photo_box:hover span {
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 0.0625rem rgba(255,255,255,1);
}

.product_photo_box span svg {
    fill: #fff;
    width: 1rem;
    height: 1rem;
}

.no_photo .product_photo_box {
    background: #fbfbfb;
    cursor: default;
}

.no_photo .product_photo_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.thumbs { margin-top: 2rem; max-width: 100%; }

.thumbs ul, .thumbs a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.thumbs ul {
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: -0.25rem -0.375rem 0 0;
}

.thumbs ul:not('.swiper-wrapper') { flex-wrap: wrap; }

.thumbs a {
    border: 0.0625rem solid #efefef;
    border-radius: 0.25rem;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    padding: 0.25rem;
    box-sizing: border-box;
    transition: border 0.1s linear;
}

.thumbs li { margin-top: 0.25rem; }
.thumbs li:not(:last-child) { margin-right: 0.25rem; }
.thumbs li:not(.current) { cursor: pointer; }
.thumbs li:not(.current):hover a { border-color: #ddd; }
.thumbs .current a { border-color: #3b79c4; }

.thumbs.swiper-container { padding: 0 2rem; }

.thumbs.swiper-container .scroller_controls {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: auto;
}

.thumbs .scroller_bttn {
    background: #fff;
    width: 2rem;
    height: 6rem;
    opacity: 1;
}


.product .item_discount {
    position: absolute;
    top: 0;
    left: -2rem;
}

.product_specs {
    border-top: 0.0625rem solid #ebebeb;
    padding-top: 1rem;
}

.product_specs dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.product_specs dl > * {
    font-size: 0.875rem;
    line-height: 1.125rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 1.75rem;
    padding: 0.25rem 0;
    box-sizing: border-box;
}

.product_specs dt:not(:last-of-type), .product_specs dd:not(:last-of-type) { background: url(../images/sprite.svg#dots) left bottom / 1.125rem 1.125rem repeat-x; }

.product_specs dt {
    color: #666;
    padding-right: 0.25rem;
}

.product_specs dd {
    font-style: italic;
    padding-left: 0.25rem;
}

.specs_more { position: relative; }

.specs_more b {
    background: #fff;
    border: 0.0625rem solid #3b79c4;
    border-radius: 50%;
    color: #3b79c4;
    font-style: normal;
    line-height: 0.875rem;
    text-align: center;
    display: block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    box-sizing: border-box;
    cursor: pointer;
}

.specs_more span {
    background: #fbfbfb;
    border: 0.0625rem solid #ddd;
    border-radius: 0.25rem;
    color: #1e1e1e;
    position: absolute;
    bottom: 50%;
    z-index: 10;
    min-width: 15rem;
    padding: 0.75rem;
    margin: 0 -0.875rem 1rem 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s linear, opacity 0.2s linear, bottom 0.2s linear;
}

dt .specs_more span { left: 0; }
dd .specs_more span { right: 0; }

.specs_more:hover span, .specs_more.active span {
    visibility: visible;
    opacity: 1;
    bottom: 100%;
}

.specs_more span::after {
    content: '';
    background: #fbfbfb;
    border: 0.0625rem solid #ddd;
    border-width: 0 0.0625rem  0.0625rem 0;
    display: block;
    position: absolute;
    bottom: -0.3125rem;
    width: 0.5rem;
    height: 0.5rem;
    transform: rotate(45deg);
}

dt .specs_more span::after { left: 1rem; }
dd .specs_more span::after { right: 1rem; }

.product_links {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
}

.product_links::before {
    content: '';
    border-bottom: 0.0625rem solid #ebebeb;
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

.product_links li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}

.product_links li:not(:last-child) { margin-right: 1.5rem; }

.product_links a {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    text-decoration: none;
}

.product_links a:hover { text-decoration: underline; }

.product_links svg {
    fill: #509af3;
    width: 1.5rem;
    height: 1.25rem;
    margin-right: 0.25rem;
}

.shop_features dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shop_features dl:not(:last-child) { margin-right: 1rem; }

.shop_features dt {
    text-align: center;
    line-height: 1.25rem;
}

.shop_features dt b { display: block; }

.shop_features dd {
    order: -1;
    margin-bottom: 0.5rem;
}

.shop_features svg {
    fill: #509af3;
    width: 2.5rem;
    height: 2.5rem;
}

.product_comments { padding-top: 1rem; }

.comments_form {
    background: #fbfbfb;
    padding: 1.25rem;
    margin-top: 1rem;
}

.comments_form .form_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.comments_form h3 { margin-bottom: 0; }

.comments_form .smiles {
    position: relative;
    margin-left: 2rem;
}

.comments_form .smiles svg {
    fill: #1e1e1e;
    width: 1.125rem;
    height: 1.125rem;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s linear;
}

.comments_form .smiles svg:hover { opacity: 1; }

.comments_form .smiles ul {
    background: #fbfbfb;
    border: 0.5rem solid #fbfbfb;
    border-radius: 0.25rem;
    box-shadow: 0 0 0 0.0625rem #ddd;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    right: 0;
    top: -0.5rem;
    height: 1.125rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s linear,  visibility 0.2s linear, right 0.2s linear;
}

.comments_form .smiles li {
    min-width: 1rem;
    cursor: pointer;
}

.comments_form .smiles li:not(:last-child) { margin-right: 0.25rem; }
.comments_form .smiles.active svg { opacity: 0; }

.comments_form .smiles.active ul {
    visibility: visible;
    opacity: 1;
}

.comments_form textarea, .comments_form input[type=text] {
    font-size: 0.875rem;
    padding: 0.5rem;
    width: 100%;
}

.comments_form input[type=submit] {
    font-weight: 400;
    text-transform: none;
    min-width: inherit;
    margin-left: 1rem;
}

.comments_list { margin-top: 2rem; }
.comments_list li { margin-bottom: 2rem; }
.comments_list ul { margin: 1.25rem 0 0 5rem; }

.comments_list dl {
    position: relative;
    min-height: 4rem;
    padding-left: 5rem;
}

.comments_list dt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.comments_list time {
    border-left: 0.0625rem solid #ddd;
    color: #999;
    font-size: 0.875rem;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
}

.comments_list .avatar {
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
}

.comments_list .avatar.no_avatar { 
    background: #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comments_list .avatar.no_avatar svg {
    fill: #fff;
    width: 2rem;
    height: 2rem;
}

.comments_list .comment, .comments_list .answer {
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.comments_list .answer, .comments_list .answer ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.comments_list .answer span {
    color: #cc0033;
    cursor: pointer;
}

.comments_list .answer ul {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s linear, visibility 0.2s linear;
}

.comments_list dl:hover .answer ul {
    opacity: 1;
    visibility: visible;
}

.comments_list .answer li { margin: 0 0 0 1rem; }

div.answer_form { display: none; }
dd.answer_form { display: block; }



/*.similar_items.catalog[data-view=cards] .inner { grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr)); }*/

.similar_items.catalog[data-view=cards] .inner {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100%;
}

.similar_items h3 { padding-right: 7rem; }

.scroller_controls, .scroller_bttn {
    display: flex;
    flex-direction: row;
}

.scroller_controls {    
    align-items: stretch;
    justify-content: space-between;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 3rem;
    height: 2rem;
    user-select: none;
}

.scroller_bttn {
    width: 3rem;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.2s linear;
}

.scroller_bttn:first-child { justify-content: flex-start; }
.scroller_bttn:last-child { justify-content: flex-end; }
.scroller_bttn:not(.swiper-button-disabled) { cursor: pointer; }
.scroller_bttn.swiper-button-disabled { opacity: 0.2; }

.scroller_bttn svg {
    width: 1rem;
    height: 1.25rem;
}

.similar_items.catalog[data-view=cards] .item_card { flex: 0 0 12.8125rem; }

.similar_items::before {
    content: '';
    border-top: 0.0625rem solid #ebebeb;
    display: block;
    height: 1.75rem;
}

/* product window */

.window_product {
    width: 100%;
    max-width: 74.25rem;
}
.window_product > .inner { padding: 2rem 3rem 3rem; }

.window_product article.product {
    border: none;
    padding: 0;
    margin: 0;
}

.window_product .shop_features, .window_product .product_comments, .window_product .similar_items {
    background: none;
    border: none;
    padding: 0;
}

.window_product .product_photo { margin-top: 2.75rem; }
.window_product .item_discount { left: 0; }
.window_product .shop_features { margin-top: 2rem; }
.window_product .product_comments { margin-top: 1rem; }
.window_product .scroller_controls { right: 0; }
.window_product .full_width:first-of-type { margin-top: 2rem; }

/* items list (cart/favourites) */

.items_list .item_card {
    border-width: 0 0 0.0625rem 0;
    display: grid;
    grid-column-gap: 1rem;
}

.items_list.favourites .item_card {
    grid-template-columns: 5rem auto 2.25rem 2.25rem;
    padding: 1.5rem 2rem;
}

.items_list.shopping_cart .item_card {
    grid-template-columns: 5rem 1fr auto auto 2.25rem;
    padding: 1.5rem 2.5rem;
    min-height: 4.5rem;
}

.items_list .item_status { grid-column-start: 2; }
.items_list.favourites .item_price_box { grid-column-start: 2; }
.items_list.shopping_cart .item_count, .items_list.favourites .del { grid-column-start: 3; }
.items_list.shopping_cart .item_price_box, .items_list .buy { grid-column-start: 4; }
.items_list.shopping_cart .del { grid-column-start: 5; }
.items_list.favourites .item_photo, .items_list.favourites .del, .items_list.favourites .buy { grid-row-end: 4; }
.items_list.shopping_cart .item_photo, .items_list.shopping_cart .del { grid-row-end: 3; }
.items_list .buy, .items_list .del, .item_count, .items_list.shopping_cart .item_price_box { grid-row-start: 1; }
.item_count, .items_list.shopping_cart .item_price_box { grid-row-end: 3; }
.items_list .buy svg { fill: #999; }
.items_list .buy:hover svg, .items_list .del:hover svg { fill: #1e1e1e; }


.items_list .item_photo {
    grid-row-start: 1;
    order: -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.items_list .item_title {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}


.items_list .item_title a, .items_list .item_status, .items_list .item_price {
    font-size: 0.875rem;
    line-height: 1.25;
}

.items_list .item_price {
    color: #666;
    min-width: 8.75rem;
}

.items_list .item_price b {
    font-size: 1rem;
    color: #1e1e1e;
}

.items_list .discount .item_price, .items_list .discount .item_price b { color: #cc0033; }

.items_list.shopping_cart .item_title b { display: block; }
.items_list .item_status { margin-top: 0.125rem; }

.items_list .del, .cart_controls button {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: inherit;
    padding: 0;
    margin: auto;
}

.items_list .del svg, .cart_controls .del svg {
    fill: #999;
    width: 1.125rem;
    height: 1.125rem;
    transition: fill 0.2s linear;
}

.items_list .buy {
    background: none;
    margin: auto;
}

.item_count, .items_list.shopping_cart .item_price_box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.items_list .discount .item_price_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.items_list .item_price_box { position: relative; }
.items_list.favourites .discount .item_price_box { margin-top: 0.25rem; }

.item_count button {
    background: #fbfbfb;
    border: 0.065rem solid #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: inherit;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    transition: border 0.1s linear;
}

.item_count button:disabled {
    opacity: 0.5;
    cursor: default;
}

.item_count .plus svg, .item_count .minus svg {
    fill: #afafaf;
    width: 0.75rem;
    height: 0.75rem;
    transition: fill 0.1s linear;
}

.item_count button:hover { border-color: #ccc; }
.item_count button:hover svg { fill: #777; }

.item_count input {
    font-size: 0.875rem;
    text-align: center;
    min-width: inherit;
    width: 4rem;
    height: 1.75rem;
    padding: 0 0.25rem;
    margin: 0 0.5rem;
}

/* search results */

.search_results ul { border-bottom: 0.0625rem solid #ebebeb; }

.search_results a, .search_time {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 2.25rem;
    padding: 0.125rem 1rem;
}

.search_results a {
    color: #1e1e1e;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.search_results a:hover { background: #ffefbd; }

.search_categories a, .search_articles a, .search_products a, .search_time { justify-content: flex-start; }

.search_results .catalog.search_products { margin-bottom: 0; }

.search_results .catalog.search_products .item_card {
    border-radius: 0;
    padding: 0;
}

.search_results .catalog.search_products .item_card:first-child, .search_results .catalog.search_products .item_card:last-child { border: 0; }

.search_results .catalog.search_products .item_photo {
    flex: 0 0 2rem;
    height: 100%;
    padding: 0.25rem 0;
    box-sizing: border-box;
}

.search_results .catalog.search_products .no_photo .item_photo img { transform: scale(1.5); }
.search_results .catalog.search_products .item_card a > *:not(.item_photo) { flex: 1; }
.search_results .catalog.search_products .item_card a > * { line-height: 1.25; }
.search_results .catalog.search_products .item_card.no_specs .item_title { flex: 2; }

.search_results .catalog.search_products .item_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}

.search_results .catalog.search_products .item_specs {
    font-size: 0.75rem;
    display: block;
}

.search_results .catalog.search_products .item_status {
    max-width: 6.5rem;
    margin: 0 1rem;
}

.search_results .catalog.search_products .item_price { max-width: 7.5rem; margin-right: 0.5rem; }
.search_results .catalog.search_products .item_card:hover .buy { background: none; }

.search_results .catalog.search_products .item_card .buy {
    flex: 0 1 1.25rem;
    width: auto;
    height: 2.25rem;
    margin-left: auto;
}

.search_results .catalog.search_products .item_card .buy svg {
    width: 1.25rem;
    height: 1.25rem;
}

.search_categories a, .search_articles a { font-size: 0.8125rem; }
.search_categories a { font-weight: 700; }

.search_articles b {
    display: block;
    margin-left: 0.25rem;
}

.search_time {
    color: #999;
    font-size: 0.75rem;
}

/* shopping cart */

.cart_top, .cart_controls, .cart_delivery {
    display: flex;
    flex-direction: row;
}

.cart_top {
    border-bottom: 0.0625rem solid #efefef;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2.5rem;
}

.cart_controls {
    align-items: center;
    justify-content: flex-start;
}

.cart_controls .copy svg {
    fill: #999;
    width: 1rem;
    height: 1.125rem;
}

.cart_delivery {
    font-size: 0.875rem;
    line-height: 1.5rem;
    align-items: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cart_delivery svg {
    fill: #54c930;
    width: 1.875rem;
    height: 1.25rem;
    margin: 0 0.625rem -0.0625rem 0;
}

.cart_delivery b { margin-left: 0.25rem; }

.cart_delivery_progress {
    background: #fdc101;
    border-radius: 0.125rem;
    width: 100%;
    height: 0.25rem;
    overflow: hidden;
}

.cart_delivery_progress i {
    background: #54c930;
    display: block;
    height: 100%;
    transition: width 0.3s linear;
} 

.cart_bottom {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 2.5rem 1.75rem;
}

.cart_bottom > * {
    width: 50%;
    box-sizing: border-box;
}

.cart_bottom > *:first-child { padding-right: 1rem; }
.cart_bottom > *:last-child { padding-left: 1rem; }

.cart_additional {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_additional > *:not(:first-child) { margin-top: 1rem; }

.cart_additional > * {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}

.cart_attention {
    color: #666;
    font-size: 0.75rem;
    line-height: 1rem;
}

.cart_attention svg {
    fill: #fdc101;
    height: 1.125rem;
    flex: 1 0 1.125rem;
    margin-right: 0.5rem;
}

.cart_promocode_message {
    color: #548eff;
    font-size: 0.75rem;
    line-height: 1rem;
}

.cart_promocode_message svg {
    fill: #548eff;
    flex: 0 1 1rem;
    height: 1rem;
    margin: 0 0.5625rem 0 0.0625rem;
}

.cart_total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart_price {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.cart_price span {
    color: #1e1e1e;
    font-size: 1rem;
}
.cart_price span b:first-child:not(:last-child) {
    font-size: 1.125rem;
    font-weight: 700;
}

.cart_promocode { margin: 0.25rem 0 auto; }

.cart_promocode span {
    color: #548eff;
    font-size: 0.875rem;
    text-align: right;
    text-decoration: underline;
    display: block;
    cursor: pointer;
}

.cart_promocode span:hover { text-decoration: none; }

.cart_promocode input {
    font-size: 0.875rem;
    display: none;
    min-width: 14rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    margin-top: 0.5rem;
}

.cart_promocode.active input { display: block; }

.checkout_controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    margin-top: 1rem;
}

.checkout_controls > *:not(:last-child) { margin-right: 0.5rem; }

.checkout_controls button svg {
    width: 0.375rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.c_button {
    background: #fbfbfb;
    border: solid 0.0625rem #fdc101;
}

/* order */

.order_box {
    border-top: 0.0625rem solid #efefef;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem 2.5rem;
    padding: 1.75rem 2.5rem 3rem;
}

.order_box.active { display: grid; }

.order_box .fields_box:nth-child(2) {
    grid-row-start: 2;
    grid-row-end: 3;
}

.order_box .fields_box:nth-child(3) {
    grid-row-start: 1;
    grid-row-end: 3;
}

.fieldset.hidden { display: none; }
.fieldset.inline input[type=checkbox] { margin-right: 0.5rem; }

.input_notes {
    background: #ffb3b3;
    font-size: 0.875rem;
    padding: 0.25rem;
}

.order_box .callback {
    margin-top: 0.75rem;
    display: none;
}

.callback.active { display: block; }
.callback .fieldset.inline, .callback input { width: 100%; }

.callback h5 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1rem;
    margin-bottom: 0.5rem;
}

.callback span {
    display: block;
    flex: 1 0 auto;
}

.order_box .fields_box:last-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
}

.ordercode {
    background: #000;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 2.25rem;
    margin-right: 0.5rem;
}

.custom-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1;
	max-height: 200px;
	overflow-y: auto;
	background: #fcfcfc;
	border: 0.0625rem solid #ccc;
	border-top: none;
	border-radius: 0 0 0.25rem 0.25rem;
	box-shadow: 0 0.25rem 0.25rem rgba(0,0,0,0.2);
	display: none;
	font-size: 0.9375rem;
	color: #000;
}

.custom-options div {
	padding: 6px;
	cursor: pointer;
}

.custom-options div:not(:first-child) { border-top: 0.0625rem solid #e7e7e7; }
.custom-options div:hover { background-color: #007aff; }
.custom-options div.hidden { display: none; }

.order_box .fieldset { overflow: inherit; }

.orderhints {
    background: #fff;
    border: 0.0625rem solid #ccc;
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: 0 0.25rem 0.25rem rgba(0,0,0,0.2);
    overflow: hidden;
    position: absolute;
    top: 2.25rem;
    left: 0;
    right: 0;
    z-index: 1;
}

.orderhints a {    
    color: #1e1e1e;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 2;
    display: block;
    padding: 0 1rem;
}

.orderhints li:not(:first-child) a { border-top: 0.0625rem solid #e7e7e7; }
.orderhints a:hover { background: rgba(253,193,1,0.3); }

.orderhint {
    font-size: 0.875rem;
    line-height: 1.25;
    display: block;
    margin-top: 0.5rem;
}

.orderhint:first-of-type { margin-top: 1rem; }
.orderhint b { color: #666; }

.preloader {
    background: url(../images/sprite.svg#preloader) center / 2.5rem 0.625rem no-repeat;
    display: none;
}

.preloader.active { display: block; }

.order_box .preloader {
    background-color: #fff;
    height: 2.25rem;
    margin-top: 1rem;
}

.item_card .preloader {
    background-color: rgba(255,255,255,0.9);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.catalog_menu .preloader {
    background-color: none;
    border-radius: 0.25rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 0.0625rem;
    height: 2rem;
    z-index: 1;
}

/* complete order */

.error {
    color: #fa2607;
    font-size: 0.875rem;
    line-height: 1.25;
    margin-top: 1rem;
}

.window_cart .inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-width: 100%;
}

.success { padding: 5%; }

.success span {
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: auto;
    transition: background 0.2s linear 0.5s;
}

.success svg {
    width: 2rem;
    height: 2rem;
    transform: scale(-1, 1);
    transition: transform 0.2s linear 0.5s;
}

.success p {
    color: #fff;
    text-align: center;
    line-height: 1.25;
    margin-top: 1rem;
    transition: color 0.2s linear 1s;
}

.complete .success span { background: #54c930; }
.complete .success svg { transform: scale(1, 1); }
.complete .success p { color: #1e1e1e; }

/* image viewer */

.img_viewer {
    background: rgba(0,0,0,0.4);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.img_viewer .slide {
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.img_viewer .slide img { margin: 0 4.5rem; }

.viewer_bttn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 5%;
    height: auto;
    margin: auto;
    outline: none;
    cursor: pointer;
}

.viewer_bttn svg {
    fill: #fff;
    width: 1.125rem;
    height: 2rem;
}

.img_viewer .prev { left: 0; }
.img_viewer .next { right: 0; }

.img_viewer .close_bttn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    padding: 1rem;
    cursor: pointer;
}

.img_viewer .close_bttn svg {
    fill: #fff;
    width: 1.5rem;
    height: 1.5rem;
}

/* orders list */

.order {
    background: #fff;
    border: 0.0625rem solid #efefef;
    border-radius: 0.25rem;
    padding: 0 1rem 1rem;
}

.order:not(:first-of-type) { margin-top: 1rem; }
.order dt { margin-bottom: 0.25rem; }

.order time {
    background: rgba(253,193,1,0.3);
    color: #548eff;
    font-weight: 700;
    padding: 1rem;
    margin: 0 -1rem;
}

.order .personal_info {
    font-size: 0.875rem;
    line-height: 1.25;
    margin: 0.75rem 0 0.5rem;
}

.order .items_list .item_card { grid-template-columns: 3rem auto 3rem 18rem; }

.order .item_count {
    text-align: center;
    font-size: 0.875rem;
    grid-row-start: inherit;
    grid-row-end: inherit;
}

.order .item_count::before, .order .total_price span::before { content: '('; }
.order .item_count::after, .order .total_price span::after { content: ')'; }

.order .items_list .item_price_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.order .items_list .item_photo { margin: 0.5rem 0; height: auto; }
.order .items_list .item_title { align-self: center; }
.order .items_list .item_price { text-align: right; flex: 0 1 8.5rem; }
.order .items_list .item_price b { font-size: 0.875rem; }
.order .items_list .item_price span { font-size: 0.8125rem; }

.order .total_price {
    color: #cc0033;
    font-size: 0.875rem;
    text-align: right;
    margin-top: 0.75rem;
}

.order .total_price span { font-size: 0.8125rem; }

/* registration */

.reg_form {
    background: #fff;
    border: 0.0625rem solid #ebebeb;
    border-radius: 0.25rem;
    max-width: 40rem;
    padding: 2rem;
    margin: auto;
}

.reg_form .fieldset {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
}

.reg_form input[type=text], .reg_form input[type=password], .reg_form input[type=email], .reg_form input[type=tel] { width: 100%; }

.reg_form .controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* notifications */

.notification {
    background: rgba(30,30,30,0.9);
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.25;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 2rem;
    z-index: 9999;
    max-width: 20rem;
    max-width: max-content;
    padding: 1rem 1.5rem;
    margin: auto;
}

/* promo */

.promo { margin: 2rem 0 0; }

.promo .inner {
    max-width: 85.375rem;
    padding: 0 3rem;
    margin: auto;
}

.promo .swiper-container {
    background: #ddd;
    border-radius: 0.25rem;
    overflow: hidden;
}

.promo .swiper-slide {
    position: relative;
    height: 0;
    padding-top: 24.89%;
}

.promo .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: contain;
}

.promo .swiper-slide.cover img { object-fit: cover; }

.promo .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.promo .swiper-pagination span {
    background: #ddd;
    border: solid 0.125rem #fff;
    border-radius: 50%;
    display: block;
    width: 1rem;
    height: 1rem;
    box-sizing: border-box;
    transition: background 0.2s linear;
}

.promo .swiper-pagination span:not(:last-child) { margin-right: 1rem; }
.promo span.swiper-pagination-bullet-active { background: #548eff; }
.promo span:not(.swiper-pagination-bullet-active) { cursor: pointer; }
.promo span:not(.swiper-pagination-bullet-active):hover { background: #8e8e8e; }

/* additional menu */

.additional_menu {
    background: #fdc101;
    /*border-top: 0.0625rem solid #fed75a;*/
}

.additional_menu .catalog_menu {
    max-width: 85.375rem;
    padding: 0 3rem;
    margin: auto;
}

.additional_menu .catalog_menu > ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    height: 2.5rem;
}

.additional_menu .catalog_menu > ul > li { flex: 1 0 auto; }
.old_menu.additional_menu .catalog_menu > ul > li { flex: 0 1 auto; } /* dev only */

.additional_menu .catalog_menu > ul > li > a {
    font-size: 0.8215rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    box-sizing: border-box;
    transition: background 0.2s linear;
}

body:not(.trigger_mode) .additional_menu .catalog_menu > ul > li:hover {
    background: #fed75a;
    border-radius: 0.25rem 0.25rem 0 0;
}

.trigger_mode .additional_menu .catalog_menu ul > li > a:hover { cursor: default; }

.additional_menu .catalog_menu > ul > li > a > svg {
    fill: #1e1e1e;
    flex: 0 1 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

.additional_menu .catalog_menu .submenu {
    //box-shadow: 0 0.0625rem 0.25rem rgba(0,0,0,0.4);
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
}

.additional_menu .catalog_menu .show_left {
    left: auto;
    right: 0;
}

.additional_menu .catalog_menu .show_center {
    transform: translateX(-50%);
    margin-left: 50%;
}

.additional_menu .catalog_menu ul > li:hover .submenu { display: none; }

.submenu_categories { border: none; }
.additional_menu a { font-size: 0.875rem; }

.additional_menu .submenu_inner {
    border-radius: 0 0 0.25rem 0.25rem;
    align-items: stretch;
    padding: 1.5rem;
}

.additional_menu .submenu_inner > div, .brands > ul { flex: 1 0 auto; }

.additional_menu .catalog_menu .brands {
    border-left: 0.0625rem solid #ebebeb;
    display: block;
    padding-top: 0;
}

.additional_menu .catalog_menu .brands > span {
    display: block;
    position: static;
}

.additional_menu .catalog_menu .brands > span, .submenu_categories h4 {
    font-size: 0.875rem;
    white-space: nowrap
}

.additional_menu .brands a::before {
    border-radius: 50%;
    width: 0.375rem;
    height: 0.375rem;
    margin: 0 0.625rem 0 0.125rem
}

.submenu_categories h4 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.submenu_categories h4:not(:first-of-type) { margin-top: 1.25rem; }

.additional_menu .promo_block { padding-left: 1.5rem; }
.additional_menu .promo_block a:not(:last-child) { margin-bottom: 1rem; }
.additional_menu .promo_block img { max-width: 12rem; }

.additional_menu .promo_block a {
    display: block;
    padding: 0;
}

/* back to top */

.back_to_top {
    background: #fdc101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 99;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition: background 0.2s linear;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s linear, visibility 0.5s linear;
}

.back_to_top:hover { background: #fdd80b; }

.back_to_top svg {
    fill: #1e1e1e;
    width: 1rem;
    height: 1rem;
    margin-top: -0.125rem;
    transform: rotate(180deg);
}

.show_btt .back_to_top {
    opacity: 1;
    visibility: visible;
}


/* media queries yeah! */

@media screen and (max-width: 91.375em) { /* 1462 */

    .search { position: static; }
    div.search.active input[type=text] { border-radius: 0.25rem; }
    .search_results { max-width: 60rem; margin: auto; }
}

@media screen and (max-width: 30em), screen and (min-width: 64em) and (max-width: 83.6875em) { /* 480, 1024-1339 */
    
    .article .comments_form .fieldset.inline, .product_page .comments_form .fieldset.inline { display: block; }
    .article .comments_form input[type=submit], .product_page .comments_form input[type=submit] { width: 100%; margin: 1rem 0 0; }
    
}

@media screen and (max-width: 30em), screen and (min-width: 50.0625em) and (max-width: 63.9375em) { /* 480, 801-1023 */
    
    .product_page .product_main { flex-direction: column; }
    .product_page .product .item_status, .product_page .product .item_price { font-size: 0.875rem; }
    .product .item_price b { font-size: 1rem; }
    
    .product_page .product_buy {
        position: relative;
        padding-right: 50%;
        margin: 0 0 1rem 0;
    }
    
    .product_page .product .buy {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        min-width: inherit;
        margin: auto;
    }
    
    .product_page .product_delivery {
        background: #fbfbfb;
        border-radius: 0.25rem;
        order: 3;
        padding: 0.75rem 1rem;
        margin-top: 0.75rem;
        box-sizing: border-box;
    }
    
}

@media screen and (max-width: 30em), screen and (min-width: 55.0625em) and (max-width: 63.9375em) { /* 480, 881-1023 */

    .window_product .product_main { flex-direction: column; }
    .window_product .product .item_status, .window_product .product .item_price { font-size: 0.875rem; }
    .window_product .product .item_price b { font-size: 1rem; }
    
    .window_product .product_buy {
        position: relative;
        padding-right: 50%;
        margin: 0 0 1rem 0;
    }
    
    .window_product .product .buy {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        min-width: inherit;
        margin: auto;
    }
    
    .window_product .product_delivery {
        background: #fbfbfb;
        border-radius: 0.25rem;
        order: 3;
        padding: 0.75rem 1rem;
        margin-top: 0.75rem;
        box-sizing: border-box;
    }
    
}

@media screen and (max-width: 50em), screen and (min-width: 64em) and (max-width: 79.9375em) { /* 800, 1024-1279*/
    
    /* product page */
    
    .product_page .product {
        flex-direction: column-reverse;
        border-bottom: 0;
    }
    
    .product_page .product_photo { margin-bottom: 2rem; }
    .product_page .product_photo_box { padding-top: 50vh; }
    
    .shop_features_box {
        border: none;
        padding: 0;
    }
    
    .thumbs a {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .thumbs .scroller_bttn { height: 4.5rem; }
    
    .shop_features dl { position: relative; }
    
    .shop_features dt {
        background: #fff;
        border: 0.0625rem solid #6294d0;
        border-radius: 0.25rem;
        color: #6294d0;
        font-size: 0.875rem;
        text-align: left;
        display: none;
        position: absolute;
        bottom: 100%;
        min-width: 11rem;
        min-width: max-content;
        padding: 0.375rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .shop_features dt::after {
        content: '';
        background: #fff;
        border: 0.0625rem solid #6294d0;
        border-top-width: 0.0625rem;
        border-right-width: 0.0625rem;
        border-bottom-width: 0.0625rem;
        border-left-width: 0.0625rem;
        border-width: 0 0.0625rem 0.0625rem 0;
        display: block;
        position: absolute;
        bottom: -0.3125rem;
        width: 0.5rem;
        height: 0.5rem;
        transform: rotate(45deg);
        margin: auto;
    }
    
    .shop_features dl:nth-child(1) dt { left: 0; }
    .shop_features dl:nth-child(2) dt { left: -2rem; }
    .shop_features dl:nth-child(3) dt { left: auto; right: auto; }
    .shop_features dl:nth-child(4) dt { right: -2rem; }
    .shop_features dl:nth-child(5) dt { right: 0; }
    .shop_features dl:nth-child(1) dt::after { left: 1rem; }
    .shop_features dl:nth-child(2) dt::after { left: 3rem; }
    .shop_features dl:nth-child(3) dt::after { left: 0; right: 0; }
    .shop_features dl:nth-child(4) dt::after { right: 3rem; }
    .shop_features dl:nth-child(5) dt::after { right: 1rem; }
    .no-touchevents .shop_features dl:hover dt, .touchevents .shop_features dl.active dt { display: block; } 
    
    .comments_list ul { margin-left: 2.5rem; }
    .comments_list dl { padding-left: 4rem; }
    .comments_list .avatar { width: 3rem; height: 3rem; }
    .comments_list .avatar.no_avatar svg  { width: 1.5rem; height: 1.5rem; }
    
}

@media screen and (min-width: 50.0625em) and  (max-width: 63.9375em), screen and (min-width: 80em)  { /* 801-1023, 1280 */
    
    /* product page */
    
    .product_page article[role=main].product {
        border-width: 0.0625rem 0.0625rem 0 0.0625rem;
        border-radius: 0.25rem 0.25rem 0 0;
        flex-direction: row-reverse;
    }
    
    .product_page .product > * {
        flex: 1 0 50%;
        min-width: 50%;
        box-sizing: border-box;
    }

    .product_page .product > *:first-child { padding-left: 1.5rem; }
    .product_page .product > *:last-child { padding-right: 1.5rem; }

}

@media screen and (max-width: 55em) {
    
    .window_product .product { flex-direction: column-reverse; }
    .window_product .product_photo { margin-bottom: 2rem; }
    .window_product .product_photo_box { padding-top: 50vh; }
    
}

@media screen and (min-width: 55.0625em) { /* 801 */
    
    .window_product .breadcrumbs {
        position: absolute;
        top: 2rem;
        left: 3rem;
        right: 50%;
        padding-right: 1.5rem;
        box-sizing: border-box;
    }
    
    .window_product article[role=main].product {
        border-width: 0.0625rem 0.0625rem 0 0.0625rem;
        border-radius: 0.25rem 0.25rem 0 0;
        flex-direction: row-reverse;
    }
    
    .window_product .product > * {
        flex: 1 0 50%;
        min-width: 50%;
        box-sizing: border-box;
    }

    .window_product .product > *:first-child { padding-left: 1.5rem; }
    .window_product .product > *:last-child { padding-right: 1.5rem; }
    
}

@media screen and (max-width: 80em)  { /* 1280 */
    
    /* catalog toolbar - compact version */
    
    .catalog:first-of-type h1 { padding-right: 12rem; }
    .catalog_toolbar > * { height: 2rem; }
    .catalog_toolbar > *:not(:last-child) { margin-right: 1rem; }
    
    .sortings_switch, .filter_switch, .miniprice_switch {
        font-size: 0.875rem;
        display: grid;
        grid-template-columns: repeat(2, auto);
        min-width: 5rem;
        cursor: pointer;
    }
    
    .sortings_switch {
        align-items: center;
        height: 2rem;
    }
    
    .sortings_switch::after, .filter_switch::after, .miniprice_switch::after {
        content: attr(data-current);
        font-size: 0.625rem;
        line-height: 0.75rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
        overflow: hidden;
        width: 100%;
        max-width: 10rem;
        margin-top: -0.25rem;
        grid-column-start: 2;
    }
    
    .filter_switch b::after {
        content: attr(data-count);
        font-weight: 400;
        display: inline-block;
        margin-left: 0.25rem;
    }
    
    .sortings_switch svg, .filter_switch svg, .miniprice_switch svg { margin: 0 0.5rem -1rem 0; }
    .sortings_switch b, .filter_switch b, .miniprice_switch b { font-size: 0.75rem; white-space: nowrap; }
    .sortings, .view_type { position: relative; }
    .view_type { margin-right: -0.4375rem; }
    
    .view_type {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 2rem;
        margin-left: auto; 
        cursor: pointer;
    }
    
    .sortings span { display: none; }

    .sortings_switch svg, .filter_switch svg,  .view_type > svg {
        fill: #1e1e1e;
        opacity: 0.5;
        cursor: pointer;
    }
    
    .sortings_switch svg {
        width: 1.375rem;
        height: 1.125rem;
    }
    
    .filter_switch svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .sortings ul, .view_type ul {
        background: #fff;
        border: 0.0625rem solid #ddd;
        border-radius: 0.25rem;
        position: absolute;
        z-index: 1;
        height: 2.25rem;
        opacity: 0;
        visibility: hidden;
        box-sizing: border-box;
        transition: opacity 0.2s linear, visibility 0.2s linear, right 0.2s linear, left 0.2s linear;
    }
    
    .sortings ul { padding: 0 1rem; }
    
    .view_type ul {
        right: -1rem;
        padding: 0 0.25rem;
    }
    
    .sortings.active ul, .view_type.active ul  {
        opacity: 1;
        visibility: visible;
    }

    .view_type.active ul { right: 0; }
    
    
    .miniprice_switch svg {
        fill: #1e1e1e;
        width: 1.125rem;
        height: 1.125rem;
        opacity: 0.5;
    }

}

@media screen and (min-width: 25.0625em) { /* 401 */
    
    .footer_contacts {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
    
    .footer_contacts > *:not(:first-child) { margin: 0 0 0 2rem; }
    
}

@media screen and (max-width: 61.25em), screen and (min-width: 64em) and (max-width: 83.6875em) { /* 980, 1024-1339 */

    .article .comments_form .form_header, .product_page .comments_form .form_header {
        max-width: 30rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .article .comments_form form, .product_page form {
        max-width: 30rem;
        margin: auto;
    }

}

@media screen and (min-width: 61.3125em) and (max-width: 63.9375em), screen and (min-width: 83.75em) { /* 981-1023, 1340 */
    
    .article form.double, .product_page form.double {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 1.25rem;
    }
    
    .article .comments_form .fieldset, .product_page .comments_form .fieldset { margin: 0; }
    .article .comments_form .fields_box .fieldset, .product_page .comments_form .fields_box .fieldset { margin-top: 1rem; }

    .article .comments_form .fieldset:first-child, .product_page .comments_form .fieldset:first-child {
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .article .comments_form .fieldset:last-child, .product_page .comments_form .fieldset:last-child { align-items: flex-end; }
    
}

@media screen and (min-width: 40.0625em) { /* 641 */ 

    .window_product .comments_form { border-radius: 0.25rem; }
    .cart_controls button:hover svg { fill: #1e1e1e; }
    
}
