/* делаем везде так, чтобы свойства width и height задавали не размеры контента, а размеры блока */
* {
  box-sizing: border-box;
}

/* общие настройки страницы */
.modal{background: #00000078;}

/* общий блок для всех элементов */
.deal-wheel {
  /* задаём переменные блока */
  /* размеры колеса */
  --size: clamp(100px, 80vmin, 500px);
  /* настройки яркости и заливки фона секторов */
  --lg-hs: 0 3%;
  --lg-stop: 50%;
  --lg: linear-gradient(
      hsl(var(--lg-hs) 0%) 0 var(--lg-stop),
      hsl(var(--lg-hs) 20%) var(--lg-stop) 100%
    );
        align-items: center;
    justify-content: center;
  /* добавляем позиционирование относительно других элементов */
  position: relative;
  /* подключаем сетку */
  display: grid;
  grid-gap: calc(var(--size) / 20);
  /* выравниваем содержимое блока по центру */
  align-items: center;
  /* задаём имена областей внутри сетки */
  grid-template-areas:
    "spinner"
    "trigger";
  /* устанавливаем размер шрифта */
  font-size: calc(var(--size) / 21);
}
.love.w-100{font-size: 16px;}
/* всё, что относится ко внутренним элементам главного блока, будет находиться в области сетки с названием spinner */
.deal-wheel > * {
  grid-area: spinner;
}
.prize.selected .text{display:none;}
.prize.selected:nth-child(1):before{content:"Промокод СИМПАТИЯ"; color:#fff; font-size:24px;text-align:center;font-weight: bold;left: -40px;position: relative;}
.prize.selected:nth-child(2):before{content:"Промокод ЧУВСТВА";color:#fff; font-size:24px;text-align:center; font-weight: bold;left: -40px;position: relative;}
.prize.selected:nth-child(3):before{content:"Промокод ЭМОЦИИ"; color:#fff; font-size:24px;text-align:center; font-weight: bold;left: -40px;position: relative;}
.prize.selected:nth-child(4):before{content:"Промокод СТРАСТЬ"; color:#fff; font-size:24px;text-align:center; font-weight: bold;left: -40px;position: relative;}
.prize.selected:nth-child(5):before{content:"Промокод ЛЮБОВЬ"; color:#fff; font-size:24px;text-align:center; font-weight: bold;left: -40px;position: relative;}
/* сам блок и кнопка будут находиться в области сетки с названием trigger и будут выровнены по центру */
.deal-wheel .btn-spin {
  grid-area: trigger;
  justify-self: center;
}
#page a img{width:100%;}
#time_off {
  padding-top: 10px;
  display:none;
}
.deal-wheel{
height: 100vh;
    margin: auto;
    padding: 20px;
    }
    .home #page h1{  
        text-align: center;
    margin-top: 20px;}
/* сектор колеса */
#product-review-form .s-image-wrapper{
    width: 200px;
    height: 200px;
    background-size: contain;
    float: right;
}
.s-icon.delete svg{    
    width: 10px;
    position: absolute;
    right: 0;
    cursor: pointer;}
.spinner {
  /* добавляем относительное позиционирование */
  position: relative;
  /* подключаем сетку */
  display: grid;
  /* выравниваем всё по центру */
  align-items: center;
  /* добавляем элемент в сетку */
  grid-template-areas: "spinner";
  /* устанавливаем размеры */
  width: var(--size);
  height: var(--size);
  /* поворачиваем элемент  */
  transform: rotate(calc(var(--rotate, 25) * 1deg));
  /* рисуем круглую обводку, а всё, что не поместится, — будет скрыто за кругом */
  border-radius: 50%;
}
.pr-wish .like.wish-remove .fa-heart{
     opacity: 1;
}
.pr-wish i{
    color: #757575;
    font-size: 25px;
    opacity: 0.5;}
 .pr-wish a:hover i{
     opacity: 1;
 }   
   .pr-wish a{z-index:9;} 
   .compare-add {display:none!important;}
/* всё, что внутри этого блока, будет находиться в области сетки с названием spinner */
.spinner * {
  grid-area: spinner;
}
.d-inline-block.like.wish-remove .fa-heart-o{display:none;}
.d-inline-block.like.wish-add .fa-heart{display:none;}
/* текст на секторах */
.prize {
  /* включаем «гибкую» вёрстку */
  display: flex;
  align-items: center;
  /* задаём отступы от краёв блока */
  padding: 40px calc(var(--size) / 20) calc(var(--size) /20);
  /* устанавливаем размеры */
  width: 50%;
  height: 50%;
  /* устанавливаем координаты, относительно которых будем вращать текст */
  transform-origin: center right;
  /* поворачиваем текст */
  transform: rotate(var(--rotate));
  /* запрещаем пользователю выделять мышкой текст на секторах */
  user-select: none;
}
.prize span.text{color:#fff;}
.prize p{font-size:40px;text-align:center;}
/* язычок */
.ticker {
  /* добавляем относительное позиционирование */
  position: relative;
  /* устанавливаем размеры */
  left: calc(var(--size) / -15);
  width: calc(var(--size) / 10);
  height: calc(var(--size) / 20);
  /* фон язычка */
  /*background: var(--lg);*/
      background: #ffc800;
  /* делаем так, чтобы язычок был выше колеса */
  z-index: 1;
  /* форма язычка */
  clip-path: polygon(20% 0, 100% 50%, 20% 100%, 0% 50%);
  /* устанавливаем точку, относительно которой будет вращаться язычок при движении колеса */
  transform-origin: center left;
}

/* кнопка запуска колеса */
.btn-spin {
  color: white;
  background: #dc0945;
  border: none;
  /* берём размер шрифта такой же, как в колесе */
  font-size: inherit;
  /* добавляем отступы от текста внутри кнопки */
  padding: 0.9rem 2rem 1rem;
  /* скругляем углы */
  border-radius: 0.5rem;
  /* меняем внешний вид курсора над кнопкой на руку*/
  cursor: pointer;
}

/* если кнопка нажата и неактивна */
.btn-spin:disabled {
  /* меняем внешний вид курсора */
  cursor: progress;
  /* делаем кнопку полупрозрачной */
  opacity: 0.25;
}

/* анимация вращения */
.is-spinning .spinner {
  transition: transform 8s cubic-bezier(0.1, -0.01, 0, 1);
}

/* анимация движения язычка */
.is-spinning .ticker {
          animation: tick 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* эффект, когда колесо задевает язычок при вращении */
@keyframes tick {
  40% {
    /* чуть поворачиваем язычок наверх в середине анимации */
    transform: rotate(-12deg);
  }
}

/* анимируем выпавший сектор */
.prize.selected .text {
  /* делаем текст белым */
  color: white;
  /* настраиваем длительность анимации */
  animation: selected 800ms ease;
}

/* настраиваем анимацию текста на выпавшем секторе по кадрам */
@keyframes selected {
  /* что происходит на 25% от начала анимации */
  25% {
    /* увеличиваем текст в 1,25 раза */
    transform: scale(1.25);
    /* добавляем тексту тень */
    text-shadow: 1vmin 1vmin 0 hsla(0 0% 0% / 0.1);
  }
  40% {
    transform: scale(0.92);
    text-shadow: 0 0 0 hsla(0 0% 0% / 0.2);
  }
  60% {
    transform: scale(1.02);
    text-shadow: 0.5vmin 0.5vmin 0 hsla(0 0% 0% / 0.1);
  }
  75% {
    transform: scale(0.98);
  }
  85% {
    transform: scale(1);
  }
}
.title::after.bx-controls-direction/*
 * Webasyst Default 3.0 theme family
 *
 * Core CSS file
 *
 * @link http://www.webasyst.com/
 * @author Webasyst LLC
 * @copyright 2015 Webasyst LLC
 * @package Webasyst
 */

/* Reset
-------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, /* ol, ul, li, */ fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, credentials, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; }
article, aside, credentials, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

/* Common HTML elements, fonts, and colors
------------------------------------------ */

html,
body { width: 100%;     overflow-x: hidden; min-height: 100%; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px; background: #fff;    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; line-height: 1.4em; }
a { color: #006bd8; outline:0 none; text-decoration: none; }
a:focus { outline:none; outline-offset:-4px; }
a:visited { color: #85c; }
a.not-visited:visited { color: #006bd8; }
a:hover { color: red; }
input[type="button"]::-moz-focus-inner { border: 0; }
input[type="submit"]::-moz-focus-inner { border: 0; }
a img { border: 0; }
p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, blockquote, figure { margin-bottom: 20px; }
h1 { font-size: 2.6em; }
h1 a { text-decoration:none; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.45em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }
h1, h2, h3 { line-height:1.2em; }
ul, ol { padding-top:0; }
ol { list-style: decimal; }
input, textarea, select { margin:0; }
input, textarea { font-size: 1em; color: #000; }
select { max-width: 100%; }
input[type="button"]:focus { outline:none; outline-offset:-2px; }
fieldset { border:1px solid #bbb; padding:10px; position:relative; background:#e9e9e9; margin-bottom:10px; }
fieldset p label { width:98%; }
fieldset p input[type="text"] { width:98%; }
fieldset p select { width:99%; }
pre {margin-top: 16px; line-height: 24px; word-wrap: normal;}
blockquote { color: rgba(0,0,0,.6); font-size:0.9em; font-style: italic; border-left: 1px solid rgba(0,0,0,.1);padding-left: 24px; background: #eee; }
blockquote cite { font-size: 0.9em; }
hr { background-color: rgba(0,0,0,0.15); height: 1px; border: 0; }
p { font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Helvetica Neue', Arial, sans-serif; line-height: 1.4em; }
p a { text-decoration: underline; }
input::-webkit-input-placeholder { color: #bbb; }
input:-moz-placeholder,
input::-moz-placeholder { color: #bbb; }
input:-ms-input-placeholder { color: #bbb; }
label, button { cursor: pointer; }
.card-body{
    padding: 0.5rem;
}
ul.thumbs.homepage-bxslider .purchase input[type="submit"]{    font-size: 1.2em;width: 170px;    padding: 5px;}
ul.thumbs.homepage-bxslider li h5{ margin-bottom: 1em;  height: 35px;}
.bx-wrapper{max-width:100%!important;}
.pages.flyout-nav{border-radius:6px;}
.menu-catalog{   
margin-right: 10px!important;
    margin-left: 5px!important;
    margin-top: 0px;
    margin-bottom: 4px;}
.wa-icon{padding: 2px;
    color: #b30030;}
 .compare-add, .compare{display:none;}
.compare-diff-all i{color:#000}
table#compare-table th {
    color: #636363;}
    .wishlist li:before{content: ''!important;}
    .wishlist .opt {
    
    border-radius: 9px;
    top: -12px;
    
    right: 0;
    left: 77px;
    padding: 5px;}
    .alert.alert-warning i{    color: #db0943!important;}
    a:not([href]):not([tabindex]){    display: block;}
    
.best-cat-home .mb-1{display: block;
    position: relative;
    overflow: hidden;border-radius: 10px;
}.best-cat-home .mb-1 img{
    -webkit-transition: all .3s linear 0s;
    transition: all .3s linear 0s;}
.best-cat-home .mb-1 img:hover{   
    -webkit-filter: brightness(80%)!important;;
    filter: brightness(80%)!important;;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    will-change: transform;
}
.best-cat-home .mb-1 h5{    -webkit-transition: all .3s linear 0s;
    transition: all .3s linear 0s;}
.best-cat-home .mb-1:hover h5{  -webkit-transform: scale(1.02);
    transform: scale(1.02);  }
.best-cat-home a:hover{    text-decoration: none;}   
.best-cat-home .card-title{    position: relative;
    bottom: 27px;
    z-index: 1;
    background: rgb(255 255 255 / 62%);
    height: 32px;
    display: block;
    width: 100%;
    margin: auto;
    padding-top: 3px;
    color: #3e3d3d;
    border-radius: 0px 0px 10px 10px;}
    
   .wa-button.js-add-product .wa-icon{
        width: 18px;
        height: 18px;    vertical-align: 0.1em!important;color:#fff;
    } 
    .list-dotted .item__label:after {
    content: '';
    position: absolute;
    left: 0;
    right: -9999px;
    bottom: 3px;
    border-bottom: 1px dotted #d9d9dd;
}
.list-dotted .left{
    width: 70%;
    overflow: hidden;
    position: relative;    
    float: left;

}

/* Misc elements
---------------- */
.s-slider-section .bx-wrapper .bx-pager {
    bottom: 0em!important;
    z-index: 9;
}
.s-slider-section .bx-wrapper .bx-pager.bx-default-pager a{border: solid 1px #e10946;}
.block { padding: 25px 30px; }
.inline { display: inline !important; }
.inline-link { text-decoration: none !important; }
.inline-link b { border-bottom: 1px dotted; font-weight: normal; position: relative; top: -0.13em;}
.inline-link b i { font-style: normal; position: relative; top: 0.13em;}
.small { font-size: 0.9em; }
.large { font-size: 1.1em; }
.bold { font-weight: bold; }
.strike { text-decoration: line-through; }
.highlighted { background:  #ffc; }
.hint { color: #aaa; font-size: 0.7em; }
.hint a,
.hint:visited,
.hint a:visited { color: #888; }
.gray .dropdown ul
.gray a,
.gray:visited,
.gray a:visited { color: #888; }
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }
.clear-left { clear: left; }
.clear-right { clear: right; }
.clear-both { clear: both; }
.shadowed { -moz-box-shadow: 0 5px 15px #aaa; -webkit-box-shadow: 0 5px 15px #aaa; box-shadow: 0 5px 15px #aaa; }
.nowrap { white-space: nowrap; }
.hr { border-top: 1px solid #ccc; margin-bottom: 15px; }
.uppercase { text-transform: uppercase; }
.blurred { -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); filter: blur(5px); }
.userpic { border-radius: 50%; background-size: auto; }

.container { min-width: 650px; max-width: 970px; margin: 0 auto; padding: 0; }
.container:before,
.container:after { content: " "; clear: both; }
.no-img{opacity: 0.2;}
.breadcrumbs { padding: 10px 0; font-size: 0.9em; }
.breadcrumbs a { color: #333333!important; }
.breadcrumbs span.rarr { color: #ccc; margin: 0 3px; }

.tags { line-height: 1.6em; }
.tags a { color: green !important; display: inline !important; padding: 0 4px !important; }
.tags a:hover { color: red !important; }
.contact-6 #viber_widget{
        padding: 25px 10px;
    border-radius: 15px;
    margin-right: 10px;
    border: solid 1px #7d3daf;
}
.contact-6 #whatsapp_widget{
    padding: 25px 10px;
    border-radius: 15px;
    margin-right: 10px;
    border: solid 1px #34d06b;
}
.contact-6{   
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px -1px 6px 8px #0000000d;
    padding: 20px;}
.welcome { text-align: center; background: url('img/welcome.png') no-repeat; background-position: top center; padding-top: 300px; background-size: 256px 256px; margin-bottom: 30px; }
.welcome h1 { font-weight: normal; font-size: 2em; }

.staff { background: #eeb; padding: 1px 4px !important; color: #345; font-size: 0.9em; border: 1px solid rgba(0,0,0,0.1); border-radius: 3px; white-space: nowrap; }

.wa-flex-box { display: -webkit-box; display: -moz-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }
.wa-flex-box.middle { -webkit-box-align: center; -moz-box-align: center; -o-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; }
.wa-flex-box.wrap { -webkit-box-lines: multiple; -moz-box-lines: multiple; -o-box-lines: multiple; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.wa-flex-box.full-line { -webkit-box-pack: justify; -moz-box-pack: justify; -o-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; }
.wa-flex-box.fixed { -webkit-box-pack: justify; -moz-box-pack: justify; -o-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; }
.wa-flex-box.fixed.fixed > * { -webkit-flex-basis: 100%; flex-basis: 100%; -webkit-box-flex: 0; -moz-box-flex: 0; -o-box-flex: 0; -ms-box-flex: 0; box-flex: 0; -webkit-flex-grow: 0; flex-grow: 0; }
.wa-flex-box > *.middle { -webkit-align-self: center; align-self: center; -ms-flex-item-align: center; }
.wa-flex-box.space-025 > *:not(:last-child) { margin-right: 0.25rem; }
.wa-flex-box.space-05 > *:not(:last-child) { margin-right: 0.5rem; }
.wa-flex-box.space-075 > *:not(:last-child) { margin-right: 0.75rem; }
.wa-flex-box.space-1 > *:not(:last-child) { margin-right: 1rem; }
.wa-flex-box.space-2 > *:not(:last-child) { margin-right: 2rem; }
.wa-flex-box.space-3 > *:not(:last-child) { margin-right: 3rem; }
.wa-flex-box.space-4 > *:not(:last-child) { margin-right: 4rem; }
.wa-flex-box.space-5 > *:not(:last-child) { margin-right: 0.5rem; }
.sty select{border: none;
    background: #272727;}
    .phone-top{display: block;
    text-align: center;}
.phone-top:hover{    text-decoration: none;}
.phone-top:hover i{        color: #d90943;}
.top-menu{       padding: 5px 0!important; background: #272727;    color: #fff;    align-items: center;}
.top-menu a,select,i{color: #fff;}
 .top-menu .social a{   border-radius: 50%;
    border: solid 1px #c0063e;font-size: 18px;
    width: 30px;
    height: 30px;
    padding: 0px;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    margin: 0 2px;}
    .dekstop .wish i{font-size:30px;color:#484545;}
   .dekstop .hcart-t i{font-size:30px;color:#484545;}
   .dekstop .hcart-t span{color:#484545;    font-size: 12px;}
    .dekstop .cart span{color:#484545;font-size:12px;}
    .dekstop .cart i{color: #db0943;}
   .dekstop .wish .count{color:#fff!important;}
  .dekstop .cart-total{font-weight: 500;}
   .dekstop .cart.fixed{font-weight: 500;}
  .purchase a i{color:#000000;}
   .baner-home img{    border-radius: 10px;}
  .baner-home .divban{ 
  position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ebebeb;}
  
   .baner-home .divban:hover:before {
    content: "";
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .16;
}
.yandex{
    border: none!important;
    width: auto!important;
    font-size: 16px!important;
    color: #fff!important;
    text-decoration: none!important;
}
/*.search-list .content_toggle{top: 50px;}*/
.cat-thome .bx-wrapper{    margin: 0 auto 0px!important;}
.tag-category{margin-top:10px;}
.tag-category a{
    border-radius: 5px;
   
    background-color: #f8f8f8;
    padding: 5px 9px;
        color: #797979!important;
    margin-bottom: 10px;
    display: inline-block;
font-size:12px;
}
.tag-category a:hover{       color: #ffffff!important;
    background-color: #db094375;
    text-decoration: none;}
    .reviewsplus-add-link-div .addrev.reviewsplus-add {
    z-index: 9;
    position: relative;
    text-align: right;
    top: -30px;
    margin: 0px 150px 0px 0px;}
    .actions{
    position: absolute;
    top: 0px;
    right: 8px;
    display: inline-grid;}
    
@media screen and (max-width: 768px) {
    .added2cart.price{
            display: inline-block;
    }
    .added2cart.price a{
        color:#fff!important;
    }
   .added2cart button{
       background:#ee1155;
   }
   .product-sidebar .add-cart-t{
        position: fixed;
    bottom: 9px;
    margin: auto;
    z-index: 99999;
    display: block;
    width: 85vw;
    }
    .product-gallery .corner .opt{
   
    top: -45px!important;}
    ul.thumbs .out-of-stock {
 margin-top: 20px!important;
    font-size: 14px;
    width: 140px;
}
    .add2cart.row .stocks {   margin-right: 0px; }
    .sku-9636-stock{margin-top:25px;}
    .reviews ul{margin-top:20px;}
    .cat-product em{display:grid;}
    .s-slider-section .bx-wrapper .bx-pager{bottom: -1em!important;
    z-index: 9999;}
   .features,.cat-product {
    display: grid!important;
    text-align: center;}
    
      .reviewsplus-add-link-div {
       float: none!important;
    margin: auto;
    text-align: center;
          
    }
    .reviewsplus-add-link-div .addrev.reviewsplus-add{margin:auto;}
    .tag-home, .tag-category{    display: flex;
    overflow: scroll;}
   .tag-home a, .tag-category a{
           min-width: max-content;    margin-right: 5px;
   } 
    .c-main-image .mob-cat {
  max-height: 110px;
    margin: 0px;
    padding: 0px 6px;
}
    .best-cat-home .card-title {
        bottom: 25px;
       height: 37px;
       font-size: 12px;
       padding-top: 6px;
       color: #3c3939;
   }
    .bx-wrapper{    margin: 0 auto 0px!important;}
    .homepage-bxslider li img {
    height: 135px!important;
}
    .s-slider-section .bx-wrapper .bx-controls-direction a.bx-next{display:none;}
    /*ul.homepage-bxslider{max-height: 400px!important;}*/
 /*   .cat-thome.row .bx-viewport{height:auto!important;}*/
    ul.thumbs li {
    min-height: 360px!important;
}
    .wish.mob .count{color: #d40941;
    background: #ffffff;} 
    .p-imgt.pay img{width: auto;
    height: 40px;object-fit: contain;}
    .p-imgt p{font-size:12px;}
    .p-imgt .row{padding:0!important;}
   span.city select{
       background: transparent!important;
   }
     span.city select option{color:#000;}
    .social-fixed {
    top: 65%;
}
    .video-container{height: 200px;}
    .no-pr:before{
    position: relative!important;
    bottom: 15px!important;}
    .product-gallery .image#product-core-image{height: 200px;}
    .product-gallery .image img{height: 100%!important;}
    #product-core-image a{height: 100%;}
    .category-name {
    padding-bottom: 5px;
    text-align: center;
}
    
     header .auth li a.not-visited.text {display:none;}
    ul.sorting li a {
    padding: 3px 3px!important;;
}ul.sorting li.selected a {
    background: #db0943!important;;
    color: #fff!important;;
    border-radius: 5px!important;;
}
    .wa-flex-box.adaptive { -webkit-box-orient: vertical; -moz-box-orient: vertical; -o-box-orient: vertical; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; }
    .wa-flex-box.adaptive.space-025 > *:not(:first-child) { margin-top: 0.25rem; }
    .wa-flex-box.adaptive.space-025 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-05 > *:not(:first-child) { margin-top: 0.5rem; }
    .wa-flex-box.adaptive.space-05 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-075 > *:not(:first-child) { margin-top: 0.75rem; }
    .wa-flex-box.adaptive.space-075 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-1 > *:not(:first-child) { margin-top: 1rem; }
    .wa-flex-box.adaptive.space-1 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-2 > *:not(:first-child) { margin-top: 2rem; }
    .wa-flex-box.adaptive.space-2 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-3 > *:not(:first-child) { margin-top: 3rem; }
    .wa-flex-box.adaptive.space-3 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-4 > *:not(:first-child) { margin-top: 4rem; }
    .wa-flex-box.adaptive.space-4 > *:not(:last-child) { margin-right: 0; }
    .wa-flex-box.adaptive.space-5 > *:not(:first-child) { margin-top: 0.5rem; }
    .wa-flex-box.adaptive.space-5 > *:not(:last-child) { margin-right: 0; } .pr-t{
        margin-top:15px;
     
    }
}
.video-container{
width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px #db0943;
    border-radius: 10px;
    min-height: 30vw;}
a.content_toggle{color:#fff!important;text-align:center;}
.content_toggle{
   background: #db0943;
    color: #fff;
    width: 150px;
    margin: auto;
    padding: 5px;
    border-radius: 5px;
    height: auto;
    margin-bottom: 0px;
    top: -41px;
    float: right;
    position: absolute;
    right: 10px;}

ul.sort-mob li{display:block!important;
    text-align: right;
    width: 100%;
    position: relative;
}

/* Buttons
---------- */
.wa-button.gray{
    background: #b30030;
}
.wa-button.blue{
    background: #76c58f;
}
.wa-button.gray:hover{
    background: #b30030;
}
.wa-button.blue:hover{
    background: #76c58f;
}
.bluer{
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
button,
input[type=button],
input[type=submit] {
    text-shadow:none!important;
        color: #fff;
    outline: 0;
    padding: 5px 10px 6px;
    font-size: 1.1em;
    -webkit-appearance: none;
    background: #ee1155;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 10px!important;    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
button:hover,
input[type=button]:hover,
input[type=submit]:hover { cursor: pointer; background: #5aaf75 ; }
button:active,
input[type=button]:active,
input[type=submit]:active { background: #5aaf75; text-shadow: none; box-shadow: none; }
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled { background: #a2a2a2;text-shadow: 0 1px 1px #fff; cursor: pointer; }
input[type=button].small,
input[type=submit].small { font-size: 0.9em; padding: 3px 5px; }
button.large,
input[type=button].large,
input[type=submit].large { font-size: 1.6em; padding: 7px 10px; font-weight: bold; }
button.gray,
input[type=button].gray,
input[type=submit].gray { background: #ededed linear-gradient(to bottom, #ededed 0%,#d1d1d1 100%); }
button.gray:hover,
input[type=button].gray:hover,
input[type=submit].gray:hover { background: #eee; }
button.blue,
input[type=button].blue,
input[type=submit].blue { background: #73b9ff linear-gradient(to bottom, #73b9ff 0%,#0d86ff 100%); border-color: rgba(0,0,0,.2); color: #fff; text-shadow: none; }
button.blue:hover,
input[type=button].blue:hover,
input[type=submit].blue:hover { background: #73b9ff; }

      @keyframes glowing {
      0% {   box-shadow: 0px 0px 0px 1px red}
      100% {  box-shadow: 0px 0px 0px 1px #ffffff}
     
      }
      .no-pr {
      animation: glowing 1300ms infinite;
      padding: 22px 0px!important;
      }
      .wa-tooltip.is-inline.bottom{color: #db0943;}
      .no-pr:before{content: 'К сожалению товар закончился, удалите его из корзины, для оформления заказа. Спасибо!';
  position: absolute;
    bottom: 0px;
    font-size: 12px;
    color: #db0943;
    left: 5px;
    width: 300px;
    max-width: 100%;
      }
   
.tag-home a{
    border-radius: 5px;
    border: solid 1px #db094352;
    padding: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

.tag-home a:hover{
   background: #db0943;
   color: #fff!important;
   text-decoration: none;
}
.tag-h2{
    width: 100%;
    text-align: center;
    color: #383637;
    padding: 15px 0px 15px;
    border-bottom: solid 1px #d0cece;
    border-top: solid 1px #d0cece;
    padding-bottom: 15px;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 20px;
}
/* Navigation menus
------------------- */

ul.menu-v { margin: 0; padding: 10px; font-family: 'Helvetica Neue', 'Trebuchet MS', Arial, sans-serif; background: #3e3e3e;
    border-radius: 20px;}
ul.menu-v li { list-style: none; padding: 0; line-height: 1.1em; border-bottom: 1px solid rgba(0,0,0,0.1); }
ul.menu-v li a { padding: 13px 30px 13px 16px; display: block; text-decoration: none; }
ul.menu-v li.collapsible { background: url('img/rarr.png') no-repeat; background-position: right center; background-size: 32px 16px; }
ul.menu-v.bottom-padded { margin-bottom: 20px; }
ul.menu-v li .count { float: right; color: #aaa; }

ul.menu-v li .count i.icon16 { margin: 0 -5px; }
header ul.flyout-nav li .flyout ul.menu-v li.collapsible {
        background: url(/wa-data/public/site/up.png) no-repeat!important;
    background-position: 280px center!important;
    background-size: 10px 10px!important;;
}

ul.menu-h { margin: 0; padding: 0; }
ul.menu-h li { list-style: none; display: inline-block; padding: 0 10px 0 0; line-height: 1.3em; display:block\9; float:left\9; }
ul.menu-h li a { display: inline-block; padding: 13px 16px 13px 16px; display:block\9; float:left\9; text-decoration: none; }

ul.tree { list-style: none; padding-left: 0; }
ul.tree li { border: none; }
ul.tree li a { padding: 5px 16px; display: block; text-decoration: none;}
ul.tree li.selected a { background: transparent; }
ul.tree ul { padding-left: 20px; list-style: none; }
ul.tree ul a { padding: 3px 6px; font-size: 90%; }

.paging-nav { text-align: center; }
.paging-nav ul li { display: inline-block; list-style: none; margin-right: 10px; }
.paging-nav ul li a { padding: 8px 10px; }
.paging-nav ul li.selected a { background: #eee; }

/* Sign up & Login forms
------------------------ */

.wa-auth-adapters ul { padding: 0; min-height: 16px; }
.wa-auth-adapters ul li { list-style: none; float: left; padding: 0 15px 0 0; }
.wa-auth-adapters ul li a,
.wa-auth-adapters ul li span { display: block; padding: 0px 5px; }
.wa-auth-adapters ul li a img,
.wa-auth-adapters ul li span img { position: relative; top: 4px; margin-right: 3px; }
.wa-auth-adapters p { color: #888; font-size: 0.9em; width: 80%; }
.wa-auth-adapters.wa-connect { margin-top: 20px; }

.wa-form { float: left; margin: 10px 0; overflow: visible; }
.wa-form .wa-field { clear: left; margin: 0; padding-top: 3px; }
.wa-form .wa-field .wa-name { float: left; width: 155px; padding-top: 0.05em; padding-bottom: 10px; font-size: 0.95em; color: #888; }
.wa-form .wa-field.wa-separator { height: 10px; }
.wa-form .wa-field .wa-value { margin-left: 180px; margin-bottom: 5px; position: relative; }
.wa-form .wa-field .wa-value input.wa-error { border: 2px solid red; }
.wa-form .wa-field .wa-value .wa-error-msg { font-size: 0.9em; color: red; display: block; }
.wa-form .wa-field .wa-value input[type="text"],
.wa-form .wa-field .wa-value input[type="email"],
.wa-form .wa-field .wa-value input[type="password"] { width: 30%; min-width: 260px;  margin:0;}
.wa-form .wa-field .wa-value textarea { min-width: 300px; height: 70px; }
.wa-form .wa-field .wa-value input.wa-captcha-input { width: 100px; min-width: 0; }
.wa-form .wa-field .wa-value label { display: block; }
.wa-form .wa-field .wa-value .wa-captcha img { margin-left: 0; }
.wa-form .wa-field .wa-value .errormsg { margin-left: 0; }
.wa-form .wa-field .wa-value.wa-submit { margin-top: 10px; }
.wa-form .wa-field .wa-value p label { display: block; margin: 0; }
.wa-form .wa-field .wa-value p { line-height: 1.6em; margin-bottom: 23px; position: relative; }
.wa-form .wa-field .wa-value p span { color: #777; font-size: 0.9em; display: block; }
.wa-form .wa-field .wa-value p i.icon16 { float: left; left: -20px; margin-top: 2px; position: absolute; }
.wa-form .wa-field .wa-value p input { display: block; margin-bottom: 2px; }
.wa-form .wa-field .wa-value p input[type="radio"],
.wa-form .wa-field .wa-value p input[type="checkbox"] { display: inline; }
.wa-form .wa-field .wa-value p .field.wa-required span:after { content: " *"; color: #faa; }
.wa-form .wa-field.wa-required .wa-name:after { content: " *"; color: #faa; }
.wa-signup-form .wa-form .wa-field.wa-field-email .wa-value input { min-width: 300px; }
.wa-signup-form .wa-form .wa-field.wa-field-password .wa-value input,
.wa-signup-form .wa-form .wa-field.wa-field-password_confirm .wa-value input { min-width: 200px; width: 200px; }

.wa-captcha { padding: 7px 0 10px; }
.wa-captcha p { margin: 0; }
.wa-captcha strong { font-size: 1.2em; }
.wa-captcha p img { float: left !important; margin-right: 5px; margin-top: -8px; }
.wa-captcha .wa-captcha-refresh { font-size: 0.8em; text-decoration: underline; color: #aaa; }
.wa-captcha .wa-captcha-input { display: inline !important; }
.wa-captcha .errormsg { display: inline-block; margin-left: 10px; display:block\9; float:left\9; }

input.error, textarea.error { border: 2px solid red; }
.errormsg { color: red; margin-left: 170px; display: block; }

/* Multi-column layout
---------------------- */

.row {padding: 0; }
.row.no-border { border: none; }
.col { float: left; }
.col.w1 { width: 6%; }
.col.w2 { width: 12%; }
.col.w3 { width: 18%; }
.col.w4 { width: 24%; }
.col.w5 { width: 30%; }
.col.w6 { width: 36%; }
.col.w7 { width: 42%; }
.col.w8 { width: 48%; }
.col.w9 { width: 54%; }
.col.w10 { width: 60%; }
.col.w11 { width: 66%; }
.col.w12 { width: 72%; }
.col.w13 { width: 78%; }
.col.w14 { width: 84%; }
.col.w15 { width: 90%; }
.col.w16 { width: 96%; }

/* Tables
--------- */

table { border-collapse: collapse; border-spacing: 0; }
table th { color: #fff; padding: 5px 10px 7px; }
table td { padding: 10px; border: 1px solid rgba(0,0,0,0.1); }
table.not-bordered td { border: none; }

table.lined { margin-top: 25px; width: 100%; border-spacing:0; border-collapse:collapse; }
table.lined th { padding-left: 7px; padding-right: 7px; }
table.lined td { padding: 15px 7px; border-bottom: 1px solid #ddd; }
table.lined td.min-width { width: 1%; }
table.lined td p { margin: 0; }
table.lined td input.numerical { width: 50px; margin-right: 5px; text-align: right; }
table.lined tr.no-border td { border: none; }
table.lined tr.thin td { padding-top: 13px; padding-bottom: 0; }
table.lined tr.service td { padding-top: 5px; padding-bottom: 5px; padding-left: 25px; font-size: 0.8em; color: #555; }

/* Customized search input look
------------------------------- */
 .content img { max-width: 100%; }
.search {  }
.search-wrapper { position: relative; width: 100%; height: 30px; padding: 0 10px 0 10px; float: left; border: 0; border-radius: 3px; -webkit-appearance: none; margin-right: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; background: #fff; }
.search input { width: 100%; float: left; height: 27px; padding-top: 0; margin-top: 1px; background: transparent; border: 0; -webkit-appearance: none; margin-right: 0; padding-left: 0; padding-right: 32px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.search input:focus { outline: 0; }

.search input::-webkit-input-placeholder { color: #aaa; font-weight: normal; }
.search input:-moz-placeholder,
.search input::-moz-placeholder { color: #aaa; font-weight: normal; }
.search input:-ms-input-placeholder { color: #aaa; font-weight: normal; }

.search button {
    min-width: 32px;
    overflow: visible;
    position: absolute;
    right: 0px;
    float: left;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
    height: 28px;
    color: #fff;
    background-color: transparent;
    background-image: url(img/search16black.png);
    background-repeat: no-repeat;
    background-position: 8px 6px;
    background-size: 16px 16px;
    border-radius: 0px 3px 3px 0px!important;
    font-size: 1.0em; }
.search button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */ border: 0; padding: 0; }
.wa-signup-url a{
        color: #db0943!important;
}
.apps li{
    list-style: none;    
}
.apps {padding: 0;}
/* Header: global navigation
---------------------------- */

header.globalheader { position: relative; }
header a { text-decoration: none; }

header #globalnav { background: #000; }
header .slogan {     padding: 0px 5px;
    margin: 0 0px 0 0px;
    font-size: 0.6em;}
header .slogan a { color: #eee !important; }
header .slogan span { display: block;    margin: 5px;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;}
header h2 a:hover { color: #eea !important; }

header .apps { padding: 6px 0; margin: 0;display:none; }
header .apps li { display: inline-block; vertical-align: top; margin: 1px 21px 1px 0; list-style: none; transform: translate(0,1px); }
header .apps li a { display: block; padding: 12px; margin: -12px; color: #999; font-size: 1.1em; }
header .apps li a:hover { color: #eea; }
header .apps li.selected a { color: #fff; background: #000; }

header .auth {    display: contents;
    vertical-align: top;
    margin: 3px 5px 0px;
    padding: 0 0 0 0px;
    float: right;
    text-align: center;}
header .auth li { display: inline-block; vertical-align: top; list-style: none;color: #db0943;  }
header .auth li a { font-size: 0.9em; padding: 5px 0px; color: #db0943; }
header .auth li a:hover { color: #eea !important; }
header .auth li a:visited {color: #db0943; }
.clicklite_active{
        width: 800px!important; ;
    max-width: 100%;
    margin: auto;
    display: block;    right: 0;
}

header .auth li .fa-user{
    font-size:30px;
}
.dekstop .cart:hover i{color:#e62c5f;}
header .cart { display: inline-block; vertical-align: top;
    border-radius: 15px;}
header .cart .cart-summary { white-space: nowrap; }
header .cart a { padding: 5px;
    display: block;
    color: #fff;
    font-size: 1.2em;
    border: none; }
header .cart a strong { color: #ff7; }
header .cart a:hover { background: rgba(255,255,255,0.4) !important;     text-decoration: none;}
header .cart .cart-just-added { position: absolute; top: 100%; left: 0; width: 100%; box-sizing: border-box; display: none; padding: 9px 18px; font-size: 0.9em; }
header .cart a.cart-to-checkout { display: none !important; text-align: center; font-weight: bold; padding: 11px 18px; color: #006bd8; font-size: 1.1em; }
header .cart a.cart-to-checkout:hover { background: #fff !important; }
header .cart i.cart-icon { background-repeat:no-repeat; height:24px; width:24px; display: block; float: left; text-indent:-9999px; text-decoration:none!important; background-image: url('img/icons.png'); background-size: 260px 160px; background-position: -216px -50px; margin: -3px 10px 0 0; }
header .cart a .ruble { line-height: 1em; }

header .cart.empty a { color: #006bd8; }
header .cart.empty a:hover i {     color: #f91554!important; }
header .cart.empty a:visited,
header .cart.empty a strong { color: #fff; }
header .cart.empty i.cart-icon { background-position: -192px -50px; }

header .cart.fixed { position: fixed; top: 0; right: 10px; z-index: 999; padding: 0; }
header .cart.fixed a { text-align: center; background: rgb(255 255 255 / 51%); }
header .cart.fixed a:hover {    color: #f91554!important; }
header .cart.fixed .cart-just-added { display: block; background: #fafaf1; }
header .cart.fixed a.cart-to-checkout { display: block; border: none; background: #fff; box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.2); }
header .cart.fixed a.cart-to-checkout:hover { color: red !important; }

header #mobile-nav-toggle { /* mobile only */ 
display: none; background:#d60941 url('/wa-data/public/site/menu.png') no-repeat center center; border: none; padding: 5px; background-size: 35px 30px; width: 37px; height: 31px; }

header #globalnav.light { background: #fff; }
header #globalnav.light h2 a { color: #000 !important; }
header #globalnav.light h2 a:hover { color: red !important; }
header #globalnav.light .apps li a { color: #888; }ь
header #globalnav.light .apps li a:hover { color: red !important; }
header #globalnav.light .apps li.selected a { color: #444; background: transparent; }
header #globalnav.light .auth li a:hover { color: red !important; }
header #globalnav.light .cart a { 
    border-radius: 15px;height: auto; }
header #globalnav.light .cart a:hover {     background: #c0063e !important;
    border-radius: 15px;text-decoration: none; }
header #globalnav.light .cart a strong { color: #fff; }
header #globalnav.light .cart.empty a { background: transparent !important; }
header #globalnav.light .cart.empty a:hover { background: #c0063e !important; border-radius: 15px;    text-decoration: none;}
header #globalnav.light .cart.empty a  { color: #fff !important; }
header #globalnav.light.andgray {     background: url(/wa-data/public/site/pexels-photo-959079-min.jpeg);
    background-size: cover;
    background-position: center 65%;
    padding: 0px 0px 40px 0px;}

/* Header: app navigation
------------------------- */

header .appnav { padding-top: 0px; padding-bottom: 0px; min-height: 60px;background: #db0943; }

.search {       padding: 14px;
    margin-left: 20px;
    margin: auto;
    text-align: center;
    position: relative;
    display: block;
    width: 500px;
    background: #db0943;
    height: 60px;
    max-width: 100%;
    border-radius: 0px 0px 15px 15px;}
    
    header ul.flyout-nav li.collapsible img{
        border-radius:10px;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;}


header ul.flyout-nav li img{
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;}

/*header ul.flyout-nav li.collapsible:hover img {*/
/* -webkit-transform: translate(0,-5px);*/
/*-moz-transform: translate(0,-5px);*/
/*-o-transform: translate(0,-5px);*/
/*}*/
/*header ul.flyout-nav li:hover img{*/
/* -webkit-transform: translate(0,-5px);*/
/*-moz-transform: translate(0,-5px);*/
/*-o-transform: translate(0,-5px);*/
/*}*/
header .pages { padding: 0; margin: 0; }
header .pages li { display: inline-block; list-style: none; margin-right: 20px; margin-left: 20px; }
header .pages li a { display: block; color: #fff; text-transform: uppercase; padding: 5px 7px; margin-right: 0px; font-size: 1.1em; font-weight: bold; }
header .pages li a:hover { color: #ffa !important; }
header .pages li.selected a { font-weight: bold; color: #ff7; border-radius: 3px; background: transparent; }

header ul.flyout-nav li.collapsible { background: url('img/darr.png') no-repeat; background-position: right center; background-size: 16px 16px; }
header ul.flyout-nav li.collapsible a { padding-right: 20px; }
header ul.flyout-nav .flyout { display: none; position: absolute; top: 55%; left: 0; right: 0; box-shadow: 0 5px 20px rgba(0,0,0,0.2); min-height: 150px; padding: 15px 30px; text-align: left; z-index: 101; background: #ffffff; }
header ul.flyout-nav li.submenu-is-shown .flyout { display: block }

header ul.flyout-nav li .flyout a { color: inherit; text-transform: none; }
header ul.flyout-nav li .flyout a:hover { color: red !important; }
header ul.flyout-nav li .flyout ul.menu-v li { border: none; vertical-align: top; text-align: left; margin: 0 0px 0px 0; position:relative;}
header ul.flyout-nav li .flyout ul.menu-v li.collapsible { background: none; }
header ul.flyout-nav li .flyout ul.menu-v li a {  padding-left: 0; font-size: 1em;font-weight: 100;    line-height: 1.4; color:#fff!important;}
header ul.flyout-nav li .flyout ul.menu-v li ul.menu-v li { display: block; margin: 0; font-size: 0.9em; }
header ul.flyout-nav li .flyout ul.menu-v li ul.menu-v li a { font-weight: normal; }
header ul.flyout-nav li .flyout ul.menu-v li > ul.menu-v {
    display: none;
    position: absolute;
    right: 0;
   background: #3a3a3a;
    z-index: 1;
    padding: 5px;
    box-shadow: 2px 3px 3px 0px #00000047;
    border-radius: 15px;
}
header ul.flyout-nav li.collapsible:hover > header ul.flyout-nav .flyout{display:block;}
header ul.flyout-nav .flyout ul.menu-v li:hover > ul.menu-v {
    display:block;
}
header ul.flyout-nav li .flyout ul.menu-v li ul.menu-v li ul { display: none; }
header ul.flyout-nav li .flyout .departments ul.menu-v li { width: 300px; }
header ul.flyout-nav li .flyout .tags { font-size: 120%; }
header ul.flyout-nav li .flyout ul.menu-v.brands { text-align: center; }
header ul.flyout-nav li .flyout ul.menu-v.brands a { font-size: 1.2em; font-weight: normal; }

body.is-shadow-shown { position: relative; }
body.is-shadow-shown:after { display: block; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.25); z-index: 99;}
body.is-shadow-shown .globalheader { position: relative; z-index: 100; }
.content_block{position: relative;
    top: -15px;width:100%;
}

.pr-home img{
     border-radius: 20%;
   filter: opacity(0.8);
    width: 90px;
}
.pr-home img:hover{
    filter: opacity(1);
}
.pr-home p{
    font-size: 20px;
    color: #3e3b3b;}
.category-name{
     text-align: center;
}
a.mob-logo{position: relative;
    margin-top: 6px;
    display: inline-block;
    margin-left: 0px;}
    a.mob-logo img{width: 110px;
        border-radius: 7px!important;}
/* Main
------- */
.reviews-count-text{    
    text-align: center;
    font-weight: 100;
    color: #545454;
    text-transform: uppercase;}
main.maincontent { display: block; clear: both; margin: 0; background: rgba(255, 255, 255, 0.32); }
main.maincontent .container { padding-top: 0px; padding-bottom: 0px; }

.sidebar { padding:10px;float: right; width: 240px; box-shadow: 0px 0px 10px rgb(215, 215, 215);}
.content { background: #fff; position: relative; min-height: 250px;}
.content.with-sidebar { margin-right: 290px; }
.sub-links.row{
    margin: 5px;
}
.sub-links { margin-bottom: 20px; padding-left: 0;    text-align: center;width:100%;
    display: block; }
.sub-links div {   list-style: none;
    line-height: 1.5em;
    font-size: 14px;
    display: inline-block;
    border: solid 1px #db0943;
    padding: 5px;    float: left;
    border-radius: 10px; min-height: 155px;}
    .sub-links div img {  min-height: 80px; width:100%;    border-radius: 10px;    max-height: 100px;
    height: auto;
    object-fit: cover;-o-object-fit:cover;}
.sub-links div a { text-decoration: none;    }
.sub-links div:hover{background: #db0943;}.sub-links div:hover a{color: #fff;}
.likebox { margin-bottom: 25px; overflow: hidden; }
.connect.inline .likebox { width: 260px; display: inline-block; vertical-align: top; margin-right: 50px; }

.leadbox { }
.leadbox h4 { font-size: 1.8em; line-height: 1.3em; }

.olives { background: #f3f3f3; padding: 20px; margin-bottom: 40px; }
.olives-left { background: transparent url('img/olives-left.png') no-repeat center left; background-size: 50px 105px; min-height: 105px; }
.olives-right { background: transparent url('img/olives-right.png') no-repeat center right; background-size: 50px 105px; min-height: 105px; }
.olives-content { margin: 0 80px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Helvetica Neue', Arial, sans-serif; text-align: center; font-size: 1.1em; line-height: 1.4em; padding: 20px; }

/* Footer
--------- */

footer.globalfooter { clear: both; background: #3e3e3e; z-index: 999; padding-top: 25px; min-height: 40px; color: #888;     position: relative;
}
footer a,
footer a:visited { color: #888;  }
footer a:hover{
    color:#fff;
}
.footer-block { }
.footer-block.mailer-subscribe { max-width: 500px; width: auto; overflow-x: visible; }
.footer-block a,
.footer-block strong { display: block; padding: 1px 0; }
.footer-block a.top { font-weight: bold; margin-bottom: 10px; color: #888; }
.footer-block.contact-us { }
.footer-block.contact-us .social { margin: auto;display: inline-flex;}
.footer-block.contact-us .social a { display: inline; margin-right: 5px; }

.appfooter { position: relative; text-align: center; padding: 20px; color: #aaa; border-top: 1px solid #ddd; min-height: 1.5em; margin-top: 20px; }
.appfooter .copyright { position: absolute; left: 0; }
.appfooter .poweredby { position: absolute; right: 0; }
.appfooter .dots { font-size: 0.8em; text-decoration: none; display: inline-block; width: 54px; height: 9px; background: url("img/dots/all-dots-default-order@2x.png") no-repeat 0 3px; padding-top: 3px; margin-right: 10px; background-size: 54px 9px; }

.s-subscribe-section { position: relative; }
.s-subscribe-section.is-extended .s-hidden { display: block; }
.s-subscribe-section .s-form-desc { margin: 0.5em 0 0; font-size: 13px; line-height: 1.2em; color: #888; }
.s-subscribe-section .s-hidden { display: none; position: absolute; top: 100%; left: 0; width: 340px; padding: 1em; background: #fff; z-index: 1; -webkit-box-shadow: 0 0 16px rgba(0,0,0,.2); box-shadow: 0 0 16px rgba(0,0,0,.15); border-radius: 3px; }
.s-subscribe-section .s-hidden .wa-captcha { margin: 0; padding: 0; }
.s-subscribe-section .s-hidden .wa-captcha p { margin: .5em 0 0; }
.s-subscribe-section .s-hidden .wa-captcha p:first-child { margin-top: 0; }
.s-subscribe-section .s-hidden .wa-captcha p > * { margin: 0 4px 0 0; vertical-align: middle; display: inline-block; float: none !important; }
.s-subscribe-section .s-hidden .wa-captcha p > *:last-child { margin-right: 0; }
.s-subscribe-section .s-hidden .wa-captcha p .wa-captcha-img { margin: 0; display: inline-block; }
.s-subscribe-section .s-hidden .wa-captcha p a { display: inline; }

/* 16x16 Icons
-------------- */

i.icon16 { background-repeat:no-repeat; height:16px; width:16px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("img/icons.png"); background-size: 260px 160px /* 50% of the original size for auto @2x optimization */; }
* i.icon16 { text-decoration:none!important; vertical-align:top; margin: 0.3em 0.25em 0 0; }
.icon16.rss { background-position: -16px 0; }
.icon16.facebook { background-position: -32px 0; }
.icon16.twitter { background-position: -48px 0; }
.icon16.vk { background-position: -64px 0; }
.icon16.gplus { background-position: -80px 0; }
.icon16.pinterest { background-position: -96px 0; }
.icon16.youtube { background-position: -112px 0; }
.icon16.instagram { background-position: -128px 0; }

.icon16.userpic20 { background-position: -2px -2px; border-radius: 50%; background-size: 20px 20px; }
.icon16.color { border-radius: 50%; border: 1px solid rgba(0,0,0,0.2); width: 12px; height: 12px; background-image: none; }

.icon16.like { background-position:0 -16px; margin-top: 0; }
.icon16.star,
.icon16.star-full { background-position:-16px -16px; }
.icon16.star-half { background-position:-32px -16px; }
.icon16.star-empty { background-position:-48px -16px; }
.icon16.star-hover { background-position:-64px -16px; }

.icon16.remove { background-position:-96px -16px; }
.icon16.saved { background-position:-112px -16px; }
.icon16.stock-red { background-position:-128px -16px; }
.icon16.stock-yellow { background-position:-144px -16px; }
.icon16.stock-green { background-position:-160px -16px; }
.icon16.stock-transparent { background-position:-176px -16px; }
.icon16.checkmark { background-position:-192px -16px; }
.icon16.compare { background-position:-208px -16px; }
.icon16.compare.active { background-position:-224px -16px; }

.icon16.uarr { background: url('img/uarr.png'); background-position: 0 0; background-size: 16px 16px; }

.icon16.loading { background-image: url('img/loading16.gif'); background-position: 0 0; background-size: 16px 16px; }
.icon24.loading { background-image: url('img/loading.gif'); background-size: 24px 24px; height:24px; width:24px; display:inline-block; }
.icon32.loading { background-image: url('img/loading.gif'); background-size: 32px 32px; height:32px; width:32px; display:inline-block; }

/* 10x10 Icons
-------------- */

i.icon10 { background-repeat:no-repeat; height:10px; width:10px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("img/icons.png"); background-size: contain;
    background-position: bottom; }
* i.icon10 { text-decoration:none!important; vertical-align:top; margin: 0.3em 0.1em 0 0; }
.icon10.darr { background-image: url('img/darr.png'); background-size: contain;
    background-position: bottom; }

.icon10.star,
.icon10.star-full { background-position: -16px -16px;
    background-size: 250px 150px /* 50% of the original size for auto @2x optimization */;
    margin: 0 2px;
    padding: 7px; }
.icon10.star-half { background-position:-10px -100px; }
.icon10.star-empty { background-position:-20px -100px; }

/* 24x24 Icons
-------------- */
i.icon24.instagram { background-repeat:no-repeat; height:35px; width:35px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("/wa-data/public/site/instagram.png");
    background-size: contain;
    background-position: center;filter: brightness(0.5);
    -webkit-filter: brightness(0.5);}
i.icon24.vk { background-repeat:no-repeat; height:35px; width:35px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("/wa-data/public/site/white-vk.png"); 
    background-size: contain;
    background-position: center;filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
    
}
* i.icon16 { text-decoration: none!important;
    vertical-align: middle;
    margin: 0em 0.2em 0.1em 0.2em;}
.icon24.rss { background-position: 0 -50px; }
.icon24.facebook { background-position: -24px -50px; }
.icon24.twitter { background-position: -48px -50px; }
.icon24.vk { background-position: -72px -50px; }
.icon24.instagram { background-position: -96px -50px; }
.icon24.youtube { background-position: -120px -50px; }
.icon24.pinterest { background-position: -144px -50px; }
.icon24.gplus { background-position: -168px -50px; }

/* My account (hide core app nav elements)
------------------------------------------ */

html.my ul.menu-h li a { padding: 5px 7px; }
html.my ul.menu-h li.selected a { color: #fff; }

html.my .sidebar { display: none; }

/* Custom styling
----------------- */

.color_scheme_yellow header.globalheader { background: #fb0; }
.color_scheme_green header.globalheader { background: #6fb541; }
.color_scheme_blue header.globalheader { background: #4e81cc; }
.color_scheme_purple header.globalheader { background: #9a81b3; }
.color_scheme_gray header.globalheader { background: #9c9c9c; }
.color_scheme_pink header.globalheader { background: #e871b1; }
.color_scheme_cyan header.globalheader { background: #3ac1bf; }
.color_scheme_lime header.globalheader { background: #b5ce10; }
.color_scheme_brown header.globalheader { background: #a45e1a; }

.color_scheme_white header.globalheader { background: #fff;}
.color_scheme_white header.globalheader .appnav { border-top: 0px solid rgba(0,0,0,0.13); margin-top: 0px; padding-bottom: 0px; }
.color_scheme_white header .pages li a { color: #fff;    text-transform: unset; }
.color_scheme_white header .pages li a:hover { color: #fff !important;text-decoration: none; }
.color_scheme_white header ul.flyout-nav li .flyout { box-shadow: none; }
.color_scheme_white .search-wrapper { border: 1px solid #ccc; }
.color_scheme_white .search input { margin-top: 0; }

html.font_size_12,
html.font_size_12 body { font-size: 12px; }
html.font_size_13,
html.font_size_13 body { font-size: 13px; }
html.font_size_14,
html.font_size_14 body { font-size: 14px; }
html.font_size_15,
html.font_size_15 body { font-size: 15px; }
html.font_size_16,
html.font_size_16 body { font-size: 16px; }

.font_family_trebuchet,
.font_family_trebuchet * { font-family: "Trebuchet MS", sans-serif; }
.font_family_verdana,
.font_family_verdana * { font-family: Verdana, sans-serif; }
.font_family_georgia,
.font_family_georgia * { font-family: Georgia, Times, serif; }
.font_family_google_opensans,
.font_family_google_opensans * { font-family: 'Open Sans', sans-serif; }
.font_family_google_ptsans,
.font_family_google_ptsans * { font-family: 'PT Sans', sans-serif; }
.font_family_google_ptserif,
.font_family_google_ptserif * { font-family: 'PT Serif', sans-serif; }
.font_family_google_roboto,
.font_family_google_roboto * { font-family: 'Roboto', sans-serif; }
.font_family_google_lora,
.font_family_google_lora * { font-family: 'Lora', sans-serif; }
.font_family_google_ubuntu,
.font_family_google_ubuntu * { font-family: 'Ubuntu', sans-serif; }

.font_family_google_fira,
.font_family_google_fira * { font-family: 'Fira Sans', sans-serif; }
.font_family_google_fira b,
.font_family_google_fira strong,
.font_family_google_fira .bold { font-weight: 500; }
.font_family_google_fira header .pages li a { font-weight: 500; padding-top: 9px; }
/*.font_family_google_fira header h2 { padding-top: 12px; }*/
.font_family_google_fira ul.thumbs li { font-size: 1em; }
.font_family_google_fira ul.thumbs li h5 { font-weight: 200; }
.font_family_google_fira input[type="button"],
.font_family_google_fira input[type="submit"] { padding-bottom: 5px; }
.font_family_google_fira .search input { padding-top: 3px; }
/*.font_family_google_fira header .auth { margin-top: 13px; }*/
.font_family_google_fira header .auth i.userpic20 { margin-top: 1px; }
.font_family_google_fira header .cart a strong { display: inline-block; margin-top: 1px;}
.font_family_google_fira .staff { position: relative; top: -2px; padding-bottom: 0 !important; }
.font_family_google_fira .add2cart input[type="submit"]  { padding-bottom: 4px;
    width: 200px;
    padding: 10px;
}}

.font_family_google_fira .slider a h3 { font-size: 2.8em; }
.font_family_google_fira .stocks .icon16 { margin-top: 0; }
.font_family_google_fira .credentials a,
.font_family_google_fira .credentials span { vertical-align: top; }
.font_family_google_fira .credentials { padding-top: 2px; }
.font_family_google_fira .credentials .userpic,
.font_family_google_fira .comments .credentials .userpic { margin-top: -2px; }
.font_family_google_fira .comments .actions a { margin-right: 0; }

.font_family_google_ptsansandserif,
.font_family_google_ptsansandserif * { font-family: 'PT Sans Caption', sans-serif; }
.font_family_google_ptsansandserif p,
.font_family_google_ptsansandserif .olives-content,
.font_family_google_ptsansandserif ul.thumbs li span.summary,
.font_family_google_ptsansandserif table.features td { font-family: 'PT Serif', sans-serif; font-size: 110%; }
.font_family_google_ptsansandserif p a { font-family: 'PT Serif'; }
.font_family_google_ptsansandserif ul.thumbs li h5,
.font_family_google_ptsansandserif ul.thumbs.mini li h5 { font-size: 120%; }
/* Mobile
--------- */
.ssearch-wrapper .ssearch-box{
    border: 1px solid #dadada!important;    border-radius: 10px!important;
}
.nav-negative {    display: none;
    position: absolute;
    left: 0;
    padding-left: 0;
    margin: -1px 0 0;
        background: rgba(255, 255, 255, 0.94);
    z-index: 999999;
    width: 100%;
    top: 100px; }
    .nav-negative img{max-width:40px;max-width: 35px;
    filter: brightness(0.5);-webkit-filter: brightness(0.5);
    margin-right: 10px;}
.nav-negative li { list-style: none; display: block; border-top: 1px solid #ccc; }
.nav-negative li a { font-size: 1.2em; text-decoration: none; color: #000 !important; display: block; padding: 15px 26px 15px 16px; }
.nav-negative li.selected a { color: #fff !important; text-shadow: 0 1px 0 #000; background: transparent; font-weight: bold; }
.nav-negative.auth li { background: #666; }
.nav-negative.search { padding: 0; background: #fff; height: 52px; }
.nav-negative.search .search-wrapper { height: 52px; border-radius: 0; border: none; }
.nav-negative.search input { height: 52px; font-size: 1.3em; padding-left: 5px; margin-top: 4px; padding-right: 52px; }
.nav-negative.search button { background-size: 24px 24px; height: 52px; width: 52px; background-position: 3px 15px; }

/* TABLET
========= */

@media screen and (min-width: 760px) and (max-width: 1024px) {
.sty select {
    
    font-size: 11px;
}
    body { -webkit-text-size-adjust: 100%; }

    .container { padding: 0 25px; }
    .sidebar { width: 200px; }
    .content.with-sidebar { margin-right: 220px; }

    header h2 { margin-right: 10px; }
    header .apps li { margin: 2px 10px 2px 0; }
   

    .color_scheme_white header.globalheader .appnav { padding-left: 0; padding-right: 0; margin-left: 0px; margin-right: 0px; }

    /* @media screen and (orientation : portrait) { */
    @media screen and (max-width: 850px) {


    }

}


/* MOBILE
========= */

@media screen and (max-width: 768px) {

    header .cart.fixed a{background: transparent;}
    .cart-summary i{    font-size: 1.5em;}
#page ul{
    padding:15px;
}

    
    body { -webkit-text-size-adjust: 100%;  }

    h1 { font-size: 1.6em!important; }
    h2 { font-size: 1.5em!important; }
    h3 { font-size: 1.3em!important; }

    .container { min-width: 0; padding: 0; }
    .breadcrumbs { font-size: 1.0em; line-height: 1.5em; margin-bottom: 0px; }

    .sidebar { float: none !important; width: auto !important; padding: 0 !important;display:none; }
    .content { padding: 0px;}
    .content.with-sidebar { margin-left: 0 !important; margin-right: 0 !important; }

    .nav-negative { display: block; /* mobile-only slide-out navigation */ }

    header #globalnav { position: relative; top: 0; left: 0; right: 0; z-index: 9999;  padding: 0 !important; }
    header #globalnav.light { box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    header #globalnav.light .cart.empty a {  }
    .color_scheme_white header #globalnav.light {background: #272727;    background-size: cover;background-repeat: no-repeat;
    background-position: center 0px;
 box-shadow: none; border-bottom: 1px solid rgba(0,0,0,0.13);     box-shadow: 0px 0px 10px -3px;}
    .color_scheme_white header #globalnav.light.andgray { border-bottom: none; }
    #globalnav .container{
        max-width: 100%!important;

        background:rgba(255, 255, 255, 0.41);
    }
  
header .apps{
    display:block;
}
.nav-negative li.selected a{
        color: #d40941!important;
    text-shadow: none;
}
#globalnav .row{
    padding-top:0px;
        padding-bottom: 0;
}
.m-phone strong, .clock{color:#fff;font-size:14px;}

.logotyp{
    margin-top: 0px!important;
}
    header h2 { 
            position: relative;
    top: 7px;
    left: 25px;
    z-index: 9999;
    font-weight: normal !important;
    padding: 0 !important;
    display: block !important; }
    header h2 a img { }
    header h2 a span { display: inline; }
    header .appnav {padding-top: 0px; }
    header #mobile-nav-toggle {
          display: block;
    outline: 0;
    position: absolute;
    top: 13px;
    right: 0;
    left: 5px;
    z-index: 9900000;
    box-shadow: none!important;}
    header .apps { display: none; }
    header .pages { margin: 0; padding: 10px 0; }
    header .auth {display: block;}
    header .auth li a {     font-size: 1.8em;
    margin-right: 5px;
    margin-left: 10px; }
    header .auth li a i.icon16 { margin-top: 0; }
    header .apps.unfolded { display: block; }
    header .cart,
    header .cart.fixed {
    position: relative;
    margin: auto;
    text-align: center;
    right: 0;float:right; }
    header .cart a { height: 1em; padding: 16px 9px 15px 17px; }
  
    header .cart a strong {}
    header .cart #cart-content { display: none; }

    header ul.flyout-nav li.submenu-is-shown > a { background: rgba(0,0,0,.33); border-radius: 3px; }

    .content img { max-width: 100%; }

    
    .search-wrapper { padding-right: 0; }

    footer.globalfooter { top: 0; padding-top: 10px;text-align:center; }
    .footer-block { width: 120px;  }
    .footer-block#copyright { width: auto; display: block; }
    .footer-block a { margin-bottom: 3px; }
    .footer-note { margin: 10px 15px; }
    .appfooter { padding: 10px 15px; }
    .appfooter .copyright,
    .appfooter .poweredby { position: static; padding: 10px; }

    .wa-form .wa-field .wa-name { float: none; padding-bottom: 0; }
    .wa-form .wa-field .wa-value { margin-left: 0; }
    .wa-form .wa-field .wa-value p span { display: block; }
    .wa-form .wa-field .wa-value input[type="text"],
    .wa-form .wa-field .wa-value input[type="email"],
    .wa-form .wa-field .wa-value input[type="password"] { min-width: 200px; }
    .wa-auth-adapters p { width: 80%; }
    .wa-captcha input.wa-captcha-input { width: 100px; }
    .errormsg { margin-left: 0; }

    table td { padding: 5px; }
    html.my ul.menu-h li a { padding: 10px; }
    .comment-form-fields label { float: left; }
    .sub-links li { font-size: 110%; margin-bottom: 5px; }
    .sidebar .likebox { display: none; }
    .connect.inline .likebox { display: block; width: auto; }

    .wa-signup-form .wa-form .wa-field.wa-field-email .wa-value input { min-width: 240px; }
    .wa-signup-form .wa-form .wa-field.wa-field-password .wa-value input,
    .wa-signup-form .wa-form .wa-field.wa-field-password_confirm .wa-value input { min-width: 160px; width: 160px; }

    .olives { padding: 10px; }
    .olives-left,
    .olives-right { background-size: 25px auto; min-height: 55px; }
    .olives-content { margin: 0 20px; font-size: 0.9em; padding: 10px; }

    .footer-block.contact-us { max-width: 999px; display: block; width: auto; }


}

/* WIDE
========= */

@media screen and (min-width: 1300px) {

    .container { max-width: 1200px!important; }

}

/* FOOTER NOTICE */
.s-footer-notice { margin: 2.5em 0 1em; font-size: .9em; line-height: 1.3em; text-align: center; }
.s-footer-notice a { color: inherit; text-decoration: underline; }

/* OTHER */
.wa-login-form-actions button,
.wa-signup-form-actions button,
.wa-forgotpassword-form-actions button,
.wa-set-password-form-wrapper button,
.wa-login-form-actions input[type=button],
.wa-signup-form-actions input[type=button],
.wa-forgotpassword-form-actions input[type=button],
.wa-set-password-form-wrapper input[type=button],
.wa-login-form-actions input[type=submit],
.wa-signup-form-actions input[type=submit],
.wa-forgotpassword-form-actions input[type=submit],
.wa-confirm-signup-button,
.wa-set-password-form-wrapper input[type=submit] { font-size: 18px; font-weight: bold; padding-top: 8px; padding-right: 15px; padding-bottom: 8px; padding-left: 15px; }
.c-main-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.c-main-image [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.c-main-image .col-lg-5 {
  margin-bottom: 20px;
  height: 220px;
  padding-right: 0 !important;
}
.c-main-image img {
  max-width: 100%;border-radius: 10px;max-height: 220px;
    object-fit: cover;
}
.c-main-image a {
  color: #333333;
}
.c-main-image .name-lvl-one {
  font-size: 18px;
  font-family: 'Roboto-Medium', serif;
}
.c-main-image .name-lvl-two {
  font-size: 16px;
  font-family: 'Roboto-Light', serif;
  color: #c0c0c0;
}
.c-main-image .show-more {
  font-family: 'Roboto-Light', serif;
  color: #838383;
  font-size: 12px;
}
.c-main-image .show-more .fa {
  margin-left: 5px;
}
.c-main-image .show-more a {
  font-size: 14px;
  color: #838383;
  border-bottom: 1px dotted #838383;
}
.c-main-image .show-more a:hover,
.c-main-image .show-more a:focus {
  text-decoration: none;
}
.tel-t {
        margin: auto;
    text-align: center;
    font-size: 25px;
}
.city{
    font-size: 14px!important;color:#db0943;display: block;    margin: 5px;
}
.tel-t p{font-size: 22px;    margin: 5px;}
.tel-t a{
    color:#d90943;
}
#logo{
        border-radius: 15px;
}
.appnav ul li img{    width: 45px;}

.cat-img-t{
    background-size: cover!important;
                background-repeat: no-repeat!important;
                background-position: center!important;height:185px;
}
.card-title{
   
    text-align: center;
 
}
.card{
       
    -webkit-transition: all 0.3s ease;;
  -moz-transition: all 0.3s ease;;
  -o-transition: all 0.3s ease;;
  transition: all 0.3s ease;
  
    border-radius: 0.8rem!important;
}
.add-cart-t{
    z-index: 9;
    position: relative;
padding-bottom: 4px;
    font-size: 1.3em;width:100%;
    padding: 10px;    border-radius: 15px;
}

.card:hover {
       border: 3px solid #db0943!important;
}
.p-imgt{
    width:100%;padding:0px;font-size: 16px;text-align:center;    margin-top: 10px;
}


.p-dostavka-t{
        font-weight: bold;
}.p-imgt img{
    width:60%;
}
.p-imgt i {color:#000!important;}

.fa.fa-share-alt{  color: #000;
    font-size: 19px;
    position: relative;
    top: 7px;
    right: 5px;}
.batone-t button{
width:100%;
   
    padding: 10px;
    border-radius: 15px;
    font-size: 16px;position: relative;
    display: block;
    margin-top: 10px;}
    
    .p-imgt .row{
            width: 100%;
    padding: 0;
    }
    .add2cart .comp-t{
            margin: auto;    line-height: 1;
            margin-top: 5px;
    }
    .add2cart .comp-t a{font-size:15px; line-height: 1.6;}
@media (max-width: 1440px){
    .fixed-top{
       position: relative!important;
    }
    
}
.product-info .h3{text-align: center;
    color: #383637;
    padding: 15px 0px 15px;
        margin: auto;
    border-bottom: 1px solid #ccc;
    border-top: solid 1px #ccc;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 200;
    
    text-transform: uppercase;
  
}.product-info {
z-index:9;}
.d-flexs .add-cart-cat{
   border-radius: 10px!important;
    margin-top: 10px;
    width: 50px;
    height: 50px;
    padding: 7px;
    float: right;
    background: transparent;
    box-shadow: none!important;
    border: solid 1px #f5bdcd;}
    .d-flexs .pricing{float:left;text-align:left;}
   .d-flexs {    display: block;
    width: 100%;
    align-items: center;
    padding: 10px 15px}
  .d-flexs .price{
  margin-right: 5px!important;
    font-size: 1.8em!important;
    font-weight: 300;
    color: #4f4f4f;
    margin-top: 5px;
  }
  .ruble {
    font-family: 'Fira Sans'!important;}
 .d-flexs .add-cart-cat i {    font-size: 25px;color: #db0943;}
@media (max-width: 768px){
    .list-dotted .left{
    width: 65%;}
    .d-flexs .add-cart-cat{
        width: 40px;
    height: 40px;
    }
    .d-flexs .add-cart-cat i {
    font-size: 20px;
}
      .d-flexs .price{
     
    font-size: 1.7em!important;}
    .fixed-box {position:relative!important;}
    .fixed-box iframe{height: 335px!important;}
    .fixed-box .fixed{position: relative!important;}
    .product-gallery .badge{top: -45px!important;}
    .prize.selected:before{font-size: 18px!important;}
    .prize span p {
      font-size:26px;
}
    .pr-home p{font-size:14px;}
    .c-main-image img{
          max-height:70px;
    min-height: 70px;
    }
    .fixed-top{
         position: fixed!important;
    top: 0; left: 0;
    width: 100%;
        
    }
     span.city select{font-size:12px!important;color: #272727!important;    position: absolute;}
     .city{ margin:0px 0px 0px 10px;}
     .count {
     top: 1px!important;
    left: -12px!important;
    font-size: 12.5px!important;
    width: 21px!important;
    height: 21px!important;}
    
    .stocks {
   float: right;
}ul.product-nav li a{
    font-size:20px!important;
}
ul.product-nav li.selected a {font-size:20px!important;}
    
    .product-info nav{
        padding:0!important;
    }
    
    .img-cat img{
    max-width:100%;height: auto;
    display:block!important;    top: -1px;
    position: relative;
}
    .auth img{
        -webkit-filter: brightness(50);
            filter: brightness(50);
    }
    .add-cart-cat{
        font-size:11pt!important;
    }
    
    .container {
        max-width: 95%!important;
    }

    .search{width:100%;
            background: #fff;padding: 4px 6px;height: 40px;
    }
    .ssearch-wrapper .ssearch-box{border-radius: 0px 0px 10px 10px!important;}
   header .wish a{
display: inline-flex!important;    padding: 5px 0 0px 0px!important;

    }
  header .auth {
   display: inline-grid;
    text-align: center;
    margin: auto;
    float: right;
    position: relative;
    
  
}

header .cart a{
    padding:10px;
 font-size: 16px;
}


header .auth li a:visited {
    color: #fff;
}
header .auth li a {
    color: #fff;
}
.hcart-t{
        background: #d40941;
        padding:5px;
}
.wish .fa-heart-o{
    color:#fff!important;    font-size: 27px!important;
}
.wish {
        padding: 7px 0px 0 0px;
}
.color_scheme_white header.globalheader { background: #272727;}
    .color_scheme_white header.globalheader .appnav{
        display:none;
    }
       
    .wa-flex-box.middle{
        display: block;
        text-align: center;
        margin: auto;    z-index: 99999;
    }
}

    .card {
    background-color: rgb(39 39 39) !important;border: 1px solid rgba(0,0,0,.125)!important;
 }
 .card:hover {
    background-color: rgb(81 81 81)!important;border: 1px solid rgba(0,0,0,.125)!important;
}.card:hover a {
    text-decoration: none;
}
    .card.mb-3 a {
    color: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    margin: 0px;
    padding: 0px;
}
.card.mb-3 .card-title {
    font-size: 11pt;
    text-align: center;
    height: 30px;
    width: 73%;
    font-weight: 100;
    color: rgb(255, 255, 255);
    padding: 5px;
}
.card.mb-3 img {
    max-width: 100%;
    float: right;
    object-fit: cover;
    min-width: 9vw;
    width: 9vw;
    border-radius: 10px;
}


@media screen and (max-width: 320px){
    a.mob-logo img {
    width: 90px;
    border-radius: 4px!important;
    top: 4px;
    right: -8px;
    position: relative;
}
  
header #mobile-nav-toggle {
    display: block;
    outline: 0;
    position: absolute;
    top: 13px;
    right: 0;
    left: 0px;
    z-index: 9900000;
    box-shadow: none!important;
}}
/*   }@media (min-width: 768px){*/
/*.container {*/
/*    max-width:90%!important;*/
/*}}*/

.clicklite {

    right: 0!important;
  
    width: 850px!important;
    z-index: 9999!important;
    max-width: 100%!important;
    margin: auto!important;
}
    
    
     @media (max-width: 991px){
         
         
    
    .hcart-t{
    display: block;
    text-align: center;
}
header .auth {
    display: grid;
    vertical-align: top;
    margin: 6px -9px 0px;
    padding: 0 0 0 0px;
    float: right;
    text-align: center;
}}

.c-main-image.row{
    margin-right: -8px;
    margin-left: -8px;
}


.h-baner{
    width:100%;
        height: auto;
}
.auth .fa-sign-in{
    font-size:36px;
}
.auth .fa-sign-out{
    font-size:36px;
}
.eror{
     display:block;
}
.eror img{
       display: block;
    margin:auto;
   
}

.eror p{
    text-align:center;
}
.no-connect p{
text-align: justify;    
}
.button-home{
    text-shadow: none!important;
    color: #fff!important;
    outline: 0;
    padding: 5px 10px 6px;
    font-size: 1.1em;
    -webkit-appearance: none;
    background: #76c58f;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 10px!important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    text-decoration: none;-webkit-appearance:none;
}
.button-home:hover{
 text-decoration: none;
    
}
.opt{
 top: -1px;
    right: -1px;
    display: inline-block;
    font-size: 75%;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    vertical-align: baseline;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 30px;
    width: 90px;
    position: absolute;
    background: #ffa809;
    color: #fff;
    float: left;
    text-align: left!important;
    padding: 7px 5px;
    border-radius: 0px 15px 0px 15px!important;
    z-index: 999;
}
.product-gallery .corner .opt{
   left: -22px;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    top: -15px;
    line-height: 1;
    white-space: nowrap;
    vertical-align: baseline;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 30px;
    width: 105px;
    position: absolute;
    background: #ffa809;
    color: #fff;
    float: left;
    text-align: left!important;
    padding: 7px 5px;
    border-radius: 15px 0px 15px 0px!important;
    z-index: 999;
}
#page{    width: 100%;}


header:before{
    content:'';
}
.badge {
    display: inline-block;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    position: absolute;
    z-index: 1;
    left: -1px;
    right: 0;
    top: -1px;
}


pre{
       font-size:20px!important;
    color: #3e3e3e!important;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.44);;
    border: solid 1px #c0063e;font-weight: 500;padding: 15px 15px;white-space: normal;
} 

pre:before{
    content:'\2668';
       font-size: 30px;
    color: #c0063e;
}
p{font-size: 1.1rem;margin-bottom: 0rem;}
 #page li {
    list-style-type: none; /* Убираем маркеры у списка */
   }
  #page li:before {
    content: "\25C9 "; /* Добавляем в качестве маркера символ */
        margin: 5px;
    color: #c0063e;
    font-size: 18px;
   }
   .description p {
           font-size: 15px;
   }
 #page li{
           font-size: 15px;
   }
   .img-cat img{
   display:none!important;
}


header #globalnav.light .cart:hover a{
     background:linear-gradient(-134deg,#cc2371 0,#db0943 100%)!important;
}
header #globalnav.light .cart.empty a:hover {
     background:linear-gradient(-134deg,#cc2371 0,#db0943 100%)!important;
    
}.wa-order-form-wrapper .wa-step-details-section .wa-details-rates-section{
    display: none;
}

.s-cart-empty-wrapper .s-image-wrapper img{
    filter: hue-rotate(345deg);
    -webkit-filter: hue-rotate(345deg);
}
.product-r iframe{
    width:100%!important;height: 340px!important;
}.product-r{
       border: solid 1px #db0943;margin: 0;margin: auto;
    padding: 0;
}
.product-r .webasyst-shop-script-product{
    height: 400px!important;margin: 0;
}

.lazyloading-load-more{    margin: auto;
    background: #c0063e;
    padding: 5px;
    color: #fff;
    border-radius: 10px;}
    .lazyloading-load-more:hover{
        text-decoration: none;color:#fff;
    }
    
    .load{width: 100%;
    text-align: center;
    margin: 15px;
    font-size: 18px;
    color: #3e3e3e;}
    
    
    .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header{
            color: #da0943!important;
    }.bx-wrapper img{
     width:100%;box-shadow: 0px 10px 11px -4px rgba(98, 98, 98, 0.4);
 }.s-slider-section .bx-wrapper .bx-pager.bx-default-pager a {
    background: #fff;
    -webkit-box-shadow: 0 0 5px rgba(127,127,127,0.5);
    box-shadow: 0 0 5px rgba(127,127,127,0.5);
}.s-slider-section .s-slider-block .s-slide-wrapper{
max-width:100%; 
}

span.city select{
     -webkit-appearance: button;
    border: none;
    cursor: pointer;text-align: center;
text-align-last: center;    
font-size: 16px;    color: #fff;
    background: #d80943;
    border-radius: 5px;
    padding: 2px;
   
}
span.city select:focus{
        cursor: pointer;
        outline: none;
}

.city select option:hover{
background: #db0943;
    color:#fff;
}.city select option{
     cursor: pointer;
text-align: center;
}
#page figure img{margin:10px;}
#t1.terms ul{padding: 0;}
.category-name:first-letter{
    color:#db0943;
}
select:focus > option:checked { 
    background: #a70032 !important;
}
.cat-product{
   width: 100%;
    display: inline-block;
   
}
    .cat-product a {background: #c0063e;
    padding: 3px;
    text-decoration: none;
    color: #fff!important;
    border-radius: 10px;margin:5px;} .cat-product em{    line-height: 2.1;
        
    }
    .cat-product a:hover{
        text-decoration: none;background: #a00232;
    }
   .cookie_notice {
    display: none;
  position: fixed;
    z-index: 9999999999;
    bottom: 55px;
    left: 10px;
    right: 0;
    text-align: left;
    font-size: 12px;
    font-family: Verdana, sans-serif;
    color: #FFF;
    background: #db0943cc;
    padding: 10px 10px;
    width: 370px;
    border-radius: 10px;
    
}
/* Оформление кнопок */
.cookie_btn {
   display: inline-block;
    margin: 0px 4px 0px 0px;
    text-decoration: none;
    position: relative;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 6px;
    color: #FFF!important;
    text-align: right;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid #ffffff;
    float: right;
    position: absolute;
    bottom: 4px;
    right: 11px;
}
.cookie_btn:hover {
    color: #FFF;
}
.cookie_btn:after,
.cookie_btn:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #FFF;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.cookie_btn:before {
    top: -6px;
}
.cookie_btn:hover:after,
.cookie_btn:hover:before {
    width: 100%;
    left: 0;
}
.exitblock {    
    display:none;    
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:100000;
}    
.exitblock .fon {
    background: #F6FCFF;
    opacity:.8;
    position:fixed;
    width:100%;
    height:100%;
}
.exitblock .modaltext {
  box-sizing: border-box;
    padding: 20px 40px;
    border: 2px solid #AEAEAE;
    background: #F6FCFF;
    position: relative;
    top: 80px;
    box-shadow: 0 4px 10px 2px rgba(0,0,0,0.5);
    max-width: 100%;
    width: 600px;
    margin: 0 auto;
}        
.closeblock {
    cursor:pointer;
    position: fixed;
    line-height:60px;
    font-size:82px;
    transform: rotate(45deg);
    text-align:center;
    top:20px;
    right:30px;
    color: #db0943;    
}
.closeblock:hover {
    color: #000;    
}
.exitblock .title {
    color: #db0943;
    font-size: 24px;}

    .p-exit{
     BACKGROUND: #db0943;
    PADDING: 10PX;
    font-size: 35px;
    color: #fff;
    font-weight: bold;}
    .exitblock .text-center{
        text-align:center;
        font-size:25px;margin-top: 15px;
    }
      .exitblock .title{  border-bottom: 1px solid #dcdbd7;
    margin: 20px 0;
    padding-bottom: 14px;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;}
    
.button.rev-enter{   
       text-decoration: none;
    margin: auto;
    text-align: center;
    display: block;
    width: 100%;
    top: -5px;
    position: relative;
    background: transparent;
    box-shadow: none!important;
    border: solid 1px red;
    color: #db0943!important;}
    .button.rev-enter:hover{
            background: #c0063e;
    border: none;
    color:#fff!important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 10px!important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
.lazy {
    filter: blur(5px) grayscale(1);
}
.button{
    text-shadow: none!important;
    color: #fff!important;
    outline: 0;
    padding: 5px 10px 6px;
    font-size: 1.1em;
    -webkit-appearance: none;
    background: #76c58f;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 10px!important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.footer-block .fa-odnoklassniki{
    padding: 6px 10px;
    font-size: 25px;
    background: #808080;
    border-radius: 7px;
    color: #3e3e3e;
}
.active-o{height:auto;}.actio{height:80px;}
.pr-block,.reviews.product-info{box-shadow: 0px 0px 15px 5px #0000000f;
    border-radius: 20px;padding-top: 20px;}
.wa-login-form-wrapper{padding: 10px;
    max-width: 100%;
    width: 500px;
    margin: 10px auto;
    border-radius: 10px;
    border: solid 1px #f3efef;}
    .wa-login-form-title{text-align:center;}
 .wa-login-form-wrapper .wa-value input{width:100%!important;height: 45px;
    border-radius: 7px;} 
  .wa-header{width:100%;text-align:center;}
 .wa-buttons-wrapper .wa-login-submit{width:100%!important;} 
 .wa-signup-form-wrapper{padding: 10px;
    max-width: 100%;
    width: 500px;
    margin: 10px auto;
    border-radius: 10px;
    border: solid 1px #f3efef;}
    .wa-signup-form-fields input{
    width:100%!important;height: 45px;
    border-radius: 7px;}
    .wa-field-wrapper input{
    width:100%!important;height: 45px;
    border-radius: 7px;}
    .wa-quantity-box input{border-radius: 7px;}
    .wa-inactive-state input{border-radius: 7px;}
    .wa-required{color:#db0943!important;}
   
   .wa-signup-form-actions.js-signup-form-actions input{width:100%!important;}
   .wa-adapters-list li:before{content:""!important;}
   .wa-adapters-list li{width:45px!important;margin-left:10px!important;}
   .wa-adapters-list li a{width:40px!important;}
    .wa-login-form-wrapper .wa-adapters-section .wa-section-header{text-align:center;}
    .wa-adapters-list {text-align: center;}
    .wa-signup-form-wrapper .wa-signup-form-title,.wa-section-header{text-align:center;}
    .wa-field.wa-field-remember-me input{width:auto!important;height:auto!important;}
    .wa-field.wa-field-remember-me{float: right;margin-top: -20px!important;}
    .wa-order-dialog.wa-auth-dialog-wrapper .wa-dialog-body{border-radius:15px;}
    
    .thumbs.product-list li:before {
    content: ""!important;
   
}

.card.mobile{background-color: rgb(255 255 255) !important;}
.card.mobile h5{color:#000!important;}
.contact-6 #whatsapp_widget img, .contact-6 #viber_widget img {width:45px!important;}
.wa-services{display:none!important;}