:root {
  --color-paramount: #7EB81C;
  --color-contrast: #00cc00;
  --color-secondary: #F5F5F5;
  --color-ternary: #666666;
  --color-black: #000000;
  --color-red: #cc0000;
  --color-white: #ffffff;
  --color-border-search: #999999;
  --max-width-content: 1424px;
  --color-gray: #666666;
  --color-light-gray: #f0f0f0;
  --color-border: #009900;
  --padding-max-container: 32px;
  --padding-max-container-negative: -32px;
  --color-border-bottom: #949494;
  --scrollbar-width: 16px;
}

@font-face {
  font-family: 'Montserrat Alternates';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/MontserratAlternates-BoldItalic.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("fonts/Montserrat-Thin.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("fonts/Montserrat-ExtraLight.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/Montserrat-Light.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Montserrat-Regular.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/Montserrat-Medium.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Montserrat-SemiBold.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/Montserrat-Bold.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/Montserrat-ExtraBold.ttf") format('woff2');
}

@font-face {
  font-family: 'Montserrat Alternates';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/Montserrat-Black.ttf") format('woff2');
}

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before, *::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
  width: 100%;
}
body {
  margin: 0;
  padding: 0;
  font: 13px 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--color-black);
  width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
main {
    flex: 1;
}
.bodyFx { background-color: var(--color-secondary); }
.bodyFx.overflow-hidden { overflow: hidden !important; }

button, .button {
  white-space: nowrap;
}
.hide { display: none !important; }
.flex { display: flex; }
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center { align-items: center; }
.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
/* header */
.header-top-bg {
    background: #2D2D2D;
}
.header-bottom-bg {
     background: #1C1C1C;
 }
.header-main {
  position: relative;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  box-shadow: 0 1px 13px 0 rgba(0,0,0,0.12);
}
.overflow-hidden .header-main {
  padding-right: var(--scrollbar-width);
}
.header-main.lower-header-fixed {
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgb(0 0 0 / 25%);
}
.header-main ul {
    list-style: none;
    padding: 0;
}
.header-wrapper {
    max-width: var(--max-width-content);
    width: 100%;
    margin: 0 auto;
    padding-left: var(--padding-max-container);
    padding-right: var(--padding-max-container);
    position: relative;
}
.header-divider {
    background-color: #FE4A01;
    border-bottom: 1px solid #FE4A01;
    opacity: 0.5;
    display: none;
}
.lower-header-fixed .header-divider {
    display: none;
}
.header-top-container {
    display: flex;
    position: relative;
    align-items: center;
    min-height: 64px;
}
.lower-header-fixed .header-top-container {
    display: none;
}
.header-bottom-container {
    grid-column-gap: 60px;
    -webkit-column-gap: 60px;
    column-gap: 60px;
    display: grid;
    grid-template-columns: 180px auto 1fr auto;
    width: 100%;
    min-height: 60px;
    margin: 15px 0;
}
.lower-header-fixed .header-bottom-container {
    margin: 0;
}
.header-bottom-nav {
    display: flex;
    align-items: center;
}
.header-bottom-list {
    grid-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    align-items: center;
    display: grid;
    grid-auto-columns: auto;
    grid-auto-flow: column;
}
.header-bottom-logo {
    display: flex;
    max-height: 60px;
    max-width: 180px;
}
.header-top-nav {
    width: 100%;
    grid-column-gap: 8px;
    -webkit-column-gap: 8px;
    column-gap: 8px;
    display: flex;
    justify-content: space-between;
}
.header-top-list {
    justify-content: space-between;
    font-weight: 400;
    align-items: center;
    display: grid;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    padding: 0;
    grid-column-gap: var(--padding-max-container);
    -webkit-column-gap: var(--padding-max-container);
    column-gap: var(--padding-max-container);
}
.header-top-item,
.header-bottom-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
.header-box {
    border-radius: 0;
    box-shadow: none;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    max-width: 300px;
    white-space: nowrap;
    min-width: auto;
    position: relative;
    transition: all .1s ease-in-out;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
    display: inline-flex;
    outline: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
    align-items: center;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    gap: 10px;
}
.header-top-address {
    font-size: 11px;
    line-height: 13px;
    /*width: 170px;*/
    white-space: normal;
    color: white;
}
.header-box .text-strong {
    font-weight: 700;
}
.header-link {
    font-size: 16px;
    gap:8px;
}

.header-top-phones {
    display: flex;
    flex-direction: column;
    width: min-content;
}
@media screen and (min-width: 680px) {
    .phone-header {
        display: none;
    }   
}
    
.header-top-phone {
    font-size: 19px;
    line-height: 140%;
}

.header-top-phone img {
    max-height: 25px;
    max-width: 25px;
}
.header-top-mail {
    font-size: 15px;
    line-height: 20px;
    color: white;
}
.header-bottom-shearch {
    display: flex;
    align-items: center;
    width: 100%;
}
.header-box.not-active {
    cursor: default;
}
.header-box.not-active:hover {
    color: #FE4A01;
}
/* header */
#main-content {
    border-bottom: 4px solid transparent;
}
.overflow-hidden #main-content {
  padding-right: var(--scrollbar-width);
}
#main-content.lower-header-fixed {
    padding-top: var(--vh, px);
}
.page.not-main-page, 
.page-info {
  max-width: var(--max-width-content);
  width: 100%;
  margin: 25px auto 0 auto;
  padding-left: var(--padding-max-container);
  padding-right: var(--padding-max-container);
}
.page-info {margin: 40px auto 0 auto;}
.page ul, .footer-container ul{
    list-style: none;
    padding: 0;
}

/* home */

.home-section {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;  
}
.border-bottom {
  border-bottom: 1px solid var(--color-border-bottom);
}


  .home-container, .home-sales-container {
    max-width: var(--max-width-content);
    width: 100%;
    margin: 40px auto 0 auto;
    padding-left: var(--padding-max-container);
    padding-right: var(--padding-max-container);
    text-align:justify;
  }
.home-sales-container {
  margin: 20px auto 10px auto;  
}
.home-list {
    display: grid;
    grid-template-rows: auto;
}
.home-promotions .home-list {
    gap: var(--padding-max-container);
    grid-template-columns: repeat(3,minmax(200px,1fr));
    font-size: 16px;
    line-height: 24px;
}
.home-promotions .home-item {
    max-width: 430px; 
}
.home-promotions .home-image {
    max-height: 215px;
    aspect-ratio: 2/1;
    object-fit: contain;
}
.home-promotions .home-box {
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    height: 100%;
    word-break: break-word;
    text-decoration: none;
}
.home-promotions .home-box:hover,
.home-categories .home-box:hover,
.home-brands .home-box:hover,
.home-sales .home-box:hover {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12), 0 3px 5px 0 rgba(0, 0, 0, .2);
    transition: all .2s ease-in-out;
}
.home-promotions .home-text {
  padding: 25px 30px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: var(--color-white);
  text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-title-box {
    text-align: left;
    overflow-y: visible;
    padding-bottom: 30px;
}
.home-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-transform: none;
    margin-bottom: 10px;
}
.home-title-text {
    max-width: 720px;
    font-size: 14px;
    line-height: 24px;
}
.home-title-text a {
    color: #FE4A01;
}
.home-title-text a:hover {
    transition: all .1s ease-in-out;
}
.home-categories .home-list {
    grid-template-columns: repeat(4,minmax(208px,1fr));
    grid-gap: var(--padding-max-container);
    gap: var(--padding-max-container);
    grid-auto-flow: dense;
}
.home-categories .home-item {
    max-width: 315px;
}
.home-categories .home-box {
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  min-height: 148px;
  text-align: center;
  background-color: var(--color-white);
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.home-categories .home-image {
    max-width: 220px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.home-categories .home-text {
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    color: black;
}
.home-brands .home-list {
    grid-template-columns: repeat(6,minmax(140px,1fr));
    grid-gap: var(--padding-max-container);
    gap: var(--padding-max-container);
}
.home-brands .home-item {
    max-width: 200px;
}
.home-brands .home-box {
    padding: 37px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    min-height: 148px;
    background-color: var(--color-white);
    align-items: center;
}
.home-brands .home-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    width: 100%;
    max-width: 144px;
    max-height: 96px;
    aspect-ratio: 3/2;
    object-fit: contain;
}
.home-sales .home-list {
    grid-template-columns: repeat(auto-fill,minmax(500px,1fr));
    grid-gap: var(--padding-max-container);
    gap: var(--padding-max-container);
}
.home-sales .home-item{
    max-width: 664px;
}
.home-sales .home-box {
    height: 100%;
    width: 100%;
    display: grid;
    grid-gap: 0;
    gap: 0;
    color: var(--color-black);
    background-color: var(--color-white);
    text-decoration: none;
    grid-template-rows: repeat(1,1fr);
    grid-template-columns: repeat(12,1fr);
}
.home-sales .home-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    width: 100%;
    max-width: 332px;
    max-height: 276px;
    aspect-ratio: 83/69;
    grid-column: auto/span 6;
    object-fit: contain;
}
.home-sales .home-text-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    font-weight: 700;
    justify-content: center;
    grid-column: auto/span 6;
}
.home-sales .home-text {
    font-size: 32px;
    line-height: 36px;
    color: var(--color-black);
}
.home-sales .home-text-link {
    font-size: 16px;
    line-height: 19px;
    color: #FE4A01;
    text-decoration: underline;
}
.home-advantages .home-item {
    height: 100%;
    width: 100%;
    display: grid;
    color: var(--color-black);
    background-color: var(--color-white);
    text-decoration: none;
    grid-template-columns: minmax(350px, 40%) 1fr;
}
.home-advantages .home-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    width: 100%;
    max-width: 560px;
    max-height: 560px;
    aspect-ratio: 1/1;
}
.home-advantages .home-description {
    font-size: 16px;
    line-height: 21px;
    flex-direction: column;
    display: flex;
    gap: 20px;
}
.home-advantages .home-text-box {
    display: flex;
    flex-direction: column;
    padding: var(--padding-max-container);
    gap: 20px;
}
.home-advantages .home-text {
    font-weight: 700;
    font-size: 29px;
    line-height: 35px;
    text-transform: none;
}
.home-advantages .home-text-link {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    border: 1px solid #FE4A01;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    width: fit-content;
    color: #FE4A01;
    text-decoration: none;
}

.home-advantages .home-text-link:hover {
    transition: all .2s ease-in-out;
    background-color: #FE4A01;
    color: var(--color-white);
}
.home-description-icons-box {
    display: grid;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
}
.home-icons-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-icons-text {
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
}
/* home */
/* footer*/
.footer-container {
    margin-top: 40px;
    background: #1C1C1C;
    
}
.overflow-hidden .footer-container {
  padding-right: var(--scrollbar-width);
}
.footer-grid {
  background-color: #1C1C1C;
}
.footer-container.not-main-page {
    margin-top: 30px;
    background-color: #1C1C1C;
}

.footer-grid-outer {
  
  margin: 0 auto;
  max-width: var(--max-width-content);
  position: relative;
  width: 100%;
  padding-left: var(--padding-max-container);
  padding-right: var(--padding-max-container);
}
.footer-grid-inner {
    display: grid;
    justify-items: flex-start;
    padding-bottom:30px;
    padding-top: 30px;
    grid-template-areas: "catalog buyers info";
    grid-template-columns: calc(50% - 64px) 25% 25%;
    justify-content: space-between;
    gap: var(--padding-max-container);
}
.footer-links-block.footer-catalog {
    grid-area: catalog;
    width: 100%;
}
.footer-links-block.footer-buyers {
    grid-area: buyers;
}
.footer-links-block.footer-info {
    grid-area: info;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.info-container {
    max-width: 420px;
    min-width: 280px;
    width: 100%;
}
.footer-logo-container {
    background-color: #FE4A01;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    box-sizing: border-box;
    padding: 12px;
    gap: 10px;
    color: var(--color-white);
    align-items: center;
    justify-content: center;
}

.footer-logo-container p {
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-size: 34px;
    line-height: 37px;
    font-family: 'Montserrat Alternates';
    font-style: italic;
}
.footer-text-box {
    padding: 10px var(--padding-max-container);
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: var(--max-width-content);
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-decoration: none;
    gap: 10px;
    background-color: #1C1C1C;
    display: grid;
    grid-template-columns: calc(50% - 64px) 25% 25%;
}
.footer-text-box a{
    text-decoration: none;
}
.footer-text-box .footer-text-right {
    color: white;
}
.footer-catalog .footer-list {
    column-width: 260px;
    width: 100%;
}
.footer-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: white;
}
.footer-catalog .footer-item {
    margin-bottom: 20px;
    word-wrap: break-word;
}
.footer-catalog .footer-item:last-child {
    margin-bottom: 0;
}
.footer-buyers .footer-list {
    display: flex;
    flex-direction: column;
    gap:20px;
}
.footer-buyers .footer-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-item a{
    text-decoration: none;
        color: white;
}
.footer-header {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    padding: 0;
    color: #fff;
}
.footer-title p{
    color: #fff;
}
.footer-info .footer-header {
    font-size: 16px;
    font-size: 19px;
    margin-bottom: 4px;
}
.footer-email-box {
    display: flex;
    height: 48px;
}
.footer-email-box input[type=text] {
    padding: 14px 16px;
    border: 1px solid #FE4A01;
    border-radius: 3px 0 0 3px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: white;
    height: 100%;
    width: 60%;
    margin: 0;
    box-shadow: none;
}
.footer-email-box input[type=text]:focus {
    border-color: #FE4A01;
        box-shadow: 0 0 1px 1px #FE4A01;
    -webkit-box-shadow: 0 0 1px 1px #FE4A01;
    -moz-box-shadow: 0 0 1px 1px #FE4A01;
        transition: all .2s ease-in-out;
}
.footer-email-box button {
    background: #FE4A01;
    border-radius: 0 3px 3px 0;
    height: 100%;
    border: 1px solid #FE4A01;
    width: 40%;
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
}
.footer-email-box button:hover {
    background: var(--color-white);
    color: #FE4A01;
        transition: all .2s ease-in-out;
}
.footer-address-box.header-box {
    justify-content: flex-start;
}
.footer-net-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.footer-time-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 15px;
    line-height: 17px;
    color: white;
}
/* footer*/
.cart-icons-box {
    display: flex;
    position: relative;
}

/*burger*/

.burger-container {
    background-color: #FE4A01;
    color: var(--color-white);
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 3px;
    gap: 15px;
    height: 44px;
    cursor: pointer;
}
.overflow-hidden .burger-content {
  padding-right: var(--scrollbar-width);
}
.burger {
    cursor: pointer;
    position: relative;
    width: 20px;
    height: 16px;
    background-color: #FE4A01;
}

.burger:hover {
    background-color: #FE4A01;
}

.burger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: .3s all ease;
}

.burger span:nth-child(1) {
    top: 10%;
}

.burger span:nth-child(3) {
    top: 90%;
    width: 50%;
    left: 25%;
}

.burger-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger-active span:nth-child(2) {
    opacity: 0;
}

.burger-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    left: 50%;
    width: 100%;
}

.abs-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.burger-content {
  position: absolute;
  display: none;
  z-index: 100;
  top: 100%;
  background-color: var(--color-white);
  width: 100%;
  height: 100vh;
  box-shadow: inset 0 7px 5px -5px rgb(0 0 0 / 25%);
}

