/*
Theme Name:  Mweb VueWP Theme
Author:      MWeb
Author URI:  https://mweb.com.ru
Version:     1.0.0
*/
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #111111;
  background-color: var(--body_bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body *{
  box-sizing: border-box;
}

#page-container{
  position: relative;
  z-index: 1;
}

.container {
  max-width: 100%;
  width: var(--container-width-desktop);
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

@media(max-width: 1199px) {
    .container {
        width: var(--container-width-tablet);
        padding-left: 0;
        padding-right: 0;
    }
    #top-menu .container{
        width: 100%;
    }
}

@media(max-width: 767px) {
    .container {
        width: var(--container-width-mobile);
    }
    #top-menu .container{
        width: 100%;
    }    
}

h1 {
  font-size: 28px;
  font-weight: 800;
}

h2 {
  font-size: 26px;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

a{
  text-decoration: none;
}

picture{
  display: block;
  width: 100%;
}

section,
section.container{
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

header{
  position: relative;
  z-index: 2;
  background: #ffffff;
}

main,footer{
  position: relative;
  z-index: 1;
}

:root{
  --mdb-danger: var(--error) !important;
  --mdb-success: var(--success) !important;
  --mdb-info: var(--info) !important;
  --mdb-info-rgb: 59,113,202 !important;
  --mdb-light: var(--light-bg) !important;
  --mdb-dark: var(--dark-bg) !important;
  --mdb-success-rgb: 13,181,3 !important;
}

.btn-success {
    --mdb-btn-bg: var(--btn-bg-bg);
    --mdb-btn-color: var(--btn-text-color);
    --mdb-btn-hover-bg: var(--btn-bg-hover);
    --mdb-btn-hover-color: var(--btn-text-hover);
    --mdb-btn-focus-bg: var(--btn-bg-hover);
    --mdb-btn-focus-color: var(--btn-text-hover);
    --mdb-btn-active-bg: var(--btn-bg-hover);
    --mdb-btn-active-color: var(--btn-text-hover);
}
.btn-primary {
    --mdb-btn-bg: var(--primary);
    --mdb-btn-color: #fff;
    --mdb-btn-box-shadow: 0 4px 9px -4px var(--primary);
    --mdb-btn-hover-bg: var(--dark-bg);
    --mdb-btn-hover-color: #fff;
    --mdb-btn-focus-bg: var(--dark-bg);
    --mdb-btn-focus-color: #fff;
    --mdb-btn-active-bg: var(--dark-bg);
    --mdb-btn-active-color: #fff;
}

.bg-info{
  background-color: var(--info);
  color:#ffffff;
  padding: 10px;
}

.badge-danger {
    background-color: var(--error);
    color: #ffffff;
}

.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    border-color: var(--success);
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: var(--success);
}

.was-validated .form-outline .form-control:valid~.form-label, .form-outline .form-control.is-valid~.form-label {
    color: var(--success);
}

.was-validated .form-control:invalid, .form-control.is-invalid{
    border-color: var(--error);
}
.invalid-tooltip{
    background-color: var(--error);
}
.was-validated .form-outline .form-control:invalid~.form-label, .form-outline .form-control.is-invalid~.form-label {
    color: var(--error);
}
.terms-block .form-check-label{
  font-size: 12px;
  line-height: 1.2;
}
.sticky-top{
  will-change:transform
}
.fullscreen-loader{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-bg);
}
.fullscreen-loader .text{
  color:  #ffffff;
  opacity: .75;
}
section.breadcrumbs{
  padding-top: 15px !important;  
  padding-bottom: 15px !important; 
}
section.breadcrumbs .breadcrumb{
  margin: 0 !important;
}
section.breadcrumbs .breadcrumb-item,
section.breadcrumbs span{
  font-size: 12px;
  text-transform: uppercase;
}
section.breadcrumbs .breadcrumb-item a,
section.breadcrumbs a,
section.breadcrumbs span{
  color: #111111;
  transition: all .5s ease;
}
section.breadcrumbs .breadcrumb-item a:hover,
section.breadcrumbs a:hover{
  color: var(--link-light-color);
  transition: all .5s ease;
}
/*Top Menu*/

#top-menu{
  position: relative;
  z-index: 2;
  background-color: var(--menu_bg);
}
#top-menu ul,
#top-menu ul li{
  padding: 0;
  margin: 0;
  list-style: none;
}
#top-menu > .container{
    display: flex;
    justify-content: space-between; 
    padding: 0 30px;
}
#top-menu > .container > ul,
#top-menu > .container .menu-primary-menu-container > ul{
    display: flex;
    position: relative;
}
#top-menu > .container > ul > li,
#top-menu > .container .menu-primary-menu-container > ul > li{
    position: relative;
}
#top-menu > .container > ul > li > a,
#top-menu > .container .menu-primary-menu-container > ul > li > a{
    text-transform: uppercase;
    padding: 15px;
    font-size: 12px;
}
#top-menu > .container > ul > li > a.active,
#top-menu > .container .menu-primary-menu-container > ul > li > a.active{
    background: var(--secondary);
}
#top-menu > .container .menu-primary-menu-container .sub-menu{
  display: none;
}
#top-menu ul li a{
  display: block;
  padding: 15px;
  color: #ffffff;
}
#top-menu ul li a:hover,
#top-menu li.has-child:hover > a{
  background: var(--link-light-hover);
}
#top-menu li.has-child:hover > a{
  position: relative;
  z-index: 10;
}
#top-menu li.has-child:hover > a::before{
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display:block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--link-light-hover);  
}
#top-menu ul.child-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: max-content;
  background-color: var(--menu_bg);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 9;
}
#top-menu li.has-child:hover > ul.child-menu{
  opacity: 1;
  visibility: visible;  
  transition: all .3s ease;
}
#top-menu ul.child-menu li a{
  padding: 10px 20px;
  font-size: 14px;
}

#main-header{
  padding: 15px 0;
}
#main-header .header-address{
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
}
#main-header .header-address i{
  position: absolute;
  font-size: 18px;
  top: 2px;
  left: 0;
}
#main-header .header-email{
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
#main-header .header-email i{
  position: absolute;
  font-size: 18px;
  top: 2px;
  left: 0;
}
#main-header .header-phone{
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
#main-header .header-phone:first-of-type a{
  font-size: 19px;
  line-height: 1;
}
#main-header .header-phone:last-of-type{
  margin-bottom: 0;
}
#main-header .header-phone i{
  position: absolute;
  font-size: 18px;
  top: 2px;
  left: 0;
}
#main-header .header-phone span{
  display: block;
  line-height: 1;
  font-size: 11px;
}
#main-header .header-socials{
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  margin: -5px;
}
#main-header .header-socials a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 5px;
  overflow: initial;
}
#main-header .header-bottons{
  display: flex;
  align-items: center;
  justify-content: end;
  padding-top: 15px;
}
#main-header .header-bottons a{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-right: 15px;
}
#main-header .header-bottons a:last-child{
  margin-right: 0;
}
#main-header .header-bottons a i{
  position: relative;
  top: 0;
  font-size: 24px;
