/**
 * 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;
}

/**
 * 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('https://e2c6ee.claudeassets.com/20250330071745im_/https://holodsystem.com/catalog/view/theme/BurnEngine/stylesheet/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%;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #cccccc;
}
.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure {
    /* The shadow behind the image */
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

#popupcart_extended {
  display: none;
  overflow: hidden;
  font-size: 14px !important;
  border-radius: 6px !important;
  box-shadow: 0 0 15px #555 !important;
  background-color: #f5f5f5;
  padding: 15px;
  width: 620px;
  transform: translateX(0) translateY(-20%);
  -o-transform: translateX(0) translateY(-20%);
  -moz-transform: translateX(0) translateY(-20%);
  -webkit-transform: translateX(0) translateY(-20%);
  transition: all ease-in-out 0.2s;
}

.popup_visible #popupcart_extended {
  transform: translateX(0) translateY(0%);
  -o-transform: translateX(0) translateY(0%);
  -moz-transform: translateX(0) translateY(0%);
  -webkit-transform: translateX(0) translateY(0%);
  transition: all ease-in-out 0.2s;
}

#popupcart_extended .head {
  font-size: 1.2em;
  font-weight: 400;
  background: #eee;
  background: linear-gradient(to bottom, #f5f5f5 0%, #e2e2e2 100%);
  color: #666;
  margin: -15px -15px 0;
  padding: 13px 15px 15px;
  border-bottom: solid 1px #d2d2d2;
  text-shadow: 1px 1px 0 #f8f8f8;
  border-radius: 6px 6px 0 0;
}

#popupcart_extended .head .fa-close {
  opacity: 1;
  float: right;
  cursor: pointer;
  padding: 5px;
  margin: -1px -4px 0 0;
  color: #888;
}
#popupcart_extended .head .fa-close:hover {
  color: #f00;
}
#popupcart_extended .popupcart_info {
  max-height: 370px;
  min-height: 60px;
  margin-bottom: 5px;
  overflow-y: auto;
}
#popupcart_extended .popupcart_info table {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border-collapse: collapse;
  border: none;
}
#popupcart_extended .popupcart_info tr {
  border-collapse: collapse;
}
#popupcart_extended .popupcart_info tr:first-child {
  border-collapse: collapse;
}

#popupcart_extended .popupcart_info tr:first-child td {
  vertical-align: middle;
  height: 20px;
  min-height: 20px;
  color: #777;
  font-size: 0.8em;
  text-shadow: 0 1px 0 #fff;
  padding: 6px 10px 7px;
}

#popupcart_extended .popupcart_info .hr {
  height: 0px !important;
  min-height: 0px !important;
}

#popupcart_extended .popupcart_info .hr td {
  height: 0px !important;
  min-height: 0px !important;
  border-top: solid 1px #e2e2e2;
  border-bottom: solid 1px #fff;
}

#popupcart_extended .popupcart_info td {
  vertical-align: middle;
  border-collapse: collapse;
  padding: 0 10px;
  height: 80px;
  min-height: 80px;
  box-sizing: border-box;
}

#popupcart_extended .popupcart_info tr:first-child .image {
  overflow: hidden;
  text-align: center;
  padding: 0;
  text-overflow: ellipsis;
}

#popupcart_extended .popupcart_info .image {
  width: 64px;
  max-width: 80px;
  vertical-align: middle;
  text-align: center;
  padding: 0;
}

#popupcart_extended .popupcart_info .name {
  min-width: 130px;
  line-height: 1em;
  padding-left: 15px !important;
}

#popupcart_extended .popupcart_info .name a {
  font-size: 0.9em;
  line-height: 1.5em;
}

#popupcart_extended .popupcart_info small {
  font-size: 0.7em;
}

#popupcart_extended .popupcart_info .image img {
  width: 64px !important;
  max-width: 64px !important;
  height: auto;
  border: solid 1px #e2e2e2;
  border-radius: 3px;
  padding: 4px;
  background: #fff;
  outline: 0;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
}

#popupcart_extended .popupcart_info .brand {
  text-align: center;
  font-size: 0.9em;
}

