/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/***************/

a.transparent-btn.custom-link {
    color: #000;
    border-color: #000;
    margin: 25px auto 15px;
    transition: 0.5s;
}
a.transparent-btn.custom-link:hover {
    background: #000;
    color: #fff;
}
ul.dropdown-menu {
    border: none;
    border-radius: 0;
    background: #fff;
    transition: .5s;
    padding-bottom: 0;
}
ul.dropdown-menu li {
    border-bottom: 1px solid rgba(120, 35, 78, 0.22);
}
ul.dropdown-menu li:last-child{
  border: none;
}
.product-description td {
    border: 1px solid;
    padding: 5px 10px;
}
.product-description table {
    width: 100%;
    font-style: italic;
}
.footer{
    padding-top: 15px;
}
/*****chinchilla-rus style changes********/
.simple-text .heading {
    margin: 40px auto 15px;
}
.footer-logo img {
    width: 85%;
    height: auto;
}
/**********/
@media screen and (max-width: 767px){
  .banners {
      width: 100%;
      overflow: hidden;
  }
  .banners a {
      max-width: 100%;
      overflow: hidden;
  }
  .banners img {
      width: 100%;
      height: auto;
  }
  .logo {
      margin-left: 0;
  }
  .baner-description h2 {
      font-size: 42px;
  }
  .baner-description h3 {
      font-size: 28px;
  } 
  .why-us-item {
      text-align: center;
  }
  .owl-carousel{
        width: auto;
    }
    .pref-img-container {
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 15px;
  }
  .owl-pref .owl-nav {
      position: absolute;
      bottom: -14px;
      left: calc(50% - 35px);
      /* background: #333; */
  }
  .pref-img-txt {
      text-align: center;
  }
  .pref-img-txt ul{
    text-align: left;
  }
  .footer-logo{
    text-align: center;
  }
  .footer-logo img {
      width: 40%;
      height: auto;
  }
  .logo img {
      width: 25%;
      height: auto;
  }
}