.burger-content a { text-decoration: none; }

.burger-content__categories {
  max-width: var(--max-width-content);
  width: 100%;
  height: calc(100% - var(--hl, px));
  margin: 0 auto;
  position: relative;
  padding: var(--padding-max-container);
}

.burger-content__category {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}

  .burger-content__category.active {
    background-image: url(images/arrow-vertically-icon.svg);
    background-repeat: no-repeat;
    background-size: 12px 18px;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
  }

  .burger-content__category:hover {
    background-image: url(images/arrow-vertically-icon.svg);
    background-repeat: no-repeat;
    background-size: 12px 18px;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    text-decoration: none;
    background-color: var(--color-secondary);
    border-radius: 3px;
  }
.burger-content__category-name {
    background-repeat: no-repeat;
    background-position: 30px center;
    padding: 15px 80px;
    width: 100%;
    background-size: 20px;
    color: var(--color-black);
}

.burger-content__links {
  background-color: var(--color-secondary);
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: var(--padding-max-container) var(--padding-max-container) var(--padding-max-container) 0 !important;
  height: calc(100vh - var(--hl, px));
  width: calc(100% - 390px - var(--padding-max-container));
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: inset 0 7px 5px -5px rgb(0 0 0 / 25%);
}
.burger-content__links ul{
  height: 100%;
  width: 100%;
  column-width: 300px;
}
.burger-content__links-category {
    background-color: var(--color-white);
    padding: 40px;
    display: none;
    z-index: 2;
    height: 100%;
}

.burger-content__link-sale {
    height: 11vh;
    min-width: 400px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    position: relative;
    margin-top: 8px;
}

.burger-content__link-sale p {
    position: absolute;
    bottom: 1vh;
    color: var(--color-white);
    font-size: var(--16px);
    font-weight: 700;
    left: 1vmax;
    width: 80%;
}
.burger-content__links li.sub-cat {
  padding: 7px;
  font-size: var(--16px);
  font-weight: 400;
  padding: 0;
}
.burger-content__links li.sub-cat a {
  padding: 10px 30px;
  color: var(--color-black);
  display: block;
  font-size: 14px;
  line-height: 17px;
      display: block;
}
.burger-content__links li.sub-cat a:hover {
  color: #FE4A01;
}
/*burger*/

/*slider goods*/
.slider-goods-container {
  margin: 20px auto;
}
.slider-goods-header {
  font-weight: 700;
  font-size: 29px;
  line-height: 36px;
  color: var(--color-black);
  margin-bottom: 20px;
}
/*slider goods*/
.lower-header {
    background-color: var(--color-secondary);
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
    position: relative;
    z-index: 101;
    width: 100%;
}

.header-container.lower-header-fixed {
  padding-bottom: var(--vh, px);
}

.header-container.lower-header-fixed .lower-header {
    position: fixed;
    z-index: 1000;
    margin-top: 0;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / 25%);
}

.lower-header-container {
  height: 56px;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1392px;
}

.product__params--body {
  display: flex;
  flex-flow: column;
}

.product__params-row {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 9px 0;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.product__param--name {
  width: 280px;
  padding-right: 50px;
}

.product__param--value {
  flex-grow: 1;
  padding-right: 30px;
}

.product__videos {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.product__videos-name {
  font-size: 16px;
  margin-bottom: 5px;
}

.product__videos-item {
  width: calc(50% - 5px);
}

.product__videos-video {
  height: 250px;
  width: 100%;
}

.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.wr {
  min-width: 100%;
  width: 100%;
}

.main-slider {
  grid-area: main-slider;
  min-width: 100%;
  width: 100%;
  height: 100%;
}

  .main-slider .owl-carousel {
    max-height: 100%;
    position: static;
  }

  .main-slider .owl-carousel,
  .main-slider .owl-stage-outer,
  .main-slider .owl-stage,
  .main-slider .owl-item {
    height: 100%;
    padding: 0;
  }

.main-slider { position: relative; }

.main-slider a span {
    position: absolute;
    display: block;
    bottom: 20px;
    left: 30px;
    color: var(--color-white);
    font-size: 21px;
}

.main-slider a span i {
    position: relative;
    clear: both;
    display: block;
}

.main-slider a span i.c1 {
    font-size: 34px;
    font-weight: normal;
    font-style: normal;
}

.main-slider a span i.c2 {
    font-size: 23px;
    font-weight: bold;
    font-style: normal;
}

.main-slider a span i.c3 {
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    margin-top: 5px;
}

.main-slider .owl-carousel .owl-item img {
  height: 100%;
  object-fit: contain;
  padding: 0 1px;
  max-height: 540px;
}

.main-slider .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-slider .owl-dots span {
    width: 16px;
    height: 16px;
    background: #ccc;
    border: 2px solid #fff;
    margin: 0 10px;
    border-radius: 50%;
}

.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next,
#carousel .owl-nav .owl-prev,
#carousel .owl-nav .owl-next {
    position: absolute;
    color: var(--color-white);
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 0;
    transition: .2s ease all;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    height: 30px;
    width: 30px;
    padding: 5px;
    background-image: url(images/main-page/arrow-right.svg);
    border-radius: 15px;
}

.main-slider .owl-nav .owl-prev {
    background-image: url(images/main-page/arrow-left.svg);
    left: 20px;
}

#carousel .owl-nav .owl-prev,
#carousel .owl-nav .owl-next {
    background-size: 16px;
    background-color: #E5E5E5;
    border: 4px solid #FFFFFF;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
    height: 48px;
    width: 48px;
    border-radius: 40px;
}

#carousel .owl-nav .owl-prev {
    background-image: url(images/main-page/arrow-left-gray.svg);
    left: -24px;
}
#carousel .owl-nav .owl-next {
    background-image: url(images/main-page/arrow-right-gray.svg);
    left: calc(100% - 24px);
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover {
    transition: all .3s ease-in-out;
    background-color: hsla(0, 0%, 100%, .4);
    box-shadow: 0 0 3px 1px var(--color-white);
    cursor: pointer;
}

#carousel .owl-nav .owl-prev:hover,
#carousel .owl-nav .owl-next:hover {
    background-image: url(images/main-page/arrow-left-green.svg);
    transition: all .3s ease-in-out;
    background-color: var(--color-white);
    cursor: pointer;
}

#carousel .owl-nav .owl-next:hover {
    background-image: url(images/main-page/arrow-right-green.svg);
}

#main-menu {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    border-bottom: 1px solid var(--color-gray);
    /*    height: 40px;*/
    z-index: 102;
    background-color: var(--color-secondary);
}

.header-container {
  display: flex;
  flex-direction: column;
}

.cart-container,
.adapter .cart-container,
.stock-container,
.favourites-container,
.profile-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  color: var(--color-black);
  padding: 8px;
}

.stock-container,
.profile-container {
  font-size: 16px;
}

.profile-container {
  padding: 0;
}

  .cart-container:hover,
  .stock-container:hover,
  .favourites-container:hover,
  .profile-container:hover {
    cursor: pointer;
  }

.cart-container.hover-inactive {
  cursor: default;
  color: var(--color-black);
}

.cart-container.hover-inactive i {
    cursor: default;
}

.cart-count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -7px;
    left: 12px;
    padding: 0 4px;
    border-radius: 8px;
    width: auto;
    min-width: 16px;
    height: 16px;
    background-color: #FE4A01;
    color: var(--color-white);
    font-size: 11px;
    line-height: 100%;
    text-align: center;
}

.cart-icons {
  background-image: url(images/cart.svg);
}

.favourites-icons, .cart-icons, .stock-icons,
.handset-icons, .location-icons,.location-icons-o, .profile-icons,
.cart-icons, .logo-icons, .arrow-icons, .bottom-logo-icons,
.flag-icons, .blank-icons {
  transition: .3s ease all;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 24px;
  width: 24px;
}

.stock-icons {
    background-image: url(images/main-page/percentage.svg);
    width: 12px;
    height: 12px;
}
.handset-icons {
  background-image: url(images/main-page/handset.svg);
  height: 20px;
  width: 20px;
}
.location-icons {
    background-image: url(images/main-page/location.svg);
}
.location-icons-o {
    background-image: url(images/main-page/location-orange.svg);
}
.profile-icons {
    background-image: url(images/main-page/profile.svg);
}

.cart-icons {
    background-image: url(images/main-page/cart.svg);
    height: 20px;
    width: 20px;
}

.logo-icons {
    background-image: url(images/main-page/logo.svg);
    width: 100%;
    height: 100%;
}

.bottom-logo-icons {
    background-image: url(images/main-page/logo.svg);
    width: 190px;
    height: 60px;
}

.arrow-icons {
    background-image: url(images/main-page/arrow.svg);
    width: 10px;
    height: 5px;
}

.favourites-icons {
  background-image: url(images/favourites.svg);
}

.flag-icons {
  background-image: url(images/main-page/flag.svg);
  height: 32px;
  width: 32px;
  min-height: 32px;
  min-width: 32px;
}
.blank-icons {
  background-image: url(images/main-page/blank.svg);
  height: 32px;
  width: 32px;
  min-height: 32px;
  min-width: 32px;
}

/*.profile-text {
  white-space: nowrap;
  font-weight: bold;
}
*/
.stock-text {
  padding: 0 4px;
}

.adapter {
  background-color: #FE4A01;
  display: flex;
  align-items: center;
  padding: 2px 10px;
  justify-content: space-between;
  position: relative;
}

.adapter-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.adapter .cart-container {
  padding: 0;
}

.adapter .cart-container .cart-count {
    top: -5px;
    left: 15px;
    z-index: 1;
    background-color: #FE4A01;
}

.adapter-icons .favourites-container,
.adapter-icons .profile-container {
    padding: 0;
}
.adapter-icons .favourites-container .favourites-text,
.adapter-icons #ShoppingCart .cart-text{ display: none !important; }
.adapter-icons i {
        height: 24px;
        width: 24px;
        margin: 0;
        filter: brightness(0) invert(1);
    }

.adapter-menu {
  display: flex;
  align-items: center;
}

.adapter .adapter-menu-icon {
  padding: 9px 0 8px 25px;
  background: url(images/menu-burger.svg) no-repeat 0 50%;
  margin: 0 10px 0 0;
}

.adapter .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 45px;
  background: url(images/logo.svg) no-repeat left top;
  margin: 0;
  text-decoration: none;
  background-size: contain;
  background-position: center;
  padding: 0;
}

.adapter-search-icon {
  background-image: url(images/search_button.svg);
  margin: 0;
  filter: brightness(0) invert(1);
  transition: .3s ease all;
  background-repeat: no-repeat;
  height: 24px;
  background-position: center;
  width: 24px;
  cursor: pointer;
}

.adapter-search-input {
  position: absolute;
  right: 0;
  bottom: -56px;
  margin-top: 4px;
  padding: 8px 16px;
  z-index: 12;
  height: 56px;
  width: 100%;
  background: var(--color-white);
  display: none;
}

  .adapter-search-input:before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 132px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-white);
  }
/*
.catalog-content {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
*/
/*.slider-content {
  position: relative;
  display: grid;
}
*/
/*.product-slider__container {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  max-height: 484px;
}*/
/*
.product-slider {
  min-width: 100%;
  width: 100%;
  height: 484px;
}

  .product-slider .swiper-slide {
    width: 100%;
    max-height: 484px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
  }

.slider-img__helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.product-slider .swiper-slide img {
  max-height: 100%;
  vertical-align: middle;
  object-fit: contain;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}*/

.gallery-thumbs {
  width: 100%;
  box-sizing: border-box;
}

.gallery-thumbs .swiper-slide {
  opacity: 0.4;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

  .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }

.swiper-button-next, .swiper-button-prev {
  background-color: var(--color-ternary);
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  outline: none;
  transition: .3s all ease;
  opacity: 0.3;
}

  .swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
  }

  .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: url(images/icon-arrow.svg) !important;
    filter: invert(1);
    font-size: 0px !important;
  }

  .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: url(images/icon-arrow.svg) !important;
    transform: rotate(180deg);
    filter: invert(1);
    font-size: 0px !important;
  }

#fullscreen-swiper {
  display: none;
  height: calc((var(--wh, 1vh) * 100));
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

  #fullscreen-swiper .swiper-slide {
    background: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    #fullscreen-swiper .swiper-slide .slider-img__helper {
      display: none
    }

    #fullscreen-swiper .swiper-slide img {
      width: auto;
      max-width: 100%;
      max-height: 100%;
    }

#fullscreen-swiper-backdrop {
  background: var(--color-white);
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: calc((var(--wh, 1vh) * 100));
}

#fullscreen-swiper-close {
  background-color: var(--color-ternary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  outline: none;
  transition: .3s all ease;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10000;
  opacity: 0.3;
}

  #fullscreen-swiper-close:hover {
    opacity: 1;
  }

  #fullscreen-swiper-close:after {
    content: url(images/icon-cancel.svg);
    position: absolute;
    cursor: pointer;
    padding: 8px;
    width: 100%;
    min-height: 100%;
    filter: invert(1);
  }

.no-scroll {
  height: 100%;
  overflow: hidden
}

#fullscreen-swiper .swiper-button-prev {
  left: 15px;
}

#fullscreen-swiper .swiper-button-next {
  right: 15px;
}

.brans {
  line-height:0;
  font-size:0;
}
.brans p {
  display: inline-block;
  width: 125px;
  height: 74px;
  background: #FFFFFF;
  
}
  .brans p a {
    display: table-cell;
    width: 125px;
    height: 74px;
    text-align: center;
    vertical-align: middle;
    line-height: 12px;
    font-size: 12px;
    border: solid 1px #cccccc;
  }
  .brans p a:hover {
    z-index: 1000;
    position: relative;
    border: solid 1px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: -1px 1px 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -1px 1px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 1px 10px 2px rgba(0, 0, 0, 0.2);
  }


.allwr {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
}

.pt-20 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 10px
}

.mb-10 {
  margin-bottom: 10px
}

.mb-5 {
  margin-bottom: 5px
}

.mr-5 {
  margin-right: 5px
}


ul {
  list-style: square inside;
  padding: 0 0 5px 16px;
  margin: 0
}

ul, ol {
  list-style-position: inside;
}


p {
  margin: 0;
  padding: 0 0 5px 0;
  /*text-align: justify;*/
}

  p:first-letter {
    padding: 0;
  }

table {
  border-collapse: collapse;
  font-style: normal;
}

  table tr td {
    border: 1px solid #FE4A01;
    vertical-align: top;
    background-color: var(--color-white);
    border-left: none;
    border-right: none;
    padding: 10px 12px;
    color: var(--color-black);
    font-size: 16px;
    line-height: 19px;
  }
table tr td a{
    color: var(--color-black);
}
  table tr:hover td {
    background-color: var(--color-light-gray);
  }

table tbody:first-child tr:first-child td {
    border: none;
  }

  table tr td[colspan] {
    font-weight: bold;
  }

.good table tr td[colspan] {
  background-color: darkgray;
  color: var(--color-white);
}

.good .viki-tabs table {
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: #FE4A01;
}

.column300 {
  -webkit-column-width: 300px;
  -moz-column-width: 300px;
  column-width: 300px;
}


.clear {
  clear: both;
}