#popupcart_extended .popupcart_info .quantity {
  width: 82px;
  min-width: 82px;
  padding: 0 5px;
  text-align: center;
}

#popupcart_extended .popupcart_info .quantity input[type='text'] {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 40px !important;
  height: 31px !important;
  padding: 1px 0px 0px !important;
  border: solid 1px #ccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  box-shadow: inset 0px 1px 1px #ddd;
  background: #fff !important;
  color: #555 !important;
  line-height: normal !important;
  font-size: 12px !important;
}

#popupcart_extended .popupcart_info .quantity span {
  display: inline-block;
  margin: 0 0 0 -4px;
  border: solid 1px #ccc;
  border-radius: 0 3px 3px 0;
}
#popupcart_extended .popupcart_info span .fa {
  display: block;
  color: #888;
  padding: 0px 8px;
  background: #eee;
  text-shadow: 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fefefe;
  font-size: 8px;
  cursor: pointer;
  line-height: 16px;
}
#popupcart_extended .popupcart_info .fa:hover {
  background: #e5e5e5;
}

#popupcart_extended .popupcart_info .fa-plus {
  height: 14px;
  border-radius: 0 3px 0 0;
}
#popupcart_extended .popupcart_info .fa-minus {
  height: 15px;
  border-top: solid 1px #ccc;
  border-radius: 0 0 3px 0;
}

#popupcart_extended .popupcart_info .price {
  width: 100px;
  font-size: 14px;
  text-align: center;
}

#popupcart_extended .popupcart_info .remove {
  width: 2px;
  min-width: 0px;
  padding: 0 3px 0 0;
  text-align: right;
}

#popupcart_extended .popupcart_info .remove i {
  cursor: pointer;
}

#popupcart_extended .popupcart_info .remove i:hover {
  color: #f00;
}

#popupcart_extended #cart-total {
  display: none !important;
}

#popupcart_extended .checkout {
  display: none !important;
}

#popupcart_extended .popupcart_total {
  overflow: auto;
  border-bottom: solid 1px #e2e2e2;
  line-height: 23px;
  min-height: 35px;
  padding: 2px 0 10px;
}

#popupcart_extended .popupcart_total table {
  float: right;
}

#popupcart_extended .popupcart_total td {
  display: none;
  border: none;
  text-align: right;
}

#popupcart_extended .popupcart_total td + td {
  padding: 0 0 0 10px;
  text-align: left;
}

#popupcart_extended .popupcart_total tr:last-child td {
  display: table-cell;
  font-size: 1em !important;
}

#popupcart_extended .continue {
  text-decoration: none;
  border-bottom: dashed 1px;
  display: block;
  float: left;
  margin-top: 5px;
  line-height: normal;
}

#popupcart_extended .popupcart_buttons {
  border-top: solid 1px #fff;
  padding: 16px 0 2px;
  text-align: center;
  overflow: auto;
}

#popupcart_extended .popupcart_buttons a,
#popupcart_extended .popupcart_buttons .button {
  font-size: 0.9em;
  line-height: 0.5em;
}

#popupcart_extended .popupcart_buttons .button {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

#popupcart_extended .popupcart_buttons :first-child {
  display: block;
  float: left;
}

#popupcart_extended .popupcart_buttons :last-child {
  display: block;
  float: right;
}

#popupcart_extended .empty {
  padding-top: 15px;
  font-weight: 700;
  text-align: center;
}

#button-cart2 {
  margin-left: 15px;
}