/*  text-shadow: 0 2px 5px #0003, 0 2px 10px #0000001a;*/
  transition: all .3s;
}
#main-header .header-bottons a:hover i{
  position: relative;
  top: -2px;
  text-shadow: 0 4px 10px #0003, 0 4px 20px #0000001a;
  transition: all .3s;
}
#main-header .header-bottons a .badge-notification{
  right: -10px;
  top: -5px;
}
#main-header .add-bookmarkme i {
    -webkit-animation: tadaPlus 10s infinite;
    animation: tadaPlus 10s infinite;
    transform-origin: center
}
.social-btn,
.messenger-btn{
  overflow: initial;
}
.tooltip{
  border-radius: 0.5rem;
}
@-webkit-keyframes tadaPlus {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    1%,2% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    3%,5%,6.5%,9% {
        -webkit-transform: scale(1.2) rotate(3deg);
        transform: scale(1.2) rotate(3deg)
    }

    4%,6%,8% {
        -webkit-transform: scale(1.2) rotate(-3deg);
        transform: scale(1.2) rotate(-3deg)
    }

    10% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes tadaPlus {
    0% {
        transform: scale(1);
        transform: scale(1)
    }

    1%,2% {
        transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    3%,5%,6.5%,9% {
        transform: scale(1.2) rotate(3deg);
        transform: scale(1.2) rotate(3deg)
    }

    4%,6%,8% {
        transform: scale(1.2) rotate(-3deg);
        transform: scale(1.2) rotate(-3deg)
    }

    10% {
        transform: scale(1);
        transform: scale(1)
    }

    to {
        transform: scale(1);
        transform: scale(1)
    }
}


.top-banner{
  height: 350px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
/*  background-attachment: fixed;*/
}
  .top-banner h1{
    position: absolute;
    z-index:2;
    bottom:0;
    left:0;
    width: 100%;
    text-align: center;
    margin:0;
    padding:20px;
    color:#ffffff
  }
.section-callback p{
  font-size: 18px;
}
.section-callback .callback-phone{
  position: relative;
  width: 290px;
  text-align: left;
  padding-left: 50px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}
.section-callback .callback-phone:last-of-type{
  margin-bottom: 0;
}
.section-callback .callback-phone i{
  position: absolute;
  font-size: 28px;
  top: 0;
  left: 0;
}
.section-callback .callback-phone span{
  display: block;
  line-height: 1.1;
  font-size: 16px;
  font-weight: 100;
}

.section-leave-feedback{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 30px !important;
}
.section-leave-feedback .stars i{
  font-size: 44px;
  margin: 5px;
  color: #fff000;
  text-shadow: 0 14px 5px rgba(0, 0, 0, .5);
}
.section-leave-feedback .buttons{
  display: flex;
  flex-wrap: wrap;
}
.section-leave-feedback .buttons a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  margin: 10px;
  font-size: 16px;
  text-transform: none;
}
.section-leave-feedback .buttons a i{
  font-size: 20px;
  margin-right: 10px;
}

.section-footer-contact{
  padding: 0 !important;
}
.section-footer-contact .contact-block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--dark-bg);
}