.clr {
  clear: both;
  height: 0;
  line-height: 0
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

h3 {
  padding: 10px 0 5px 0;
}

h2, .h2 {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
}

a, input, button {
  outline: none
}

a {
  text-decoration: underline;
  color: white;
}

a:hover {
    text-decoration: none;
    color: #FE4A01;
    cursor: pointer;
}

.f-rgt, .right {
  float: right;
}

.f-lft, .left {
  float: left;
}

.imgleft, img.left, img[align="left"] {
  float: left;
  margin: 0 20px 20px 0;
}

.imgright, img.right, img[align="right"] {
  float: right;
  margin: 0 20px 0 20px;
}

.tright {
  text-align: right
}

h1, .h1 {
    color: var(--color-black);
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 20px;
}
.goodsone h1 {
  padding-right:110px;
}

h5, .h5 {
  color: var(--color-black);
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 20px;
  font-weight: normal;
}

.title {
  color: #333333;
  font-size: 18px;
  text-transform: uppercase;
}

  .title a {
    color: #333333;
    font-size: 18px;
    text-transform: uppercase;
  }

.title2 {
  color: #333333;
  font-size: 15px;
  text-transform: uppercase;
}

  .title2 a {
    color: #333333;
    font-size: 15px;
    text-transform: uppercase;
  }

.main {
  display: flex;
  gap: 40px;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 20px 32px;
  width: 100%;
}

.conth {
/*  width: calc(80% - 40px);*/
  max-width: 100%;
}

.col {
  min-width: 253px;
  width: 20%;
  float: left;
}

.col-txt {
  border: 1px solid #FE4A01;
  padding: 10px;
  font-size: 12px;
  border-radius: 6px;
}




.middle-header {
  padding: 0 32px 0;
  margin: 0 auto;
  z-index: 10;
  position: relative;
  flex-direction: row;
  align-items: center;
  width: 100%;
  color: var(--color-black);
  position: relative;
  background-color: var(--color-white);
  display: flex;
  max-width: var(--max-width-content);
  gap: 5px;
}

  .middle-header p {
    text-align: left;
  }

  .middle-header .logo {
    display: flex;
    align-items: center;
    width: 152px;
    height: 76px;
    justify-content: center;
    margin-right: 56px;
  }

  .middle-header .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: auto;
  }

  .middle-header .phone {
    display: flex;
    flex-direction: column;
    margin-right: 100px;
    margin-bottom: 8px;
    min-width: 190px;
  }

  .middle-header .profile .callback {
    padding-top: 10px;
    text-align: center;
    width: 100%;
  }

  .middle-header .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 76px;
    background: url(images/logo.svg) no-repeat left top;
    margin: 0;
    text-decoration: none;
    background-size: contain;
    background-position: center;
  }

    .middle-header .logo a .slogan {
      padding: 55px 7px 0 0;
      font-size: 16px;
      float: right;
      font-style: italic;
      color: #ff9900;
      font-family: "Arial", sans-serif;
    }

  .middle-header .profile .callback .header-btn {
    background: #FE4A01;
    border-radius: 6px;
    color: var(--color-white);
    display: inline-block;
    font-size: 13px;
    height: 30px;
    padding: 0 10px;
    transition: .1s ease all;
  }

    .middle-header .profile .callback .header-btn:hover {
      background-color: #FE4A01;
    }

.hmenu-box {
  display: flex;
  width: 100%;
  max-width: 1392px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 32px;
  list-style-type: none;
}

ul.hmenu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  list-style-type: none;
  flex-wrap: wrap;
}

  ul.hmenu li {
    position: relative;
    display: inline-block;
  }

    ul.hmenu li a:hover, ul.hmenu li.cur a {
      color: #FE4A01;
    }

    ul.hmenu li.side-menu-item {
      display: none;
    }

.counters {
  text-align: center;
}

  .counters img {
    margin: 10px 5px;
  }

.connection-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection-item-text {
  display: flex;
  align-items: center;
  color: #FE4A01;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  padding-left: 22px;
}

  .connection-item-text.mts-icon,
  .connection-item-text.velcom-icon,
  .connection-item-text.life-icon,
  .connection-item-text.city-icon,
  .connection-item-text.mail-icon,
  .connection-item-text.viber-icon,
  .connection-item-text.whatsapp-icon,
  .connection-item-text.telegram-icon {
    transition: .3s ease all;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position-y: center;
    margin-right: 8px;
  }

  .connection-item-text.mts-icon {
    background-image: url(images/connection-icons/mts-icon.svg);
  }

  .connection-item-text.velcom-icon {
    background-image: url(images/connection-icons/velcom-icon.svg);
  }

  .connection-item-text.life-icon {
    background-image: url(images/connection-icons/life-icon.svg);
  }

  .connection-item-text.city-icon {
    background-image: url(images/connection-icons/city-icon.svg);
  }

  .connection-item-text.mail-icon {
    background-image: url(images/connection-icons/mail-icon.svg);
  }

  .connection-item-text.viber-icon {
    background-image: url(images/connection-icons/viber-icon.svg);
  }

  .connection-item-text.whatsapp-icon {
    background-image: url(images/connection-icons/whatsapp-icon.svg);
  }

  .connection-item-text.telegram-icon {
    background-image: url(images/connection-icons/telegram-icon.svg);
  }

.mail-ico {
  font: 18px/18px Arial;
  height: 21px;
  line-height: 21px;
  clear: both;
  display: block;
  padding: 0 0 0 25px;
  background-image: url('images/phone-icons-big.png');
  background-position: 0 2px;
  background-repeat: no-repeat;
  position: relative;
}

.upphone {
  color: var(--color-black);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
    margin-bottom: 5px;
}

  .upphone:hover {
    color: #FE4A01;
  }

.inf-text {
  padding-top: 4px;
  font-size: 12px;
  line-height: 16px;
}

.upphone, .mail-ico {
  font: 18px/18px Arial;
  height: 21px;
  line-height: 21px;
  clear: both;
  display: block;
  padding: 0 0 0 25px;
  background-image: url('images/phone-icons-big.png');
  background-position: 0 2px;
  background-repeat: no-repeat;
  position: relative;
}

  .upphone.viber {
    background-position: 3px 100%;
    display: inline-block;
    color: transparent !important;
    position: absolute;
    top: 0;
    left: -30px;
  }

  .upphone.whatsapp {
    background-position: 3px -146px;
    display: inline-block;
    color: transparent !important;
    position: absolute;
    top: 0;
    left: -30px;
  }

  .upphone.telegram {
    background-position: 3px 89%;
    display: inline-block;
    color: transparent !important;
    position: absolute;
    top: 0;
    left: -57px;
  }

  .upphone.mts {
    background-image: url(images/connection-icons/mts-icon.svg);
    transition: .3s ease all;
    background-repeat: no-repeat;
    /* height: 24px; */
    background-size: contain;
    background-position: -3px;
      font-size: 15px;
    /* width: 24px; */
    /* margin-right: 8px; */
}
  }

  .upphone.velcom {
    background-position: 0 0px;
    position: relative;
  }

  .upphone.life {
    background-position: 0 -117px;
  }

  .upphone.city {
    background-position: 0 -176px;
  }

  .upphone a {
    text-decoration: none;
  }

.mail-icon, .telegram-icon, .viber-icon, .whatsapp-icon {
    transition: .3s ease all;
    background-repeat: no-repeat;
    height: 28px;
    background-size: contain;
    background-position: center;
    width: 28px;
}

.mail-icon { background-image: url(images/connection-icons/mail.svg); }

.telegram-icon { background-image: url(images/connection-icons/telegram.svg); }

.viber-icon { background-image: url(images/connection-icons/viber.svg); }

.whatsapp-icon { background-image: url(images/connection-icons/whatsapp.svg); }

.pred-icon, .garant-icon, .checkout-icon, .assistant-icon {
  transition: .3s ease all;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}

.pred-icon {
  background-image: url(images/goods/pred-icon.svg);
}

.garant-icon {
  background-image: url(images/goods/garant-icon.svg);
}

.checkout-icon {
  background-image: url(images/goods/checkout-icon.svg);
}

.assistant-icon {
  background-image: url(images/goods/assistant-icon.svg);
}
.favourites-icon {
  transition: .3s ease all;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 18px;
}
.favourites-icon {
  background-image: url(images/goods/favourites.svg);
}
.delivery-truck-icon, 
.min-shop-icon {
  transition: .3s ease all;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
}
.delivery-truck-icon {
  background-image: url(images/goods/delivery-truck-icon.svg);
}
.min-shop-icon {
  background-image: url(images/goods/min-shop-icon.svg);
}
.show-item {
  position: relative;
}
.show-container {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    width: max-content;
    min-width: 140px;
    max-width: 336px;
    position: absolute;
    z-index: 101;
    left: -15px;
    background-color: #1C1C1C;
    top: 35px;
    border-radius: 6px;
    -webkit-filter: drop-shadow(0 2px 8px #1C1C1C);
    filter: drop-shadow(0 2px 8px #1C1C1C);
}
.show-container:before {
    content: "";
    position: absolute;
    bottom: 99%;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #1C1C1C;
}


.show-container.active {
    display: flex;
}
.contacts-box {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.show-container .upphone.velcom { font-size: 15px; }
.middle-header .viber-pos .mail-ico {
    background-image: url('images/mail-ico.png');
    background-position: 0 3px;
    color: #FE4A01;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    margin-left: 0;
    text-align: left;
    padding-left: 28px;
    float: none;
    text-align: left;
}

.show-container__phones .header-top-phone {
    font-size: 15px;
}

.show-container__phones .header-top-mail {
    display: none;
}

.search {
    position: relative;
    display: flex;
    flex-grow: 1;
    height: 46px;
}
.lower-header-fixed .search {
    height: 44px;
}

.search input[type="text"] {
    height: 100%;
    border: none;
    border-radius: 6px;
    background-color: rgba(45, 45, 45, 1);
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    line-height: 19px;
    border-radius: 5px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    transition: all .1s ease-in-out;
    color: #fff;
}
.search input[type="text"]::placeholder {
    color: #fff;
}
.search input[type="submit"] {
    background-image: url("images/main-page/lupa.svg");
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-size: contain;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.search input:focus[type="text"] {
    border-color: #FE4A01;
    box-shadow: 0 0 1px 1px #FE4A01;
    -webkit-box-shadow: 0 0 1px 1px #FE4A01;
    -moz-box-shadow: 0 0 1px 1px #FE4A01;
}

ul.breadcrumbs {
    list-style: none;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    row-gap: 10px;
    flex-wrap: wrap;
    color: var(--color-black)
}
ul.breadcrumbs a {
    text-decoration: underline;
    color: var(--color-black)
}
ul.breadcrumbs li {
    display: inline-block;
    padding: 0;
}

ul.breadcrumbs li:after {
    content: "/";
    padding: 0 15px;
}

ul.breadcrumbs li:last-child {
    padding: 0;
    content: "";
}

ul.breadcrumbs li:last-child:after {
    content: "";
    padding: 0;
}


.info {
  text-align: justify;
}

.rzd {
  padding: 8px 0 0 7px;
}

  .rzd span {
    font-weight: bold;
    color: #000;
  }



.slider-txt {
  float: right;
}

#slider li {
  margin-left: 0;
}

#sliderBlock {
  float: right;
  height: 265px;
  margin: 0 0 15px 15px;
  position: relative;
  border: 1px solid #fff;
  width: 597px;
  box-shadow: -20px 35px 50px rgba(0, 0, 0, 0.4);
}

#slider {
  height: 265px;
  overflow: hidden;
  position: relative;
  width: 597px;
}

#sliderContent {
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 597px;
}

#slider .sliderImage {
  display: none;
  float: left;
  position: relative;
}

  #slider .sliderImage img {
    border: 0;
  }

  #slider .sliderImage span {
    background-color: #000000;
    color: #FFFFFF;
    display: none;
    font: 10px/15px Arial,Helvetica,sans-serif;
    opacity: 0.7;
    padding: 10px 13px;
    position: absolute;
    width: 755px;
  }

    #slider .sliderImage span a {
      color: #FFFFFF;
      text-decoration: none;
    }

      #slider .sliderImage span a:hover {
        text-decoration: underline;
      }

#slider .clear {
  clear: both;
}

#slider .sliderImage span strong {
  font-size: 14px;
}

#slider .top {
  left: 0;
  top: 0;
}

#slider .bottom {
  bottom: 0;
  left: 0;
}

#slider .left {
  height: 225px;
  left: 0;
  top: 0;
  width: 110px !important;
}

#slider .right {
  bottom: 0;
  height: 225px;
  right: 0;
  width: 90px !important;
}

#slider ul {
  list-style-type: none;
  padding: 0;
}

.dropbtn {
  background-color: initial;
  color: var(--color-black);
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  border-radius: 6px;
  font-weight: 400;
}

  .dropbtn .lable {
    position: relative;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding: 0 4px;
  }

.dropdown {
  position: relative;
  display: inline-block;
}

.trigger {
  width: 100%;
}
.header-box.trigger {
    gap: 5px;
}
.dropbtn .trigger-icon {
  background: url(images/triangle.svg) no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: top;
  height: 7px;
  width: 7px;
  margin-left: 10px;
  background-size: 100%;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  display: none;
}