#popupcart_extended #related {
  position: relative;
  overflow: hidden;
  background: #eee;
  margin: 15px -24px -18px;
  padding: 0 20px 15px;
  box-shadow: inset 0 1px 13px #ccc;
}
#popupcart_extended #related .related_product {
  background: none;
  box-shadow: 0 0 0;
  margin: 0;
}
#popupcart_extended #related .heading {
  color: #f00;
  font-size: 1.1em;
  font-weight: 400;
  border-bottom: solid 1px #f8f8f8;
  box-shadow: inset 0 -1px 0 #d5d5d5;
  text-shadow: 0 1px 0 #fff;
  padding: 0 0 10px;
  margin: 10px 5px 12px;
}
#popupcart_extended .owl-wrapper-outer,
#popupcart_extended .owl-wrapper {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: 0 0 0;
}
#popupcart_extended #related .owl-controls {
  height: auto;
}
#popupcart_extended #related .owl-buttons {
  position: absolute;
  top: -42px;
  right: 5px;
}
#popupcart_extended #related .owl-buttons > div {
  position: relative;
  display: inline-block;
  left: auto;
  right: auto;
  width: 20px;
  text-align: center;
  padding: 0px 0 0 1px;
  margin: 0;
  line-height: 1.2em;
  font-size: 1.1em;
  font-weight: 400;
  text-shadow: 0 1px 0 #fff;
  color: #888;
  border: solid 1px #ccc;
  background: #eee;
  background: linear-gradient(to bottom, #eee 0%, #ddd 100%);
  border-radius: 4px;
  opacity: 1;
}
#popupcart_extended #related .owl-buttons > div:hover {
  background: #eee;
}
#popupcart_extended #related .owl-buttons > div:active {
  box-shadow: inset 0 1px #ccc;
  background: #ddd;
  background: linear-gradient(to bottom, #ddd 0%, #eee 100%);
}
#popupcart_extended #related .owl-buttons > div + div {
  margin: 0 0 0 10px;
}
#popupcart_extended #related .owl-pagination {
  position: absolute;
  top: -38px;
  right: 80px;
  font-size: 0.8em;
  display: none;
}
#popupcart_extended #related .owl-pagination > div {
  display: inline-block;
  margin: 0 0 0 8px;
  padding: 0 4px;
  border-radius: 100%;
  color: #888;
}
#popupcart_extended #related .owl-pagination > div:hover {
  background: #ddd;
}
#popupcart_extended #related .owl-pagination > div.active {
  background: #ddd;
}
#popupcart_extended #related .owl-item {
}
#popupcart_extended #related .owl-item + .owl-item {
}
#popupcart_extended #related .owl-item > div {
  margin: 0 5px;
  padding: 10px;
  border: solid 1px #ddd;
  border-radius: 4px;
  background: #f5f5f5;
  box-shadow: inset 0 1px 0 #fff;
}
#popupcart_extended #related .owl-item > div > div {
  border: solid 0px;
  display: inline-block;
  vertical-align: top;
}
#popupcart_extended #related .owl-item > div > div + div {
  margin: 0px 0px 0 0;
  width: 163px;
}
#popupcart_extended #related .image {
  margin: 0 7px 0 0;
}
#popupcart_extended #related .image img {
  width: 82px;
  height: auto;
  border: solid 1px #e2e2e2;
  border-radius: 4px;
  padding: 5px;
  background: #fff;
}
#popupcart_extended #related .name {
  min-height: 40px;
  white-space: pre-line;
  line-height: 1em;
}
#popupcart_extended #related .name a {
  font-size: 0.9em;
  white-space: pre-line;
}
#popupcart_extended #related .price {
  margin: 0 10px 6px 0;
  font-size: 1em;
  line-height: 1em;
  color: #444;
}
#popupcart_extended #related .price .price-old {
  text-decoration: line-through;
  color: #f00;
}
#popupcart_extended #related .cart {
  margin: 0;
}
#popupcart_extended #related .cart .button {
  line-height: 0px;
  margin: -1px 0 0;
  padding: 3px 14px 4px;
}

@media (max-width: 650px) {
  #popupcart_extended {
    width: 95%;
  }
  #popupcart_extended .cont.button {
    display: none;
  }
  #popupcart_extended .popupcart_info .name {
    padding-left: 5px !important;
  }
  #popupcart_extended .popupcart_info .quantity {
    width: 60px;
    min-width: auto;
    padding: 0 5px;
  }
  #popupcart_extended .popupcart_info {
    margin: 0 -12px 5px;
  }
  #popupcart_extended .popupcart_info .quantity {
    width: 50px;
    min-width: auto;
    padding: 0 5px;
  }
  #popupcart_extended .popupcart_info .quantity input {
    border-radius: 3px !important;
    border: solid 1px #ccc !important;
  }
  #popupcart_extended .image,
  #popupcart_extended .popupcart_info .brand,
  #popupcart_extended .popupcart_info .quantity span,
  #popupcart_extended .popupcart_buttons :first-child {
    display: none;
  }
  #popupcart_extended .popupcart_buttons {
    margin: 0 -5px;
  }
}