.section-footer-contact .contact-block h2{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-footer-contact .contact-block .footer-address{
  position: relative;
  padding-left: 50px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section-footer-contact .contact-block .footer-address i{
  position: absolute;
  font-size: 26px;
  top: 0;
  left: 0;
}
.section-footer-contact .contact-block .footer-email{
  position: relative;
  padding-left: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section-footer-contact .contact-block .footer-email i{
  position: absolute;
  font-size: 26px;
  top: 0;
  left: 0;
}
.section-footer-contact .contact-block .footer-phone{
  position: relative;
  padding-left: 50px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
    margin-bottom: 20px;
}
.section-footer-contact .contact-block .footer-phone i{
  position: absolute;
  font-size: 26px;
  top: 3px;
  left: 0;
}
.section-footer-contact .contact-block .footer-phone span{
  display: block;
  line-height: 1;
  font-size: 12px;
  font-weight: 100;
}
.section-footer-contact .contact-block .footer-socials{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
}
.section-footer-contact .contact-block .footer-socials a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 5px;
}
.section-footer-contact .contact-block .callback-btn{
  width: 100%;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 10px;
}
.section-footer-text{
  padding: 50px 30px !important;
}
.section-footer-copy{
  padding: 15px 30px 200px !important;
  background: var(--dark-bg);
  color: #ffffff;  
}
.icon-rub svg {
    width: auto;
    height: 15px;
    margin-left: 5px;
}
.section-product-cats{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-product-cats h2{
  margin-bottom: 30px;
}
.section-product-cats .product-cats-container,
.section-product-cats .product-cats-container .product-cat{
  padding: 0;
  list-style: none;
  margin: 0;
}
.section-product-cats .product-cats-container{
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.section-product-cats .product-cats-container .product-cat{
  position: relative;
  background: #ffffff;
  border: 1px solid #ddd;
    border-radius: 0.5rem;
  overflow: hidden;
  transition: all .5s ease;
}
.section-product-cats .product-cats-container .product-cat:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, .3);
  transition: all .5s ease;
}
.section-product-cats .product-cats-container .product-cat a{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 15px;
}
.section-product-cats .product-cats-container .product-cat .image{
  position: relative;
  display: flex;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.section-product-cats .product-cats-container .product-cat img{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 200px;
  margin: auto;
  transition: all .5s ease;
}

.section-product-cats .product-cats-container .product-cat:hover img{
  transform: scale(1.2);
  transition: all .5s ease;
}
.section-product-cats .product-cats-container .product-cat .cat-title{
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #111111;
  margin: auto;
}
.section-product-cats.children-cats{
  padding-top: 0;
}
.section-product-cats.children-cats .product-cats-container .product-cat{
  overflow: unset;
}
.section-product-cats.children-cats .product-cats-container .product-cat a{
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  min-height: 60px;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
}
.section-product-cats.children-cats .product-cats-container .product-cat a .img{
  display: flex;
  position: relative;
  overflow: hidden;
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  height: 100%;
/*  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;*/
}
.section-product-cats.children-cats .product-cats-container .product-cat a .img img{
  width: 90%;
  height: auto;
  margin: auto;
}
.section-product-cats.children-cats .product-cats-container .product-cat a .cat-title{
  font-size: 14px;
  padding: 10px;
  margin: 0;
  text-align: left;
  line-height: 20px;
}
.section-product-cats.children-cats .product-cats-container .product-cat a .cat-count{
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -7px;
  right: -7px;
  border-radius: 50px;
  text-align: center;
  font-size: 12px;
  line-height: 25px;
/*  color: #ffffff;*/
  background: #bbcded;
}
.section-ya-reviews{
padding-top: 30px;
  padding-bottom: 60px;
}
.section-ya-reviews .iframe-container{
  width: 100%;
  max-width: 760px;
  height: 1200px;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.section-ya-reviews h2{
  text-align: center;
  margin-bottom: 30px;
}
.home .section-description{
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.home .section-description h2{
  font-size: 20px;
}
.home .section-cooperations h2{
  text-align: center;
  margin-bottom: 30px;
}
.home .section-cooperations .cooperation-item{
  position: relative;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 25px;
  overflow: hidden;
}
.home .section-cooperations .cooperation-item::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top,    rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to bottom,   rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
  transition: all .5s ease;
}
.home .section-cooperations .cooperation-item:hover::before{
  background: rgba(0,0,0,.75);
  transition: all .5s ease;
}
.home .section-cooperations .cooperation-item h4 {
    display: block;
    width: 100%;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    transition: all .5s;
    z-index: 2;
    margin: 0;
    text-align: center;
}
.home .section-cooperations .cooperation-item:hover h4 {
    bottom: 100%;
    transform: translateY(100%);
    transition: all .5s;
}
.home .section-cooperations .cooperation-item .hover-content {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -100%;
    overflow: hidden;
    opacity: 0;
    background: #e2eaf7;
/*    color: #ffffff;*/
    padding: 20px;
    transition: all .5s;
    z-index: 2;
    line-height: 1.2;
}
.home .section-cooperations .cooperation-item:hover .hover-content {
    bottom: 0;
    opacity: 1;
    transition: all .5s;
}

.single-product-info{
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 0.5rem;
}
.single-product-info #product-title{
  width: 100%;
  text-transform: uppercase;
}
.single-product-info .product-image,
.single-product-info .product-info{
  position: relative;
  width: 50%;
}

.single-product-info .product-image img{
  position: sticky;
  top: 0;
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.3rem;
}

.single-product-info .product-info{
  padding: 30px;
}
.single-product-info .product-info .product-form{
  position: sticky;
  top: 0;  
}
.single-product-info .product-price .price-from{
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: end;
}
.single-product-info .product-price .price-from span{
  display: block;
  margin-top: auto;
  font-weight: 400;
  padding-right: 10px;
  font-size: 18px;
}
.single-product-info .product-price .price-from-helper{
    font-size: 12px;
    text-align: right;
    padding-right: 10px;
    letter-spacing: 3px;
    color: #c0c0c0;
}
.single-product-info .product-price .price-from .icon-rub{
  display: flex;
}

.single-product-info .product-price .price-from .icon-rub svg{
  display: block;
  width: auto;
  height: 18px;
  margin: auto 0 2px 5px; 
}
.single-product-info .product-price .total-line{
  display: flex;
  align-items: center;
  justify-content: end;  
  line-height: 1;
  font-size: 16px;
  padding-bottom: 5px;
}
.single-product-info .product-price .total-sum{
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  justify-content: end;
}
.single-product-info .product-price .total-sum .icon-rub{
  display: flex;
}
.single-product-info .product-price .total-sum .icon-rub svg{
  display: block;
  width: auto;
  height: 12px;
  margin: auto 0 2px 5px; 
}

.single-product-info .min-count{
  font-weight: bold;
  margin-bottom: 15px;
}
.single-product-info .stock-status{
  margin-bottom: 15px;
}
#products-section{
  background: #f5f5f5;
}
.products-list,
.products-list .product{
  
  list-style: none;
}
.products-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
.products-list .product{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
/*  overflow: hidden;*/
  background: #ffffff;
  transition: all .5s ease;  
  max-width: 362px;
  margin: auto;
}
.products-list .product:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, .3);
  transition: all .5s ease;
}
.products-list .product .image{
  position: relative;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.products-list .product .image a{
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}
.products-list .product .image picture{
  display: block;
  width: 100%;
}
.products-list .product .image img{
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  transform: scale(.8);
  transition: all .5s ease;  
}
.products-list .product:hover .image img{
  transform: scale(1);
  transition: all .5s ease;
}
.products-list .product .product-title{
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0;
  word-break: break-word;
  line-height: 1.2;
}

.products-list .product .price-container{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 20px 0;
  margin-top: auto;
  margin-bottom: 0;
}
.products-list .product .price{
  margin-top: auto;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 28px;
  text-align: right;
  line-height: 1;
}
.products-list .product .price span{
  font-size: 16px;
  font-weight: 100;
}
.products-list .product .price i{
  font-size: 18px;
}
.products-list .product .product-description{
  padding: 0 20px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
.products-list .product .product-description p{
  margin-bottom: 0;
}
.products-list .product .product-badge{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    text-transform: uppercase;
    border-top-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-weight: 700;
}
.products-list .product .product-buttons{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 0;
}
.products-list .product .product-link{
  display: block;
  max-width: 85px;
  position: relative;
  font-size: 16px;
  line-height: 1;
  padding: 5px 0;
  color: var(--info);
}
.products-list .product .no-price .product-link{
  margin-left: auto;
  margin-right: auto;
}
.products-list .product .product-link::after{
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom: 1px dashed var(--info);
  transition: all .5s ease;
}
.products-list .product .product-link:hover::after{
  opacity: 0;
  transition: all .5s ease;
}
.products-list .product .product-order-btn{
  min-width: 50%;
}
.header-bottons a,
.product-buttons a {
  position: relative;
}
.wishlist-btn .wishlist-icon,
.compare-btn .compare-icon,
.add-bookmarkme .icon,
.add-to-cart-btn .icon{
  position: relative;
  z-index: 10;
}

.header-bottons a .tooltip,
.product-buttons a .tooltip{
  display: block;
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 8px 15px;
  background: var(--primary);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
.header-bottons a:hover .tooltip,
.product-buttons a:hover .tooltip{
  opacity: 1 !important;
  visibility: visible;
  margin-top: -10px;
  transition: all .5s ease;
}
.header-bottons a .tooltip::before,
.product-buttons a .tooltip::before{
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background:var(--primary);
}
.product-rating h4{
  font-size: 16px;
  margin-bottom: 0;
}
.product-rating .rating-block{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.rating-block svg#rating{
  width: 120px;
  min-width: 120px;
  height: auto;
}
.product-rating .rating-text{
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
}
.product-rating .rating-text span{
  margin-left: 15px;
}
.product-rating .rating-text i{
  font-size: 18px;
  color: var(--secondary);
  margin-right: 5px;
}
.products-list .product-rating{
  display: flex;
  justify-content: center;
}
.products-list .product-rating .rating-block{
  margin-bottom: 10px;
}
.products-list .product-rating svg#rating{
  width: 80px;
  min-width: 80px;
}
.products-list .product .no-price{
  text-align: center;
  font-size: 14px;
  margin-top: auto;
}
.rating-block .rating-star{
  padding: 0;
  border: none;
  overflow: none;
  color: #aaaaaa;
  background-color: transparent;
}
.rating-block .rating-star.active{
  color: #ffa900;
}
.rating-block .rating-star svg{
  width: 25px;
  height: 25px;
}
.product-reviews-form form{
  max-width: 600px;
  margin: auto;
}
.product-reviews-form {
  background: #f5f5f5;
  padding: 30px 20px;
}
.product-reviews-form .form-outline{
  background-color: #fff;
}
.product-reviews-form .rating-block-title,
.product-reviews-form h4{
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.product-reviews-form .rating-block-title{
  margin-top: 10px;
}
.product-reviews-form .rating-block{
  display: flex;
  justify-content: center;
}
.product-reviews-form .rating-block .rating-star{
  width: 60px;
  height: 60px;
}
.product-reviews-form .rating-block .rating-star svg{
  width: 44px;
  height: 44px;
}
.variations .variation-title{
  display: block;
  width: 100%;
  margin: 0 0 10px;
  font-size: 16px;
}
.variations .variation-section{
  padding-bottom: 15px;
}
.variation-container{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.variation{
  position: relative;
}
.variation input{
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.variation.type-image label{
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin: 10px;
  cursor: pointer;
}
.variation.type-image input:checked + label img{
    border: 1px solid var(--secondary);
}
.variation.type-image input:checked + label::before{
    content: '\f00c';
    position: absolute;
    top: -7px;
    right: -7px;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 2px;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 600;
    background: var(--secondary);
    color: #fff;
}
.variation.type-image img{
  display: block;
  width: 100%;
  height: 100%;
  transition: all .5s ease;
}
.variation.type-image::after, 
.variation.type-image::before{
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    box-sizing: inherit;
    position: absolute;
    bottom: 130%;
    left: 50%;
    z-index: 999;
    box-shadow: 0 7px 15px rgba(0, 0, 0,.3);
    transition: all .3s ease;
}
.variation.type-image::after {
    content: " ";
    margin-left: -5px;
    width: 0;
    border-top: 5px solid var(--primary);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 0;
    line-height: 0;
}
.variation.type-image::before {
    min-width: 100px;
    content: attr(data-title);
    margin-bottom: 5px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 15px;
    border-radius: 3px;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}
.variation.type-image:hover:after, 
.variation.type-image:hover:before {
    bottom: 100%;
    visibility: visible;
    opacity: 1;
}
.variation.type-image:hover{
  z-index: 5;
}
.variation.type-image:hover img{
  position: absolute;
  transform: scale(3);
  transition: all .5s ease;
}
.variation label{
  display: flex;
  align-items: center;
  width: 215px;
  max-width: 215px;
  margin: 10px;
  cursor: pointer;
}
.variation .label{
  padding-left: 10px;
  line-height: 1.2;
  transition: all .5s;
}
.variation label:hover .label{
  color: var(--primary);
  transition: all .5s;
}
.variation .switch-wrap {
    display: block;
    position: relative;
    cursor: pointer;
    background: rgb(194,192,190);
    background: -moz-linear-gradient(top,  rgba(194,192,190,1) 0%, rgba(214,214,214,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(194,192,190,1) 0%,rgba(214,214,214,1) 100%);
    background: linear-gradient(to bottom,  rgba(194,192,190,1) 0%,rgba(214,214,214,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c2c0be', endColorstr='#d6d6d6',GradientType=0 );
    box-shadow: inset 1px 3px 5px rgba(0, 0, 0, .5), 0 0 3px rgba(0, 0, 0, .1);
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    border-radius: 15px;
    overflow: hidden;   
}

.variation .switch {
    display: block;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 24px;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #fff;
    background: radial-gradient(circle at 12px 12px, #fff, #ccc);
    box-shadow: inset 0 0px 7px rgba(0, 0, 0, .1), 0 0px 15px rgba(0, 0, 0, .5);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.variation .switch i {
    display: none;
    color: #fff
}
.variation .switch-wrap::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: var(--secondary);
  box-shadow: inset 1px 3px 5px rgba(0, 0, 0, .2), 0 0 3px rgba(0, 0, 0, .1), 0 0 0 1px #aaa;
  transform: translateX(-100%);
  transition: all .5s;
}
.variation input:checked + label .label{
  color: var(--secondary);
  transition: all .5s;
}
.variation input:checked + label .switch-wrap::before{
  transform: translateX(0);
  transition: all .5s;  
}
.variation input:checked + label .switch {
    left: 23px;
    /*background-color: var(--success);*/
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.quantity-container{
  max-width: 450px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quantity{
  display: flex;
}
.quantity .minus,
.quantity .plus {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    transition: all .5s
}

.quantity .minus{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.quantity .plus{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.quantity .qty{
    width: 50px;
    height: 40px;
    background: 0 0;
    outline: none;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    border-left: none;
    border-right: none;
    border-top: 1px var(--primary) solid;
    border-bottom: 1px var(--primary) solid;
    color: #393939;
    background-color: #ffffff;
    box-shadow: none;
    text-align: center;
    font-weight: 700;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}
.price-table{
  margin-bottom: 15px;
}
.price-table .price-table-title{
  font-size: 18px;
}
.price-table .price-table-header{
  font-weight: bold;
}
.price-table .price-table-header .price-table-col{
  text-align: center;
  margin: auto;
  font-weight: bold;
}

.price-table .price-table-row,
.price-table .price-table-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  margin-bottom: -1px;
}
.price-table .price-table-row .price-table-col,
.price-table .price-table-header .price-table-col{
  display: flex;
  line-height: 1;
  padding: 10px;
}
.price-table .price-table-row .price-table-col:last-child{
  font-size: 20px;
  align-items: flex-end;
  line-height: 1;
  font-weight: bold;
}
.price-table .price-table-row .price-table-col .icon-rub{
  width: 20px;
  min-width: 20px;
}
.price-table .price-table-row .price-table-col .icon-rub svg{
  display: block;
  width: 10px;
  max-width: 10px;
  margin-left: 5px;
}
#product-title{
  margin-top: 30px;
  margin-bottom: 0;
}
.product-headline{
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  background: #f00;
  padding: 0 !important;
  border-radius: 0.5rem;
  overflow: hidden;
}
.product-headline .product-headline-text{
  position: absolute;
  top: 0;
  left: 50%;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 10px;
  font-size: 16px;
  text-align: center; 
  line-height: 46px;
  transition: all .1s ease;
  animation: headlineText 20s linear infinite;
}
@keyframes headlineText{
    0% {
        left: 100%;
        transform: translateX(0);
    }
    100% {
        left: 0;
        transform: translateX(-100%);
    }
}
.single-product-info .product-form .order-buttons{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 450px;
  margin-top: 20px;
}
.single-product-info .product-form .order-buttons button{
  margin-top: 0;
  margin-bottom: 20px;
}
button.pswp__button{
  background-image: none !important;
}
#product-gallery *{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;  
}
#product-gallery{
  width: 100%;
  position: relative;
  padding-top: 30px;
}
#product-gallery .swiper{
  padding: 0 30px;
}
#product-gallery .swiper .swiper-button-prev,
#product-gallery .swiper .swiper-button-next{
  width: 40px;
  height: 100%;
  margin: 0 !important;
  top: 0 !important;
  background: var(--primary);
  color: #ffffff;
  border-radius: 0.3rem;
  overflow: hidden;
}
#product-gallery .swiper .swiper-button-next:after, 
#product-gallery .swiper .swiper-button-prev:after{
  font-size: 20px;
}
#product-gallery .swiper .swiper-button-prev{
  left: 0;
}
#product-gallery .swiper .swiper-button-next{
  right: 0;
}
#product-gallery .swiper-slide{
  position: relative;
  padding: 0 10px; 
}
#product-gallery .swiper-slide a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  border-radius: 0.3rem;
  overflow: hidden;
}
#product-gallery .swiper-slide a::after{
  content: '\f00e';
  display: block;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
#product-gallery .swiper-slide a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
#product-gallery .swiper-slide a:hover::after,
#product-gallery .swiper-slide a:hover::before{
  visibility: visible;
  transition: all .5s ease;  
}
#product-gallery .swiper-slide a:hover::after{
  opacity: 0.5;  
}
#product-gallery .swiper-slide a:hover::before{
  opacity: 0.35; 
}
#product-gallery .swiper-slide a img{
  display: block;
  width: 100%;
  height: auto;
}
.product-gallery .slick-slider.slider-thumb  .slick-prev, 
.product-gallery .slick-slider.slider-thumb  .slick-next{
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  background: var(--primary);
  transition: all .3s;
}
.product-gallery .slick-slider.slider-thumb  .slick-prev:hover, 
.product-gallery .slick-slider.slider-thumb  .slick-next:hover{
  background: #0db503;
  transition: all .3s;
}
.product-gallery .slick-slider.slider-thumb  .slick-prev{
  top: -30px;
  left: auto;
  right: 60px;
} 
.product-gallery .slick-slider.slider-thumb  .slick-next{
  top: -30px;
  left: auto;
  right: 10px;
}