.drop-list-wrapper {
  margin-top: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100px;
  max-width: 336px;
    padding: 6px;
  background: #2D2D2D;
    border-radius: 6px;
    -webkit-filter: drop-shadow(0 2px 8px #2D2D2D);
    filter: drop-shadow(0 2px 8px #2D2D2D);
}

  .drop-list-wrapper:before {
    content: "";
    position: absolute;
    bottom: 99%;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
      border-bottom: 12px solid var(--color-white);
  }

.custom-scroll {
    max-height: 45vh;
    overflow: auto;
}

.custom-scroll::-webkit-scrollbar, 
.burger-content__links::-webkit-scrollbar {
    width: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb, 
.burger-content__links::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #FE4A01;
}

.custom-scroll, .burger-content__links {
    scrollbar-color: #FE4A01 var(--color-white);
    scrollbar-width: thin;
}

.dropdown-content a {
  display: block;
    text-decoration: none;
  font-size: 14px;
  line-height: 20px;
    padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
}

  .dropdown-content a:hover {
    background-color: #FE4A01;
      color: #fff;
  }

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .trigger button {
  background: none;
  color: #FE4A01;
}


.rbrs {
  width: 100%;
}

  .rbrs ul, .rbrs li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

    .rbrs ul li {
      width: 164px;
      height: 156px;
      background-color: white;
      float: left;
      margin: 0 11px 11px 0;
    }

    .rbrs ul a {
      display: block;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 0;
    }

      .rbrs ul a img {
        margin: 13px 0 0 33px;
        width: 101px;
        height: 101px;
        border: 0;
      }

      .rbrs ul a span {
        height: 42px;
        line-height: 13px;
        font-size: 11px;
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        padding: 0 5px;
        width: 164px;
        overflow: hidden;
      }

    .rbrs ul li a:hover {
      color: Red;
    }


ul.rbrmenu, ul.rbrmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

  ul.rbrmenu li {
    float: left;
    margin: 0 10px 10px 0;
    position: relative;
    font-size: 10px;
  }

    ul.rbrmenu li div {
      position: absolute;
      top: 0;
      left: 0;
      width: 114px;
      text-align: center;
      height: 115px;
      background: #010100;
      color: #fff;
    }

    ul.rbrmenu li a {
      color: #fff;
      text-decoration: underline;
      display: block;
      margin: 5px;
      font-weight: bold;
      font: 12px Tahoma;
    }

      ul.rbrmenu li a:hover {
        text-decoration: none;
      }

    ul.rbrmenu li img, ul.rbrmenu li div {
      border: 1px solid #000;
    }

      ul.rbrmenu li div p {
        padding: 0 3px 3px 3px;
      }


.cont {
    display: table;
    width: 100%;
    background-color: var(--color-white);
    padding: var(--padding-max-container);
    border-radius: 3px;
}

.m-count {
  display: table-cell;
  vertical-align: top;
  position:relative;
}

.main-slider-box {
    position: static;
    background-color: var(--color-black);
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}

.main-slider-container {
  min-height: auto;
    max-width: calc(var(--max-width-content) - 64px);
    margin: 0 auto;
    width: 100%;
}

.main-slider-content {
  min-width: 100%;
  width: 100%;
  max-height: 540px;
}

.m-col {
  background: #fff;
  width: 200px;
  display: table-cell;
}

  .m-col .wr {
    padding: 10px;
  }

  .m-col ul {
    margin-bottom: 20px;
    padding: 5px 0 0 0;
  }

    .m-col ul li {
      padding: 0;
      margin: 0;
      list-style: none;
    }

      .m-col ul li a {
        background: url(images/li.gif) 0 6px no-repeat;
        padding: 0 0 0 15px;
        text-decoration: none;
        font-size: 11px;
        display: block;
      }

        .m-col ul li a:hover {
          color: #000;
          background-position: 0 -290px;
        }

.m-count img {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

  .m-count img.none {
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: 0;
  }

.mp-filter.left-filter .sale-slider .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.viki-popup-up {
  position: relative;
  padding-bottom: 10px;
}

.viki-popup-wr {
  font-family: Helvetica,Verdana,Arial,sans-serif;
  font-size: 12px;
  line-height: 13px;
  border-top: 0;
  background: var(--color-white);
  color: var(--color-black);
  position: absolute;
  text-align: left !important;
  width: 100%;
  z-index: 1000;
  top: 19px;
  box-sizing: content-box;
  right: 0;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
}

.viki-popup-bg {
  margin: 0;
  padding: 5px;
  text-align: left !important;
}

.viki-popup .title {
  margin: 0 0 0 17px;
}

.viki-popup-bg p {
  text-align: left;
}



.box {
  background: none repeat scroll 0 0 #FFFFFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  padding: 10px;
  color: Black;
  text-align: left;
}

  .box img {
    box-shadow: none;
  }




.field {
  padding: 10px 10px 0 0
}

.field label {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
  width: 170px;
}

.field label span {
  margin-left: 5px;
}

.field input {
  width: 200px;
}
select, input[type=text], input[type=password], textarea {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  width: 220px;
  border-radius: 4px;
  color: #555555;
  font-size: 12px;
  padding: 6px 12px;
  height: 31px;
  line-height: 16px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}
/*  select:focus, input[type=text]:focus, input[type=password]:focus, textarea:focus {
    outline: 0 none;
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(85, 211, 13, 0.6);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(85, 211, 13, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(85, 211, 13, 0.6);
  }*/
/*Checkbox*/

.form-checkbox {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.form-checkbox label {
  font-size: 13px;
}

.form-checkbox input {
  margin-right: 5px;
}

.button, button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: unset;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    transition: all .2s ease-in-out;
    background-color: #FE4A01;
    color: #FFFFFF;
    font-size: 13px;
    height: 30px;
    padding: 0 10px;
    cursor: pointer;
    justify-content: center;
    border: 1px solid #FE4A01;
}

    .button:hover, button:hover {
        background: var(--color-white);
        color: #FE4A01;
        transition: all .2s ease-in-out;
    }

a.button {
  line-height: 28px;
  text-decoration: none;
}

.button_md {
  padding: 16px 52px;
  font-size: 18px;
}
.button.secondary, button.secondary {
  color: #FE4A01;
  background-color: var(--color-white);
}
.button.secondary:hover, button.secondary:hover {
  color: var(--color-white);
  background-color: #FE4A01;
}

/* Validator */
.required {
  color: Red;
  padding-right: 5px;
}

.error {
  color: Red;
  padding: 10px 0 10px 0;
  margin: 0;
  list-style: none;
}

.error li {
  background: url(../UI/Viki/images/warning.png) 0 0 no-repeat;
  margin: 0;
  padding: 0 0 0 20px;
  height: 20px;
}

.err-field label {
  color: Red;
}

.err-field input, .err-field select, .err-field textarea {
  border: solid 1px Red !important;
}


a.viki-ajax-worked {
  color: Gray;
}

.viki-ajax-wait {
  z-index: 30;
  display: none;
  background: url(../UI/Viki/images/icon_wait.gif) 0 0 no-repeat;
  position: absolute;
  overflow: hidden;
  height: 24px;
  width: 24px;
}

.gray {
  color: #666666;
}





/*-Viki.KeyPressDdl-*/

.viki-keypress-ddl {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 101;
  width: 100%;
}

  .viki-keypress-ddl div {
    padding: 10px 5px;
      background-color: rgba(45, 45, 45, 1);
    position: absolute;
    left: 0;
    color: var(--color-white);
    width: 100%;
    border: 1px solid #FE4A01;
    border-top: 0;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
  }

  .viki-keypress-ddl ul::-webkit-scrollbar {
    width: 10px;
  }

  .viki-keypress-ddl ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #FE4A01;
  }

  .viki-keypress-ddl ul {
    scrollbar-color: yellow;
    scrollbar-width: thin;
  }

  .viki-keypress-ddl ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 50vh;
    overflow: auto;
  }

    .viki-keypress-ddl ul li {
      clear: both;
      display: block;
      border: 1px solid #FE4A01;
      border-radius: 6px;
      padding: 5px;
      margin: 5px;
      transition: all .2s ease-in;
    }

      .viki-keypress-ddl ul li:hover {
        background-color: var(--color-secondary);
        color: #FE4A01 !important;
      }

        .viki-keypress-ddl ul li:hover a {
          color: #FE4A01 !important;
        }

      .viki-keypress-ddl ul li a {
        display: flex;
        text-decoration: none;
        padding: 0 8px;
        width: 100%;
        gap: 5px;
        transition: all .2s ease-in;
      }

        .viki-keypress-ddl ul li a:hover span.ddl-name, .viki-keypress-ddl ul li a.cur span.ddl-name {
          background-color: #ebebeb;
        }

        .viki-keypress-ddl ul li a b {
          color: Red;
        }

  .viki-keypress-ddl a span {
    vertical-align: top;
    word-break: break-word;
  }

    .viki-keypress-ddl a span.ddl-img {
      height: 45px;
      width: 50px;
    }

  .viki-keypress-ddl a img {
    max-height: 45px;
    max-width: 45px;
    min-width: 45px;
    min-height: 45px;
    object-fit: contain;
  }


ul.subs {
  clear: both;
  width: 100%;
  margin: 0 0 10px 0;
  text-align: left;
  height: auto;
  list-style: none;
  padding: 0;
}

  ul.subs li {
    position: relative;
    padding: 0;
    border: 0;
    display: inline-block;
    text-align: left;
    vertical-align: top;
    height: auto;
    margin: 5px 20px 5px 0;
  }

.subs-name {
  font-size: 15px;
  font-weight: bold;
}

ul.subs li .viki-popup {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #cccccc;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  height: auto;
  left: 0;
  position: absolute;
  top: 15px;
  width: 300px;
  z-index: 1000;
}

  ul.subs li .viki-popup .wr {
    padding: 5px;
    text-align: left !important;
  }

ul.subs-col li input {
  margin: 0 5px 0 0;
}

.garantiya-pro {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
}


.bl-line {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 5px;
}
.oreder-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
ul.tools-sort {
  display: inline-block;
  float: right;
  list-style: none;
  position: relative;
  line-height: 28px;
  margin: 0 0 20px 0;
  padding: 0;
}

  ul.tools-sort li {
    padding: 0 10px;
    float: left;
    margin-right: 0;
    vertical-align: middle;
    position: relative;
  }

    ul.tools-sort li:hover {
      color: #FE4A01
    }

    ul.tools-sort li a {
      display: block;
      text-decoration: none;
      transition: .3s ease all;
    }

    ul.tools-sort li.act {
      background: transparent;
      box-shadow: inset 0 -2px #FE4A01;
    }

      ul.tools-sort li.act span {
        border-bottom: 0;
      }

.gcount {
  clear: both;
  width: 100%;
  text-align: left;
  color: var(--color-ternary);
}

.categors {
  width: 100%;
  text-align: left;
  clear: both;
  margin: 10px 0 10px 0;
}

  .categors .h2 {
    display: inline-block;
    padding: 0;
    margin: 15px;
    width: 150px;
    height: 200px;
    text-align: center;
    position: relative;
    background: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) inset;
  }

    .categors .h2 h2 {
      display: block;
    }

      .categors .h2 h2 a {
        color: #000;
        display: block;
        padding-top: 50px;
      }

        .categors .h2 h2 a:hover {
          color: red;
        }

        .categors .h2 h2 a span {
          z-index: 1;
          font-weight: bold;
          font-size: 13px;
          position: absolute;
          top: 10px;
          left: 0;
          width: 150px;
          height: 200px;
          text-align: center;
        }

          .categors .h2 h2 a span.i {
            z-index: 0;
            position: absolute;
            top: 70px;
            left: 0;
            width: 150px;
            height: 130px;
            text-align: center;
          }

  .categors img {
    box-shadow: none;
    border: 0;
  }

  .categors .h2hor {
    display: inline-block;
    box-shadow: none;
    background: none;
    height: auto;
    width: auto;
    margin: 5px 0;
    position: relative;
  }

    .categors .h2hor h2.hor {
      font-size: 12px;
      display: inline-block;
      line-height: 20px;
    }

      .categors .h2hor h2.hor a.first {
        border-left: medium none;
      }

      .categors .h2hor h2.hor a {
        border-left: 1px solid #999999;
        padding: 0 15px 0 0;
        text-align: center;
        text-decoration: underline;
      }


    .categors .h2hor.col {
      width: 33%;
    }

      .categors .h2hor.col h2.hor a {
        border: 0;
        line-height: 14px;
      }

.brands {
  width: 100%;
  margin: 0 auto 20px auto;
  display: table;
}

  .brands a.hor-all {
    white-space: nowrap;
    padding: 0 15px;
    text-align: center;
    text-decoration: underline;
  }

.categors .cur {
  color: #009900;
}



/*ShoppingCart*/
a.del {
  display: block;
  background: url(images/delete.jpg) 0 0 no-repeat;
  width: 15px;
  height: 12px;
  float: left;
  margin: 3px 5px 0 0;
}

#ShoppingCart {
}

  #ShoppingCart .empty {
    display: block;
    width: 180px;
    margin: 5px auto 0 auto;
  }

  #ShoppingCart span {
    display: block;
    float: left;
  }

    #ShoppingCart span.cart {
      margin-left: 5px;
      width: 16px;
      height: 16px;
      background: url(images/cart.png) no-repeat right top;
    }

  #ShoppingCart .ShoppingCartHead {
    text-transform: uppercase;
    background-color: #990000;
    color: #fff;
    font: 12px Verdana, Arial;
    text-align: left;
    padding: 1px 5px 1px 5px;
  }

  #ShoppingCart .ShoppingCartInner {
    padding: 5px;
  }

  #ShoppingCart center {
    padding-top: 0;
    font: 13px Verdana,Geneva,sans-serif;
    display: inline-block;
    text-align: center;
    clear: both;
    width: 100%;
    font-weight: bold;
  }

    #ShoppingCart center button {
      margin-top: 5px;
    }

#CartFormSpec {
  margin: 0 0 20px 0;
  overflow-x: auto;
  overflow-y: hidden;
}

table.cart {
  border-collapse: collapse;
  margin-bottom: 10px;
  width: 100%;
  border: none;
}

#CartFormSpec::-webkit-scrollbar {
  height: 10px;
}

#CartFormSpec::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #FE4A01;
}

#CartFormSpec {
  scrollbar-color: #FE4A01 var(--color-white);
  scrollbar-width: thin;
}

table.cart th {
  border: 1px solid var(--color-border-search);
  padding: 5px;
  background-color: var(--color-secondary);
}

table.cart td, table.cart th {
  border: 1px solid var(--color-border-search);
  padding: 5px;
}

table.cart input {
  width: 50px;
  padding: 2px;
  text-align: center;
}

.TovBg .ShoppingCartItem {
  padding: 0;
}

.ShoppingCartItem button {
  height: 30px;
  padding: 0 10px;
  transition: all .2s ease-in;
}

.ShoppingCartItem b {
  color: #fff;
  height: 25px;
  padding: 0 10px;
  line-height: 25px;
  display: block;
}

#CartForm form {
  margin-top: 20px;
}

/*---Tov box----*/
.TovList {
  margin-left: 0;
  margin-top: 0;
  vertical-align: top;
  overflow: visible;
  clear: both;
}

  .TovList:before, .TovList:after {
    content: "";
    display: table;
  }

  .TovList:after {
    clear: both;
  }