@media (max-width: 500px) {
  #popupcart_extended .popupcart_info {
    margin: 0 -10px 5px;
  }
  #popupcart_extended .popupcart_info .quantity {
    width: 60px;
    min-width: auto;
    padding: 0 5px;
  }
}

@media (max-width: 400px) {
  #popupcart_extended .popupcart_info {
    margin: 0 -12px 5px;
  }
  #popupcart_extended .popupcart_info .quantity {
    width: 50px;
    min-width: auto;
    padding: 0 5px;
  }
}

/* Custom Styles */
.top-menu-header nav ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#Menu_VIfWm2LT > nav > .nav > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 16.6%;
  flex: 0 1 16.6%;
  text-align: center;
}
.tb_menu_page_13 > a > span {
  padding: 0px 60px;
}
#wrapper .tbMobileMenu .nav > li {
  text-align: left;
}
#wrapper .tbMobileMenu .nav > li > a {
  color: #000000 !important;
}

.hidden {
  display: none;
}

.btn {
  background-color: #6aa6b7;
  padding: 10px 18px;
  border: none;
  border-radius: 3px;
  line-height: 18px;
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  color: #ffffff;
  -webkit-transition: color 0.2s, background 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s,
    -webkit-transform 0.2s;
  transition: color 0.2s, background 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s,
    -webkit-transform 0.2s;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s,
    -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}

.btn:hover {
  background-color: #000000;
}

.modal_btn {
  text-decoration: none;
}

#button-cart {
  line-height: 27px !important;
  padding: 0;
  display: block;
  text-align: center;
}

.form {
  border: 4px solid #6aa6b7;
  -webkit-box-shadow: 0px 0px 10px 0px #555;
  box-shadow: 0px 0px 10px 0px #555;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form .form-input[type='text'] {
  border: 2px solid #6aa6b7;
  padding: 0px 10px;
  font-size: 14px;
  height: 40px;
}

.form input:focus,
.form textarea:focus {
  outline: none;
}

.form .checkbox-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.form .checkbox-wrap .form-checkbox {
  font-size: 11px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  margin-left: 10px;
  margin-bottom: 15px;
}

.form .checkbox-wrap .form-checkbox input[type='checkbox'] {
  display: none;
}

.form .checkbox-wrap .form-checkbox input[type='checkbox']:checked + label:after {
  outline: 2px solid #6aa6b7;
  border: 3px solid #fff;
  width: 6px;
  height: 6px;
  background-color: #01d3f2;
}

.form .checkbox-wrap .form-checkbox label:after {
  content: '';
  display: block;
  height: 12px;
  width: 12px;
  outline: 2px solid #6aa6b7;
  position: absolute;
  top: 5px;
  left: 0px;
}

.form .checkbox-wrap .form-checkbox a {
  color: #6aa6b7;
  text-decoration: underline;
}

.form .form-btn {
  background-color: #6aa6b7;
  margin: auto;
  height: 40px;
  padding: 0px 40px;
  border: none;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  color: #ffffff;
  -webkit-transition: color 0.2s, background 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s,
    -webkit-transform 0.2s;
  transition: color 0.2s, background 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s,
    -webkit-transform 0.2s;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s,
    -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
}

.form .form-btn:hover {
  background-color: #000000;
}

.form .v2tfvxb {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0 0px;
  margin-bottom: 0px;
}