.product-gallery .slider-thumb .slick-slide{
  cursor: pointer;
  opacity: 0.5;
  transition: all .3s;
}
.product-gallery .slider-thumb .slick-slide:hover,
.product-gallery .slider-thumb .slick-slide.slick-current{
  opacity: 1;
  transition: all .3s;
}

.product-gallery .slide-image .overlay{
  position: relative;
  cursor: pointer;
}
.product-gallery .slide-image .overlay::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .75);
  opacity: 0;
  transition: all .5s;
}
.product-gallery .slide-image .overlay:hover::before{
  opacity: 1;
  transition: all .5s;
}
.product-gallery .slide-image .overlay .overlay-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--primary);
  opacity: 0;
  transition: all .5s;
}
.product-gallery .slide-image .overlay:hover .overlay-icon{
  opacity: 1;
  transition: all .5s;
}
.product-gallery .slide-image .overlay:hover img{
  border: 1px solid #0db503;
  transition: all .5s;
}

.product-gallery .slick-slide img{
  border: 1px solid #eeeeee;
}
.product-gallery .slider-thumb .slick-slide.slick-current img{
  border: 1px solid #0db503;
  transition: all .3s;
}

#informer-wrap{
  position: sticky;
  top: 0;
  z-index: 9;
}

#informer-wrap p{
  padding: 0 !important;
}
#informer-wrap .info-image{
  position: relative;
  max-width: 500px !important;
  margin: auto;
  float:none !important;
}
#informer-wrap .info-image img{
  display: block;
  width: 100%;
}
#informer-wrap .info-image .informer-block{
  width: 100%;
  height: 0;
  position: absolute;
  z-index: 1;
}
/*#informer-wrap .info-image .informer-block:hover{
  z-index: 9;
}*/
#informer-wrap .info-image .informer-arrow{
  position: relative;
  z-index: 3;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--primary);
  padding: 5px;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  cursor: pointer;
}
#informer-wrap .info-image .informer-arrow img{
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}
#informer-wrap .info-image .informer-block.top .informer-arrow{
  transform: rotate(-90deg);
}
#informer-wrap .info-image .informer-block.bottom .informer-arrow{
  transform: rotate(90deg);
}
#informer-wrap .info-image .informer-block.left .informer-arrow{
  transform: rotate(180deg);
}
#informer-wrap .info-image .informer-text{
  position: absolute;
  z-index: 2;
  width: max-content;
  max-width: 320px;
  background: #ffffff;
  border-radius: 5px;
  border: 2px solid #1eca44;
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  padding: 15px 20px;
  margin-top: -15px;
  margin-left: 15px;
  opacity: 0;
  visibility: hidden;
  line-height: 1.4;
  transition: all 0.3s;
}
#informer-wrap .info-image .informer-text p:last-of-type{
  margin-bottom: 0;
  padding-bottom: 0;
}