.TovBgWr {
  padding-top: 0;
  margin: 0 20px 20px 0;
  width: 214px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  box-sizing: content-box;
  border: 1px solid #cccccc;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  transition: box-shadow .2s ease-in;
  text-align: center;
}
.grid_block .TovBgWr {
    min-height: 360px;
    
}
  .TovBgWr:hover {
    border: 1px solid #FE4A01;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

.TovBg {
  position: relative;
  height: 100%;
  padding: 0px 8px 10px 8px;
}

  .TovBg a.TovName {
    text-decoration: none;
    font-size: 12px;
    display: block;
    width: 100%;
    color: Black;
    transition: all .2s ease-in;
  }

  .TovBg .TovName span {
    padding: 0;
    width: 100%;
    clear: both;
    display: inline-block;
  }

.TovBg .TovName span.namewr { min-height: 35px; }

.TovBg .TovName span.imgwr {
  align-items: center;
  display: flex;
  height: 210px;
  justify-content: center;
  margin: 0 auto;
  width: 196px;
    font-weight: 700;
}

.TovBg .TovName span.imgwr img {
  box-shadow: none !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: none;
  display: block;
  max-width: 100%;
  max-height: 185px;
}

.TovBgWr .comm {
  font-size: 12px;
  padding: 5px 0 8px 0;
}

.TovBg a.TovName:hover {
  color: #FE4A01;
}

.TovBgWr a.TovInfo {
  width: 100%;
  text-decoration: underline;
  display: block;
    color: #000;
}

  .TovBgWr a.TovInfo span {
    display: inline-block;
    padding: 4px 0 0 0;
  }

/*------------*/
/*-----Tov list-------*/
.grid_list .TovBgWr {
  margin: 0 0 20px 0;
  width: 100%;
}
.grid_list .TovBg {
  display: grid;
  gap: 10px;
  padding: 10px;
  grid-template-columns: minmax(90px, 250px) 1fr;
  grid-template-areas:
    "img title"
    "img comm"
    "img comm-stars"
    "img desc"
    "img prices"
    "img button";
}
.grid_list .good-actions {
  left: 10px;
  right: auto;
}
.grid_list .TovName {
  grid-area: img;
}
.grid_list a.TovName {
  max-width: 240px;
  padding-right: 10px;
}
.grid_list .TovBg .TovName span.imgwr {
  display: flex;
  width: 100%;
  max-width: 240px;
  max-height: 210px;
  height: 100%;
}
.grid_list span.imgwr img {
  max-height: 210px;
}
.title-item,
.desc-item,
.grid_list span.namewr,
.grid_list .viki-popup-up {
  display: none;
}

.grid_list .title-item, .grid_list .desc-item {
  display: block;
  font-size: 16px;
  text-align: start;
  text-decoration: none;
  transition: all .2s ease-in;
}
.grid_list .title-item {
  font-size: 18px;
  font-weight: 700;
  grid-area: title;
    color: #000
}

.grid_list .price-block { grid-area: prices; }
.grid_list .price-block .price {
  text-align: start;
  font-size: 26px;
}
.grid_list .price-block .price:first-child {
  padding-top: 0;
}
.grid_list .ShoppingCartItem {
    text-align: start;
  }
.grid_list .ShoppingCartItem button {
  font-size: 19px;
  height: 40px;
  width: 110px;
}
.TovList.grid_list .comm-stars {
  grid-area: comm-stars;
  padding: 0;
  margin: 0;
  text-align: start;
  padding-left: 110px;
  font-size: 14px;
}

.grid_list .comm {
  grid-area: comm;
  padding: 0;
  text-align: start;
  font-size: 14px;
}
.grid_list .ShoppingCartItem { grid-area: button; }
.grid_list .desc-item { grid-area: desc; }
.grid-type__button {
  color: #FE4A01;
  background-color: var(--color-white);
}
.grid-type__button:hover, 
.grid-type__button.active {
    color: var(--color-white);
    background-color: #FE4A01;
  }
/*-----Tov list-------*/
.social-links {
  text-align: left;
}

.good .social-links {
  margin: 10px 0 10px -5px;
}

.TovPrice {
  width: 183px;
  white-space: nowrap;
  font-weight: bold;
  text-align: right;
  z-index: 3;
}

.goods {
  margin-top: 21px;
}

.viki-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

  .good .photo {
    width: 100%;
    height: auto;
    display: inline-block;
    text-align: center;
    background: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #cccccc;
  }

    .good .photo span {
      height: 100%;
      display: inline-block;
      vertical-align: middle;
    }

    .good .photo img {
      max-height: 300px;
      max-width: 100%;
      display: inline-block;
      vertical-align: middle;
    }

.good .good-col1,
.good .good-col2 {
  width: calc(50% - 20px);
  display: flex;
  position: relative;
}

.good .good-col2 .good-col22 {
  /*padding-left: 20px;
      display: table-cell;
      vertical-align: top;*/
  display: flex;
  flex-direction: column;
  gap: 20px;
}
  .good .good-col2 .good-col22 .comm {
    font-size: 16px;
    line-height: 140%;
    display: flex;
    align-items: center;
    color: white;
    opacity: 0.5;
  }
  .good a.lupa:hover {
    cursor: url(images/zoom_in.cur), auto;
  }

.good-stock {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 72px;
  display: block;
  background: url(images/stock.png) no-repeat;
}

.good.up .photo {
  height: auto;
  background: transparent;
}

  .good.up .photo img {
    vertical-align: top;
  }


.TovPrice .TovPrice-wr {
        padding: 10px;
        padding-right: 0;
        text-align: right;
    }

.price span.price-name {
  font-size: 17px;
  line-height: 29px;
  padding-right: 5px;
  display: none;
}

.TovPrice .TovPrice-wr1 {
  color: #333333;
}

  .TovPrice .TovPrice-wr1 div {
    text-align: right;
  }

  .TovPrice .TovPrice-wr1 .priceval1,
  .TovPrice .TovPrice-wr1 .priceval2 {
    display: block;
    background: white url(images/TovPriceBg.gif) repeat-y right;
    padding: 3px 9px;
    margin-right: 1px;
    border: solid 1px #d3d3d3;
    border-right: 0;
    float: right;
    clear: both;
    font-size: 10px;
  }

.priceval1 {
  display: inline-block;
  margin: 0;
}

.TovList .priceval1, .TovList .priceval1-old {
  display: inline-block;
  font-size: 20px;
}
.TovList .priceval1-old {
  padding:0 0 0 5px;
}

.disc {
  position: relative;
  margin: 0 30px 0 0;
}

  .disc::after {
    content: "";
    right: -30px;
    top: -2px;
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    display: block;
    background: url("images/discount.png") no-repeat 0 0 transparent;
  }

.onedisc {
  display: block;
  font-size: 14px;
}

  .onedisc input {
    margin: 0 5px 0 0;
    padding: 0;
  }

  .onedisc a {
    text-decoration: none;
    border-bottom: 1px dotted #000000;
  }

    .onedisc a:hover {
      border-bottom: 1px dotted #cc9933;
    }

.onedisc-ico {
  position: absolute;
  top: 10px;
  left: 10px;
/*  display: block;*/
  display: none;
}

  .onedisc-ico img {
    margin: 0 10px 5px 0;
    display: block;
  }

.cart-disc-box {
  margin-top: 5px;
}

  .cart-disc-box .onedisc {
    font-size: 12px;
    display: block;
  }

    .cart-disc-box .onedisc input {
      width: auto;
      margin: 0 5px 0 20px;
    }

ul.pay-methods, ul.pay-methods li,
ul.cart-options, ul.cart-options li {
  list-style: none;
  padding: 0;
}

ul.pay-methods {
  margin: 10px 0;
}

  ul.pay-methods li div {
    color: Gray;
    font-size: 11px;
    padding-left: 26px;
  }

.priceval1-old {
  text-decoration: line-through;
  color: #999999 !important;  
  display: inline-block;
}




.good .priceval1-old {
  color: #999999 !important;
  font-size: 20px !important;
  display: inline-block;
  padding-top: 0;
}
/*.
  .good .priceval1-old span {    
    color: var(--color-gray) !important;
    padding-right: 0;
  }

good .good-price-wr {
  margin-top: 15px;
  position: relative;
  display: inline-block;
}*/

.priceval1, .pricebl {
  position: relative
}

.good .good-price-wr .disc-online, .price_big .disc-online {
  position: absolute;
  top: -25px;
  right: -150px;
  width: 153px;
  height: 44px;
  background: url("images/disc-online.png") no-repeat 0 0;
  display: none;
}

.good .byr, .TovList .byr {
  color: #666666;
  font-size: 12px !important;
  white-space: nowrap;
}

.good .priceval1-old .byr, .TovList .priceval1-old .byr {
  text-decoration: line-through;
  font-size: 14px !important;
  padding-left: 10px;
}

.good .byrdisc, .TovList .byrdisc {
}

.good .onedisc .byr {
  padding: 0 5px;
}


.TovGal {
  margin-left: 144px;
  margin-top: 55px;
  position: absolute;
  background: url("images/Gal4.gif") no-repeat scroll 0 0 transparent;
  float: left;
  height: 33px;
  width: 34px;
}

.code {
  font-size: 15px;
  color: #6699cc;
}


.store_images {
  margin-bottom: 10px;
  text-align: left;
}

  .store_images span {
    /*background: url("images/gal-box.jpg") no-repeat scroll 0 0 transparent;*/
    display: inline-block;
    height: 110px;
    margin: 1px;
    padding-top: 8px;
    position: relative;
    text-align: center;
    width: 116px;
  }

  .store_images .scale {
    position: absolute;
    top: 95px;
    right: 10px;
  }

.price {
  font-family: Arial,Verdana,sans-serif;
  font-size: 15px;
  padding: 10px 0 0px 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.price_big {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
}
.good .price.price_big {
 padding: 0
}
.price_big .priceval1,
.price.price_big .priceval1 span {
  font-weight: 700;
  font-size: 33px;
  line-height: 39px;
  color: var(--color-black);
  text-align: left;
}
.price.price_big .disc::after {
  top: 7px;
}
.price_big .price-info {
  font-weight: 700;
  font-size: 25px;
  line-height: 31px;
  color: var(--color-black);
  text-align: left;
}
.price_big .priceval1-old {
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;  
  text-align: left;
}
.price_big .onedisc {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}

.price .pricebl {
  display: block;
  clear: both;
}

.price .priceval1 span {
  color: #000;
  font-size: 24px;
    font-weight: 700;
  padding-right: 0;
}

.price .priceval2 {
  float: left;
  font-size: 12px;
  display: inline-block;
  clear: both;
  color: #cc9933;
  padding: 0;
}

  .price .priceval2 span {
    font-size: 12px;
    font-weight: bold;
    color: #cc9933;
  }






.good .price .priceval2 {
  display: block;
  clear: both;
  font-size: 18px;
  padding: 0;
}

  .good .price .priceval2 span {
    font-size: 18px;
  }

.good .price {
  padding: 5px 0 10px 0;
}

.goodsone .brand-logo-goods {
  margin: -20px 0 0 0;
  float: right;
  position: absolute;
  right: 0px;
  top: 20px;
}

.goodsone .brand-logo-goods img {
  max-height: 40px;
  max-width: 100px;
}

.goods-description {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
  .goods-description .goods-description-txt {
    padding:10px 0;
  }
  .goods-description > a {
    font-size: 16px;
    line-height: 19px;
    color: #1460AA;
  }
.goods-description > a:hover {
  color: #FE4A01;
}
.good .viki-tabs .goods-description-table {
  width: fit-content;
  border: none;
  border-radius: 0;
  background-color: var(--color-white);
}
.goods-description-table th {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-black);
  max-width: 300px;
  padding: 5px 0;
}
.goods-description-table td {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
  border: 0;
  padding: 5px 0 5px 30px;
}
.goods-delivery {
  display: flex;
  flex-direction: column;
  gap: 10px;  
}
.goods-delivery > div {
  display: flex;
  gap: 10px;
}

.goods-delivery > div > div {
  font-size: 15px;
  line-height: 18px;
}
.goods-delivery > div > div a {
  color: #1460AA;
}
.goods-delivery > div > div a:hover {
  color: #FE4A01;
}
.priceBtn button {
  margin: 19px 5px;
}

.priceView {
}

  .priceView button {
    margin: 0 5px 0 0;
  }


.new-item {
  display: inline-block;
  padding: 0 10px 10px 0;
  background: url("images/bg-item.png") no-repeat scroll 0 bottom transparent;
  margin-bottom: 5px;
}

  .new-item h3 a {
    color: var(--color-black);
    font-size: 14px;
    text-transform: uppercase;
  }

    .new-item h3 a:hover {
      color: #FE4A01;
    }

.logolist .new-item {
  background: none;
}

  .logolist .new-item a {
    text-decoration: none;
    color: #000000;
  }

    .logolist .new-item a:hover {
      text-decoration: none;
      color: #000000;
    }

.new-item a .img {
  display: block;
  float: left;
  padding-right: 10px;
}

.new-item a .h3 {
  text-decoration: none;
  color: var(--color-black);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.new-item a:hover .h3 {
  color: #FE4A01;
}



.new-item .block {
  float: left;
}

.actionslist .new-item h3 {
  padding-top: 0;
}


.pgngwr {
  clear: both;
  height: auto;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}

.pgng {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-wrap: wrap;
}

  .pgng a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    min-width: 32px;
    padding: 0 8px;
    color: var(--color-black);
    text-decoration: none;
  }


  .pgng span {
    float: left;
    line-height: 20px;
    padding: 0 5px;
    font-weight: bold
  }

  .pgng a.on {
    color: #fff;
    background-color: #FE4A01;
    border-radius: 32px;
    cursor: default;
  }

  .pgng a:hover {
    color: #FE4A01;
  }

  .pgng a.on:hover {
    color: #fff;
  }

.good table {
  text-align: left;
  border-collapse: collapse;
}

.good-garant {
  font-weight: bold;
  float: left;
  width: 220px;
  margin: 0 0 20px 30px;
}

  .good-garant span {
    display: flex;
    align-items: center;
  }

    .good-garant span + span {
      margin-top: 10px;
    }

    .good-garant span img {
      margin-right: 12px;
      height: 40px;
    }

/*--viki-tabs--*/

ul.viki-tabs-buttons {
  margin: 0;
  display: flex;
  padding: 0;
  margin: 0 0 -1px;
  list-style: none;
  border-bottom: 1px solid #FE4A01;
  flex-wrap: wrap;
  width: calc(100% + var(--padding-max-container) * 2);
  margin-left: var(--padding-max-container-negative);
}

  ul.viki-tabs-buttons:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
  }

ul.viki-tabs-buttons li {
  margin: 0;
  position: relative;
  white-space: nowrap;
  list-style: none;
}
ul.viki-tabs-buttons li a:hover {
  color: #FE4A01;
}
ul.viki-tabs-buttons li a {
  font-weight: 400;
  color: var(--color-black);
  display: flex;
  padding: 30px;
  transition: .3s ease all;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
}

ul.viki-tabs-buttons li.act a {
  background: transparent;
  box-shadow: inset 0 -5px #FE4A01;
}

ul.viki-tabs-buttons li.act.white { background: var(--color-white) !important; }

.viki-tabs-frames {
  padding: var(--padding-max-container) 0;
}

  .viki-tabs-frames .viki-tab {
    display: none;
  }

.viki-tabs-frames .viki-tab iframe {
    width: 100% !important;
    min-height: 400px !important;
}

  .viki-tabs-frames .act {
    display: block;
  }

  .viki-tabs-frames .grid, .viki-tabs-frames .grid thead tr {
    border-top: 0;
  }

    .viki-tabs-frames .grid thead th {
      background: #D2DEE6;
    }

  .viki-tabs-frames .grid {
    margin: -10px 0 0 0;
  }

.viki-tabs {
  clear: both;
}
.viki-tab-title {
  font-weight: 700;
  font-size: 29px;
  line-height: 35px;
  color: var(--color-black);
  padding-bottom: 20px;
}
.left_menu {
  padding: 0;
  clear: both;
}



.footer {
  border-top: 1px solid var(--color-gray);
  background-color: var(--color-secondary);
  width: 100%;
  margin: 0;
  color: var(--color-black);
  min-height: 120px;
  font-size: 10px;
  padding: 0;
  overflow: hidden;
}

.wr10 {
  max-width: 1392px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.footer .dn {
  border-top: 1px solid var(--color-ternary);
  margin-top: 10px;
  padding: 15px 0 20px 180px;
  background: url(images/logo-footer.png) 0 20px no-repeat;
  background-size: 140px;
  float: none;
}

.footer .wr10 .footer-box {
  display: flex;
  line-height: 20px;
  float: none;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-box-item {
  width: 18%;
  min-width: 180px;
  max-width: 224px;
}

.footer-box-header {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 5px;
  font-weight: 700;
  margin: 0;
}

  .footer-box-header:hover,
  .footer-box-text:hover {
    text-decoration: none;
    color: #FE4A01;
  }

.footer-box-text {
  display: inline-flex;
  color: var(--color-black);
  margin-top: 0px;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  cursor: pointer;
}

.footer-box-item ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  padding: 0;
}

  .footer-box-item ul:last-child {
    margin-bottom: 0;
  }

.footer a {
  text-decoration: none;
  color: var(--color-black);
}

/*.footer li {float:left; display:inline}
.footer li a {padding:0 15px; border-left:1px solid #666666}
.footer li:first-child a {border-left:none}
.footer li:last-child a {padding-right:5px}*/

.bl {
  background: url("images/bl.png") no-repeat scroll right top #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

.extended_info {
  min-width: 300px;
}

  .extended_info th, .extended_info td {
    border-top: 1px solid #D9DDE3;
  }

.comments {
  clear: both;
  margin: 20px 0 20px 0;
}

  .comments h3 {
    padding: 0;
  }

  .comments .itemTitle {
    clear: both;
    padding-top: 10px;
    background: #fff;
  }

  .comments .items {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background: #ffffff;
  }

  .comments .item {
    clear: both;
    padding: 0;
  }

  .comments #comment {
    clear: both;
    padding-top: 0;
    width: 80%;
  }

    .comments #comment a.button {
      margin: 10px 0 0 0;
    }


.carousel-block {
  width: 100%;
  position: relative;
  clear: both;
  display: grid;
}

.carousel-block #carousel {
  display: flex;
  width: 100%;
  overflow: hidden;
  list-style-type: none;
  height: 100%;
}