.form .v2fixff1 {
  background: url(https://4b4e92.claudeassets.com/20250330071745im_/https://holodsystem.com/image/catalog/home/v2bgf1.jpg) no-repeat center top;
  width: 100%;
  height: 4px;
  margin-bottom: 30px;
}

.form-horizont {
  max-width: 620px;
  margin: auto;
}

.form-horizont .form-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-horizont .form-inputs .form-input[type='text'] {
  margin-right: 15px;
  width: 100%;
  max-width: 250px;
  margin-bottom: 15px;
}

.form-horizont .form-inputs .form-btn {
  margin: 0;
}

.v2tfvxb {
  padding-bottom: 5px !important;
}

.cat-forms .form-horizont {
  max-width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cat-forms .form-horizont .checkbox-wrap {
  margin-top: 5px;
}
.cat-forms .form-horizont .v2tfvxb {
  text-align: left;
  /*margin-bottom: 25px;*/
}
.cat-forms .form-horizont .v2tfvxb h3 {
  font-size: 22px;
  font-weight: bold;
}
.cat-forms .form-horizont .form-inputs .form-input[type='text'] {
  max-width: 350px;
}
.cat-forms .form-horizont .form-inputs .form-btn {
  max-width: 350px;
}
.cat-forms .form-horizont .v2tfvxb p {
  font-size: 16px;
  font-weight: normal;
}
/* .home-content {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
    border: 1px solid #ccc;
  } */

.home-content .v2tfvxb {
  text-align: center;
  font-size: 28px;
}

.home-content .v2tfvxb h1 {
  font-size: 26px;
}

.home-content .v2tfvxb h2 {
  font-size: 30px;
  padding-top: 20px;
  line-height: 30px;
}

.home-content .v2slider1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.home-content .v2slider1 .v2imgfors {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  text-align: center;
}

.home-content .v2slider1 .v2imgfors img {
  max-width: 360px;
  margin: auto;
}

.home-content .v2slider1 .v2zaksl1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.home-content .v2slider1 .v2zaksl1 .form {
  max-width: 450px;
  margin: auto;
}

.home-content .v2slider1 .v2zaksl1 .form .v2tff1 {
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px 5px 0px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
}

.home-content .v2slider1 .v2zaksl1 .form .v2fixff1 {
  margin: 15px 0 20px;
}
.home-content .v2slider1 .v2zaksl1 .form .form-input,
.mfp-content .form .form-input {
  margin: auto;
  width: 90%;
}

.home-content .v2slider1 .v2zaksl1 .form .buttons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-content .v2slider1 .v2zaksl1 .form .buttons-wrap .form-btn {
  margin-bottom: 10px;
}

.home-content .v2bi {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-content .v2bi img {
  max-width: 100%;
}

.home-content .home-line {
  margin: 35px 0;
  border: 1px solid rgba(106, 166, 183, 0.65);
}

.zakazhome .cart-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.zakazhome .cart-wrap .imager {
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33%;
  flex: 0 1 33%;
  margin-bottom: 30px;
}

.zakazhome .cart-wrap .imager p {
  margin-bottom: 20px;
}
.zakazhome .cart-wrap .imager .link {
  color: #6aa6b7;
}
.zakazhome .cart-wrap .imager a.link {
  text-decoration: underline;
}

.zakazhome .cart-wrap .imager .price {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 0px;
}
.zakazhome .cart-wrap .imager img {
  max-width: 290px;
}

.icons_home_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}
.icons_home_wrap .icon_home {
  border: 2px solid #6aa6b7;
  border-radius: 4px;
  margin-bottom: 20px;
}
.icons_home_wrap .icon_home a {
  text-align: center;
  text-decoration: none;
}

.icons_home_wrap .icon_home a img {
  width: 260px;
}

.icons_home_wrap .icon_home a span {
  display: block;
  width: 200px;
  margin: 0 auto 20px;
}

.v2bnc {
  text-align: center;
}

.v2bnc .v2tfvxb {
  margin-bottom: 15px;
}

.v2bnc .ikonc {
  height: 138px;
  width: 835px;
  margin: 0px auto;
}

.v2bnc .ikonc1 {
  background: url(https://59b507.claudeassets.com/20250330071745im_/https://holodsystem.com/image/catalog/home/ikonc.png) no-repeat;
}

.v2bnc .ikonc2 {
  background: url(https://5a2c9b.claudeassets.com/20250330071745im_/https://holodsystem.com/image/catalog/home/ikonc2.png) no-repeat;
}

.v2bnc .desv2bnc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.v2bnc .desv2bnc p {
  position: relative;
}

.v2bnc .desv2bnc p:first-child {
  left: -90px;
}

.v2bnc .desv2bnc p:last-child {
  right: -100px;
}

.v2bnc .desv2bnc2 p:first-child {
  left: -60px;
}

.v2bnc .desv2bnc2 p:last-child {
  right: -40px;
}

.v2bnc .btn {
  margin-top: 30px;
}

.v2bnc .adv-box {
  display: none;
}

.v2bnc .adv-box li {
  list-style: none;
  margin-bottom: 10px;
}

.v2bnc .adv-box li img {
  height: 150px;
  margin-bottom: 10px;
}

.v2oborudovaniya {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.v2oborudovaniya .v2tfvxb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 30px;
}

.v2oborudovaniya .item img {
  border: 1px solid #d5d5d5;
  width: 150px;
  padding: 25px;
  margin-bottom: 10px;
}

.v2oborudovaniya .item p {
  text-transform: uppercase;
  color: #6aa6b7;
  text-align: center;
  font-weight: bold;
}

.izgotov .v2tfvxb {
  margin-bottom: 30px;
}

.owl-carousel .owl-nav {
  width: 100%;
  position: absolute;
  top: 40%;
  z-index: 9999;
  margin: 0;
}

.owl-carousel .owl-nav button {
  border-radius: 50%;
  background-color: #6aa6b7;
  width: 20px;
  height: 20px;
  position: absolute;
}

.owl-carousel .owl-nav button span {
  text-align: center;
  font-size: 23px;
  color: #ffffff;
  font-weight: bold;
  line-height: 16px;
}

.owl-carousel .owl-nav .owl-prev {
  float: left;
  left: -25px;
}

.owl-carousel .owl-nav .owl-next {
  float: right;
  right: -25px;
}

.owl-carousel .owl-dots .active span {
  background-color: #6aa6b7;
}

.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #6aa6b7;
}

.owl-carousel .owl-nav .owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav .owl-next {
  right: -20px;
}

.v2deskripshop {
  padding: 30px 0;
}

.v2deskripshop h4 {
  text-transform: uppercase;
  margin-bottom: 5px;
}

.v2deskripshop ul {
  padding: 5px 0;
}

.v2deskripshop ul li {
  list-style: none;
  padding-left: 10px;
}

.map .v2tfvxb {
  margin-bottom: 15px;
}

.map h3 {
  padding: 30px 0;
}

.mfp-content {
  background-color: #fff;
  max-width: 500px;
}

.mfp-content .form {
  padding: 30px;
}

/*.mfp-content button:not(:hover):not(.btn),
.mfp-content [type='button']:not(:hover):not(.btn) {
  color: #6aa6b7;
  background-color: transparent;
}*/
button:not(.btn):hover,
[type='button']:not(.btn):hover {
  color: #000000 !important;
  background-color: transparent !important;
}
.owl-dots button:not(:hover):not(.btn),
.owl-dots [type='button']:not(:hover):not(.btn) {
  color: #6aa6b7 !important;
  background-color: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.owl-dots button:not(.btn):hover,
.owl-dots [type='button']:not(.btn):hover {
  color: #000 !important;
  background-color: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.buttons .btn:not(.btn-xs):not(.btn-sm):not(.btn-lg):not(.btn-xl):not(.btn-xxl) {
  line-height: 26px !important;
}
.tb_wt_header_search_system .twitter-typeahead .dropdown-menu {
  width: 100%;
}

#cart .dropdown-menu {
  width: 500px;
  left: -260px;
}
.mini-cart-info td.name {
  width: 120px;
}
.buttons .btn.btn-sm {
  line-height: 9px;
}

/* Quick checkout */
.form-horizontal .form-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#cart_view .qc-totals {
  padding-top: 20px;
}
#cart_view .qc-totals .row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#cart_view .qc-totals .row label {
  max-width: 300px;
}
#cart_view .qc-quantity .btn {
  padding: 0 5px;
}
#confirm_view {
  padding-top: 20px;
  border-top: 2px solid #6aa6b7;
}
#confirm_view .form-horizontal .form-group {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
#confirm_view .form-horizontal .form-group textarea {
  width: 100%;
}
#confirm_view .btn.btn-lg {
  width: 280px;
  padding: 0;
  margin: 25px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* END Quick checkout */