#informer-wrap .info-image .informer-block:hover,
#informer-wrap .info-image .informer-arrow:hover{
  z-index: 9;
}
#informer-wrap .info-image .informer-arrow:hover + .informer-text{
  z-index: 8;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

.icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -0.75%;
}

.icons-box {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 18.5%;
    margin: .75%;
    padding: 10px;
    border: 1px solid #eeeeee;
    border-radius: 0.5rem;
    background: #ffffff;
}

.icons-box:hover {
    z-index: 2;
    cursor: help;
    box-shadow: 0 0 15px rgba(0,0,0,.3);
    transition: all .5s
}

.icons-box .info{
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.3);
  text-shadow: 1px 3px rgba(0,0,0,.3);
  background: var(--primary);
}

.icons-box .title {
  margin: auto;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 12px;  
  transition: all .3s
}

.icons-box:hover .title {
  color: var(--primary);
  transition: all .3s
}

.icons-box .desc {
  width: 100%;
  opacity: 0; 
  visibility: hidden; 
  position: absolute;
  top: 100%;
  left: 0;
  background: #e2eaf7;
  padding: 7px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  z-index: 99;
  box-shadow: 0 15px 15px rgba(0, 0, 0, .3);
  border-top: 1px #dddddd solid;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  transition: all .3s;
}


.icons-box .desc p{
  margin-bottom: 0;
}

.icons-box .desc:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: -7px;
  left: 50%;
  margin-left: -7px;
  transform: rotate(45deg);
  background: #e2eaf7;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.icons-box:hover{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.icons-box:hover .desc {
  opacity: 1;
  visibility: visible;
  transition: all .3s
}

.icons-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  color:var(--primary);
}
.icons-box .icon img{
  width: 100%;
  height: auto;
}
.catalog-category .page-title,
.category-description .category-title,
.section-title,
.page-title{
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.catalog-category .page-title::after,
.category-description .category-title::after,
.section-title::after,
.page-title::after{
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--primary);
  left: 50%;
  transform: translateX(-50%);
}

.section-title.delimiter-center::after{
  left: 50%;
  transform: translateX(-50%);
}

.category-description .category-title{
  font-size: 22px;
}

.section-category-description .category-img{
  background: #ffffff;
}

.section-category-description .category-img img{
  position: sticky;
  top: 0;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.section-category-description .category-description{
  padding: 30px;
  font-size: 14px;
  background: #ffffff;
}

.section-category-description .category-description p{
  margin-bottom: 5px;
}

.section-category-description .category-description .phone-link{
  font-size: 20px;
  font-weight: bold;
  color: #111111;
  transition: all .5s ease;
}

.section-category-description .category-description .phone-link:hover{
  color: var(--link-light-hover);
  transition: all .5s ease;
}

.section-category-description .category-description .phone-link span{
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 100;
}

#product-tabs .nav-tabs{
  flex-wrap: wrap;
  justify-content: center;
}

#product-tabs .nav-tabs .nav-item{
  margin: 10px;  
}

#product-tabs .nav-tabs .nav-item .nav-link{
  display: flex;
  align-items: center;
  background: var(--primary);
  border: none !important;
  border-radius: 0.3rem;
}
#product-tabs .nav-tabs .nav-item .nav-link:hover{
  background: var(--dark-bg);
}
#product-tabs .nav-tabs .nav-item .nav-link.active{
  background: var(--secondary) !important;
  cursor: default;
}
#product-tabs .nav-tabs .nav-item a{
  color: #ffffff;
}
#product-tabs .nav-tabs .nav-item i{
  font-size: 20px;
}

#product-tabs .tab-pane{
  padding: 30px;
  background: #ffffff;
  border-radius: 0.5rem;
}
.tab-product-characteristics{
  max-width: 600px;
  margin: auto;
}
.table-product-characteristics{
  margin: 0;
  border-top: 1px solid #e0e0e0;
}
.table-product-characteristics tr td:first-of-type{
  padding-left: 0 !important;
}
.table-product-characteristics tr td:last-of-type{
  padding-right: 0 !important;
  text-align: right;
}