.carousel-block .owl-stage-outer {
  margin: -10px;
  padding: 10px;
  display: flex;
}

.carousel-block #carousel li {
  width: 173px;
  float: left;
  margin: 10px 10px;
}

.carousel-block #carousel li a img { border: 0; }

.carousel-block #carousel .block-block .content {
  gap: 20px;
  text-align: center;
  color: var(--color-black);
  padding: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  transition: all .2s ease-in;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .carousel-block #carousel .block-block .content > a {
    gap: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: var(--color-black);
    text-decoration-line: none;
    transition: all .2s ease-in;
  }

.carousel-block #carousel .block-block .content:hover { box-shadow: inset 0 0 1px 1px #FE4A01; }

.carousel-block #carousel .block-block .content > a:hover {
  color: #FE4A01;
}

.carousel-block #carousel .block-block .content > .priceView {
  width: 100%;
}
.carousel-block .comm-stars {
  height: 17px;
  padding: 0 0 0 96px;
  color: var(--color-black);
  font-size: 12px;
  line-height: 17px;
  background-size: 86px 96px;
}

.carousel-block .comm-stars-1 { background-position: 0 -16px; }

.carousel-block .comm-stars-2 { background-position: 0 -32px; }

.carousel-block .comm-stars-3 { background-position: 0 -48px; }

.carousel-block .comm-stars-4 { background-position: 0 -63px; }

.carousel-block .comm-stars-5 { background-position: 0 -80px;
  }

.carousel-block .p {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  padding: 0;
}

.carousel-block .owl-item { float: left; }

.carousel-block #carousel .block-block .content span.i {
    height: 168px;
    font-size: 0;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .carousel-block #carousel .block-block .content span.p {
    height: 60px;
    display: block;
    font-size: 10px;
    overflow: hidden;
  }

.carousel-block #carousel .block-block .title h3 {
    padding: 0;
  }

  .carousel-block #carousel .block-block .pic {
    box-shadow: none;
    max-width: 100%;
    max-height: 100%;
    height: auto !important;
  }

  .carousel-block #carousel .block-block .blue-btn {
    margin: 10px auto 0;
    width: 100px
  }

  .carousel-block #carousel .price-slider {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-black);
  }

.carousel-block #carousel .price-slider .priceval1 { float: none; }

.carousel-block #carousel .price-slider .priceval1 span { font-weight: bold; }

  .carousel-block #carousel .span-but {
    text-decoration: none;
    border-bottom: 0;
    font-size: 11px !important;
    background: #006600;
    border-radius: 7px;
    color: #fff;
    padding: 2px 10px;
    font-weight: bold;
  }

  .carousel-block #carousel .block-block .content a:hover .span-but {
    background: #00cc00;
  }

.carousel-item-rbr {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: underline;
  color: #1460AA;
}
.carousel-item-art {
  font-size: 14px;
  line-height: 17px;
  color: var(--color-black);
}
#boxfixed-wr {
  position: relative;
  z-index: 1010;
}

#boxfixed {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #000;
  border-radius: 6px 6px 6px 6px;
  min-width: 50px;
  min-height: 50px;
  left: 50%;
  margin: -10% 0 0 -25%;
  position: fixed;
  top: 50%;
  z-index: 102;
}

#boxfixed-close {
  background: url("images/close.png") no-repeat scroll 0 0 transparent;
  display: block;
  height: 34px;
  position: absolute;
  right: -17px;
  top: -17px;
  width: 34px;
  z-index: 103;
}

#boxfixed-overlay {
  opacity: 0.6;
  background: none repeat scroll 0 0 #000000;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 102;
}

#boxfixed-loading {
  background: url("images/preloader-big2.gif") no-repeat scroll 0 0 transparent;
  width: 80px;
  height: 80px;
}

#boxfixed .box {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

#boxfixed-cont {
  padding: 0;
  color: #000;
  font-size: 12px;
  width: 300px;
}

  #boxfixed-cont .title {
    padding: 20px;
    font-size: 16px;
    background-color: #f5f5f5;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
    border-bottom-color: #e5e5e5;
  }

  #boxfixed-cont .form-actions {
    border-radius: 0 0 6px 6px;
    margin-bottom: 0;
  }

  #boxfixed-cont .box-cont {
    padding: 20px;
  }

    #boxfixed-cont .box-cont .field {
      width: 100%;
    }

      #boxfixed-cont .box-cont .field label, #boxfixed-cont .box-cont input, #boxfixed-cont .box-cont select {
        width: 100%;
        float: none;
        text-align: left;
      }

      #boxfixed-cont .box-cont .field textarea {
        height: 100px;
        width: 100%;
      }


#custom-form {
  padding: 20px;
}

  #custom-form label {
  }

  #custom-form input[type=text], #custom-form textarea, #custom-form select {
    width: 100%;
    height: auto;
    padding: 2px;
    font: inherit;
    margin: 5px 0;
  }

    #custom-form input[type=text]::placeholder, #custom-form textarea::placeholder, #custom-form select::placeholder {
    }

.boxabs-wr {
  width: 100% !important;
}

.boxabs {
  position: absolute !important;
  left: 2.5% !important;
  width: 95% !important;
  margin: 0 !important;
}

.boxabs-cont {
  position: relative !important;
  margin: 0 auto !important;
  width: 100% !important;
}


.cart_verif {
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px;
}

  .cart_verif p {
    color: var(--color-black);
    text-align: center;
  }

  .cart_verif a {
    display: block;
    margin: 10px auto 0 auto;
    text-align: center;
    padding: 10px 0;
  }

    .cart_verif a.cart_verif-tocart:hover {
      background-color: var(--color-white);
      color: #FE4A01;
    }

    .cart_verif a.cart_verif-continue:hover {
      background-color: #FE4A01;
      color: var(--color-white);
    }

    .cart_verif a.cart_verif-tocart {
      text-decoration: none;
      background-color: #FE4A01;
      color: var(--color-white);
      border: unset;
      border-radius: 3px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      transition: all .2s ease-in;
      border: 1px solid #FE4A01;
    }

    .cart_verif a.cart_verif-continue {
      text-decoration: none;
      background-color: var(--color-white);
      color: #FE4A01;
      border: unset;
      border-radius: 3px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      transition: all .2s ease-in;
      border: 1px solid #FE4A01;
    }


.simple-order-form {
  padding: 20px;
  text-align: left;
}

  .simple-order-form h3 {
    padding-bottom: 30px;
    margin: 0;
  }



.categors .viki-popup {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #000000;
  border-radius: 4px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  height: auto;
  left: -200px;
  position: absolute;
  top: 180px;
  width: 500px;
  z-index: 1000;
}

  .categors .viki-popup .wr {
    padding: 5px;
    text-align: left !important;
  }

.categors .h2hor .viki-popup {
  top: 18px;
}

ul#menu {
  padding-right: 30px;
  height: calc(100vh - var(--hl, px) - (var(--padding-max-container) * 2));
  overflow-y: auto;
  width: 390px;
}
ul#menu::-webkit-scrollbar { width: 10px; }
ul#menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #FE4A01;
}
ul#menu {
    scrollbar-color: #FE4A01 var(--color-white);
    scrollbar-width: thin;
}
/*-- topmenu --*/
/*.topmenu {
  z-index: 1000;
  margin-top: 0;
  float: left;
  color: var(--color-white);
  width: 100%;
  padding: 0;
}*/

.block-header {
  color: var(--color-black);
  margin: 20px 0;
  padding: 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.menucat {
  padding: 9px 0 8px 35px;
  font-size: 15px;
  text-transform: uppercase;
  background: #FE4A01 url("images/menu-burger.svg") no-repeat 7px 50%;
  border-bottom: 1px solid var(--color-white);
  margin: 0;
  border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
}

  .block-header a, .menucat a {
    color: var(--color-black);
    text-decoration: none;
  }

    .block-header a:hover, .menucat a:hover {
      color: #FE4A01;
      text-decoration: none;
    }

.block-cont {
  margin: 0 0 20px 0;
}

/*.topmenu ul {
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
}
*/
/*.topmenu > ul {
  border-radius: 0 0 6px 6px;
}
*/
/*.topmenu ul, .topmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}*/

/*  .topmenu ul li {
    position: relative;
    z-index: 100;
    width: 100%;
    min-width: 195px;
    border-bottom: 1px solid var(--color-border);
  }
*/

.topmenu ul li:last-child { border-bottom: none; }

.topmenu ul li a {
  display: block;
  padding: 18px 30px 18px 70px;
  color: var(--color-black);
  text-decoration: none;
  background-position: 5px 7px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position-y: center;
  background-position-x: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
}
.topmenu ul li.topmenu-smoll a {
  padding: 5px 30px 5px 70px;
}
  .topmenu ul li.topmenu-smoll a:hover {
    color: #FE4A01;
  }
  /*    .topmenu ul li:last-child a:hover {
      border-radius: 0 0 6px 6px;
    }

    .topmenu ul li ul li:first-child a:hover {
      border-radius: 0 6px 0 0;
    }

    .topmenu ul li ul li:last-child a:hover {
      border-radius: 0 0 6px 0;
    }*/
  /*   .topmenu ul li ul {
      z-index: 1000;
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      border: 1px solid var(--color-border);
      border-radius: 0 6px 6px 0;
      width: 100%;
      min-width: 250px;
    }*/
  .topmenu ul li ul li a {
    text-transform: none;
  }

.topmenu a:focus {
  outline: none;
}

.topmenu ul li.cur ul {
  z-index: 0;
  display: block;
  position: relative;
  top: auto;
  left: auto;
  background: var(--color-secondary);
  border: none;
  border-radius: 0;
}

.topmenu li.cur {
  border-bottom: none;
}

.topmenu li ul li a {
  padding: 5px 5px 5px 20px;
}

.topmenu li.cur ul li:first-child {
  border-top: 1px solid #FE4A01;
}

.topmenu li.cur ul li:last-child {
  border-bottom: 1px solid #FE4A01;
}

.topmenu li.cur ul li a {
  background: none;
  text-decoration: none;
  padding: 3px 3px 3px 15px;
  color: var(--color-black);
}

.topmenu .cur a:hover {
  color: var(--color-white);
}

/*.topmenu ul.sub-list li {
  background: url(images/categ_item_bullet_active.gif) 5px 50% no-repeat;
}*/

/*  .topmenu ul.sub-list li a:hover {
    color: var(--color-white);
    background: var(--color-a) url(images/categ_item_bullet.gif) 5px 50% no-repeat;
  }*/

/*.topmenu ul li.cur ul li.cur {
  background: var(--color-a) url(images/categ_item_bullet.gif) 5px 50% no-repeat;
  color: var(--color-white);
}

  .topmenu ul li.cur ul li.cur a {
    color: var(--color-white);
  }

.topmenu li.cur ul li a:hover {
  border-radius: 0 !important;
}*/



.comm-title {
  margin-top: 20px;
  background: #996633;
  color: #fff;
  font-size: 15px;
  padding: 5px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.comments {
  clear: both;
  margin: 0 0 20px 0;
}

  .comments h3 {
    padding: 0;
  }

  .comments .item {
    clear: both;
    padding: 10px;
    border-top: 1px solid #e5e5e5;
    position: relative;
  }

    .comments .item .ann {
      clear: both;
      padding: 7px 0;
    }

#comment {
  clear: both;
  padding: 0 0 10px 0;
  width: 70%;
}

  #comment a {
    clear: both;
    margin: 0 20px 0 0;
  }

  #comment .link-txt {
    clear: both;
    color: #666666;
  }

.comments .user-avatar {
  float: left;
  background: url(../UI/Viki/images/user-avatar.png) 50% 50% no-repeat;
  height: 48px;
  width: 48px;
  display: block;
}

.comments .user-data {
  float: left;
}

.comments .user-name {
  font-weight: bold;
}

.comments .user-exp {
  float: right;
  color: #999;
  margin-right: 80px;
}

.comments .time {
  color: #a0a0a0;
  font-size: 11px;
  padding-top: 5px;
}

.comments .comm-sum {
  clear: both;
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0 8px;
}

.comm-stars {
  background: url(../UI/Viki/images/stars-big.gif) 0 0 no-repeat;
  display: inline-block;
  height: 19px;
  padding: 0 0 0 110px;
  color: #a0a0a0;
  font-size: 11px;
  line-height: 21px;
}

.comm-stars-1 {
  background-position: 0 -19px;
}

.comm-stars-2 {
  background-position: 0 -38px;
}

.comm-stars-3 {
  background-position: 0 -57px;
}

.comm-stars-4 {
  background-position: 0 -76px;
}

.comm-stars-5 {
  background-position: 0 -95px;
}

.comments .revpc {
  width: 100%;
  min-height: 20px;
}

.comments .revpc1, .comments .revpc2 {
  position: relative;
  float: left;
  padding: 0;
  margin: 0;
  width: 50%;
}

.comments .revpc-wr {
}

.comments .revpc1 .revpc-wr {
  padding: 0 20px 0 20px;
  color: #3aa000;
}

.comments .revpc2 .revpc-wr {
  padding: 0 0 0 20px;
  color: #ff3333;
}

.comments .revpc1-hand, .comments .revpc2-hand {
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../UI/Viki/images/prosicons.png) 0 0 no-repeat;
}

.comments .revpc2-hand {
  background-position: 0 -16px;
}

#comment input[type=text], #comment textarea, #comment select {
  width: 100%;
  height: auto;
  padding: 2px;
  font: inherit;
}

#comment .field {
  clear: both;
  font-size: 15px;
}

#comment label {
  clear: both;
  display: inline-block;
  width: auto;
}

#comment .box-revpc {
  clear: both;
}

  #comment .box-revpc .field {
    width: 45%;
    float: left;
    clear: none;
  }

#comment .stars {
  clear: both;
  padding: 15px 10px 0 0;
}

  #comment .stars label {
    display: block;
    float: left;
    margin: 8px 20px 0 0;
  }

  #comment .stars div {
    display: block;
    float: left;
  }

#goComments {
  text-decoration: none;
  font-size: 1px;
  height: 1px;
  line-height: 1px;
}