/* Template information page */

.vertical-forms {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
}
.vertical-forms .form-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.vertical-forms .form-inputs input {
  margin-bottom: 10px;
  width: 80%;
}
.vertical-forms .form-inputs input.btn,
.form-horizont .form-inputs input.btn {
  text-align: center;
  display: block;
}
.why-item .tb_text_wrap p:first-child {
  height: 70px;
}
.red {
  color: red;
}
.options-item ul li,
.variant-item ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}
.options-item ul li:before,
.variant-item ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6aa6b7;
  position: absolute;
  top: 9px;
  left: 0px;
}
.variant-item {
  padding-bottom: 120px;
}
.variant-item p:first-child {
  height: 250px;
}
.variant-item .tb_text_wrap p:last-child {
  color: #6aa6b7;
  position: absolute;
  width: 150px;
  bottom: 60px;
  left: calc(50% - 75px);
}
.forms-block .form-horizont {
  max-width: 80%;
  background-color: #fff;
}
.forms-block .form-horizont .form-inputs .form-input[type='text'] {
  max-width: 330px;
}
.video-input .tb_text_wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-input .tb_text_wrap iframe {
  padding: 15px;
  border: 2px solid #6aa6b7;
}
.info-block .tb_text_wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-block .why-item .tb_text_wrap p:first-child {
  max-width: 340px;
  height: 100%;
}