.product-reviews{
  max-height: 500px;
}
.product-reviews .review{
  position: relative;
  padding: 20px;
  padding-top: 30px;
  border: 1px solid #eeeeee;
  margin-bottom: 30px;
  border-radius: 10px; 
}
.product-reviews .review .author{
  font-size: 18px;
  margin: 0;
}
.product-reviews .review .date{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 12px;
  padding: 5px 10px;
  background: #f5f5f5;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.product-reviews .review .review-header{
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
}
.product-reviews .review .rating-block{
  display: flex;
  align-items: center;
  width: 100px;
  margin-left: 20px;
}
.footer-menu nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  margin: 0 -10px;
}
.footer-menu nav a{
  display: block;
  padding: 10px;
  color: #ffffff;
}
.form-check{
  position: relative;
}
.form-check-input.is-invalid~.invalid-tooltip{
  margin-top: -1rem;
}
.privacy-checkbox + label{ 
  font-size: 14px;
  line-height: 1.2;

}
.cart.fullwidth{
  width: 100% !important;
}
.cart{
  transition: all .3s ease;
}
.cart .cart-header{
  display: flex;
  position: relative;
  padding: 15px;
  background: var(--dark-bg);
  color: #ffffff;
}
.vsp .vsp__header{
  width: 100%;
}
.vsp .cart-header h2{
  position: relative;
  font-size: 22px;
  font-weight: 600;
  margin: auto;
}
.vsp .cart-header .cart-toogle-width,
.vsp .cart-header .vsp-close{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;      
    border: 1px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
    box-sizing: border-box;
}
.vsp .cart-header .vsp-close{
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 0;
}
.vsp .cart-header .vsp-close:hover{
  box-shadow: 0 4px 10px #0003, 0 4px 20px #0000001a;
}
.vsp .cart-header .vsp-close__x{
  width: 14px;
  height: 14px;
  top: 0;
}
.vsp .cart-header .vsp-close__x:before, 
.vsp .cart-header .vsp-close__x:after{
  height: 14px;
  background-color: #fff;
}
.cart .cart-body,
.cart .cart-body .cart-empty{
  position: relative;  
  display: flex;  
  flex-direction: column;    
}
.cart-sidebar .cart-body,
.cart-sidebar .cart-body .cart-empty{
  min-height: 100%;
  background: #f5f5f5;
  padding: 15px;
}
.cart .cart-body .cart-empty{
  justify-content: center;
  align-items: center;
  margin: auto;
}
.cart .cart-body .cart-empty h2{
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}
.cart .cart-body .cart-product{
  position: relative;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 0.3em;
  background: #ffffff;
}
.cart .cart-body .cart-product:last-child{
  margin-bottom: 0;
}
.cart .cart-body .cart-product .cart-remove{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.cart .cart-body .cart-product .cart-remove-btn{
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  background-color: transparent;
  box-shadow: none;
  color: #999999;
  font-size: 16px;
}
.cart .cart-body .cart-product .cart-remove-btn:hover{
  background-color: var(--error);
}
.cart .cart-body .cart-product .cart-remove-btn:hover i{
  color: #ffffff !important;
}
.cart .cart-body .cart-product .confirm-remove{
  position: absolute;
  top: 40px;
  left: auto;
  right: 5%;
  width: 90%;
  max-width: 520px;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--error);
  border-radius: 0.3em;
}
.cart .cart-body .cart-product .confirm-remove-header{
  min-height: 65px;
  position: relative;
  padding: 10px 15px 10px 50px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  background: var(--error);
}
.cart .cart-body .cart-product .confirm-remove-header i{
  position: absolute;
  top: 15px;
  left: 10px;
  font-size: 30px;
  color: rgba(255,255,255,.3);
}
.cart .cart-body .cart-product .confirm-remove-buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}
.cart .cart-body .cart-product .confirm-remove-buttons .btn{
  margin: 0 10px;
}
.cart .cart-body .cart-product .product-content{
  position: relative;
}
.cart .cart-body .cart-product .product-content.overlay{
  filter: blur(2px);
}
.cart .cart-body .cart-product .product-content.overlay:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: rgba(255,255,255,.75);
}
.cart .cart-body .cart-product .product-image{
  position: relative;
}
.cart .cart-body .cart-product .product-image img{
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: auto;
}
.cart .cart-body .cart-product .product-title{
  font-size: 16px;
  text-align: center;
}
.cart .cart-body .cart-product .cart-row{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #dddddd;  
}
.cart .cart-body .cart-product .product-content .cart-row.product-total{
  border-bottom: none;
}
.cart .cart-body .cart-product .cart-row .cart-col{
  width: 50%;
  font-size: 14px;
}
.cart .cart-body .cart-product .cart-row .cart-col:first-child{
  padding-right: 5px;
}
.cart .cart-body .cart-product .cart-row .cart-col:last-child{
  padding-left: 5px;
  text-align: right;
  font-weight: bold;
}
.cart .cart-body .cart-product .product-price .open-price-table {
  width: 20px;
  height: 20px;
  font-size: 10px;
  box-sizing: border-box;
  padding: 0px;
  position: relative;
  top: -3px;
  margin-left: 10px;
}
.cart .cart-body .cart-product .product-count .quantity .minus, 
.cart .cart-body .cart-product .product-count .quantity .plus {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 10px;
}
.cart .cart-body .cart-product .product-count .quantity .qty{
  width: 30px;
  height: 25px;
  font-size: 12px;
}
.cart .cart-body .cart-product .cart-row .cart-col.price,
.cart .cart-body .cart-product .cart-row .cart-col.summ{
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
}
.cart .cart-body .cart-product .cart-row .cart-col.price .from{
  padding-right: 5px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: auto;
  padding-bottom: 2px;
}
.cart .cart-body .cart-product .cart-row .cart-product-summ{
  display: flex;
}
.cart .cart-body .cart-product .cart-row .cart-product-summ > div > span{
    display: block;
    font-size: 8px;
    text-transform: uppercase;
}
.cart .cart-body .cart-product .cart-row .cart-product-summ .star{
  font-size: 16px;
  font-weight: bold;
}
.cart .cart-body .cart-product .icon-rub svg{
  width: auto;
  height: 15px;
  margin-left: 5px;
}
.cart .cart-body .cart-product .product-price .label{
  display: flex;
  align-items: center;
}
.cart .cart-body .cart-product .product-price
.cart .cart-body .cart-product .price-table-container{
  position: relative;
}
.cart .cart-body .cart-product .price-table{
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 9;
  width: 200px;
  display: block;
  color: #ffffff;
  background: var(--primary);
  border-radius: 0.3em;
  box-shadow: 5px 5px 6px rgb(0, 0, 0, .1);
}
.cart .cart-body .cart-product .price-table:before{
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: -7px;
  left: 13px;
  margin-top: -7px;
  box-shadow: 5px 5px 6px rgb(0, 0, 0, .1);
  transform: rotate(45deg);
  background: var(--primary);
}
.cart .cart-body .cart-product .price-table .close-price-table{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;    
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--error);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    font-size: 10px;
    display: none;
}
.cart .cart-body .cart-product .price-table .price-table-title{
  font-size: 14px;
  text-align: center;
  padding-right: 20px;
}
.cart .cart-body .cart-product .price-table .price-table-row, 
.cart .cart-body .cart-product .price-table .price-table-header{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  margin-bottom: 0;
  padding: 5px 10px;
}
.cart .cart-body .cart-product .price-table .price-table-row:last-child{
  border-bottom: none;
}
.cart .cart-body .cart-product .price-table .price-table-row .price-table-col, 
.cart .cart-body .cart-product .price-table .price-table-header .price-table-col{
  padding: 5px;
  font-size: 14px;
  border: none;
}
.cart .cart-body .cart-product .price-table .price-table-header .price-table-col:first-child{
  margin-left: 0;
}
.cart .cart-body .cart-product .price-table .price-table-header .price-table-col:last-child{
  margin-right: 0;
}
.cart .cart-body .cart-product .price-table .price-table-row .price-table-col:last-child{
  font-size: 16px;
}
.cart-sidebar.fullwidth  .cart-body .cart-product{
  width: 95%;
  max-width: 1200px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.cart.fullwidth  .cart-body .cart-product .product-content{
  display: flex;
}
.cart.fullwidth  .cart-body .cart-product .product-image{
  width: 230px;
  min-width: 230px;
  padding-right: 30px;
}
.cart.fullwidth  .cart-body .cart-product .product-detail{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cart.fullwidth  .cart-body .cart-product .product-title{
  width: 100%;
  text-align: left;
  padding: 15px 0;
}
.cart.fullwidth  .cart-body .cart-product .product-attrs{
  width: 66.66%;
  padding-right: 30px;
}
.cart.fullwidth  .cart-body .cart-product .product-price-container{
  display: flex;
  flex-wrap: wrap;
  width: 33.33%;
  margin-top: auto;
  margin-bottom: 0;
}
.cart.fullwidth  .cart-body .cart-product .product-price-container .product-count,
.cart.fullwidth  .cart-body .cart-product .product-price-container .product-total,
.cart.fullwidth  .cart-body .cart-product .product-price-container .product-price{
  border: none;
}

.cart .cart-footer{
  padding: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  background: var(--dark-bg);
}

#byOneClickModal .modal-header .btn-close{
  margin-left: 0 !important;
}
#byOneClickModal .product-title{
  text-align: center;
}
#byOneClickModal .single-product-info .product-image{
  width: 40%;
}
#byOneClickModal .single-product-info .product-info{
  width: 60%;
}
#byOneClickModal .variations{
  width: 100%;
  max-width: 450px;
  margin: auto;
}
#byOneClickModal .variation-section{
  padding: 0;
  border-bottom: 1px solid #dddddd;
}
#byOneClickModal .variation-header{
  display: flex;
  align-items: center;
  padding: 10px 0;
}
#byOneClickModal .variation-title{
  display: flex;
  width: auto;
  padding-right: 15px;
  font-size: 14px;
  margin: auto;
  margin-left: 0;
}
#byOneClickModal .variation-option{
  display: flex;
  font-weight: bold;
  font-size: 14px;
  margin-right: 15px;
  margin-left: auto;
}
#byOneClickModal .variation-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;    
  font-size: 10px;
  border-radius: 0.3em;
  color: #ffffff;
  background: var(--primary);
  cursor: pointer;
  margin: auto 0;
}
#byOneClickModal .variation-arrow::before{
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#byOneClickModal .variation-header.active .variation-arrow::before{
  content: '\f077';
}
#byOneClickModal .variation-container{
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
#byOneClickModal .variation-header.active + .variation-container{
  height: auto;
  opacity: 1;
  visibility: visible;  
  padding: 0 5px 10px;
  transition: all .3s ease;
}
#byOneClickModal .variation-container .variation.type-image label {
    width: 30px;
    height: 30px;
    margin: 5px;
}
#byOneClickModal .variation-container .variation.type-image::before {
    min-width: 90px;
    font-size: 12px;
}
#byOneClickModal .variation-container .variation.type-image input:checked + label::before{
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
}
#byOneClickModal .variation-container .variation .switch-wrap {
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
}
#byOneClickModal .variation-container .variation .switch {
    width: 16px;
    height: 16px;
    line-height: 16px;
    top: 2px;
    left: 3px;
}
#byOneClickModal .variation-container .variation input:checked + label .switch {
    left: 17px;
}
#byOneClickModal .variation-container .variation label{
  margin: 5px;
  font-size: 14px;
}
#byOneClickModal .cart-row{
  width: 100%;
  max-width: 450px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;  
}
#byOneClickModal .cart-row.product-total{
  border-bottom: none;
}
#byOneClickModal .cart-row .cart-col{
  width: 50%;
  font-size: 14px;
}
#byOneClickModal .cart-row .cart-col:first-child{
  padding-right: 5px;
}
#byOneClickModal .cart-row .cart-col:last-child{
  padding-left: 5px;
  text-align: right;
  font-weight: bold;
}
#byOneClickModal .product-price .label{
  display: flex;
  align-items: center;
}
#byOneClickModal .product-price .open-price-table {
  width: 20px;
  height: 20px;
  font-size: 10px;
  box-sizing: border-box;
  padding: 0px;
  position: relative;
  top: -3px;
  margin-left: 10px;
}
#byOneClickModal .product-count .quantity .minus, 
#byOneClickModal .product-count .quantity .plus {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 10px;
}
#byOneClickModal .product-count .quantity .qty{
  width: 35px;
  height: 30px;
  font-size: 14px;
}
#byOneClickModal .cart-row .cart-col.price,
#byOneClickModal .cart-row .cart-col.summ{
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
}