.comments .vote {
  border-radius: 0 0 3px 3px;
  position: absolute;
  display: inline-block;
  width: auto;
  padding: 0 10px;
  height: 25px;
  text-align: right;
  right: 0;
  top: 10px;
}

  .comments .vote .vote-res {
    display: inline-block;
    font-size: 12px;
    color: #3aa000;
    font-weight: bold;
  }

  .comments .vote a.revpc1-hand, .comments a.revpc2-hand {
    display: inline-block;
    position: relative;
    margin: 0 2px;
  }

.stars-box {
  margin: 0 0 0 -33px;
}

  .stars-box div {
    background-position: -33px 0;
    cursor: pointer;
    clear: none;
    display: block;
    float: left;
    margin: 0 0 0 33px;
    background-image: url(../UI/Viki/images/stars-big-one.png);
    background-repeat: no-repeat;
    width: 33px;
    height: 31px;
  }

  .stars-box.star-1 div {
    background-position: 0 0;
  }

    .stars-box.star-1 div div,
    .stars-box.star-1 div div div,
    .stars-box.star-1 div div div div,
    .stars-box.star-1 div div div div div {
      background-position: -33px 0;
    }

  .stars-box.star-2 div,
  .stars-box.star-2 div div {
    background-position: 0 0;
  }

    .stars-box.star-2 div div div,
    .stars-box.star-2 div div div div,
    .stars-box.star-2 div div div div div {
      background-position: -33px 0;
    }

  .stars-box.star-3 div,
  .stars-box.star-3 div div,
  .stars-box.star-3 div div div {
    background-position: 0 0;
  }

    .stars-box.star-3 div div div div,
    .stars-box.star-3 div div div div div {
      background-position: -33px 0;
    }

  .stars-box.star-4 div,
  .stars-box.star-4 div div,
  .stars-box.star-4 div div div,
  .stars-box.star-4 div div div div {
    background-position: 0 0;
  }

    .stars-box.star-4 div div div div div {
      background-position: -33px 0;
    }

  .stars-box.star-5 div,
  .stars-box.star-5 div div,
  .stars-box.star-5 div div div,
  .stars-box.star-5 div div div div,
  .stars-box.star-5 div div div div div {
    background-position: 0 0;
  }

  .stars-box div:hover {
    background-position: 0 0;
  }

.good .comm-stars {
  margin: 0 0 5px 0;
}

.TovList .comm-stars {
  margin: 10px 0 0 0;
}

.comm-stars-first {
  clear: both;
}

  .comm-stars-first a {
    font-size: 11px;
  }

/* --- sliders ---- */
ul.slu {
  margin: 5px 0 30px 0;
  border: 2px solid #303030;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

  ul.slu, ul.slu li {
    list-style: none;
    padding: 0;
    background-color: #FFFFFF;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
  }

ul.slu { /*box-sizing: content-box;*/
  box-sizing: border-box;
  position: relative;
  display: block;
  height: 346px;
  width: 100%;
}

  ul.slu li {
    margin: 0;
    width: 100%;
    height: 346px;
    position: absolute;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    background-repeat: no-repeat;
    background-position: center center;
    display: none;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.4) inset, 0 -25px 20px -20px rgba(0, 0, 0, 0.4) inset;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.4) inset, 0 -25px 20px -20px rgba(0, 0, 0, 0.4) inset;
    -moz-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.4) inset, 0 -25px 20px -20px rgba(0, 0, 0, 0.4) inset;
  }

    ul.slu li a {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
    }

.fotorama__wrap {
  -webkit-text-size-adjust: 100%;
  position: relative;
  direction: ltr;
  z-index: 0;
  width: auto !important;
}

.fotorama__img {
  width: auto !important;
}


.clearfix:after {
  content: '';
  display: table;
  clear: both;
}

.adapt_menu {
  display: none;
}

.good-col1 img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

.logolist{
  display: flex;
}
.logolist .new-item {
  width: 50%;
  display: block;
  float: left;
}

/*.good-gift, .good-photo {
  position: relative;
}

  .good-gift:after {
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    background-image: url("images/action-big.png");
    background-repeat: no-repeat;
    top: 5px;
    right: 5px;
  }*/

.good-actions {
  position: absolute;
  top: 5px;
  right: -15px;
  z-index: 99;
}

.good-price-best, .action-icon {
  font-weight: bold;
  clear: both;
  float: right;
  padding: 3px 10px;
  margin: 0;
  background-color: #FE4A01;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transform: skew(-20deg);
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.33);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.33);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.33);
  display: table;
  position: relative;
}
  .good-price-best span, .action-icon span {
    transform: skew(20deg);
    position: relative;
    display: table;
  }


  .good-img {
    display: inline-block;
    position: relative;
    float: left;
    margin: 0 20px 20px 0;
    width: 100%;
  }

  .good-img .photo {
    height: 350px;
  }

  .good-img img {
    margin: 0;
  }

.mobile-phones {
  display: none;
}

a.mobile-phones__button, .mobile-phones__phones {
  display: none;
}
.hidden{
    display: none;
}

/*goods*/
.goods-advantages {
  display: grid;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  grid-template-columns: repeat(auto-fill,minmax(275px,1fr));
  border: 1px solid #FE4A01;
  border-radius: 5px;
  padding: var(--padding-max-container);
  color: var(--color-black);
}
.goods-advantages > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.goods-advantages > div > span{
  font-size: 14px;
  line-height: 17px;
  white-space: normal;
}
.goods-top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-black);
  flex-wrap: wrap;
}
.goods-top-info .comm-stars {
  margin: 0;
}
.goods-top-info > div > span,
.goods-top-info > div > a {
   font-size: 14px;
  line-height: 17px;
  color: var(--color-black);
}
.goods-top-info > div > a:hover {
  color: #FE4A01;
}
.goods-top-info > div:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 19px;
}
.good-col {
  display: flex;
  width: 100%;
  gap: 40px;
}

.goods-banner {
  display:block;
}
/*goods*/
/*input arrows num*/
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--color-white);
  background: #FE4A01;
  font-weight: 600;
  font-size: 14px;
  transition: .3s all ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.arrow_down {
  background-image: url(images/goods/minus-icon.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  transition: .1s all ease;
  padding: 15px;
}
.arrow_up {
  background-image: url(images/goods/plus-icon.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  transition: .1s all ease;
  padding: 15px;
}
.num-box__btn {
  float: left;
}
.num-box__btn {
  height: 25px;
}
.num-box__btn.arrow_down {
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
}
.num-box__btn.arrow_up {
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
}
.num-box input {
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 30px;
  height: 30px;
  float: left;
  line-height: 20px;
  text-align: center;
  -webkit-transition: background-color 0.1s ease-in;
  -o-transition: background-color 0.1s ease-in;
  transition: background-color 0.1s ease-in;
  padding: 0;
  border: 1px solid #FE4A01;
}
/*input arrows num*/

.contant-divider {
  background-color: var(--color-secondary);
  height: 40px;
  width: calc(100% + var(--padding-max-container) * 2);
  margin-left: var(--padding-max-container-negative);
}

.goods-cart {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.good-col22 .goods-cart {
  justify-content: flex-start;
}
.good-col22 .num-box__btn {
  height: 50px;
  width: 40px;
}
.good-col22 .num-box input {
  height: 50px;
  width: 45px;
  font-size: 14px;
  line-height: 17px;
}
.good-col22 .order-btn,
.good-col22 .priceView button {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  padding: 16px 32px;
  margin: 0;
  height: 50px;
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 484px;
  display: grid;
  overflow: hidden;
  gap: 40px;
  grid-template-columns: minmax(60px, 90px) minmax(380px, 1fr);

}

.gallery-container.without-gallery-thumbs {
  grid-template-columns: 100%;
}
.gallery-container.without-gallery-thumbs .swiper-button-next,
.gallery-container.without-gallery-thumbs .swiper-button-prev { display: none; }
.product-slider {
  width: 100%;
  height: 100%;
}

.favourites-button {
  display: flex;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
}
#fullscreen-swiper .favourites-button {
  display: none;
}
.gallery-thumbs {
  order: -1;
}
.product-slider img, .gallery-thumbs img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  cursor: pointer;
}
/*checkbox custom*/
.custom-checkbox input[type="checkbox"]:checked,
.custom-checkbox input[type="checkbox"]:not(:checked) {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox input[type="checkbox"]:checked + label,
.custom-checkbox input[type="checkbox"]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 28px;
  line-height: 18px;
  cursor: pointer;
  margin: 0;
  float: none;
  text-align: start;
  width: auto;
}
.custom-checkbox input[type="checkbox"]:checked + label:before,
.custom-checkbox input[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 13px;
  border: 3px solid #B7B7B7;
  background-color: var(--color-white);
  border-radius: 3px;
  box-sizing: initial;
}
.custom-checkbox input[type="checkbox"]:checked + label:before { border-color: #FE4A01; }
.custom-checkbox input[type="checkbox"]:checked + label:after,
.custom-checkbox input[type="checkbox"]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custom-checkbox input[type="checkbox"]:checked + label:after,
.custom-checkbox input[type="checkbox"]:not(:checked) + label:after {
  left: 4px;
  top: 5px;
  width: 7px;
  height: 3px;
  border-radius: 1px;
  border-left: 3px solid #FE4A01;
  border-bottom: 3px solid #FE4A01;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: initial;
}
.custom-checkbox input[type="checkbox"]:disabled + label:before,
.custom-checkbox input[type="checkbox"]:disabled + label:after {
  border-color: #B7B7B7;
  cursor: default;
}
.custom-checkbox input[type="checkbox"]:disabled + label {cursor: default;}
.custom-checkbox input[type="checkbox"]:not(:checked) + label:after {opacity: 0;}
.custom-checkbox input[type="checkbox"]:checked + label:after {opacity: 1;}
/*checkbox custom*/
/*banner-cookie*/
#banner-cookie {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-black);
}
#banner-cookie .banner-cookie-container {
  position: absolute;
  z-index: 1111;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
#banner-cookie .banner-cookie-item {
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0 0 15px rgb(0 0 0 / 25%);
  border-radius: 10px;
  display: flex;
  max-width: 1012px;
  padding: 30px;
  gap: 5px;
  align-items: center;
  margin: 0 25px;
  flex-direction: column;
}
#banner-cookie a {color: #000;}
#banner-cookie .banner-cookie-text a {text-decoration: underline;}
#banner-cookie a:hover {
  cursor: pointer;
  text-decoration: none;
  color: #FE4A01;
}
#banner-cookie .banner-cookie-item p {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--color-black);
  margin: 0;
  padding: 0;
}
#banner-cookie button, 
#banner-cookie [data-ck-br-ss-accept] {
  font-size: 14px;
  line-height: 17px;
}
#banner-cookie [data-ck-br-ss-accept] {
  font-weight: 700;
  padding: 10px;
}
#banner-cookie [data-ck-br-ss-accept] + span {color: #686868;}
#banner-cookie .custom-checkbox + span {padding-left: 38px;}
#banner-cookie .custom-checkbox input[type="checkbox"]:checked + label,
#banner-cookie .custom-checkbox input[type="checkbox"]:not(:checked) + label {
  font-weight: 700;
  padding: 0 0 0 38px;
}
/*banner-cookie*/

/* --- media ---- */
@media screen and (max-width: 1380px) {
  .hidden-w1380 {
        display: none;
    }
}
@media screen and (max-width: 1300px) {
    .home-sales .home-text {
        font-size: 26px;
        line-height: 31px;
    }
}

@media screen and (max-width: 1180px) {
    .hidden-w1180 {
        display: none;
    }
    .home-sales .home-list {
        grid-template-columns: repeat(auto-fill,minmax(400px,1fr));
    }
    .home-sales .home-text {
        font-size: 24px;
        line-height: 29px;
    }
    .home-sales .home-text-link {
        font-size: 14px;
        line-height: 17px;
    }
    .home-sales .home-text-box {
        gap: 20px;
        padding: 20px;
    }
    .home-advantages .home-text {
        font-size: 24px;
        line-height: 31px;
    }

  .middle-header .logo {
    margin-right: 44px;
  }

  .middle-header .info {
    display: none;
  }

  .middle-header .phone {
    margin: auto; }

  body {
    --padding-max-container: 25px;
    --padding-max-container-negative: -25px;
  }
}