.feedback {
  border: 2px solid #6aa6b7;
  border-radius: 4px;
  padding: 25px;
  margin: 0 10px;
}
.feedback img {
  margin-bottom: 20px;
}
.feedback .client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.feedback .client .client__photo {
  width: 60px;
  height: 60px;
}
.feedback .client .client__content {
  padding-left: 20px;
}
.feedback .client .client__name {
  color: #6aa6b7;
  font-weight: bold;
  margin-bottom: 10px;
}
.gallery .owl-item a {
  margin: 0 10px;
  display: block;
}

.img-block .tb_text_wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* END Template information page */

@media all and (max-width: 992px) {
  #Menu_VIfWm2LT > nav > .nav > li {
    font-size: 10px;
    line-height: 16px;
  }
  .tb_menu_page_13 > a > span {
    padding: 0px 35px;
  }
  .zakazhome .cart-wrap .imager {
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  #cart_view .panel-body {
    overflow: scroll;
  }
}

@media all and (max-width: 860px) {
  .hidden-mobile {
    display: none;
  }
  .v2bnc .adv-box {
    display: block;
  }
}

@media all and (max-width: 768px) {
  #IconList_BidmF9V0 {
    border-bottom: 2px solid #6aa6b7;
    padding-bottom: 3px;
  }
  .form-horizont .form-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .form-horizont .form-inputs .form-input {
    margin-right: 0;
  }
  .home-content .v2slider1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-content .v2slider1 .v2imgfors {
    margin-bottom: 15px;
  }
  .forms-block .form-horizont {
    max-width: 100%;
  }
  .form-horizont .form-inputs .form-input[type='text'] {
    margin-right: 0px;
  }
}

@media all and (max-width: 576px) {
  .zakazhome .cart-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .zakazhome .cart-wrap .imager {
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .icons_home_wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media all and (max-width: 476px) {
  .form .form-btn {
    padding: 0 10px;
  }
}

.variant,
.tb_label_special {
  display: none !important;
}

.price,
.popupcart_total {
  display: none;
}

.header-none h2 {
  display: none;
}
.b24-form-wrapper {
  min-height: 100% !important;
}
.b24-form-wrapper.b24-form-border-bottom {
  border: none !important;
}
.center {
  text-align: center !important;
}

/*
     FILE ARCHIVED ON 15:59:05 Jun 03, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:50:40 Aug 15, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.407
  exclusion.robots: 0.055
  exclusion.robots.policy: 0.046
  esindex: 0.006
  cdx.remote: 5.0
  LoadShardBlock: 59.907 (3)
  PetaboxLoader3.datanode: 67.44 (4)
  load_resource: 607.055
  PetaboxLoader3.resolve: 596.787
*/