#byOneClickModal .single-product-info .product-price .icon-rub svg{
  height: 15px;
}
#byOneClickModal .single-product-info .stock-status{
  margin-bottom: 0;
  text-align: left;
}
#byOneClickModal  .price-table-container{
  position: relative;
}
#byOneClickModal  .price-table{
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 9;
  width: 250px;
  display: block;
  color: #ffffff;
  padding: 15px;
  background: var(--primary);
  border-radius: 0.3em;
  box-shadow: 5px 5px 6px rgb(0, 0, 0, .1);
}
#byOneClickModal  .price-table:before{
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -7px;
  margin-top: -7px;
  box-shadow: 5px 5px 6px rgb(0, 0, 0, .1);
  transform: rotate(45deg);
  background: var(--primary);
}
#byOneClickModal  .price-table .close-price-table{
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
#byOneClickModal .price-table .price-table-title{
  font-size: 14px;
  text-align: center;
  padding-right: 20px;
}
#byOneClickModal  .price-table .price-table-row, 
#byOneClickModal  .price-table .price-table-header{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  margin-bottom: 0;
}
#byOneClickModal .price-table .price-table-row:last-child{
  border-bottom: none;
}
#byOneClickModal .price-table .price-table-row .price-table-col, 
#byOneClickModal .price-table .price-table-header .price-table-col{
  padding: 5px;
  font-size: 14px;
  border: none;
}
#byOneClickModal .price-table .price-table-header .price-table-col:first-child{
  margin-left: 0;
}
#byOneClickModal .price-table .price-table-header .price-table-col:last-child{
  margin-right: 0;
}
#byOneClickModal .price-table .price-table-row .price-table-col:last-child{
  font-size: 16px;
}

.cart-page .steps section{
  background: #ffffff;
  padding: 10px 15px  !important;
  margin-bottom: 20px;
  border-radius: .3em;
}
.cart-page .steps .step-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-page .steps .step-header h2{
  font-size: 18px;
  margin-top: auto;
  margin-bottom: auto;
}
.cart-page .steps .btn.next-step{
  display: flex;
  margin-top: 20px;
  margin-left: auto;
  margin-right: 0;
}
.cart-page .cart .cart-body .cart-product {
    padding: 20px 10px;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none !important;
    border-bottom: 2px #ddd dotted;
}

.cart-page .shippings,
.cart-page .payments{
  display: flex;
}
.cart-page .shippings .shippings-selects,
.cart-page .payments .payments-selects{
  display: flex;
  flex-direction: column;
  min-width: 270px;
  padding-right: 20px;
}
.cart-page .shippings .shippings-selects .shipping-title,
.cart-page .payments .payments-selects .payment-title{
  position: relative;
  display: flex;
  width: 250px;
  min-width:  250px;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #dddddd;
  border-radius: 0.3em;
  cursor: pointer;
}
.cart-page .shippings .shippings-selects .shipping-title:last-child,
.cart-page .payments .payments-selects .payment-title:last-child{
  margin-bottom: 0;
}
.cart-page .shippings .shippings-selects .shipping-title:hover,
.cart-page .payments .payments-selects .payment-title:hover{
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px #00000012, 0 4px 6px -2px #0000000d;
}
.cart-page .shippings .shippings-selects .shipping-title.active,
.cart-page .payments .payments-selects .payment-title.active{
  box-shadow: 0 10px 15px -3px #00000012, 0 4px 6px -2px #0000000d;
  border-color: var(--success);
}
.shipping-tk{
  position: relative;
}
.cart-page .shippings .shippings-selects .shipping-title.active:before,
.cart-page .payments .payments-selects .payment-title.active:before,
.shipping-tk.active:before {
  content: '\f00c';
  position: absolute;
  top: -5px;
  right: -5px;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 600;
  background: var(--secondary);
  color: #fff;
}
.cart-page .shippings .shippings-selects .shipping-title .icon,
.cart-page .payments .payments-selects .payment-title .icon{
  margin-right: 20px;
}
.cart-page .shippings .shipping-description,
.cart-page .payments .payment-description{
  width: 100%;
  font-size: 14px;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 0.3em;
}

.cart-page .steps section.cart-map{
  position: relative;
  width: 100%;
  height: 250px;
  padding: 0 !important;
  margin-top: 15px;
  margin-bottom: 0;
}

.cart-page .order-form{
  width: 100%;
  max-width: 700px;
  margin: auto;
}
.cart-page .order-comment{
  resize: none;
  height: 130px;
}
#search-result strong{
  color: var(--primary)
}
.tk-blocks{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: .5rem;
  background: #f5f5f5;
}
.tk-blocks .tk-block{
  position: relative;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  margin: 15px;
}
.tk-blocks .tk-block a{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
  align-items: center;  
  width: 100%;
  height: 100%; 
  padding: 20px;
  border-radius: .5rem;  
  margin: 0;    
  background: #ffffff;
  overflow: hidden;
  transition: all .5s ease; 
}
.tk-blocks .tk-block a:hover{
  box-shadow: 0 0 15px 3px rgba(0, 0, 0, .25);
  background: var( --primary );  
  color: #ffffff;
  transition: all .5s ease;
}
.tk-blocks .tk-block a:hover span{
  color: #ffffff;
  transition: all .5s ease;
}
.tk-blocks .tk-block img{
  display: block;
  max-width: 100%;
  max-height: 70px;
  height: auto;
  width: auto;
  margin: auto auto 15px;
}
.tk-blocks .tk-block span{
  color:#111111;
  display: block;
  margin-top: auto;
  margin-bottom: 0;
}
#gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px -10px 0;
}
#gallery .gallery-item{
  position: relative;
  width: 270px;
  height: 200px;
  max-width: 100%;
  overflow: hidden;
  border-radius: .5rem;
  margin: 10px;
}
#gallery.gallery-portrait .gallery-item{
  height: 400px;
}
#gallery .gallery-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
#gallery .gallery-item picture,
#gallery .gallery-item img{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
#gallery a::after{
  content: '\f00e';
  display: block;
  position: absolute;
  z-index: 3;
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
#gallery a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
#gallery a:hover::after,
#gallery a:hover::before{
  visibility: visible;
  transition: all .5s ease;  
}
#gallery a:hover::after{
  opacity: 0.5;  
}
#gallery a:hover::before{
  opacity: 0.35; 
}
#clients-gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px -10px 0;
}
#clients-gallery .gallery-item{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 270px;
  overflow: hidden;
  border-radius: .5rem;
  padding: 15px;
  border: 1px solid #eeeeee;
  margin: 10px;
  background: #ffffff;
  transition: all .5s ease;
}
#clients-gallery .gallery-item:hover{
  box-shadow: 0 0 15px 3px rgba(0, 0, 0, .25);
  transition: all .5s ease;
}
#clients-gallery .gallery-item img{
  display: block;
  width: auto;
  height:auto;
  max-width: 100%;
  max-height: 130px;
  margin: auto auto 15px;
}
#clients-gallery .gallery-item p{
  text-align: center;
  margin-bottom: 0;
  margin-top: auto;
  line-height: 1.2;
}
main[slug="company"] .gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
main[slug="company"] .gallery .gallery-item{
  display: flex;
  justify-content: center;
  align-items: center;  
  width: 180px !important;
  height: 140px;
  padding: 10px !important;
  margin: 10px !important;
  border: 1px solid #dddddd;
  border-radius: .5rem;
  overflow: hidden;
}
main[slug="company"] .gallery .gallery-item img{
  display: block;
  width: 100%;
  border: none !important;
}
#mobile-menu .list-group-light>.list-group-item{
  border-bottom-width: 1px;
}
#product-tabs .items-row{
  margin-bottom: 15px;
  justify-content: center;
}
#product-tabs .items-row .item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  padding: 20px;
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
  margin: 10px;
  text-align: center;
}
#product-tabs .items-row .item p:last-child{
  margin-bottom: 0;
}
#product-tabs .items-row .item .img{
  margin-bottom: 15px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery .gallery-item{
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 150px;
  margin: 10px;
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
  background: #f5f5f5;
  overflow: hidden;
}
.gallery .gallery-item img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border: none !important;
}
.gallery .gallery-caption{
  margin: auto  !important;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
}
.gallery br{
  display: none;
  visibility: hidden;
}
.gallery-cover .gallery-item img{
  width: 100% !important;
  height: 100% !important;
}
#productview .pv_head_ico{
  bottom: 130px !important;
}