/*****Calc********/
.calculator-slider-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calculator-slider-header input {
  width: 60px;
  text-align: center;
  padding: 10px 0;
}
.calculator-slider-range input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  overflow: visible;
}
.calculator-slider-range input[type=range]:active,
.calculator-slider-range input[type=range]:focus {
  outline: none;
}
.calculator-slider-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 23px;
  width: 23px;
  border-radius: 50%;
  background: #258bce;
  cursor: pointer;
}
.calculator .large-font {
  font-size: 75px;
  color: #fff;
}
.modal-width {
  width: 80%!important;
}
#sh-spotlight {
  margin-bottom: 20px;
}
.buy-shinshil {
  width: 60%;
  margin: 0 auto;
}
#vivod {
  max-width: 115px;
  border: 1px solid #5c9ec4;
  color: #3880aa;
  border-radius: 4px;
  font-size: 1.75rem;
}
.buy-select {
  width: 115px;
} 
.uk-progress {
    background: #eef4ff none repeat scroll 0 0;
    border-radius: 20px;
    border: 1px solid #dfeaff;
    box-sizing: border-box;
    height: 32px;
    line-height: 20px;
    overflow: hidden;
    padding: 5px;
}
section.main-collections.calc.container-fluid {
    background: #3880aa;
    background: #258dc8;
    background: -moz-linear-gradient(left, #258dc8 0%, #258dc8 100%);
    background: -webkit-linear-gradient(left, #258dc8 0%,#258dc8 100%);
    background: linear-gradient(to right, #3880aa 0%,#63a4c9 100%);
}
.calc .heading h2 {
    color: #fff;
}
.calc .heading span {
    border-left-color: #fff;
}
.calc h3 {
    color: #fff;
}
.calculator-slider-range {
    margin-top: 39px;
}
.calc p {
    font-style: italic;
    /* font-size: .8em; */
}
.calc blockquote p {
    margin: 0;
    color: #3880aa;
    font-style: normal;
    font-size: 32px!important;
    padding-left: 0;
    border-left: 0;
}
.calc blockquote.uk-clearfix {
    text-align: center;
    background: #fff;
    padding: 1px;
}

/*****End calc******/
/****menu****/
.drop {
    display: none;
}
li.menu-item-has-children:hover>.drop {
    display: block;
}
ul.my-sub-menu {
    display: block;
    position: absolute;
    z-index: 1000;
    background: #fff;
    border: 1px solid rgba(56, 128, 170, 0.26);
    transition: 0.5s;

}
li .drop ul.my-sub-menu li ul {
    left: 100%;
    background: #4a90b9;
    top: -1px;
    min-width: 200px;
    width: max-content;
}
li .drop ul.my-sub-menu li ul a {
  color: #fff;
}
ul.my-sub-menu li {
    display: block;
    padding: 15px 8px;
    border-bottom: 1px solid #4a90b9;
}
ul.my-sub-menu li:last-child{
  border-bottom: 0;
}
li .drop ul.my-sub-menu li ul li{
  border-bottom: 1px solid #fff;
}
ul.my-sub-menu li:hover {
    background: rgba(0,123,255,.25);
}
ul.my-sub-menu li:hover a {
    text-decoration: none;
}
/*********/
section.main-slider.container-fluid {
    background-size: cover!important;
    background-repeat: no-repeat;
}
section.main-slider .row {
    background: rgba(6, 38, 58, 0.5);
}
.main-txt {
    text-align: center;
    margin: 80px auto;
}
section.utp.container-fluid {
    background: #258dc8;
    background: -moz-linear-gradient(left, #258dc8 0%, #258dc8 100%);
    background: -webkit-linear-gradient(left, #258dc8 0%,#258dc8 100%);
    background: linear-gradient(to right, #3880aa 0%,#63a4c9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#258dc8', endColorstr='#258dc8',GradientType=1 );
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 30px auto;
    padding: 30px 0;
}

.price-descr ul {
    list-style: none;
    padding-left: 0;
}
.price-item {
    border: 1px solid #5b9ec3;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
}
p.cur-price {
    border-bottom: 1px solid #5a9cc2;
    color: #3880aa;
}
.price-descr li {
    margin-bottom: 10px;
}
.price-item a {
    background: #5b9dc3;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 10px;
}

.header-info i {
    display: inline-block;
    float: left;
    font-size: 22px;
    margin-right: 7px;
}
.header-info {
    margin-top: 25px;
}
.logo-slider-link .item a img {
    border-radius: 50%;
}
.logo-slider-link .item  {
    padding:25%;
}
.page-template-blog .entry img {
    width: 30%;
    height: auto;
    float: left;
    margin-right: 20px;
}

.page-template-blog .post {
    margin-bottom: 30px;
}
img.size-full {
    max-width: 100%;
    height: auto;
}
.simple-text-block.col-12 img {
    max-width: 100%;
    height: auto;
}
input.transparent-btn.credit-btn {
    background: #28a745;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 10px;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
}
input.transparent-btn.credit-btn:hover{
  background: #2ed053;
}
.single-post .product-description {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-template-blog section {
    margin-bottom: 30px;
}
span.news-btn-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}
.news-promo {
    margin-top: 50px;
}
a.button.slider-btn{
  background: #0e010f;
}
.new-catalog .col-md-3 {
    margin-bottom: 15px;
}
.new-catalog.category .small-product-item {
    border: 1px solid #4a8fb7;
}
.new-map {
    margin: 30px 0;
}
.new-map iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(56, 128, 170, 0.4588235294117647);
}
a.button.slider-btn.map-btn {
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    text-align: center;
    display: block;
}
.question{
  background: url("../images/question.svg");
  width: 50px;
    height: 50px;
    display: block;
    background-size: contain;
    cursor:pointer;
}
.question:before {
    content: "";
    position: absolute;
    left: 6px;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
    width: 50px;
    height: 50px;
}
.new-map p {
    text-align: center;
    font-size: 24px;
}
.float-question {
    position: fixed;
    right: 50px;
    top: 50px;
    z-index: 1000;
    cursor: pointer;
}
.float-question button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 5px 0 rgba(0, 243, 124, 0.8);
  }
  70% {
    box-shadow: 0 0 5px 13px rgba(93, 243, 67, 0);
  }
  100% {
    box-shadow: 0 0 5px 0 rgba(93, 243, 67, 0);
  }
}