@media screen and (max-width: 1120px) {
    .footer-text-box {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  .hidden-w1120 { display: none; }

  .header-bottom-container {
    grid-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }

  .home-brands .home-list { grid-template-columns: repeat(5, minmax(140px, 1fr)); }

  .ul#menu { min-width: 353px; }

  .footer-grid-inner {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-areas: none;
  }

  .footer-links-block.footer-buyers,
  .footer-links-block.footer-catalog,
  .footer-links-block.footer-info { grid-area: auto; }
  .good-col {
    flex-wrap: wrap;
  }
  .good .good-col1 {
    display: grid;
    flex-direction: column;   
  }

  .good-garant {
    margin: 0 0 20px 0;
  }

/*  .product-slider__container {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
  }*/
/*
  .product-slider {
    width: 100%;
    height: 30vmax;
  }
*/
  .good-img {
    margin: 0 0 20px 0;
  }

  .search {
    position: relative;
    bottom: auto;
  }

  ul.slu {
    width: auto;
  }

  .good .good-price-wr .disc-online {
    display: none;
  }

  .good .good-col1,
  .good .good-col2 {
    float: none;
    width: 100%;
  }

  .logolist .new-item {
    width: 100%;
  }
}
@media screen and (max-width: 1050px) {
    .hidden-w1050 {
        display: none;
    }
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 960px) {
  .garantiya-pro {
    position: relative;
    padding-bottom: 10px;
  }
    .header-top-item .logo-icons {
        height: 50px;
        width: 100px;
    }
    .hidden-w960 {
        display: none;
    }
    .home-categories .home-list { grid-template-columns: repeat(3, minmax(200px, 1fr)); }
    .home-sales .home-box {
        display: flex;
        flex-direction: column;
     
    }
    .home-sales .home-list {
        grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    }
    .home-sales .home-image {
        max-width: 100%;
    }
    .footer-header {
        margin-bottom: 20px;
        font-size: 19px;
        line-height: 23px;
    }
    .footer-info .footer-header {
        font-size: 14px;
        font-size: 17px;
        margin-bottom: 4px;
    }
}

@media screen and (max-width: 900px) {
    .hidden-w900 {
        display: none;
    }
    .home-promotions .home-text {
        padding: 15px 20px;
        font-size: 19px;
        line-height: 25px;
    }
    .home-brands .home-list {
        grid-template-columns: repeat(4,minmax(140px,1fr));
    }
    .home-brands .home-box {
        padding: 20px;
    }
}

@media screen and (max-width: 810px) {
    .show-w810 {
        display: block;
    }
    .hidden-w810 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
  .overflow-hidden .header-main,
  .overflow-hidden .footer-container,
  .overflow-hidden #main-content,
  .overflow-hidden .burger-content { padding-right: 0; }
    .hidden-w768 {
        display: none;
    }

    .header-bottom-list {
        grid-column-gap: 0;
        -webkit-column-gap: 0;
        column-gap: 0;
        display: flex;
    }
    .footer-container {
        padding-bottom: 30px;
        margin-top: 20px;
    }
    .bottom-logo-icons {
        width: 85px;
        height: 30px;
    }
    .footer-logo-container p {
        font-size: 17px;
        line-height: 19px;
    }
  body {
    --padding-max-container: 20px;
    --padding-max-container-negative: -20px;
  }
    .home-advantages .home-item {
        display: flex;
        flex-direction: column;
    }
    .home-description-icons-box {
        grid-template-columns: repeat(1,100%);
    }
    .home-advantages .home-image {
        max-width: 100%;
    }
    .home-container {
        margin: 20px auto 0 auto;
        margin-bottom: 20px !important;
    }
    .home-title {
        font-size: 24px;
        line-height: 27px;
    }
    .home-title-box {
        padding-bottom: 20px;
    }
    .main-slider-box .owl-nav {
        display: none;
    }

  .middle-header .phone, .middle-header .profile {
    width: auto;
  }

  .middle-header .profile {
    float: right;
  }

  .search {
    position: relative;
    bottom: auto;
  }

  .middle-header-container {
    display: none;
  }

  .conth {
    width: 100%;
  }

  .header-container,
  #main-menu,
  .middle-header .phone,
  .middle-header .profile {
    display: none;
  }

  .side-menu-item {
    display: block;
  }

  .lower-header {
    display: none;
  }

/*  .product-slider__container {
    max-width: none;
    width: 90vw;
  }*/
  .viki-gallery {
    gap: 20px;
    padding-bottom: 20px;
  }
  .good .good-col1 {
    width: 100%;
  }
  .gallery-container {
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .gallery-thumbs {
    order: 0;
  }
  .adapt_menu {
    display: block;
    position: fixed;
    z-index: 1000;
    margin-top: 0;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / 25%);
  }
  .product-slider .swiper-button-next,
  .product-slider .swiper-button-prev {
    display: none;
  }
  .adapt_menu.adapter-search-input-show .adapter-search-input {
    display: block;
  }

    .adapt_menu.adapter-search-input-show {
      padding-bottom: 56px;
      background-color: var(--color-white);
    }

  .middle-header .profile {
    width: 100%;
    height: auto;
    text-align: center;
  }

  #ShoppingCart .empty {
    margin: 10px auto;
  }

  #ShoppingCart center {
    padding-top: 0;
  }

  .middle-header .info {
    width: calc(100% - 230px);
  }

  .middle-header .profile {
    min-height: auto;
    padding-bottom: 15px;
  }

  .col {
    display: none;
  }

  .conth {
    width: 100%;
    max-width: 100%;
  }

  .mp-table tr td {
    display: block;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    clear: both;
    text-align: right;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
  }

  ul.hmenu li {
    display: inline-block;
    float: none;
  }

  ul.hmenu {
    display: none;
  }

  ul.slu {
    display: none;
  }

  .single-page {
    /*padding-right: 15px;
        padding-left: 15px;*/
  }

  .main {
    padding: 75px 15px 0 15px;
  }

  .single-page ol {
    margin-left: 20px;
  }

  .single-page .span7 {
    width: 100%;
  }

  .single-page img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .single-page iframe {
    max-width: 100% !important;
  }

  .single-page span img {
    margin: 0 !important;
  }

  .single-page h4 {
    padding-left: 0 !important;
  }

  .good a.lupa:hover {
    cursor: auto;
  }

  .mobile-phones {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
    padding: 15px;
    background-color: var(--color-white);
    box-shadow: 0 -10px 10px rgb(0 0 0 / 20%);
  }

  a.mobile-phones__button {
    width: 100%;
    text-align: center;
    line-height: 38px;
    height: 40px;
    display: block;
  }

  .mobile-phones__phones {
    white-space: nowrap;
    display: none;
    position: absolute;
    background-color: var(--color-white);
    z-index: 100;
    width: calc(100% - 30px);
    padding: 15px;
    min-width: 250px;
    bottom: 18px;
    -webkit-box-shadow: 3px 3px 7px rgba(0,0,0,0.27);
    -moz-box-shadow: 3px 3px 7px rgba(0,0,0,0.27);
    box-shadow: 3px 3px 7px rgba(0,0,0,0.27);
      text-align: center;
  }

    .mobile-phones__phones > div{
        margin: auto;
    }

    .mobile-phones__phones a {
        text-decoration: none;
    }

    .mobile-phones .mail-ico,
    .mobile-phones .header-top-mail { display: none; }

    .mobile-phones .upphone {
        width: 160px;
        margin: 0 auto;
        margin-bottom: 7px;
    }

  .control-bottom.active {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-direction: row;
  }

  .control-bottom .bottom-buy-content {
    display: none;
  }

  .control-bottom.active .mobile-phones__button {
    height: 30px;
    line-height: 29px;
  }

  .control-bottom.active .bottom-buy-content {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
  }

  .control-bottom.active .bottom-buy-content .priceval1,
  .bottom-buy-content .goods-cart,
  .control-bottom.active .bottom-buy-content button { width: 50%; }

    .control-bottom.active .bottom-buy-content .priceval1 {
      word-wrap: break-word;
      font-weight: bold;
    }

  .control-bottom.active .bottom-buy-content .goods-cart button { width: 100%; }

  .bottom-buy-content .arrows_num { display: none; }

  .control-bottom.active .disc::after {
    right: 0;
    left: 45px;
    top: -6px;
  }

  .control-bottom.active .disc {
    margin: 0;
  }
  .viki-tabs-buttons {
    flex-flow: column;
  }
  ul.viki-tabs-buttons li a {
    padding: 15px 0;
  }
  ul.viki-tabs-buttons {
    width: 100%; 
     margin-left: 0; 
  }
  #carousel .owl-nav {
    display: none;
  }
  table tr td {
    padding: 8px 6px;
    font-size: 14px;
    line-height: 17px;
  }
  .footer {
    padding-bottom: 80px;
  }

  .footer-box {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .footer-box-header {
    font-size: 14px;
    line-height: 18px;
  }

  .footer li {
    display: inline-block;
    width: 100%;
    text-align: center;
    float: none;
  }

  .footer-box-item ul {
    margin-bottom: 5px;
  }

    /*burger*/
  ul#menu {
    width: 100%;
    height: calc((var(--wh, 1vh) * 100) - var(--hl, px) - 30px);
    padding-right: 0;
  }

  .burger-content__links {
    position: relative;
    top: 0;
    left: 0;
    padding: 10px 15px 10px 70px !important;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }

  .burger-content__links-category { padding: 0 40px 15px 43px; }

  .burger-content__category-name { padding: 15px 15px 15px 70px !important }

  .burger-content__category.active {
    background-color: var(--color-secondary);
    background-image: none;
  }

  .burger-content__category:hover { background-image: none; }

  .burger-content__categories {
    width: 100%;
    padding: 20px 0;
  }
  .burger-content__category {
    padding: 0;
    flex-direction: column;
  }
  .burger-content__category.active {
    background-color: var(--color-white);
    border-right: 5px solid transparent;
  }
  .burger-content__links li.sub-cat a {
    padding: 10px 0;
  }
  .burger-content__links ul {
    height: 100%;
    width: 100%;
    column-width: initial;
  }
    /*burger*/

  .viki-keypress-ddl {
    left: var(--padding-max-container-negative);
    bottom: 7px;
    width: calc(100% + (var(--padding-max-container) * 2));
  }
  .header-bottom-container {
    position: relative;
  }
  .viki-keypress-ddl div {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: 0;
  }
   /*banner-cookie*/
  #banner-cookie .banner-cookie-item > div:first-child > div:last-child {
    flex-direction: column;
  }
  #banner-cookie .banner-cookie-item > div:first-child,
  #banner-cookie .banner-cookie-item > div:last-child > div {
    max-height: 55vh;
    overflow-y: auto;
  }
  /*banner-cookie*/
  .logolist {
    flex-direction: column;
  }
}

@media screen and (max-width: 720px) {
    .home-categories .home-list {
        grid-template-columns: repeat(2,minmax(150px,1fr));
    }
    .home-promotions .home-list {
        grid-template-columns: repeat(2,minmax(224px,1fr));
    }

}

@media screen and (max-width: 680px) {
    .home-brands .home-list {
        grid-template-columns: repeat(3,minmax(140px,1fr));
    }
    .home-sales .home-list {
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    }
    .home-sales .home-text {
        font-size: 21px;
        line-height: 26px;
    }
    .hidden-w680 {
        display: none;
    }
    .show-w680 {
        display: block;
    }
    .header-bottom-container {
        grid-template-columns: auto 1fr auto;
        grid-column-gap: 20px;
        -webkit-column-gap: 20px;
        column-gap: 20px;
    }

  /*-----Tov list-------*/
  .grid_list .TovBg { grid-template-columns: minmax(90px, 150px) 1fr; }
  .grid_list .title-item, .grid_list .desc-item { font-size: 14px; color: #000}
  .grid_list .title-item { font-size: 16px; color: #000 }
  .grid_list .price-block .price {
    text-align: start;
    font-size: 20px;
  }
  .grid_list .ShoppingCartItem button {
    font-size: 16px;
    height: 35px;
  }
  /*-----Tov list-------*/
}

@media screen and (max-width: 555px) {
  .home-promotions .home-list { grid-template-columns: repeat(1, 100%); }
  .home-promotions .home-item { max-width: 100%; }
  .home-promotions .home-image { object-fit: cover; }
  /*-----Tov list-------*/
  .grid_list a.TovName { padding-right: 0; }
  .TovList.grid_list .comm-stars {
    padding-top: 20px;
    margin-bottom: 20px;
    padding-left: 0;
  }
  .grid_list .TovBg {
    grid-template-columns: minmax(70px, 120px) 1fr;
    grid-template-areas:
                       "img title"
                       "img desc"
                       "comm prices"
                       "comm-stars prices"
                       "button button";
  }
  .grid_list .ShoppingCartItem button { width: 100%; }
  /*-----Tov list-------*/
}
@media screen and (max-width: 576px) {
    .hidden-w576 {
        display: none !important;
    }
}
@media screen and (max-width: 480px) {
    .home-advantages .home-text-link {
        padding: 12px;
        font-size: 14px;
        line-height: 19px;
    }
    .home-advantages .home-text {
        font-size: 21px;
        line-height: 27px;
    }
    .home-sales .home-list {
        grid-template-columns: repeat(1,100%);
    }
  .home-categories .home-box {
        padding: 20px;
    }
    .home-categories .home-text {
        font-size: 12px;
       line-height: 15px;
    }
    body {
        --padding-max-container: 15px;
        --padding-max-container-negative: -15px;
    }
    .home-brands .home-list {
        grid-template-columns: repeat(2,minmax(120px,1fr));
    }

    .home-brands .home-box {
        padding: 10px;
    }
    .footer-grid-inner {
        grid-template-columns: repeat(1, 100%);
    }
  .control-bottom.active {
    flex-direction: column;
  }

  .cont,
  .m-count {
    display: block;
  }
   /* .cont {
        padding: 10px;
    }*/
    .page.not-main-page {
        margin: 20px auto 0 auto;
    }
 /* .product-slider__container {
    width: 100%;
  }*/

  .middle-header {
    min-height: auto;
  }

    .middle-header .logo {
      min-height: 60px;
    }

      .middle-header .logo a {
        background-size: contain;
        max-width: 120px;
        height: 50px;
      }

        .middle-header .logo a .slogan {
          padding: 36px 7px 0 0;
          font-size: 12px;
        }

    .middle-header .r {
      width: 100%;
    }

    .middle-header .info {
      display: none;
    }

    .middle-header .phone .wr {
      float: none;
      width: 208px;
      margin: 0 auto;
    }

    .middle-header .phone div {
      float: left;
      text-align: left;
    }

  .field input {
    width: 100%;
  }

  #Captcha {
    width: 100% !important;
  }

  .field {
    padding-right: 0;
  }

  #contact .f-rgt > div {
    margin-left: 0 !important;
  }

  .footer {
    padding-bottom: 100px;
  }

  .single-page p {
    padding-left: 0 !important;
  }

 /* .good .good-col2 .good-col22 {
    width: 100%;
    float: none;
    display: block;
    padding: 0;
  }*/

  .good-garant {
    float: none;
    width: 100%;
    margin: 10px 0;
    display: inline-block;
  }

  .path a {
    display: inline-block;
  }

  .good .viki-tabs table {
    margin: 0;
  }

  ul.viki-tabs-buttons {
    overflow: hidden;
  }

  .good .good-price-wr {
    width: 100%;
  }
  .good-col22 .order-btn,
  .good-col22 .priceView button,
  .priceView button {
    font-weight: 400;
    font-size: 19px;
    height: 40px;
    width: 120px;
    margin: 0;
  }
  .priceView .num-box__btn {
    height: 40px;
  }
  .priceView .num-box input {
    height: 40px;
    width: 40px;
  }
  h1 {
    font-size: 16px;
    line-height: 20px;
  }

  .goodsone h1 {
    padding-right:50px;
  }

  .goodsone .brand-logo-goods img {
    max-height: 20px;
    max-width: 50px;
  }


  .gcount, ul.tools-sort {
    float: none;
    text-align: left;
  }

  .TovBgWr {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .viki-popup-wr {
    width: 100%;
  }

  .TovBg .TovName span.namewr {
    font-size: 18px;
    line-height: 24px;
      font-weight: 600;
  }


  .TovBgWr .comm {
    font-size: 14px;
    padding-top: 8px;
  }

  .price {
    font-size: 26px;
  }

  .price .priceval1 span { font-size: 26px; }
 
  .disc:after {
    top: 0;
  }

  .ShoppingCartItem button {
    font-size: 19px;
    height: 40px;
    width: 110px;
  }
  .ShoppingCartItem .num-box__btn {
    height: 40px;
  }
  .ShoppingCartItem .num-box input {
    height: 40px;
    width: 40px;
  }
  .TovBg a.TovInfo span {
    font-size: 16px;
  }

  .goods-advantages {
    grid-template-columns: repeat(1,100%);
  }
    /*banner-cookie*/
  #banner-cookie .banner-cookie-item {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  #banner-cookie .banner-cookie-item > div:first-child > div:last-child,
  #banner-cookie [data-ck-br-ss-accept] { width: 100%; }
  #banner-cookie .banner-cookie-item > div:first-child,
  #banner-cookie .banner-cookie-item > div > div:last-child > div:last-child { flex-direction: column; }
  /*banner-cookie*/
  /*-----Tov list-------*/
  .grid_list .price-block .price, .grid_list .price .priceval1 span {
    font-size: 16px;
  }
  /*-----Tov list-------*/
}

@media screen and (max-width: 410px) {
  /*  .price_big .disc {
    display: none;
  }*/
}

@media screen and (max-width: 380px) {
  .hidden-w380 { display: none !important; }
  .home-categories .home-list { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
  .price_big .disc-online {
    top: -20px;
    right: -118px;
    background: url(images/disc-online.png) no-repeat -21px 0;
    background-size: contain;
    width: 120px;
  }
  body {
    --padding-max-container: 10px;
    --padding-max-container-negative: -10px;
  }
  .show-container:before { left: 70px; }
  .show-container { left: -70px; }
  .mm-listview .sub-cat { display: none; }
  .sub-list .sub-cat { display: block; }
  .mm-listview .cur-cat { display: none; }
  .cur-list .cur-cat { display: block; }
  .good-banner {
    margin: 10px 0;
    background-color: #fff;
  }
  .reccomendList .new-item { display: block; }
}
@media screen and (max-width: 320px) {
  /*banner-cookie*/
  #banner-cookie .banner-cookie-item {padding: 10px;}
  #banner-cookie .custom-checkbox + span {padding-left: 0;}
  /*banner-cookie*/
}