@media screen and (min-width: 1100px){
  /*#informer-wrap .info-image .informer-block.right .informer-text{
    transform: translate(-100%, -50%);
  }
  #informer-wrap .info-image .informer-block.bottom .informer-text{
    transform: translate(calc(-50% + 15px), -100%);
      margin-left: 0;
  }*/
  #informer-wrap .info-image .informer-block.top .informer-text,
  #informer-wrap .info-image .informer-block.bottom .informer-text{
    transform: translate(-50%, 0);
  }
  
  #informer-wrap .info-image .informer-block.right .informer-text,
  #informer-wrap .info-image .informer-block.left .informer-text{
    transform: translate(0,-50%);
  }
}
@media screen and (max-width: 1199px){
  .cart.fullwidth  .cart-body{
    padding-bottom: 30px
  }
  #main-header .header-bottons{
    padding-top: 0;
  }
  #main-header .header-bottons a{
    margin-right: 0;
  }
  #main-header .header-bottons a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 56px;
    padding: 8px;
  }
  #main-header .header-bottons a i{
    display: flex;
    align-items: center;
    justify-content: center; 
    min-width: 24px;
    min-height: 24px;
    margin-top: 0;
    margin-bottom: 8px;
  }
  #main-header .account-btn .dropdown-toggle span{
    font-size: 10px;
    height: 15px;
    padding-right: 5px;
    line-height: 1;
  }
  #main-header .account-btn .dropdown-toggle:after{
    display: block;
    position: absolute;
    right: 0;
    bottom: 10px;
  }
  #main-header .account-btn i{
    height: 20px;
    margin-top: 5px;
    margin-bottom: 2px;
  }
  #main-header .header-bottons a span,
  #main-header .btn span{
    display: block;
    margin-top: auto;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
  }  
  .section-footer-contact .contact-block{
    padding: 30px 20px;
  }
  .section-footer-contact .contact-block h2{
    text-align: center;
  }
  .section-footer-contact .contact-block .footer-address,
  .section-footer-contact .contact-block .footer-email,
  .section-footer-contact .contact-block .footer-phone{
    width: 100%;
    max-width: 290px;
    margin-left: auto;
    margin-right: auto
  }
}
@media screen and (max-width: 1099px){
  #informer-wrap .info-image .informer-block.right .informer-text,
  #informer-wrap .info-image .informer-block.top .informer-text,
  #informer-wrap .info-image .informer-block.bottom .informer-text,
  #informer-wrap .info-image .informer-block.left .informer-text{
    width: 100%;
    margin-left: 0;
    left: 50% !important;
    transform: translate(-50%, 0);
  }
  #informer-wrap .info-image .informer-block .informer-text::after{
    content: '\f00d';
    display: block;
    position: absolute;  
    top: 3px;
    right: 7px; 
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 600;
    color: #aaaaaa;
  }
  .icons-box{
    width: 23.5%
  }
}

@media screen and (max-width: 980px){
  #product-title{
    text-align: center
  }
  .single-product-info {
    flex-wrap: wrap;
  }
  .single-product-info .product-image, 
  .single-product-info .product-info,
  #byOneClickModal .single-product-info .product-image,
  #byOneClickModal .single-product-info .product-info{
      width: 100%;
  }
  .single-product-info .product-info {
      padding: 0;
      padding-top: 30px
  }
  .price-table .price-table-row, 
  .price-table .price-table-header,
  .quantity-container{
    margin-left: auto;
    margin-right: auto
  }
  .single-product-info{
    padding: 20px;
  }
  #product-gallery{
    padding: 0;
    padding-top: 20px;
  }
  .price-table-title,
  .single-product-info .stock-status{
    text-align: center
  }
  .single-product-info .product-form .order-buttons{
    margin-left: auto;
    margin-right: auto
  }
  .cart.fullwidth  .cart-body .cart-product .product-attrs,
  .cart.fullwidth  .cart-body .cart-product .product-price-container{
    width: 100%;
  }
  .cart.fullwidth  .cart-body .cart-product .product-attrs{
    padding-right: 0;
  }
  .cart.fullwidth .cart-body .cart-product .product-price-container .product-count,
  .cart.fullwidth .cart-body .cart-product .product-price-container .product-price{
    border-bottom: 1px solid #dddddd;
  }
}

@media screen and (max-width: 900px){
  .icons-box{
    width: 31.5%
  }
}
@media screen and (max-width: 829px){
  #main-header{
    padding: 5px 0;
  }
}
@media screen and (max-width: 768px){
  .section-title{
    text-align: center;
  }
  .section-title::after{
    left: 50%;
    transform: translateX(-50%);
  }
  .cart-page .shippings,
  .cart-page .payments{
    flex-wrap: wrap;
  }
  .cart-page .shippings .shippings-selects,
  .cart-page .payments .payments-selects{
    width: 100%;
    padding-right: 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }  
  .footer-menu nav{
    flex-direction: column;
    align-items: center;
    justify-content: center
  }
  .container {
    padding: 0;
  }
  .cart-page .order-form{
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
}
@media screen and (max-width: 649px){
  .products-list{
    justify-content: center
  }
}
@media screen and (max-width: 599px){
  #sidebar-nav nav.contact-menu a{
    margin-left: auto;
    margin-right: auto;    
  }
  .icons-box{
    width: 48.5%
  }
  .cart.fullwidth .cart-body .cart-product .product-content{
    flex-wrap: wrap
  }
  .cart.fullwidth .cart-body .cart-product .product-content .product-image,
  .cart.fullwidth .cart-body .cart-product .product-content .product-detail{
    width: 100%
  }
  .cart.fullwidth .cart-body .cart-product .product-content .product-image{
    padding: 0;

  }
}
.logo-helper{
  display: none;
}
@media screen and (max-width: 575px){
  #main-header #logo{
    width: 50px;
  }
  .logo-helper{
    display: block;
    font-size: 9px;
  }
  .section-product-cats .product-cats-container .product-cat{
    max-width: 362px;
    margin: auto;
  }
  .section-product-cats .product-cats-container .product-cat .image{
    width: 150px;
    max-width: 100%;
    height: auto;
    margin: auto;
  }
  h2  {
    text-align: center;
  }
  .section-leave-feedback .stars i{
    font-size: 32px;
  }

}

@media screen and (max-width: 490px){
  .single-product-info .product-form .order-buttons button{
    width: 100%;
  }
}