﻿@charset "UTF-8";
.slider-container {
  width: 300px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.slider-container .back-bar {
  height: 10px;
  position: relative;
}

.slider-container .back-bar .selected-bar {
  position: absolute;
  height: 100%;
}

.slider-container .back-bar .pointer {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  cursor: col-resize;
  opacity: 1;
  z-index: 2;
}

.slider-container .back-bar .pointer.last-active {
  z-index: 3;
}

.slider-container .back-bar .pointer-label {
  position: absolute;
  top: -17px;
  font-size: 8px;
  background: white;
  white-space: nowrap;
  line-height: 1;
}

.slider-container .back-bar .focused {
  z-index: 10;
}

.slider-container .clickable-dummy {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-container .scale {
  top: 2px;
  position: relative;
}

.slider-container .scale span {
  position: absolute;
  height: 5px;
  border-left: 1px solid #999;
  font-size: 0;
}

.slider-container .scale ins {
  font-size: 9px;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 5px;
  color: #999;
  line-height: 1;
}

.slider-container.slider-readonly .clickable-dummy,
.slider-container.slider-readonly .pointer {
  cursor: auto;
}

.theme-green .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}

.theme-green .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #a1fad0;
  background-image: -o-linear-gradient(top, #bdfade, #76fabc);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#bdfade), to(#76fabc));
  background-image: linear-gradient(to bottom, #bdfade, #76fabc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
}

.theme-green .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAA;
  background-color: #e7e7e7;
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}

.theme-green .back-bar .pointer-label {
  color: #999;
}

.theme-green .back-bar .focused {
  color: #333;
}

.theme-green .scale span {
  border-left: 1px solid #e5e5e5;
}

.theme-green .scale ins {
  color: #999;
}

.theme-blue .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}

.theme-blue .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #92c1f9;
  background-image: -o-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b1d1f9), to(#64a8f9));
  background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
}

.theme-blue .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAA;
  background-color: #e7e7e7;
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}

.theme-blue .back-bar .pointer-label {
  color: #999;
}

.theme-blue .back-bar .focused {
  color: #333;
}

.theme-blue .scale span {
  border-left: 1px solid #e5e5e5;
}

.theme-blue .scale ins {
  color: #999;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../libs/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../libs/slick/fonts/slick.eot");
  src: url("../libs/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../libs/slick/fonts/slick.woff") format("woff"), url("../libs/slick/fonts/slick.ttf") format("truetype"), url("../libs/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.product-nonexist {
  color: #9f9f9f !important;
}

.product-bold-price {
  font-weight: 600;
  color: #FC828F;
}

.mfp-arrow {
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel {
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
}

.mfp-wrap {
  -webkit-backface-visibility: hidden;
}

.owl-carousel .owl-item, .owl-carousel .owl-video-play-icon {
  -webkit-backface-visibility: hidden;
}

aside.catalogue-sidebar .filter-category-more-spoiler:hover svg .cls-2, aside.catalogue-sidebar .filter-category-spoiler:hover svg .cls-2 {
  fill: #74cae8;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel {
  display: none;
  width: 100%;
  position: relative;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.mfp-arrow:after, .mfp-arrow:before {
  content: "";
}

.mfp-container:before, .mfp-figure:after {
  content: "";
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.scroll-element {
  display: none;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.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-transition: scale .1s ease;
  -webkit-transition: scale 0.1s ease;
  -o-transition: scale 0.1s ease;
  transition: scale 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible, .scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-arrow, .scroll-element .scroll-bar {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #ccc;
  border-top-color: #999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: 0;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scrollbar-inner > .scroll-element .scroll-element_outer, .scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scrollbar-inner > .scroll-element {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element .scroll-bar, .scrollbar-inner > .scroll-element .scroll-element_outer, .scrollbar-inner > .scroll-element .scroll-element_track {
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar, .scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-outer > .scroll-element {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  background-color: #fff;
}

.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 8px;
}

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eee;
}

.scrollbar-outer > .scroll-element .scroll-bar, .scrollbar-outer > .scroll-element .scroll-element_outer, .scrollbar-outer > .scroll-element .scroll-element_track {
  border-radius: 8px;
}

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
}

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
}

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px;
}

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}

.scrollbar-macosx > .scroll-element {
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track {
  display: none;
}

.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #6C6E71;
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  border-radius: 7px;
  -webkit-transition: opacity .2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.scrollbar-macosx:hover > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-x {
  bottom: 0;
  height: 0;
  left: 0;
  min-width: 100%;
  overflow: visible;
  width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 0;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
  height: 7px;
  min-width: 10px;
  top: -9px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
  left: -9px;
  min-height: 10px;
  width: 7px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
  left: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
  top: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

.scrollbar-light > .scroll-element {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
  background-color: #fff;
}

.scrollbar-light > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-light > .scroll-element .scroll-element_outer {
  border-radius: 10px;
}

.scrollbar-light > .scroll-element .scroll-element_size {
  background: url(data:image/svg+xmlbase64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #dbdbdb), to(#e8e8e8));
  background: -o-linear-gradient(left, #dbdbdb 0, #e8e8e8 100%);
  background: linear-gradient(to right, #dbdbdb 0, #e8e8e8 100%);
  border-radius: 10px;
}

.scrollbar-light > .scroll-element.scroll-x {
  bottom: 0;
  height: 17px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-light > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 17px;
}

.scrollbar-light > .scroll-element .scroll-bar {
  background: url(data:image/svg+xmlbase64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #fefefe), to(#f5f5f5));
  background: -o-linear-gradient(left, #fefefe 0, #f5f5f5 100%);
  background: linear-gradient(to right, #fefefe 0, #f5f5f5 100%);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}

.scrollbar-light > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-light > .scroll-content.scroll-scrollx_visible {
  top: -17px;
  margin-top: 17px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 0;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
  left: 0;
  min-height: 10px;
  width: 10px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
  height: 12px;
  left: 2px;
  top: 2px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  top: 2px;
  width: 12px;
}

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px;
}

.scrollbar-rail > .scroll-element {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
  background-color: #fff;
}

.scrollbar-rail > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
  background-color: #999;
  background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  min-width: 100%;
  padding: 3px 0 2px;
  width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  padding: 0 2px 0 3px;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
  background-color: #d0b9a0;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
  margin-top: 17px;
  top: -17px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 1px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
  left: 1px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
  height: 15px;
  left: 5px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
  height: 2px;
  left: -10px;
  top: 5px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
  top: 5px;
  width: 15px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
  left: 5px;
  top: -10px;
  width: 2px;
}

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -25px;
}

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -25px;
}

.scrollbar-dynamic > .scroll-element {
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
  bottom: 2px;
  height: 7px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 2px;
  top: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
  opacity: .3;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_size {
  background-color: #ccc;
  opacity: 0;
  border-radius: 12px;
  -webkit-transition: opacity .2s;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  border-radius: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
  bottom: 0;
  height: 7px;
  min-width: 24px;
  top: auto;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
  left: auto;
  min-height: 24px;
  right: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
  bottom: 0;
  top: auto;
  left: 2px;
  -webkit-transition: height .2s;
  -webkit-transition: height 0.2s;
  -o-transition: height 0.2s;
  transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
  left: auto;
  right: 0;
  top: 2px;
  -webkit-transition: width .2s;
  -webkit-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer, .scrollbar-dynamic > .scroll-element:hover .scroll-element_outer {
  overflow: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size, .scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size {
  opacity: 1;
}

.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar, .scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer, .scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer {
  height: 20px;
  min-height: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer, .scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer {
  min-width: 7px;
  width: 20px;
}

.scrollbar-chrome > .scroll-element {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
  background-color: #fff;
}

.scrollbar-chrome > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-chrome > .scroll-element .scroll-element_track {
  background: #f1f1f1;
  border: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x {
  bottom: 0;
  height: 16px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-chrome > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 16px;
}

.scrollbar-chrome > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
  border: 1px solid #bdbdbd;
  cursor: default;
  border-radius: 2px;
}

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
  border-color: #a9a9a9;
}

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
  border-color: #7e7e7e;
}

.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
  left: -16px;
  margin-left: 16px;
}

.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
  top: -16px;
  margin-top: 16px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
  height: 8px;
  min-width: 10px;
  top: 3px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
  left: 3px;
  min-height: 10px;
  width: 8px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
  border-left: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
  height: 14px;
  left: -3px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
  height: 14px;
  left: -4px;
}

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
  border-top: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
  top: -3px;
  width: 14px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
  width: 14px;
}

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px;
}

.mfp-bg, .mfp-container, .mfp-wrap {
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  z-index: 1043;
  position: fixed;
  outline: 0 !important;
}

.mfp-container {
  text-align: center;
  position: absolute;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  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-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-close, .mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-error .mfp-content, .mfp-s-ready .mfp-preloader {
  display: none;
}

button.mfp-arrow, button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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: .65;
  padding: 0 0 18px 10px;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

#jr_header, .mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-close:focus, .mfp-close:hover {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-figure, img.mfp-img {
  line-height: 0;
}

.mfp-arrow {
  position: absolute;
  opacity: .65;
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus, .mfp-arrow:hover {
  opacity: 1;
}

.mfp-arrow:after, .mfp-arrow:before {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  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-image-holder .mfp-content, img.mfp-img {
  max-width: 100%;
}

.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%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.mfp-figure:after {
  width: auto;
  height: auto;
  display: block;
}

img.mfp-img {
  width: auto;
  height: auto;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

.mfp-figure:after {
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  right: 0;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.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-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .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: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;
    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;
  }
}

#jr_overlay, #jr_wrap {
  position: absolute;
  margin: 0;
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

#jr_overlay {
  top: 0;
  left: 0;
  padding: 0;
  z-index: 2147483646;
}

#jr_wrap {
  width: 100%;
  z-index: 2147483647;
  padding: 0;
}

#jr_inner, .dropdown, .dropup {
  position: relative;
}

#jr_inner {
  font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
  font-size: 12px;
  background: #FFF;
  border: 1px solid #CCC;
  color: #4F4F4F;
  margin: 0 auto;
  height: auto;
  padding: 20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#jr_header {
  display: block;
  padding: 5px 5px 0;
  margin: 0 0 .5em;
  font-family: Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 1.3em;
}

#jr_inner p {
  padding: 5px;
  margin: 0;
}

#jr_inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#jr_inner ul li {
  cursor: pointer;
  float: left;
  width: 120px;
  height: 122px;
  margin: 0 10px 10px;
  padding: 0;
  text-align: center;
}

#jr_inner li a {
  color: #333;
  font-size: .8em;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

#jr_inner li a:hover {
  text-decoration: underline;
}

#jr_inner .jr_icon {
  width: 100px;
  height: 100px;
  margin: 1px auto;
  padding: 0;
  background: left top no-repeat;
  cursor: pointer;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a, .bootstrap-select.btn-group.disabled, .bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}

#jr_close {
  clear: both;
  padding: 0;
  margin: 0;
}

#jr_close a {
  color: #000;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}

#jr_close p {
  padding: 10px 0 0;
  margin: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.dropdown-menu-right, .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  line-height: 1.42857143;
  white-space: nowrap;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  line-height: 1.42857143;
  white-space: nowrap;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  clear: both;
  font-weight: 400;
  color: #333;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.dropdown-menu > .disabled > a {
  color: #777;
}

.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
  color: #777;
}

.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  font-size: 12px;
  color: #777;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.btn-group {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn {
  position: relative;
  float: left;
}

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover {
  z-index: 2;
}

.btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  z-index: 2;
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group {
  margin-left: -1px;
}

.btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before {
  content: " ";
  display: table;
}

.btn-toolbar:after, .btn-toolbar:before {
  content: " ";
  display: table;
}

.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}

.btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after {
  clear: both;
}

select.bs-select-hidden, select.selectpicker {
  display: none !important;
}

.bootstrap-select {
  width: 220px\9;
}

.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder {
  color: #999;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}

.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: .5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}

.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}

.error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}

.bootstrap-select.fit-width {
  width: auto !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 220px;
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle, .bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}

.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: #333 dotted thin !important;
  outline: -webkit-focus-ring-color auto 5px !important;
  outline-offset: -2px;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}

.bootstrap-select.btn-group.dropdown-menu-right, .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}

.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}

.form-group .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group {
  margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control, .form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}

.bootstrap-select.btn-group.disabled:focus, .bootstrap-select.btn-group > .disabled:focus {
  outline: 0 !important;
}

.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}

.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}

.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: .9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
  display: block;
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
  padding: 4px 8px;
}

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}

.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}

.xdsoft_datetimepicker {
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  padding: 2px 8px 8px 0;
  position: absolute;
  z-index: 9999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.xdsoft_datetimepicker.xdsoft_rtl {
  padding: 8px 0 8px 8px;
}

.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: 0 0;
  border: 0;
}

.xdsoft_datetimepicker button {
  border: none !important;
}

.xdsoft_noselect::-moz-selection {
  background: 0 0;
}

.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.xdsoft_noselect::-moz-selection {
  background: 0 0;
}

.xdsoft_noselect::selection, .xdsoft_noselect::-moz-selection {
  background: 0 0;
}

.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.xdsoft_datetimepicker * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker {
  display: none;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px;
}

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px;
}

.xdsoft_datetimepicker .xdsoft_monthpicker {
  position: relative;
  text-align: center;
}

.xdsoft_datetimepicker .xdsoft_label i, .xdsoft_datetimepicker .xdsoft_next, .xdsoft_datetimepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC);
}

.xdsoft_datetimepicker .xdsoft_label i {
  opacity: .5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle;
}

.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0;
}

.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: .5;
  -ms-filter: "alpha(opacity=50)";
  outline: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0;
}

.xdsoft_datetimepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: .5;
  -ms-filter: "alpha(opacity=50)";
  outline: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next, .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev {
  float: none;
  margin-left: 0;
  margin-right: 14px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0;
}

.xdsoft_datetimepicker .xdsoft_next:hover, .xdsoft_datetimepicker .xdsoft_prev:hover, .xdsoft_datetimepicker .xdsoft_today_button:hover {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
}

.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer;
}

.xdsoft_datetimepicker .xdsoft_label:hover > span {
  text-decoration: underline;
}

.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #3af;
  -webkit-box-shadow: #178fe5 0 1px 3px 0 inset;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right;
}

.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both;
}

.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%;
}

.xdsoft_datetimepicker .xdsoft_calendar td {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}

.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #3af;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  -webkit-box-shadow: #ffb871 0 1px 4px 0 inset;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  -webkit-box-shadow: #00dd1c 0 1px 4px 0 inset;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default {
  background: #3af;
  -webkit-box-shadow: #178fe5 0 1px 3px 0 inset;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #3af;
  -webkit-box-shadow: #178fe5 0 1px 3px 0 inset;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month {
  opacity: .5;
  -ms-filter: "alpha(opacity=50)";
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: .5;
  -ms-filter: "alpha(opacity=50)";
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: .2;
  -ms-filter: "alpha(opacity=20)";
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover {
  color: #fff !important;
  background: #ff8000 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background: #3af !important;
  -webkit-box-shadow: #178fe5 0 1px 3px 0 inset !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit !important;
  background: inherit !important;
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px;
}

.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important;
}

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important;
}

.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc;
}

.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
  left: 0;
  right: auto;
}

.xdsoft_scroller_box {
  position: relative;
}

.xdsoft_datetimepicker.xdsoft_dark {
  -webkit-box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
  box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
  background: #000;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
  border: 1px solid #333;
  background: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #000;
  background: #007fff;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #c50;
  -webkit-box-shadow: #b03e00 0 1px 3px 0 inset;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i {
  background-image: url(data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999;
  background: #0e0e0e;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: #c50;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  -webkit-box-shadow: #ffb871 0 1px 4px 0 inset;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  -webkit-box-shadow: #00dd1c 0 1px 4px 0 inset;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default {
  background: #c50;
  -webkit-box-shadow: #b03e00 0 1px 3px 0 inset;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #c50;
  -webkit-box-shadow: #b03e00 0 1px 3px 0 inset;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000 !important;
  background: #007fff !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  color: #666;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
  color: #333 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
  color: #111 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
  color: #555 !important;
}

.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333;
}

.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller {
  background: #333 !important;
}

.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  border: 1px solid #ddd !important;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px;
}

.xdsoft_datetimepicker .blue-gradient-button {
  font-family: museo-sans,"Book Antiqua",sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #82878c;
  height: 28px;
  position: relative;
  padding: 4px 17px 4px 33px;
  border: 1px solid #d7d8da;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(73%, #f4f8fa));
  background: -o-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: linear-gradient(to bottom, #fff 0, #f4f8fa 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#f4f8fa', GradientType=0);
}

.xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover {
  color: #454551;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f4f8fa), color-stop(73%, #FFF));
  background: -o-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: linear-gradient(to bottom, #f4f8fa 0, #FFF 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa', endColorstr='#FFF', GradientType=0);
}

.xdsoft_datetimepicker .blue-gradient-button:focus span, .xdsoft_datetimepicker .blue-gradient-button:hover span {
  color: #454551;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f4f8fa), color-stop(73%, #FFF));
  background: -o-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: linear-gradient(to bottom, #f4f8fa 0, #FFF 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa', endColorstr='#FFF', GradientType=0);
}

.intl-tel-input {
  position: relative;
  display: inline-block;
}

.intl-tel-input * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.intl-tel-input .hide {
  display: none;
}

.intl-tel-input .v-hide {
  visibility: hidden;
}

.intl-tel-input input {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.intl-tel-input input[type=tel], .intl-tel-input input[type=text] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.intl-tel-input .flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.intl-tel-input .selected-flag {
  z-index: 1;
  position: relative;
  width: 36px;
  height: 100%;
  padding: 0 0 0 8px;
}

.intl-tel-input .selected-flag .iti-flag {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.intl-tel-input .selected-flag .iti-arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.intl-tel-input .selected-flag .iti-arrow.up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.intl-tel-input .country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
}

.intl-tel-input .country-list .country.highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.intl-tel-input .country-list.dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

.intl-tel-input .country-list .flag-box {
  display: inline-block;
  width: 20px;
}

.intl-tel-input .country-list .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.intl-tel-input .country-list .country {
  padding: 5px 10px;
}

.intl-tel-input .country-list .country .dial-code {
  color: #999;
}

.intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code, .intl-tel-input .country-list .flag-box {
  vertical-align: middle;
}

.intl-tel-input .country-list .country-name, .intl-tel-input .country-list .flag-box {
  margin-right: 6px;
}

.intl-tel-input.allow-dropdown input {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.allow-dropdown input[type=text] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.intl-tel-input.separate-dial-code input {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.intl-tel-input.separate-dial-code input[type=tel], .intl-tel-input.separate-dial-code input[type=text] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
  right: auto;
  left: 0;
}

.intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
  width: 46px;
}

.intl-tel-input.allow-dropdown .flag-container:hover {
  cursor: pointer;
}

.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
  cursor: default;
}

.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
  background-color: transparent;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  display: table-cell;
  vertical-align: middle;
  padding-left: 28px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input {
  padding-left: 66px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {
  padding-left: 66px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
  width: 60px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input {
  padding-left: 76px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
  padding-left: 76px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  width: 70px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input {
  padding-left: 74px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {
  padding-left: 74px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
  width: 68px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input {
  padding-left: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
  padding-left: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  width: 78px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input {
  padding-left: 82px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {
  padding-left: 82px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
  width: 76px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input {
  padding-left: 92px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
  padding-left: 92px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
  width: 86px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input {
  padding-left: 90px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {
  padding-left: 90px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
  width: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input {
  padding-left: 100px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {
  padding-left: 100px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
  width: 94px;
}

.intl-tel-input.iti-container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.intl-tel-input.iti-container:hover {
  cursor: pointer;
}

@media (max-width: 500px) {
  .intl-tel-input .country-list {
    white-space: normal;
  }
}

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .intl-tel-input .country-list .country {
  padding: 10px;
  line-height: 1.5em;
}

.iti-flag {
  width: 20px;
  height: 15px;
  -webkit-box-shadow: 0 0 1px 0 #888;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(../img/flags.png);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

.iti-flag.be {
  width: 18px;
}

.iti-flag.ch {
  width: 15px;
}

.iti-flag.mc {
  width: 19px;
}

.iti-flag.ne {
  width: 18px;
}

.iti-flag.ac {
  height: 10px;
  background-position: 0 0;
}

.iti-flag.ad {
  height: 14px;
  background-position: -22px 0;
}

.iti-flag.ae {
  height: 10px;
  background-position: -44px 0;
}

.iti-flag.af {
  height: 14px;
  background-position: -66px 0;
}

.iti-flag.ag {
  height: 14px;
  background-position: -88px 0;
}

.iti-flag.ai {
  height: 10px;
  background-position: -110px 0;
}

.iti-flag.al {
  height: 15px;
  background-position: -132px 0;
}

.iti-flag.am {
  height: 10px;
  background-position: -154px 0;
}

.iti-flag.ao {
  height: 14px;
  background-position: -176px 0;
}

.iti-flag.aq {
  height: 14px;
  background-position: -198px 0;
}

.iti-flag.ar {
  height: 13px;
  background-position: -220px 0;
}

.iti-flag.as {
  height: 10px;
  background-position: -242px 0;
}

.iti-flag.at {
  height: 14px;
  background-position: -264px 0;
}

.iti-flag.au {
  height: 10px;
  background-position: -286px 0;
}

.iti-flag.aw {
  height: 14px;
  background-position: -308px 0;
}

.iti-flag.ax {
  height: 13px;
  background-position: -330px 0;
}

.iti-flag.az {
  height: 10px;
  background-position: -352px 0;
}

.iti-flag.ba {
  height: 10px;
  background-position: -374px 0;
}

.iti-flag.bb {
  height: 14px;
  background-position: -396px 0;
}

.iti-flag.bd {
  height: 12px;
  background-position: -418px 0;
}

.iti-flag.be {
  height: 15px;
  background-position: -440px 0;
}

.iti-flag.bf {
  height: 14px;
  background-position: -460px 0;
}

.iti-flag.bg {
  height: 12px;
  background-position: -482px 0;
}

.iti-flag.bh {
  height: 12px;
  background-position: -504px 0;
}

.iti-flag.bi {
  height: 12px;
  background-position: -526px 0;
}

.iti-flag.bj {
  height: 14px;
  background-position: -548px 0;
}

.iti-flag.bl {
  height: 14px;
  background-position: -570px 0;
}

.iti-flag.bm {
  height: 10px;
  background-position: -592px 0;
}

.iti-flag.bn {
  height: 10px;
  background-position: -614px 0;
}

.iti-flag.bo {
  height: 14px;
  background-position: -636px 0;
}

.iti-flag.bq {
  height: 14px;
  background-position: -658px 0;
}

.iti-flag.br {
  height: 14px;
  background-position: -680px 0;
}

.iti-flag.bs {
  height: 10px;
  background-position: -702px 0;
}

.iti-flag.bt {
  height: 14px;
  background-position: -724px 0;
}

.iti-flag.bv {
  height: 15px;
  background-position: -746px 0;
}

.iti-flag.bw {
  height: 14px;
  background-position: -768px 0;
}

.iti-flag.by {
  height: 10px;
  background-position: -790px 0;
}

.iti-flag.bz {
  height: 14px;
  background-position: -812px 0;
}

.iti-flag.ca {
  height: 10px;
  background-position: -834px 0;
}

.iti-flag.cc {
  height: 10px;
  background-position: -856px 0;
}

.iti-flag.cd {
  height: 15px;
  background-position: -878px 0;
}

.iti-flag.cf {
  height: 14px;
  background-position: -900px 0;
}

.iti-flag.cg {
  height: 14px;
  background-position: -922px 0;
}

.iti-flag.ch {
  height: 15px;
  background-position: -944px 0;
}

.iti-flag.ci {
  height: 14px;
  background-position: -961px 0;
}

.iti-flag.ck {
  height: 10px;
  background-position: -983px 0;
}

.iti-flag.cl {
  height: 14px;
  background-position: -1005px 0;
}

.iti-flag.cm {
  height: 14px;
  background-position: -1027px 0;
}

.iti-flag.cn {
  height: 14px;
  background-position: -1049px 0;
}

.iti-flag.co {
  height: 14px;
  background-position: -1071px 0;
}

.iti-flag.cp {
  height: 14px;
  background-position: -1093px 0;
}

.iti-flag.cr {
  height: 12px;
  background-position: -1115px 0;
}

.iti-flag.cu {
  height: 10px;
  background-position: -1137px 0;
}

.iti-flag.cv {
  height: 12px;
  background-position: -1159px 0;
}

.iti-flag.cw {
  height: 14px;
  background-position: -1181px 0;
}

.iti-flag.cx {
  height: 10px;
  background-position: -1203px 0;
}

.iti-flag.cy {
  height: 13px;
  background-position: -1225px 0;
}

.iti-flag.cz {
  height: 14px;
  background-position: -1247px 0;
}

.iti-flag.de {
  height: 12px;
  background-position: -1269px 0;
}

.iti-flag.dg {
  height: 10px;
  background-position: -1291px 0;
}

.iti-flag.dj {
  height: 14px;
  background-position: -1313px 0;
}

.iti-flag.dk {
  height: 15px;
  background-position: -1335px 0;
}

.iti-flag.dm {
  height: 10px;
  background-position: -1357px 0;
}

.iti-flag.do {
  height: 13px;
  background-position: -1379px 0;
}

.iti-flag.dz {
  height: 14px;
  background-position: -1401px 0;
}

.iti-flag.ea {
  height: 14px;
  background-position: -1423px 0;
}

.iti-flag.ec {
  height: 14px;
  background-position: -1445px 0;
}

.iti-flag.ee {
  height: 13px;
  background-position: -1467px 0;
}

.iti-flag.eg {
  height: 14px;
  background-position: -1489px 0;
}

.iti-flag.eh {
  height: 10px;
  background-position: -1511px 0;
}

.iti-flag.er {
  height: 10px;
  background-position: -1533px 0;
}

.iti-flag.es {
  height: 14px;
  background-position: -1555px 0;
}

.iti-flag.et {
  height: 10px;
  background-position: -1577px 0;
}

.iti-flag.eu {
  height: 14px;
  background-position: -1599px 0;
}

.iti-flag.fi {
  height: 12px;
  background-position: -1621px 0;
}

.iti-flag.fj {
  height: 10px;
  background-position: -1643px 0;
}

.iti-flag.fk {
  height: 10px;
  background-position: -1665px 0;
}

.iti-flag.fm {
  height: 11px;
  background-position: -1687px 0;
}

.iti-flag.fo {
  height: 15px;
  background-position: -1709px 0;
}

.iti-flag.fr {
  height: 14px;
  background-position: -1731px 0;
}

.iti-flag.ga {
  height: 15px;
  background-position: -1753px 0;
}

.iti-flag.gb {
  height: 10px;
  background-position: -1775px 0;
}

.iti-flag.gd {
  height: 12px;
  background-position: -1797px 0;
}

.iti-flag.ge {
  height: 14px;
  background-position: -1819px 0;
}

.iti-flag.gf {
  height: 14px;
  background-position: -1841px 0;
}

.iti-flag.gg {
  height: 14px;
  background-position: -1863px 0;
}

.iti-flag.gh {
  height: 14px;
  background-position: -1885px 0;
}

.iti-flag.gi {
  height: 10px;
  background-position: -1907px 0;
}

.iti-flag.gl {
  height: 14px;
  background-position: -1929px 0;
}

.iti-flag.gm {
  height: 14px;
  background-position: -1951px 0;
}

.iti-flag.gn {
  height: 14px;
  background-position: -1973px 0;
}

.iti-flag.gp {
  height: 14px;
  background-position: -1995px 0;
}

.iti-flag.gq {
  height: 14px;
  background-position: -2017px 0;
}

.iti-flag.gr {
  height: 14px;
  background-position: -2039px 0;
}

.iti-flag.gs {
  height: 10px;
  background-position: -2061px 0;
}

.iti-flag.gt {
  height: 13px;
  background-position: -2083px 0;
}

.iti-flag.gu {
  height: 11px;
  background-position: -2105px 0;
}

.iti-flag.gw {
  height: 10px;
  background-position: -2127px 0;
}

.iti-flag.gy {
  height: 12px;
  background-position: -2149px 0;
}

.iti-flag.hk {
  height: 14px;
  background-position: -2171px 0;
}

.iti-flag.hm {
  height: 10px;
  background-position: -2193px 0;
}

.iti-flag.hn {
  height: 10px;
  background-position: -2215px 0;
}

.iti-flag.hr {
  height: 10px;
  background-position: -2237px 0;
}

.iti-flag.ht {
  height: 12px;
  background-position: -2259px 0;
}

.iti-flag.hu {
  height: 10px;
  background-position: -2281px 0;
}

.iti-flag.ic {
  height: 14px;
  background-position: -2303px 0;
}

.iti-flag.id {
  height: 14px;
  background-position: -2325px 0;
}

.iti-flag.ie {
  height: 10px;
  background-position: -2347px 0;
}

.iti-flag.il {
  height: 15px;
  background-position: -2369px 0;
}

.iti-flag.im {
  height: 10px;
  background-position: -2391px 0;
}

.iti-flag.in {
  height: 14px;
  background-position: -2413px 0;
}

.iti-flag.io {
  height: 10px;
  background-position: -2435px 0;
}

.iti-flag.iq {
  height: 14px;
  background-position: -2457px 0;
}

.iti-flag.ir {
  height: 12px;
  background-position: -2479px 0;
}

.iti-flag.is {
  height: 15px;
  background-position: -2501px 0;
}

.iti-flag.it {
  height: 14px;
  background-position: -2523px 0;
}

.iti-flag.je {
  height: 12px;
  background-position: -2545px 0;
}

.iti-flag.jm {
  height: 10px;
  background-position: -2567px 0;
}

.iti-flag.jo {
  height: 10px;
  background-position: -2589px 0;
}

.iti-flag.jp {
  height: 14px;
  background-position: -2611px 0;
}

.iti-flag.ke {
  height: 14px;
  background-position: -2633px 0;
}

.iti-flag.kg {
  height: 12px;
  background-position: -2655px 0;
}

.iti-flag.kh {
  height: 13px;
  background-position: -2677px 0;
}

.iti-flag.ki {
  height: 10px;
  background-position: -2699px 0;
}

.iti-flag.km {
  height: 12px;
  background-position: -2721px 0;
}

.iti-flag.kn {
  height: 14px;
  background-position: -2743px 0;
}

.iti-flag.kp {
  height: 10px;
  background-position: -2765px 0;
}

.iti-flag.kr {
  height: 14px;
  background-position: -2787px 0;
}

.iti-flag.kw {
  height: 10px;
  background-position: -2809px 0;
}

.iti-flag.ky {
  height: 10px;
  background-position: -2831px 0;
}

.iti-flag.kz {
  height: 10px;
  background-position: -2853px 0;
}

.iti-flag.la {
  height: 14px;
  background-position: -2875px 0;
}

.iti-flag.lb {
  height: 14px;
  background-position: -2897px 0;
}

.iti-flag.lc {
  height: 10px;
  background-position: -2919px 0;
}

.iti-flag.li {
  height: 12px;
  background-position: -2941px 0;
}

.iti-flag.lk {
  height: 10px;
  background-position: -2963px 0;
}

.iti-flag.lr {
  height: 11px;
  background-position: -2985px 0;
}

.iti-flag.ls {
  height: 14px;
  background-position: -3007px 0;
}

.iti-flag.lt {
  height: 12px;
  background-position: -3029px 0;
}

.iti-flag.lu {
  height: 12px;
  background-position: -3051px 0;
}

.iti-flag.lv {
  height: 10px;
  background-position: -3073px 0;
}

.iti-flag.ly {
  height: 10px;
  background-position: -3095px 0;
}

.iti-flag.ma {
  height: 14px;
  background-position: -3117px 0;
}

.iti-flag.mc {
  height: 15px;
  background-position: -3139px 0;
}

.iti-flag.md {
  height: 10px;
  background-position: -3160px 0;
}

.iti-flag.me {
  height: 10px;
  background-position: -3182px 0;
}

.iti-flag.mf {
  height: 14px;
  background-position: -3204px 0;
}

.iti-flag.mg {
  height: 14px;
  background-position: -3226px 0;
}

.iti-flag.mh {
  height: 11px;
  background-position: -3248px 0;
}

.iti-flag.mk {
  height: 10px;
  background-position: -3270px 0;
}

.iti-flag.ml {
  height: 14px;
  background-position: -3292px 0;
}

.iti-flag.mm {
  height: 14px;
  background-position: -3314px 0;
}

.iti-flag.mn {
  height: 10px;
  background-position: -3336px 0;
}

.iti-flag.mo {
  height: 14px;
  background-position: -3358px 0;
}

.iti-flag.mp {
  height: 10px;
  background-position: -3380px 0;
}

.iti-flag.mq {
  height: 14px;
  background-position: -3402px 0;
}

.iti-flag.mr {
  height: 14px;
  background-position: -3424px 0;
}

.iti-flag.ms {
  height: 10px;
  background-position: -3446px 0;
}

.iti-flag.mt {
  height: 14px;
  background-position: -3468px 0;
}

.iti-flag.mu {
  height: 14px;
  background-position: -3490px 0;
}

.iti-flag.mv {
  height: 14px;
  background-position: -3512px 0;
}

.iti-flag.mw {
  height: 14px;
  background-position: -3534px 0;
}

.iti-flag.mx {
  height: 12px;
  background-position: -3556px 0;
}

.iti-flag.my {
  height: 10px;
  background-position: -3578px 0;
}

.iti-flag.mz {
  height: 14px;
  background-position: -3600px 0;
}

.iti-flag.na {
  height: 14px;
  background-position: -3622px 0;
}

.iti-flag.nc {
  height: 10px;
  background-position: -3644px 0;
}

.iti-flag.ne {
  height: 15px;
  background-position: -3666px 0;
}

.iti-flag.nf {
  height: 10px;
  background-position: -3686px 0;
}

.iti-flag.ng {
  height: 10px;
  background-position: -3708px 0;
}

.iti-flag.ni {
  height: 12px;
  background-position: -3730px 0;
}

.iti-flag.nl {
  height: 14px;
  background-position: -3752px 0;
}

.iti-flag.no {
  height: 15px;
  background-position: -3774px 0;
}

.iti-flag.np {
  width: 13px;
  height: 15px;
  background-position: -3796px 0;
}

.iti-flag.nr {
  height: 10px;
  background-position: -3811px 0;
}

.iti-flag.nu {
  height: 10px;
  background-position: -3833px 0;
}

.iti-flag.nz {
  height: 10px;
  background-position: -3855px 0;
}

.iti-flag.om {
  height: 10px;
  background-position: -3877px 0;
}

.iti-flag.pa {
  height: 14px;
  background-position: -3899px 0;
}

.iti-flag.pe {
  height: 14px;
  background-position: -3921px 0;
}

.iti-flag.pf {
  height: 14px;
  background-position: -3943px 0;
}

.iti-flag.pg {
  height: 15px;
  background-position: -3965px 0;
}

.iti-flag.ph {
  height: 10px;
  background-position: -3987px 0;
}

.iti-flag.pk {
  height: 14px;
  background-position: -4009px 0;
}

.iti-flag.pl {
  height: 13px;
  background-position: -4031px 0;
}

.iti-flag.pm {
  height: 14px;
  background-position: -4053px 0;
}

.iti-flag.pn {
  height: 10px;
  background-position: -4075px 0;
}

.iti-flag.pr {
  height: 14px;
  background-position: -4097px 0;
}

.iti-flag.ps {
  height: 10px;
  background-position: -4119px 0;
}

.iti-flag.pt {
  height: 14px;
  background-position: -4141px 0;
}

.iti-flag.pw {
  height: 13px;
  background-position: -4163px 0;
}

.iti-flag.py {
  height: 11px;
  background-position: -4185px 0;
}

.iti-flag.qa {
  height: 8px;
  background-position: -4207px 0;
}

.iti-flag.re {
  height: 14px;
  background-position: -4229px 0;
}

.iti-flag.ro {
  height: 14px;
  background-position: -4251px 0;
}

.iti-flag.rs {
  height: 14px;
  background-position: -4273px 0;
}

.iti-flag.ru {
  height: 14px;
  background-position: -4295px 0;
}

.iti-flag.rw {
  height: 14px;
  background-position: -4317px 0;
}

.iti-flag.sa {
  height: 14px;
  background-position: -4339px 0;
}

.iti-flag.sb {
  height: 10px;
  background-position: -4361px 0;
}

.iti-flag.sc {
  height: 10px;
  background-position: -4383px 0;
}

.iti-flag.sd {
  height: 10px;
  background-position: -4405px 0;
}

.iti-flag.se {
  height: 13px;
  background-position: -4427px 0;
}

.iti-flag.sg {
  height: 14px;
  background-position: -4449px 0;
}

.iti-flag.sh {
  height: 10px;
  background-position: -4471px 0;
}

.iti-flag.si {
  height: 10px;
  background-position: -4493px 0;
}

.iti-flag.sj {
  height: 15px;
  background-position: -4515px 0;
}

.iti-flag.sk {
  height: 14px;
  background-position: -4537px 0;
}

.iti-flag.sl {
  height: 14px;
  background-position: -4559px 0;
}

.iti-flag.sm {
  height: 15px;
  background-position: -4581px 0;
}

.iti-flag.sn {
  height: 14px;
  background-position: -4603px 0;
}

.iti-flag.so {
  height: 14px;
  background-position: -4625px 0;
}

.iti-flag.sr {
  height: 14px;
  background-position: -4647px 0;
}

.iti-flag.ss {
  height: 10px;
  background-position: -4669px 0;
}

.iti-flag.st {
  height: 10px;
  background-position: -4691px 0;
}

.iti-flag.sv {
  height: 12px;
  background-position: -4713px 0;
}

.iti-flag.sx {
  height: 14px;
  background-position: -4735px 0;
}

.iti-flag.sy {
  height: 14px;
  background-position: -4757px 0;
}

.iti-flag.sz {
  height: 14px;
  background-position: -4779px 0;
}

.iti-flag.ta {
  height: 10px;
  background-position: -4801px 0;
}

.iti-flag.tc {
  height: 10px;
  background-position: -4823px 0;
}

.iti-flag.td {
  height: 14px;
  background-position: -4845px 0;
}

.iti-flag.tf {
  height: 14px;
  background-position: -4867px 0;
}

.iti-flag.tg {
  height: 13px;
  background-position: -4889px 0;
}

.iti-flag.th {
  height: 14px;
  background-position: -4911px 0;
}

.iti-flag.tj {
  height: 10px;
  background-position: -4933px 0;
}

.iti-flag.tk {
  height: 10px;
  background-position: -4955px 0;
}

.iti-flag.tl {
  height: 10px;
  background-position: -4977px 0;
}

.iti-flag.tm {
  height: 14px;
  background-position: -4999px 0;
}

.iti-flag.tn {
  height: 14px;
  background-position: -5021px 0;
}

.iti-flag.to {
  height: 10px;
  background-position: -5043px 0;
}

.iti-flag.tr {
  height: 14px;
  background-position: -5065px 0;
}

.iti-flag.tt {
  height: 12px;
  background-position: -5087px 0;
}

.iti-flag.tv {
  height: 10px;
  background-position: -5109px 0;
}

.iti-flag.tw {
  height: 14px;
  background-position: -5131px 0;
}

.iti-flag.tz {
  height: 14px;
  background-position: -5153px 0;
}

.iti-flag.ua {
  height: 14px;
  background-position: -5175px 0;
}

.iti-flag.ug {
  height: 14px;
  background-position: -5197px 0;
}

.iti-flag.um {
  height: 11px;
  background-position: -5219px 0;
}

.iti-flag.us {
  height: 11px;
  background-position: -5241px 0;
}

.iti-flag.uy {
  height: 14px;
  background-position: -5263px 0;
}

.iti-flag.uz {
  height: 10px;
  background-position: -5285px 0;
}

.iti-flag.va {
  width: 15px;
  height: 15px;
  background-position: -5307px 0;
}

.iti-flag.vc {
  height: 14px;
  background-position: -5324px 0;
}

.iti-flag.ve {
  height: 14px;
  background-position: -5346px 0;
}

.iti-flag.vg {
  height: 10px;
  background-position: -5368px 0;
}

.iti-flag.vi {
  height: 14px;
  background-position: -5390px 0;
}

.iti-flag.vn {
  height: 14px;
  background-position: -5412px 0;
}

.iti-flag.vu {
  height: 12px;
  background-position: -5434px 0;
}

.iti-flag.wf {
  height: 14px;
  background-position: -5456px 0;
}

.iti-flag.ws {
  height: 10px;
  background-position: -5478px 0;
}

.iti-flag.xk {
  height: 15px;
  background-position: -5500px 0;
}

.iti-flag.ye {
  height: 14px;
  background-position: -5522px 0;
}

.iti-flag.yt {
  height: 14px;
  background-position: -5544px 0;
}

.iti-flag.za {
  height: 14px;
  background-position: -5566px 0;
}

.iti-flag.zm {
  height: 14px;
  background-position: -5588px 0;
}

.iti-flag.zw {
  height: 10px;
  background-position: -5610px 0;
}

.iti-flag.np {
  background-color: transparent;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-size: 5630px 15px;
    background-image: url(../img/flags@2x.png);
  }
}

aside.catalogue-sidebar {
  width: 250px;
  float: left;
  padding-top: 10px;
}

aside.catalogue-sidebar .close-sidebar-btn {
  display: none;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  width: 70px;
  padding: 5px 0;
  font-size: 16px;
  vertical-align: middle;
  margin-right: 28px;
  margin-bottom: 21px;
  text-align: center;
  margin-top: 17px;
}

aside.catalogue-sidebar .close-sidebar-btn:hover {
  background-color: #f1f1f1;
}

aside.catalogue-sidebar .close-sidebar-btn .svg {
  width: 24px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
}

aside.catalogue-sidebar ul.breadcrumbs {
  font-size: 18px;
  margin-bottom: 30px;
}

aside.catalogue-sidebar ul.breadcrumbs a {
  color: #357fc2;
}

aside.catalogue-sidebar ul.breadcrumbs a:hover {
  color: #74cae8;
}

aside.catalogue-sidebar ul.breadcrumbs li {
  margin-bottom: 15px;
}

aside.catalogue-sidebar ul.breadcrumbs li:after {
  display: none;
}

aside.catalogue-sidebar ul.breadcrumbs li:last-child {
  margin-bottom: 0;
}

aside.catalogue-sidebar ul.breadcrumbs li:nth-child(2) {
  margin-left: 10px;
}

aside.catalogue-sidebar ul.breadcrumbs li:nth-child(3) {
  margin-left: 20px;
}

aside.catalogue-sidebar ul.breadcrumbs li:nth-child(4) {
  margin-left: 30px;
}

aside.catalogue-sidebar ul.breadcrumbs li:nth-child(5) {
  margin-left: 40px;
}

aside.catalogue-sidebar .button-reset-wrap {
  position: relative;
  padding-bottom: 25px;
}

aside.catalogue-sidebar .button-reset-wrap:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: #f1f1f1;
  left: 0;
  bottom: 0;
}

aside.catalogue-sidebar .btn-reset {
  text-transform: uppercase;
  border-radius: 2px;
  width: 100%;
  padding: 11px 0;
  font-weight: 600;
  font-size: 16px;
}

aside.catalogue-sidebar .filter-category-wrap {
  border-bottom: solid 1px #f1f1f1;
  padding-top: 20px;
  padding-bottom: 20px;
}

aside.catalogue-sidebar .filter-category-wrap-inner {
  max-height: 400px;
  overflow-y: auto;
  margin: 10px 0;
}

aside.catalogue-sidebar .filter-category-wrap-inner::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #F1F1F1;
  border-radius: 99px;
}

aside.catalogue-sidebar .filter-category-wrap-inner::-webkit-scrollbar-thumb {
  background-color: #839094;
  border-radius: 99px;
}

aside.catalogue-sidebar .filters {
  position: relative;
  padding-bottom: 25px;
}

aside.catalogue-sidebar .filter-category-spoiler {
  color: #357fc2;
  position: relative;
  display: block;
  cursor: pointer;
  padding-right: 21px;
}

aside.catalogue-sidebar .filter-category-spoiler .category-arrow {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

aside.catalogue-sidebar .filter-category-spoiler .category-arrow svg {
  width: 16px;
  height: auto;
}

aside.catalogue-sidebar .filter-category-spoiler:hover {
  color: #74cae8;
}

aside.catalogue-sidebar .filter-category-spoiler.active .category-arrow svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

aside.catalogue-sidebar .filter-category-more-spoiler {
  color: #357fc2;
  position: relative;
  display: block;
  cursor: pointer;
  padding-right: 21px;
  margin-top: 17px;
}

aside.catalogue-sidebar .filter-category-more-spoiler .category-arrow {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

aside.catalogue-sidebar .filter-category-more-spoiler .category-arrow svg {
  width: 20px;
}

aside.catalogue-sidebar .filter-category-more-spoiler .more-txt {
  display: inline-block;
  vertical-align: middle;
}

aside.catalogue-sidebar .filter-category-more-spoiler:hover {
  color: #74cae8;
}

aside.catalogue-sidebar .filter-category-more-spoiler.active .category-arrow svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

aside.catalogue-sidebar .filter-items {
  padding-top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

aside.catalogue-sidebar .filter-items.active {
  padding-top: 10px;
  opacity: 1;
  visibility: visible;
  height: auto;
  line-height: normal;
}

aside.catalogue-sidebar .filter-category-more-filters {
  display: none;
}

aside.catalogue-sidebar .filter-category-more-filters.active {
  display: block;
}

aside.catalogue-sidebar .filter-item-wrap {
  position: relative;
  padding-right: 25px;
  margin-bottom: 13px;
}

aside.catalogue-sidebar .filter-item-wrap:last-child {
  margin-bottom: 0;
}

aside.catalogue-sidebar .filter-item-wrap .items-quantity {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #9f9f9f;
}

aside.catalogue-sidebar .filter-item-wrap .checkbox-label {
  width: 100%;
  display: inline-block;
}

aside.catalogue-sidebar .filter-item-wrap .checkbox-label:not(.disabled) {
  cursor: pointer;
}

aside.catalogue-sidebar .filter-item-wrap .checkbox-label:not(.disabled):hover .checkbox-txt-wrap:before {
  border-color: #3ab3df;
}

aside.catalogue-sidebar .filter-item-wrap .checkbox-label:not(.disabled):hover .checkbox-txt {
  color: #3ab3df;
}

aside.catalogue-sidebar .filter-item-wrap input[type=checkbox] {
  display: none;
}

aside.catalogue-sidebar .filter-item-wrap input[type=checkbox]:checked + .checkbox-txt-wrap:before {
  background-image: url(../img/checkbox-сhecked.svg);
  border: none;
}

aside.catalogue-sidebar .filter-item-wrap input[type=checkbox]:disabled + .checkbox-txt-wrap:before {
  background-image: url(../img/checkbox-unactive.svg);
  border: none;
  cursor: default;
}

aside.catalogue-sidebar .filter-item-wrap .checkbox-txt-wrap {
  display: inline-block;
  vertical-align: middle;
}

aside.catalogue-sidebar .filter-item-wrap .checkbox-txt-wrap:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid #cfcfcf;
  border-radius: 2px;
}

.catalogue-items-title-wrap {
  float: left;
  padding-left: 19px;
  width: calc(100% - 195px);
  margin-right: -25px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.catalogue-product-items {
  padding-bottom: 80px;
  padding-left: 10px;
  position: relative;
}

.catalogue-product-items::after {
  content: "";
  display: table;
  clear: both;
}

.catalogue-product-items__loader {
  position: absolute;
  bottom: 105px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.items-loader {
  text-align: center;
}

.items-loader__img {
  max-width: 100%;
  width: 290px;
}

.nothing-was-found {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.nothing-was-found .nothing-was-found-img {
  max-width: 300px;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.nothing-was-found .nothing-was-found-img img {
  max-width: 100%;
}

.nothing-was-found .nothing-was-found-txt {
  margin-top: 30px;
  color: #DADADA;
  font-size: 26px;
  font-weight: 300;
}

.filters > .scroll-element, .hovering-cart-item-wrap .cart-items > .scroll-element {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.filters > .scroll-element div, .hovering-cart-item-wrap .cart-items > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.filters > .scroll-element.scroll-x, .hovering-cart-item-wrap .cart-items > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.filters > .scroll-element.scroll-y, .hovering-cart-item-wrap .cart-items > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 5px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
}

.filters > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .filters > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.hovering-cart-item-wrap .cart-items > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size, .hovering-cart-item-wrap .cart-items > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.filters > .scroll-element.scroll-y .scroll-bar, .hovering-cart-item-wrap .cart-items > .scroll-element.scroll-y .scroll-bar {
  width: 3px;
  left: 1px;
  border-radius: 15px;
}

.filters > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .filters > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.hovering-cart-item-wrap .cart-items > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size, .hovering-cart-item-wrap .cart-items > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.filters > .scroll-element .scroll-element_outer, .hovering-cart-item-wrap .cart-items > .scroll-element .scroll-element_outer {
  overflow: hidden;
  border-radius: 8px;
}

.filters > .scroll-element .scroll-bar, .filters > .scroll-element .scroll-element_track {
  border-radius: 8px;
}

.hovering-cart-item-wrap .cart-items > .scroll-element .scroll-bar, .hovering-cart-item-wrap .cart-items > .scroll-element .scroll-element_track {
  border-radius: 8px;
}

.filters > .scroll-element .scroll-element_track, .hovering-cart-item-wrap .cart-items > .scroll-element .scroll-element_track {
  background-color: transparent;
}

.filters > .scroll-element .scroll-bar, .hovering-cart-item-wrap .cart-items > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.filters > .scroll-element.scroll-draggable .scroll-bar, .filters > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.hovering-cart-item-wrap .cart-items > .scroll-element.scroll-draggable .scroll-bar, .hovering-cart-item-wrap .cart-items > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

footer.main-footer {
  background-color: #839094;
  padding: 14px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.s-cart {
  position: relative;
}

.s-cart .cart-tabs-wrap {
  position: relative;
}

footer.main-footer .foot-col {
  width: 33.333%;
  float: left;
  text-align: center;
}

footer.main-footer .contact-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

footer.main-footer .contact-link {
  display: inline-block;
  vertical-align: middle;
  color: #EDEEEF;
}

footer.main-footer .contact-link:hover {
  color: #d2d2d2;
}

footer.main-footer .contact-link:hover .svg #Shape {
  fill: #d2d2d2;
}

.xdsoft_datetimepicker {
  font-family: "Open Sans", sans-serif;
}

.xdsoft_datetimepicker .xdsoft_label {
  font-weight: 400;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background-color: #74cae8 !important;
}

.s-cart {
  padding-top: 30px;
  padding-bottom: 20px;
}

.s-cart .cart-tabs-wrap > .container {
  position: relative;
}

.s-cart .address-txt {
  position: absolute;
  display: none;
  left: 100px;
  top: 25px;
  font-size: 18px;
  color: #9F9F9F;
}

.s-cart h1 {
  font-size: 26px;
  margin-bottom: 26px;
}

.s-cart .container {
  max-width: 1439px;
}

@media only screen and (min-width: 1249px) {
  .s-cart ul.cart-tabs {
    padding-left: 180px;
  }
  .s-cart .address-txt {
    display: block;
  }
}

@media only screen and (max-width: 1439px) {
  .s-cart .address-txt {
    left: 50px;
  }
}

.s-cart ul.cart-tabs {
  white-space: nowrap;
  font-size: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.s-cart ul.cart-tabs:before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: calc(100% - 1px);
  height: 1px;
  background-color: #CFCFCF;
  width: 10000px;
  z-index: -1;
}

.s-cart ul.cart-tabs:after {
  content: "";
  display: table;
  clear: both;
}

.s-cart ul.cart-tabs > li {
  cursor: pointer;
  vertical-align: top;
  font-size: 16px;
  white-space: normal;
  width: 251px;
  border-top: 5px solid transparent;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  line-height: 1.2;
  position: relative;
  z-index: 5;
}

.s-cart ul.cart-tabs > li.active {
  background-color: #FFF;
  border-color: #3ab3df #CFCFCF #FFF;
}

.s-cart ul.cart-tabs > li:not(.active) .bootstrap-select > .dropdown-toggle {
  z-index: -1;
}

.s-cart ul.cart-tabs > li:not(.active) .trade-point {
  color: #9f9f9f;
}

.s-cart ul.cart-tabs > li:not(.active) .trade-point-select.bootstrap-select .dropdown-toggle {
  color: #9f9f9f;
}

.s-cart ul.cart-tabs > li:not(.active) .trade-point-select.bootstrap-select .dropdown-toggle .caret {
  display: none;
}

.s-cart .trade-point .city, .s-cart .trade-point-select.bootstrap-select .dropdown-toggle span.city {
  display: block;
}

.s-cart .trade-point {
  color: #357fc2;
  padding-top: 15px;
  padding-left: 20px;
}

.s-cart .trade-point-select {
  height: 100%;
}

.s-cart .trade-point-select.bootstrap-select.btn-group {
  width: 100%;
  vertical-align: top;
}

.s-cart .trade-point-select.bootstrap-select .dropdown-toggle {
  font-size: 16px;
  color: #357fc2;
  background-color: #fff;
  padding: 15px 33px 0 20px;
  height: 100%;
  line-height: 1.2;
  height: auto;
}

.s-cart .trade-point-select.bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important;
}

.s-cart .trade-point-select.bootstrap-select .dropdown-toggle .caret {
  top: auto;
  right: 15px;
  bottom: 33px;
  border: none;
  width: 14px;
  height: 8px;
  background-image: url(../img/down-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.s-cart .trade-point-form {
  margin-bottom: 20px;
  border-bottom: 1px solid #CFCFCF;
}

.s-cart .trade-point-form textarea {
  width: 100%;
  padding-top: 10px;
  padding-left: 11px;
  border: 1px solid #f1f1f1;
  margin-bottom: 20px;
}

.s-cart .trade-point-form textarea:focus {
  border-color: #3ab3df;
}

.s-cart .button-controls {
  width: 100%;
  text-align: right;
}

.s-cart .button-controls .button-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.s-cart .button-controls .button-wrap:last-child {
  margin-right: 0;
}

.s-cart .button-controls .button-wrap .error-message {
  right: 0;
  left: auto;
  top: auto;
  bottom: calc(100% + 12px);
}

.s-cart .button-controls .button-wrap .error-message .error-close {
  margin-left: 45px;
}

.s-cart .button-controls .button-wrap .error-message:before {
  top: auto;
  bottom: -12px;
  right: 100px;
  left: auto;
  border-bottom: none;
  border-top: 12px solid #22d3bb;
}

.s-cart .button-controls .button-wrap.error .error-message {
  visibility: visible;
}

.s-cart .button-controls button {
  width: 250px;
  text-transform: uppercase;
  font-size: 16px;
  padding: 16px;
  min-height: 50px;
  font-weight: 600;
}

@media only screen and (max-width: 1050px) {
  .s-cart .button-controls button {
    font-size: 14px;
    width: 225px;
  }
}

.s-cart {
  counter-reset: cart-counter;
  padding-bottom: 70px;
}

.s-cart .cart-informer {
  border: 1px solid #F1F1F1;
  border-left: 5px solid #B46CD2;
  padding: 10px 10px 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
  font-size: 16px;
  color: #B46CD2;
}

.s-cart .cart-informer .informer-icon {
  width: 20px;
}

.s-cart .cart-informer .informer-txt {
  width: calc(100% - 20px);
  padding-left: 10px;
  padding-top: 2px;
  line-height: 1.2;
}

@media only screen and (max-width: 1050px) {
  .s-cart .cart-informer {
    font-size: 14px;
  }
  .s-cart .cart-informer .comment-txt {
    padding-top: 3px;
  }
}

.s-cart .payment-select {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.s-cart .payment-select.select-style {
  overflow: visible;
}

.s-cart .payment-select.error .error-message {
  visibility: visible;
  left: auto;
  right: 0;
}

@media only screen and (max-width: 1249px) {
  .s-cart .payment-select.error .error-message {
    left: 0;
    right: auto;
  }
}

.s-cart .order-properties-heading {
  color: #9F9F9F;
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}

.s-cart .contract-row {
  margin-bottom: 10px;
}

.s-cart .contract-row .order-properties-heading {
  vertical-align: middle;
}

.s-cart .payment-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.s-cart .payment-row + .payment-row {
  margin-top: 10px;
}

.s-cart .payment-row .contract-select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.s-cart .select-style {
  height: 40px;
  line-height: 40px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.s-cart .select-style select {
  padding: 0 35px 0 10px;
  height: 40px;
  border: 1px solid #f1f1f1;
  border-radius: 1px;
  overflow: hidden;
  background-image: url(../img/down-blue.svg);
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: right 17px top calc(50% + 1px);
}

.s-cart .select-style select:focus {
  border-color: #3ab3df;
}

.s-cart .contract-select {
  width: 330px;
}

.s-cart .order-properties-group {
  border: 1px solid #F1F1F1;
  border-left: 5px solid #3AB3DF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px 25px;
  margin-bottom: 10px;
}

.s-cart .order-properties-group .right-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.s-cart .dropdown-menu {
  margin: 2px 0;
  border-radius: 1px;
  background-color: #fff;
  left: -1px;
  border: none;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.s-cart .cart-heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

.s-cart .cart-heading-wrap .heading-content {
  padding-top: 10px;
}

.s-cart .cart-heading-wrap .heading-counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 13px;
}

.s-cart .cart-heading-wrap .counter-item {
  font-weight: 300;
  font-size: 18px;
  margin-right: 15px;
}

.s-cart .cart-heading-wrap .counter-item .counter-name {
  color: #9F9F9F;
  font-weight: 400;
}

.s-cart .cart-heading-wrap .counter-item .counter-unit img {
  width: 20px;
  height: auto;
  vertical-align: middle;
  position: relative;
  line-height: 18px;
  font-size: 0;
  top: -2px;
}

.s-cart .cart-heading-wrap .heading-icon {
  margin-right: 5px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.s-cart .cart-heading-wrap .heading-txt {
  font-size: 24px;
  color: #B46CD2;
}

.s-cart .cart-heading-wrap .heading-txt:before {
  counter-increment: cart-counter;
  content: counter(cart-counter) ". ";
}

.s-cart .cart-heading-wrap .org-accent {
  color: #3AB3DF;
}

.s-cart .payment-type-heading {
  vertical-align: middle;
  min-width: 105px;
}

.s-cart .dropdown-menu li > a {
  color: #357fc2;
  border-bottom: solid 1px #f1f1f1;
  padding: 20px 47px 20px 20px;
}

.s-cart .dropdown-menu li > a:hover {
  background-color: #fafafa;
}

.s-cart .dropdown-menu li:last-child > a {
  border-bottom: none;
}

.s-cart .dropdown-menu .selected > a {
  color: #357fc2;
  background-color: #fff;
}

.s-cart .cart-tab-page {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.s-cart .cart-tab-page.active {
  height: auto;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  min-height: 300px;
  padding-top: 20px;
}

.s-cart .trade-point-order {
  position: relative;
  padding-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-cart .trade-point-order {
    padding-bottom: 10px;
  }
}

.s-cart .trade-point-order.error {
  position: relative;
}

.s-cart .trade-point-order.error:before {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 0;
  z-index: 1;
}

.s-cart .delivery-txt {
  vertical-align: middle;
  margin-right: 10px;
}

.s-cart .delivery-date-wrap {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.s-cart .delivery-time-wrap {
  display: inline-block;
  vertical-align: middle;
}

.s-cart .delivery-date-icon, .s-cart .delivery-time-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

.s-cart input.date {
  vertical-align: middle;
  padding: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 104px;
  border-color: #f1f1f1;
}

.s-cart input.date:focus {
  border-color: #3ab3df;
}

.s-cart .time-range-wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.s-cart .time-range-select-wrap {
  width: 150px;
}

.s-cart .radio-group {
  position: relative;
  padding-left: 20px;
  padding-right: 22px;
  padding-top: 12px;
  white-space: nowrap;
}

.s-cart .radios-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.s-cart .radios-wrap.error .error-message {
  visibility: visible;
}

.s-cart .error-message {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #fff;
  background: #22D3BB;
  padding: 9px 15px 9px 20px;
  white-space: nowrap;
  visibility: hidden;
  z-index: 100;
  position: absolute;
  font-size: 18px;
  top: calc(100% + 12px);
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-cart .error-message:before {
  content: "";
  position: absolute;
  left: 40%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #22d3bb;
  top: -12px;
  z-index: 50;
  margin-left: -6px;
}

.s-cart .error-message span {
  margin-left: 10px;
  margin-right: 10px;
}

.s-cart .error-message .error-close {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.s-cart .error-message .error-close:hover path {
  fill: #3ab3df;
}

.s-cart .radio-group-title {
  margin-right: 20px;
}

.s-cart .radios-wrap .radio-label {
  display: inline-block;
}

.s-cart .radios-wrap .radio-label:first-child {
  margin-bottom: 31px;
}

.s-cart .btn-send-wrap {
  text-align: right;
}

.s-cart .btn-send-order {
  width: 250px;
  padding: 0;
  font-size: 16px;
  line-height: 50px;
  text-transform: uppercase;
  height: 50px;
  font-weight: 600;
}

.s-cart .btn-save-template {
  width: 250px;
  padding: 0;
  font-size: 16px;
  line-height: 50px;
  text-transform: uppercase;
  height: 50px;
  margin-right: 18px;
}

.s-cart .total-counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 25px;
  border-top: 1px solid #CFCFCF;
  text-align: right;
}

.s-cart .total-counter-item {
  font-weight: 300;
  font-size: 26px;
  color: #00BFA5;
  margin-right: 40px;
}

.s-cart .total-counter-item:last-child {
  margin-right: 0;
}

.s-cart .total-counter-item .total-counter-name {
  color: #9F9F9F;
  font-weight: 400;
  font-size: 18px;
  margin-right: 7px;
}

.s-cart .total-counter-item .total-counter-unit .svg {
  width: 20px;
  height: auto;
  vertical-align: middle;
  position: relative;
  line-height: 18px;
  font-size: 0;
  top: -2px;
}

.s-cart .total-counter-item .total-counter-unit .svg path {
  fill: #22D3BB;
}

.s-cart .total-counter-alignment {
  min-width: 250px;
  display: inline-block;
}

.s-cart .cart-is-empty {
  height: calc(100vh - 220px);
  position: relative;
  display: none;
}

.s-cart .cart-is-empty .cart-is-empty-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.s-cart .cart-is-empty .cart-is-empty-txt {
  font-size: 26px;
  opacity: .51;
  font-weight: 300;
  margin-bottom: 20px;
}

.s-cart .cart-is-empty .add-product-btn {
  width: 173px;
  height: 45px;
  border-radius: 1px;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  padding: 0;
  line-height: 45px;
  font-size: 16px;
  color: #3ab3df;
  text-transform: uppercase;
}

.s-cart .cart-is-empty .add-product-btn:hover {
  border-color: #74cae8;
  color: #74cae8;
}

.s-cart .cart-is-empty.active {
  display: block;
}

.s-cart .cart-is-empty.active + .container {
  display: none;
}

.cart-table {
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

.cart-table .btn-del-cart-item {
  background-color: transparent;
  cursor: pointer;
}

.cart-table .btn-del-cart-item:hover .svg g g, .cart-table .btn-del-cart-item:hover .svg path {
  fill: #ff5252;
}

.cart-table .btn-number, .cart-table .input-number {
  height: 24px;
  padding: 0;
  vertical-align: top;
}

.cart-table .btn-number {
  width: 25px;
  font-size: 20px;
  color: #9f9f9f;
  line-height: 24px;
  background-color: #f1f1f1;
  border-radius: 2px 0px 0px 2px;
}

.cart-table .btn-number .minus {
  position: relative;
  bottom: 2px;
}

.cart-table .btn-number:hover {
  color: #3ab3df;
}

.cart-table .input-group {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}

.cart-table .input-number {
  width: calc(100% - 50px);
  border: 1px solid #F1F1F1;
  text-align: center;
  color: #000;
}

.cart-table a:hover {
  color: #3ab3df;
}

.cart-table .thead {
  margin-bottom: 10px;
}

.cart-table .tr {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

    .cart-table .tbody .tr {
        height: auto;
        padding: 7px 0;
        border-bottom: 1px solid #F1F1F1;
        line-height: 1.2;
    }

.cart-table .action-items {
  margin-bottom: -15px;
}

.cart-table .action-item {
  font-size: 14px;
  line-height: 14px;
}

.cart-table .action-item img {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

.cart-table .action-item .bonus-qty {
  color: #22D3BB;
  font-size: 16px;
  margin-right: 2px;
}

.cart-table hr {
  border: none;
  border-top: 1px solid #CFCFCF;
  margin: 2px 0;
  width: 100%;
}

.cart-table .th,
.cart-table .td {
  padding-left: 10px;
  padding-right: 10px;
}

.cart-table .th--barcode,
.cart-table .td--barcode {
  width: 11%;
}

    .cart-table .th--name,
    .cart-table .td--name {
        width: 32%;
        overflow-wrap: anywhere;
    }

.cart-table .th--price,
.cart-table .td--price {
  width: 10%;
  position: relative;
}

.cart-table .td--price .item-price-without-promo {
  position: absolute;
  top: -10px;
  right: 10px;
  text-decoration: line-through;
  color: #9f9f9f;
  font-size: 12px;
}

.cart-table .th--actions,
.cart-table .td--actions {
  width: 11%;
}

.cart-table .th--unit,
.cart-table .td--unit {
  width: 5%;
}

.cart-table .th--rec,
.cart-table .td--rec {
  width: 6%;
}

.cart-table .th--qty,
.cart-table .td--qty {
  width: 9.5%;
}

.cart-table .th--sum,
.cart-table .td--sum {
  width: 13%;
}

.cart-table .th--del,
.cart-table .td--del {
  width: 2.5%;
}

.cart-table .th {
  border-right: 5px solid #fff;
  background: #F1F1F1;
  text-align: center;
  line-height: 1.4;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #9F9F9F;
  padding: 5px 3px;
}

.cart-table .th--rec {
  font-size: 10px;
}

.cart-table .th:last-child {
  border-right: none;
}

.cart-table .td--barcode {
  padding-top: 5px;
  padding-bottom: 5px;
}

.cart-table .td--name {
  padding-top: 5px;
  padding-bottom: 5px;
}

.cart-table .td--price {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: right;
}

.cart-table .td--actions {
  padding-top: 2px;
  padding-bottom: 2px;
}

.cart-table .td--unit {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}

.cart-table .td--rec {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}

.cart-table .td--qty {
  position: relative;
  text-align: center;
  font-size: 16px;
}

.cart-table .td--sum {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: right;
}

.cart-table .td--del {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: right;
}

.cart-table .product-qty {
  padding-top: 3px;
  padding-bottom: 3px;
}

.cart-table .product-qty:not(.hidden) {
  display: block;
}

.cart-table .tr-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #F1F1F1;
}

.cart-table .tbody .tr-group {
  padding: 0;
  height: auto;
}

.cart-table .tbody .tr-group .tr:last-child {
  border-bottom: none;
}

.cart-table .tr-group-heading {
  padding: 10px;
  background: #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-table .tr-group-heading-content {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-table .tr-group-heading-content img {
  margin-right: 7px;
  width: 20px;
}

.cart-table .rec-col {
  font-size: 10px;
  margin: -6px -2px;
  white-space: nowrap;
}

.cart-table .rec-in-stock {
  color: #00BFA5;
}

.cart-table .tr--ends {
  color: #FC828F;
}

.cart-table .tr--ends .rec-in-stock, .cart-table .tr--ends .input-number, .cart-table .tr--ends a {
  color: #FC828F;
}

.cart-table .tr--ends .td--unit, .cart-table .tr--ends .rec-col {
  color: #000;
}

.order-success-popup,
.order-popup,
.plain-popup {
  width: 520px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #CFCFCF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px 5px 0px 0px;
}

.order-success-popup .wrap,
.order-popup .wrap,
.plain-popup .wrap {
  padding: 20px;
  font-size: 0;
}

.order-success-popup .success-smile,
.order-popup .success-smile,
.plain-popup .success-smile {
  display: inline-block;
  vertical-align: top;
  width: 50px;
}

.order-success-popup .success-smile img,
.order-popup .success-smile img,
.plain-popup .success-smile img {
  max-width: 100%;
}

.order-success-popup .success-txt,
.order-popup .success-txt,
.plain-popup .success-txt {
  vertical-align: top;
  display: inline-block;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 400;
  width: calc(100% - 50px);
  line-height: 1.2;
}

.order-success-popup .success-txt p,
.order-popup .success-txt p,
.plain-popup .success-txt p {
  margin-bottom: 1em;
}

.order-success-popup .buttons,
.order-popup .buttons,
.plain-popup .buttons {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order-success-popup .buttons button, .order-success-popup .buttons .button,
.order-popup .buttons button,
.order-popup .buttons .button,
.plain-popup .buttons button,
.plain-popup .buttons .button {
  border: 1px solid #f1f1f1;
  border-bottom: none;
  background-color: #fff;
  color: #3ab3df;
  width: 50%;
  height: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  padding: 0;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
}

.order-success-popup .buttons button:hover, .order-success-popup .buttons .button:hover,
.order-popup .buttons button:hover,
.order-popup .buttons .button:hover,
.plain-popup .buttons button:hover,
.plain-popup .buttons .button:hover {
  color: #74cae8;
}

.order-success-popup .buttons button.cancel-btn, .order-success-popup .buttons .button.cancel-btn,
.order-popup .buttons button.cancel-btn,
.order-popup .buttons .button.cancel-btn,
.plain-popup .buttons button.cancel-btn,
.plain-popup .buttons .button.cancel-btn {
  color: #FC828F;
}

.order-success-popup .buttons button.cancel-btn:hover, .order-success-popup .buttons .button.cancel-btn:hover,
.order-popup .buttons button.cancel-btn:hover,
.order-popup .buttons .button.cancel-btn:hover,
.plain-popup .buttons button.cancel-btn:hover,
.plain-popup .buttons .button.cancel-btn:hover {
  color: #fdb4bc;
}

.order-success-popup .mfp-close,
.order-popup .mfp-close,
.plain-popup .mfp-close {
  display: none;
}

.order-success-popup.not-closing,
.order-popup.not-closing,
.plain-popup.not-closing {
  position: relative;
  z-index: 10001;
}

.order-success-popup.not-closing:before,
.order-popup.not-closing:before,
.plain-popup.not-closing:before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

header.registration-head {
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 11px 0;
}

header.registration-head .container {
  max-width: 1439px;
}

header.registration-head .logo {
  float: left;
}

header.registration-head .logo img {
  width: 176px;
  height: auto;
}

header.registration-head .phone-wrap {
  float: right;
  padding-top: 24px;
}

header.registration-head .phone-wrap a.phone {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  color: #222;
}

header.registration-head .phone-wrap a.phone:focus, header.registration-head .phone-wrap a.phone:hover {
  color: #74cae8;
}

.reg-step {
  padding-top: 40px;
  padding-bottom: 40px;
}

.reg-step input.error {
  background-color: #fff;
}

.reg-step .step-info-items {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.reg-step .step-info-item-wrap {
  width: 25%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  float: left;
  position: relative;
}

.reg-step .step-info-item-wrap:after {
  content: "";
  width: 86px;
  height: 6px;
  background-size: contain;
  background-image: url("data:image/svg+xml; base64, PHN2ZyB3aWR0aD0iODYiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDg2IDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjQ0ZDRkNGIi8+CjxjaXJjbGUgY3g9IjIzIiBjeT0iMyIgcj0iMyIgZmlsbD0iI0NGQ0ZDRiIvPgo8Y2lyY2xlIGN4PSI0MyIgY3k9IjMiIHI9IjMiIGZpbGw9IiNDRkNGQ0YiLz4KPGNpcmNsZSBjeD0iNjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjQ0ZDRkNGIi8+CjxjaXJjbGUgY3g9IjgzIiBjeT0iMyIgcj0iMyIgZmlsbD0iI0NGQ0ZDRiIvPgo8L3N2Zz4g");
  background-repeat: no-repeat;
  position: absolute;
  top: 27px;
  left: calc(50% + 45px);
}

.reg-step .step-info-item-wrap:last-child:after {
  display: none;
}

.reg-step .step-info-item-wrap.current-status .step-info-icon {
  background-color: #ffb74d;
}

.reg-step .step-info-item-wrap.current-status:after {
  background-image: url("data:image/svg+xml; base64, PHN2ZyB3aWR0aD0iODYiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDg2IDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjZmZiNzRkIi8+CjxjaXJjbGUgY3g9IjIzIiBjeT0iMyIgcj0iMyIgZmlsbD0iI2ZmYjc0ZCIvPgo8Y2lyY2xlIGN4PSI0MyIgY3k9IjMiIHI9IjMiIGZpbGw9IiNmZmI3NGQiLz4KPGNpcmNsZSBjeD0iNjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjZmZiNzRkIi8+CjxjaXJjbGUgY3g9IjgzIiBjeT0iMyIgcj0iMyIgZmlsbD0iI2ZmYjc0ZCIvPgo8L3N2Zz4K");
}

.reg-step .step-info-item-wrap.accepted-status .step-info-icon {
  background-color: #22d3bb;
}

.reg-step .step-info-item-wrap.accepted-status:after {
  background-image: url("data:image/svg+xml; base64, PHN2ZyB3aWR0aD0iODYiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDg2IDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjMjJkM2JiIi8+CjxjaXJjbGUgY3g9IjIzIiBjeT0iMyIgcj0iMyIgZmlsbD0iIzIyZDNiYiIvPgo8Y2lyY2xlIGN4PSI0MyIgY3k9IjMiIHI9IjMiIGZpbGw9IiMyMmQzYmIiLz4KPGNpcmNsZSBjeD0iNjMiIGN5PSIzIiByPSIzIiBmaWxsPSIjMjJkM2JiIi8+CjxjaXJjbGUgY3g9IjgzIiBjeT0iMyIgcj0iMyIgZmlsbD0iIzIyZDNiYiIvPgo8L3N2Zz4=");
}

.reg-step .step-info-item-wrap.unactive {
  color: #CFCFCF;
}

.reg-step .step-info-item-wrap.unactive .step-info-icon {
  background-color: #f1f1f1;
}

.reg-step .step-info-item {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reg-step .step-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 0;
  text-align: center;
  line-height: 60px;
  margin-left: auto;
  margin-right: auto;
  background-color: #61adf2;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reg-step .step-info-icon .svg {
  vertical-align: middle;
  display: inline-block;
  height: auto;
  width: 30px;
}

.reg-step .step-info-icon .svg ellipse, .reg-step .step-info-icon .svg path, .reg-step .step-info-icon .svg polygon {
  fill: #fff;
}

.reg-step .btn-del-phone:hover .svg path, .reg-step .btn-del-phone:hover .svg polygon {
  fill: #ff5252;
}

.reg-step .del-trade-point-btn:hover .svg path, .reg-step .del-trade-point-btn:hover .svg polygon {
  fill: #ff5252;
}

.reg-step .p-methods-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 15px;
}

.reg-step .p-methods-container .p-method-label {
  width: 100%;
  display: inline-block;
}

.reg-step .p-methods-container .radio-txt-wrap,
.reg-step .p-methods-container .checkbox-txt-wrap {
  width: 100%;
}

.reg-step .p-methods-container .p-method-col {
  width: 50%;
  padding-bottom: 20px;
  font-size: 16px;
}

.reg-step .p-methods-container .p-method-col:nth-child(2n+1) {
  padding-right: 20px;
}

.reg-step .p-methods-container label.radio-label .radio-txt-wrap {
  vertical-align: top;
}

.reg-step .p-methods-container .radio-txt,
.reg-step .p-methods-container .checkbox-txt {
  max-width: calc(100% - 31px);
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}

.reg-step .step-info-item-name-wrap {
  line-height: 1.3;
  position: relative;
  font-size: 18px;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reg-step .reg-container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reg-step .agreement-check {
  line-height: 1.4;
  margin-bottom: 30px;
}

.reg-step .agreement-check .checkbox-txt {
  max-width: calc(100% - 31px);
  display: inline-block;
  vertical-align: top;
}

.reg-step .agreement-check:hover .checkbox-txt {
  color: inherit;
}

.reg-step .inputs-container {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.reg-step .input-row {
  font-size: 0;
  margin-bottom: 15px;
  position: relative;
}

.reg-step .input-name-wrap, .reg-step .input-text-wrap {
  vertical-align: top;
  display: inline-block;
}

.reg-step .input-name-wrap {
  width: 170px;
  padding-right: 15px;
  color: #9f9f9f;
  font-size: 16px;
  position: relative;
  top: 11px;
}

.reg-step .input-text-wrap {
  width: 330px;
  position: relative;
}

.reg-step .input-text-wrap .error-msg {
  display: none;
}

.reg-step .input-text-wrap.phone-input-wrap .error-msg {
  display: block;
}

.reg-step .input-text-wrap.phone-input-wrap .error-msg.hidden {
  display: none;
}

.reg-step .input-text-wrap input {
  width: 100%;
  height: 38px;
  padding: 0 0 0 10px;
  line-height: 38px;
  border-color: #f1f1f1;
  border-radius: 0;
}

.reg-step .input-text-wrap input.error + .error-msg {
  display: block;
}

.reg-step .input-text-wrap input:focus {
  border-color: #74cae8;
}

.reg-step .input-text-wrap input:disabled {
  background-color: #fbfbfb;
}

.reg-step .input-text-wrap .select-style {
  border-radius: 0;
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
}

.reg-step .input-text-wrap .select-style select {
  background-position: right 10px top 50%;
  border: 1px solid #f1f1f1;
  padding: 0 0 0 10px;
  line-height: 38px;
  height: 38px;
  font-size: 16px;
}

.reg-step .input-text-wrap .select-style select:focus {
  border-color: #74cae8;
}

.reg-step .input-text-wrap .select-style select.error {
  border-color: #fe0000;
  z-index: 1;
}

.reg-step .input-birthday-wrap .select-style {
  display: inline-block;
  width: 100px;
  margin-right: 15px;
  vertical-align: middle;
}

.reg-step .input-birthday-wrap .select-style .error-msg {
  font-size: 13px;
  display: none;
}

.reg-step .input-birthday-wrap .select-style select.error + .error-msg {
  display: block;
}

.reg-step .input-birthday-wrap .select-style:last-child {
  margin-right: 0;
}

.reg-step .input-birthday-wrap .select-style:nth-child(2) .error-msg {
  left: 115px;
}

.reg-step .input-birthday-wrap .select-style:nth-child(3) .error-msg {
  left: 230px;
}

.reg-step .input-delivery-time-wrap .select-style, .reg-step .input-org-city-wrap .select-style, .reg-step .input-org-region-wrap .select-style, .reg-step .input-position-wrap .select-style, .reg-step .intl-tel-input {
  width: 100%;
}

.reg-step .error-msg, .reg-step .valid-msg {
  font-size: 14px;
  position: static;
  left: 0;
  padding: 5px 0 0 0;
}

.reg-step .btn-change-phone, .reg-step .btn-confirm-code, .reg-step .btn-confirm-phone {
  top: -3px;
  width: 150px;
  line-height: 45px;
  height: 45px;
  position: absolute;
  left: 520px;
  padding: 0;
}

.reg-step .error-msg {
  color: #fe0000;
}

.reg-step .valid-msg {
  color: #22d3bb;
}

.reg-step .selected-flag:focus {
  outline: #74cae8 solid 1px;
}

.reg-step .selected-dial-code {
  font-size: 16px;
}

.reg-step .btn-confirm-phone, .reg-step .btn-change-phone, .reg-step .sms-row {
  display: none;
}

.reg-step .btn-confirm-phone.active, .reg-step .btn-change-phone.active, .reg-step .sms-row.active {
  display: block;
}

.reg-step input.sms-code {
  margin-bottom: 12px;
}

.reg-step input.sms-code + .error-msg {
  display: none;
  top: 38px;
}

.reg-step input.sms-code.error + .error-msg {
  display: block;
}

.reg-step .sms-info-txt {
  font-size: 16px;
  color: #9f9f9f;
  margin-top: 5px;
  margin-bottom: 3px;
  line-height: 1.25;
  margin-left: 170px;
}

.reg-step .sms-resend-link {
  font-size: 14px;
  color: #357fc2;
  margin-left: 175px;
  display: inline-block;
}

.reg-step .sms-resend-link:hover {
  color: #74cae8;
}

.reg-step .person-radio-group, .reg-step .point-radio-group {
  margin-bottom: 25px;
}

.reg-step .person-radio-group .radio-label, .reg-step .point-radio-group .radio-label {
  margin-right: 42px;
}

.reg-step .person-radio-group .radio-label:last-child, .reg-step .point-radio-group .radio-label:last-child {
  margin-right: 0;
}

.reg-step .inputs-container-title {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 300;
}

.reg-step .add-point-btn {
  height: 45px;
  padding: 0;
  width: 100%;
  line-height: 45px;
  color: #3ab3df;
  border: 1px solid #f1f1f1;
  background-color: #fff;
}

.reg-step .btn-add-phone {
  position: absolute;
  left: 520px;
  top: 0;
  padding: 0;
  height: 38px;
  width: 70px;
}

.reg-step .btn-add-phone .svg {
  height: 25px;
  width: 25px;
  display: inline-block;
}

.reg-step .btn-del-phone {
  position: absolute;
  left: 520px;
  top: 11px;
  padding: 0;
  background-color: transparent;
  display: none;
}

.reg-step .btn-del-phone .svg {
  height: 13px;
  width: 13px;
  display: inline-block;
}

.reg-step .btn-del-phone.active {
  display: inline-block;
}

.reg-step .del-trade-point-btn {
  background-color: transparent;
  float: right;
  padding: 0;
}

.reg-step .del-trade-point-btn .svg {
  height: 17px;
  width: 17px;
  display: inline-block;
}

.reg-step .del-trade-point-btn.active {
  display: block;
}

.reg-step .trade-point {
  margin-top: 80px;
  margin-bottom: 40px;
}

.reg-step .trade-point:first-child {
  margin-top: 0;
}

.reg-steps {
  padding-bottom: 55px;
}

.reg-steps > .content > .h3, .reg-steps > .steps {
  display: none;
}

.reg-steps .actions ul[role=menu] {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reg-steps .actions ul[role=menu] li:nth-child(1) {
  float: left;
}

.reg-steps .actions ul[role=menu] li:nth-child(1) a[role=menuitem] {
  display: inline-block;
  width: 150px;
  background-color: #fff;
  border-radius: 1px;
  color: #3ab3df;
  text-align: center;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
  border: 1px solid #f1f1f1;
}

.reg-steps .actions ul[role=menu] li:nth-child(1) a[role=menuitem]:focus, .reg-steps .actions ul[role=menu] li:nth-child(1) a[role=menuitem]:hover {
  background-color: #f1f1f1;
}

.reg-steps .actions ul[role=menu] li:nth-child(2), .reg-steps .actions ul[role=menu] li:nth-child(3) {
  float: right;
}

.reg-steps .actions ul[role=menu] li:nth-child(2) a[role=menuitem], .reg-steps .actions ul[role=menu] li:nth-child(3) a[role=menuitem] {
  display: inline-block;
  width: 150px;
  border-radius: 1px;
  color: #fff;
  text-align: center;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
}

.reg-steps .actions ul[role=menu] li:nth-child(2) a[role=menuitem]:focus, .reg-steps .actions ul[role=menu] li:nth-child(2) a[role=menuitem]:hover {
  background-color: #74cae8;
}

.reg-steps .actions ul[role=menu] li:nth-child(3) a[role=menuitem]:focus, .reg-steps .actions ul[role=menu] li:nth-child(3) a[role=menuitem]:hover {
  background-color: #74cae8;
}

.reg-steps .actions ul[role=menu] li:nth-child(2) a[role=menuitem] {
  pointer-events: none;
  cursor: default;
  background-color: #cfcfcf;
}

.reg-steps .actions ul[role=menu] li:nth-child(2).active {
  display: list-item !important;
}

.reg-steps .actions ul[role=menu] li:nth-child(2).active a[role=menuitem] {
  pointer-events: auto;
  cursor: pointer;
  background-color: #3ab3df;
}

.reg-steps .actions ul[role=menu] li:nth-child(3) a[role=menuitem] {
  pointer-events: none;
  cursor: default;
  background-color: #cfcfcf;
}

.reg-steps .actions ul[role=menu] li:nth-child(3).active a[role=menuitem] {
  pointer-events: auto;
  cursor: pointer;
  background-color: #3ab3df;
}

.reg-steps .actions ul[role=menu] li:nth-child(3).active a[role=menuitem]:focus, .reg-steps .actions ul[role=menu] li:nth-child(3).active a[role=menuitem]:hover {
  background-color: #74cae8;
}

.reg-steps .actions ul[role=menu] li.disabled {
  display: none !important;
}

.reg-steps .actions ul[role=menu] li.disabled a {
  display: none !important;
}

@media screen\0 {
  .reg-steps .actions ul[role=menu] li:nth-child(2), .reg-steps .actions ul[role=menu] li:nth-child(3) {
    display: none !important;
  }
  .reg-steps .actions ul[role=menu] li:nth-child(2).active, .reg-steps .actions ul[role=menu] li:nth-child(3).active {
    display: list-item !important;
  }
}

ul.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 45px;
  font-size: 18px;
}

ul.breadcrumbs li a {
  color: #357fc2;
}

ul.breadcrumbs li a:focus, ul.breadcrumbs li a:hover {
  color: #74cae8;
}

ul.breadcrumbs li:after {
  content: url(../img/breadcrumbs-mobile-arrow.svg);
  position: relative;
  width: 12px;
  height: 12px;
  left: 20px;
}

ul.breadcrumbs li:last-child:after {
  display: none;
}

.s-product-profile {
  padding-bottom: 20px;
}

.s-product-profile .container {
  max-width: 1576px;
}

.s-product-profile h1 {
  margin: 27px 0;
  font-size: 26px;
}

.s-product-profile .left-product-info-col {
  float: left;
  width: 375px;
  padding-right: 40px;
}

.s-product-profile .right-product-info-col {
  float: left;
  width: calc(100% - 375px);
}

.s-product-profile .product-photo {
  width: 100%;
}

.s-product-profile .product-photo img {
  width: 100%;
  height: auto;
}

.s-product-profile .product-profile-rows {
  margin-top: 15px;
}

.s-product-profile .product-profile-rows .row {
  width: 220px;
  position: relative;
  margin-bottom: 16px;
}

.s-product-profile .product-profile-rows .col-1 {
  width: 60px;
  float: left;
}

.s-product-profile .product-profile-rows .col-2 {
  width: 90px;
  float: left;
}

.s-product-profile .product-profile-rows .col-2 .col-title {
  padding-left: 18px;
}

.s-product-profile .product-profile-rows .col-3 {
  width: 70px;
  text-align: right;
  float: left;
  padding-right: 3px;
}

.s-product-profile .product-profile-rows .col-3 .col-title {
  text-align: left;
  padding-left: 22px;
}

.s-product-profile .product-profile-rows .col-title {
  color: #9f9f9f;
}

.s-product-profile .product-profile-rows .item-quantity {
  display: inline-block;
  vertical-align: middle;
}

.s-product-profile .product-profile-rows .btn-number {
  width: 25px;
  height: 24px;
  font-size: 20px;
  color: #9f9f9f;
  line-height: 24px;
  padding: 0;
  background-color: #f1f1f1;
  vertical-align: middle;
}

.s-product-profile .product-profile-rows .btn-number:hover {
  color: #3ab3df;
}

.s-product-profile .product-profile-rows .btn-number .minus {
  position: relative;
  bottom: 2px;
}

.s-product-profile .product-profile-rows .input-group {
  font-size: 0;
}

.s-product-profile .product-profile-rows .input-number {
  width: 37px;
  height: 24px;
  border-radius: 0;
  line-height: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  color: #9f9f9f;
}

.s-product-profile .product-profile-rows .item-price {
  display: inline-block;
  vertical-align: middle;
  margin-top: 3px;
}

.s-product-profile .product-profile-rows .bonus-price .bonus-price-icon {
  margin-right: 7px;
  display: inline-block;
  vertical-align: bottom;
}

.s-product-profile .product-profile-rows .bonus-price .bonus-price-icon img {
  width: 19px;
  height: 19px;
}

.s-product-profile .product-profile-rows .bonus-price .bonus-price-number {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  bottom: 1px;
}

.s-product-profile .product-profile-rows .row:last-child {
  margin-bottom: 0;
}

.s-product-profile .product-profile-rows .row .right-items-group {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  height: 100%;
}

.s-product-profile .product-profile-rows .row .bonus-quntity {
  font-size: 16px;
  color: #22d3bb;
  display: inline-block;
  vertical-align: middle;
}

.s-product-profile .product-profile-rows .row .bonus-icon {
  vertical-align: middle;
  margin-left: 2px;
  width: 18px;
  height: 18px;
  display: inline-block;
}

.s-product-profile .product-profile-rows .action, .s-product-profile .product-profile-rows .bonus, .s-product-profile .product-profile-rows .neighbors {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
}

.s-product-profile .product-profile-rows .action:first-child, .s-product-profile .product-profile-rows .bonus:first-child, .s-product-profile .product-profile-rows .neighbors:first-child {
  margin-left: 5px;
}

.s-product-profile .product-profile-rows .bonus {
  margin-left: 10px;
}

.s-product-profile .cart-button {
  width: 220px;
  padding: 13.5px 0;
}

.s-product-profile .add-check-wrap {
  margin-top: 27px;
  margin-bottom: 13px;
}

.s-product-profile .product-action-wrap {
  max-width: 390px;
  border-radius: 1px;
  border: 1px solid #ff5252;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.s-product-profile .product-action-title {
  color: #9f9f9f;
}

.s-product-profile .action-icon {
  float: left;
  width: 31px;
}

.s-product-profile .action-descr {
  float: left;
  width: calc(100% - 31px);
  color: #ff5252;
}

.s-product-profile .profile-table-title {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 8px;
}

.s-product-profile .product-profile-table {
  width: 100%;
  font-size: 16px;
  color: #222;
  margin-bottom: 20px;
}

.s-product-profile .product-profile-table td {
  vertical-align: top;
  line-height: 1.25;
  padding: 8px 0;
}

.s-actions .catalogue-sidebar.actions-sidebar {
  padding-top: 0;
}

.s-actions .catalogue-sidebar.actions-sidebar .filter-items {
  padding-top: 0;
}

.s-product-profile .product-profile-table .spec-name {
  width: 180px;
  color: #9f9f9f;
}

.s-product-profile .timer-wrap {
  margin-top: 15px;
  margin-bottom: 25px;
}

.s-product-profile.s-bonus-product-profile .cart-button {
  margin-top: 20px;
}

.s-product-profile.s-bonus-product-profile .left-product-info-col {
  width: 280px;
  padding-right: 60px;
}

.s-product-profile.s-bonus-product-profile .right-product-info-col {
  width: calc(100% - 280px);
}

.timer-wrap .timer-block {
  display: inline-block;
  text-align: center;
  position: relative;
  margin-right: 36px;
}

.timer-wrap .timer-block:after {
  content: ":";
  position: absolute;
  display: inline-block;
  font-size: 48px;
  top: 0;
  font-weight: 300;
  left: calc(100% + 12px);
}

.timer-wrap .timer-block:last-child {
  margin-right: 0;
}

.timer-wrap .timer-block:last-child:after {
  display: none;
}

.timer-wrap .timer-number {
  font-size: 48px;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}

.s-actions .filters-btn, .s-actions h1 {
  margin-bottom: 25px;
}

.timer-wrap .timer-txt {
  color: #9f9f9f;
}

.s-actions {
  padding-bottom: 10px;
}

.s-actions .container {
  max-width: 1576px;
}

.s-actions h1 {
  font-size: 26px;
}

.s-actions .catalogue-sidebar.actions-sidebar .filter-category-wrap {
  padding: 0;
  border-bottom: 0;
}

.s-actions .catalogue-sidebar.actions-sidebar .filters {
  padding-right: 0;
}

.s-actions .actions-content {
  float: left;
  width: calc(100% - 220px);
}

.s-actions .action-item {
  float: left;
  width: 50%;
  padding-left: 25px;
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 40px;
}

.s-actions .action-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: calc(100% - 15px);
  background-color: #cfcfcf;
}

.s-all-brands .owl-controls .owl-nav div.owl-next, .s-all-productions .owl-controls .owl-nav div.owl-next {
  right: 20px;
}

.s-actions .action-item:nth-child(2n):after {
  width: 100%;
}

.s-actions .action-item:last-child:after, .s-actions .action-item:nth-last-child(2):after {
  display: none;
}

.bonus-quantity-row .account-bonus-item {
  display: inline-block;
  vertical-align: bottom;
}

.s-actions .action-item .info-txt, .s-actions .action-item .timer-wrap {
  display: inline-block;
  vertical-align: bottom;
}

.s-actions .action-item .action-banner img {
  width: 100%;
  height: auto;
}

.s-actions .action-item .action-info {
  padding-top: 20px;
}

.s-actions .action-item .info-txt {
  color: #9f9f9f;
}

.s-actions .action-item .timer-wrap {
  margin: 0 15px;
  line-height: 1;
  position: relative;
  top: 4px;
}

.s-actions .action-item .timer-wrap .timer-number {
  margin-bottom: 0;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
}

.s-actions .action-item .action-details-btn {
  float: right;
  height: 45px;
  line-height: 45px;
  padding: 0;
  text-transform: uppercase;
  vertical-align: bottom;
  position: relative;
  top: 2px;
  width: 220px;
}

.s-actions .actions-carousel {
  text-align: center;
  padding: 40px 0;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.s-actions .actions-carousel:after, .s-actions .actions-carousel:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 6000px;
  left: -2000px;
  background-color: #f1f1f1;
  bottom: 0;
}

.s-actions .actions-carousel:after {
  top: 1px;
}

.s-actions .actions-carousel .action-item {
  padding-left: 0;
  width: auto;
  float: none;
  margin-left: auto;
  max-width: 965px;
  margin-right: auto;
  padding-bottom: 0;
  border-bottom: 0;
}

.s-actions .actions-carousel .action-item .action-info {
  text-align: left;
}

.s-actions .actions-carousel .action-item:after, .s-actions .actions-carousel .action-item:nth-last-child(2):after {
  display: none;
}

.s-actions .actions-carousel .owl-controls .owl-nav div {
  top: 40%;
}

.s-actions-dist {
  padding-top: 15px;
}

.s-actions-dist .h2 {
  font-size: 22px;
  margin-bottom: 25px;
}

.bonus-quantity-row .bonus-icon, .bonus-quantity-row .bonus-number {
  vertical-align: middle;
  display: inline-block;
}

.bonus-quantity-row .account-bonus-txt {
  color: #9f9f9f;
}

.bonus-quantity-row .bonuses-number-wrap {
  margin-top: 7px;
  margin-right: 15px;
  min-width: 221px;
  font-size: 0;
}

.bonus-quantity-row .bonus-icon img {
  width: 36px;
  height: 36px;
}

.bonus-quantity-row .bonus-number {
  font-size: 48px;
  font-weight: 300;
}

.s-bonus-history .bonus-quantity-row {
  margin: 25px 0;
}

.s-bonus-history .date-period-row .plain-txt {
  display: inline-block;
  vertical-align: middle;
  color: #9f9f9f;
  margin-right: 21px;
}

.s-bonus-history .date-period-row .period-date-wrap {
  display: inline-block;
  vertical-align: middle;
}

.s-bonus-history .date-period-row .show-bonus-history-btn {
  vertical-align: middle;
  text-transform: uppercase;
  width: 155px;
  padding: 0;
  height: 45px;
  line-height: 45px;
  margin-left: 10px;
}

.s-bonus-history .bonus-history-table td:after, .s-bonus-history .bonus-history-table-wrap:after {
  content: "";
  left: 50%;
  margin-left: -50vw;
  z-index: -1;
  background-color: #f1f1f1;
}

.s-bonus-history .date-period-row .period-date-icon {
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}

.s-bonus-history .date-period-row .period-date {
  padding: 0 0 0 10px;
  vertical-align: middle;
  display: inline-block;
  width: 104px;
  height: 38px;
  line-height: 38px;
  margin-right: 30px;
}

.s-bonus-history .bonus-history-table-wrap:after {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 45px;
}

.s-bonus-history .bonus-history-table {
  width: 100%;
}

.s-bonus-history .bonus-history-table th {
  color: #9f9f9f;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  padding: 0 !important;
  height: 45px;
  max-height: 45px;
  line-height: 45px;
}

.s-bonus-history .bonus-history-table th:nth-child(3) {
  text-align: center;
}

.s-bonus-history .bonus-history-table th:nth-child(4) {
  text-align: right;
}

.s-bonus-history .bonus-history-table td {
  padding: 22px 0;
  position: relative;
}

.s-distributors, .s-trade-outlets {
  padding-bottom: 0;
}

.s-bonus-history .bonus-history-table td:after {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 1px;
}

.s-all-brands .owl-controls .owl-nav div.owl-prev, .s-all-productions .owl-controls .owl-nav div.owl-prev {
  left: 20px;
}

.s-bonus-history .bonus-history-table td:nth-child(3) {
  text-align: center;
}

.s-bonus-history .bonus-history-table td:nth-child(4) {
  text-align: right;
}

.s-bonus-history .bonus-history-table tr:first-child {
  background-color: #f1f1f1;
  border: none;
  max-height: 45px;
  height: 45px !important;
  padding: 0;
}

.s-bonus-history .bonus-history-table .change-plus {
  color: #22d3bb;
}

.s-bonus-history .bonus-history-table .change-minus {
  color: #ff5252;
}

.s-bonus-history .bonus-history-table a.order-link {
  color: #357fc2;
}

.s-bonus-history .bonus-history-table a.order-link:focus, .s-bonus-history .bonus-history-table a.order-link:hover {
  color: #74cae8;
}

.outlet-item {
  width: 20%;
  border: 1px solid #f1f1f1;
  height: 369px;
  padding-top: 47px;
  float: left;
}

.outlet-item .outlet-info-wrap {
  width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.outlet-item .last-order-wrap {
  min-height: 116px;
  margin-bottom: 10px;
}

.outlet-item .outlet-name {
  color: #9f9f9f;
  line-height: 1.2;
  margin-bottom: 13px;
}

.outlet-item .outlet-city {
  line-height: 1.2;
}

.outlet-item .outlet-address {
  line-height: 1.2;
  min-height: 40px;
  margin-bottom: 15px;
}

.outlet-item .last-order-title {
  color: #9f9f9f;
  margin-bottom: 14px;
}

.outlet-item .sum-wrap {
  margin-bottom: 10px;
}

.outlet-item .date-title, .outlet-item .sum-title {
  min-width: 68px;
  color: #9f9f9f;
  display: inline-block;
  vertical-align: bottom;
}

.outlet-item .date-number, .outlet-item .sum-number {
  font-size: 22px;
  font-weight: 300;
  display: inline-block;
  vertical-align: bottom;
}

.outlet-item.new-outlet-item {
  text-align: center;
  padding-top: 74px;
}

.outlet-item .create-order-btn, .outlet-item .see-outlet-btn {
  width: 220px;
  line-height: 45px;
  padding: 0;
  height: 45px;
  text-transform: uppercase;
}

.outlet-item .new-outlet-link {
  display: block;
}

.outlet-item .new-outlet-link:focus .add-new-outlet-btn, .outlet-item .new-outlet-link:hover .add-new-outlet-btn {
  background-color: #f1f1f1;
}

.outlet-item .new-outlet-link:focus .new-outlet-icon svg path:nth-child(1), .outlet-item .new-outlet-link:focus .new-outlet-icon svg path:nth-child(3) {
  fill: #ddd;
}

.outlet-item .new-outlet-link:hover .new-outlet-icon svg path:nth-child(1), .outlet-item .new-outlet-link:hover .new-outlet-icon svg path:nth-child(3) {
  fill: #ddd;
}

.outlet-item .new-outlet-icon {
  display: block;
  width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.outlet-item .add-new-outlet-btn {
  display: inline-block;
  border-radius: 1px;
  border: 1px solid #f1f1f1;
  color: #3ab3df;
  width: 220px;
  text-transform: uppercase;
  height: 45px;
  line-height: 45px;
  margin-top: 40px;
}

.outlet-item .see-outlet-btn {
  font-size: 16px;
}

.outlet-item .create-order-btn {
  margin-bottom: 60px;
  margin-top: 21px;
}

.s-trade-outlets h1 {
  margin-bottom: 25px;
}

.distributor-item {
  width: 20%;
  min-height: 414px;
  float: left;
  border: 1px solid #f1f1f1;
  text-align: center;
  padding-top: 40px;
}

.distributor-item .distributor-logo {
  text-align: center;
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  height: 114px;
  line-height: 114px;
  font-size: 0;
  margin-bottom: 13px;
}

.distributor-item .distributor-logo img {
  vertical-align: middle;
}

.distributor-item .distributor-name {
  color: #9f9f9f;
  font-size: 18px;
  margin-bottom: 12px;
}

.distributor-item .distributor-contact-items {
  min-height: 60px;
  line-height: 1.3;
  margin-bottom: 17px;
}

.distributor-item .see-distr-btn {
  padding: 0;
  height: 42px;
  line-height: 42px;
  width: 220px;
  text-transform: uppercase;
  font-size: 16px;
}

.distributor-item .distributor-contact {
  font-size: 22px;
  font-weight: 300;
  color: #222;
}

.distributor-item .distributor-contact:focus, .distributor-item .distributor-contact:hover {
  color: #74cae8;
}

.distributor-item .contract-term-wrap {
  margin-top: 20px;
}

.distributor-item .contract-icon {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.distributor-item .contract-term {
  display: inline-block;
  color: #9f9f9f;
  font-size: 16px;
  vertical-align: middle;
}

.distributor-item .price-request-btn {
  width: 220px;
  line-height: 42px;
  height: 42px;
  padding: 0;
  text-transform: uppercase;
  margin-top: 14px;
}

.s-distributors h1 {
  margin-bottom: 25px;
}

.s-distributor-profile {
  padding-bottom: 20px;
}

.s-distributor-profile h1 {
  margin-bottom: 20px;
}

.s-distributor-profile .distributor-item {
  width: 260px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 13px;
  min-height: 381px;
  height: auto;
}

.s-distributor-profile .distributor-item .distributor-contact-items {
  margin-bottom: 22px;
}

.s-distributor-profile .distributor-item .min-order-wrap {
  text-align: left;
  font-size: 16px;
  margin-bottom: 22px;
}

.s-distributor-profile .distributor-item .min-order-txt {
  display: inline-block;
  color: #9f9f9f;
  margin-right: 5px;
}

.s-distributor-profile .regions-info {
  float: left;
  padding-left: 40px;
  width: calc(100% - 260px);
}

.s-distributor-profile .regions-info .regions-title {
  font-size: 18px;
  color: #9f9f9f;
  margin-bottom: 25px;
}

.s-distributor-profile .regions-info .regions-map {
  width: 550px;
  max-width: 100%;
}

.s-distributor-profile .regions-info .regions-map .cls-1.active {
  fill: #FFB74D;
}

.s-all-productions .h2, .s-all-productions h2 {
  margin-bottom: 25px;
}

.s-all-productions .product-category-item {
  border: 1px solid #f1f1f1;
  text-align: center;
  height: 317px;
  padding-top: 40px;
}

.s-all-productions .all-goods-btn {
  text-transform: uppercase;
  width: 220px;
  padding: 0;
  line-height: 45px;
  height: 45px;
}

.s-all-productions .product-category-link {
  width: 220px;
  display: inline-block;
  color: #222;
}

.s-all-productions .product-category-link:hover .all-goods-btn {
  background-color: #f1f1f1;
}

.s-all-productions .product-category-link:hover .product-category-img {
  opacity: 1;
}

.s-all-productions .product-category-link:hover .product-category-name {
  color: #74cae8;
}

.s-all-productions .product-category-img {
  width: 220px;
  height: 183px;
  line-height: 183px;
  font-size: 0;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  opacity: 0.8;
}

.s-all-productions .product-category-img img {
  vertical-align: middle;
  display: inline-block;
  max-width: 100%;
}

.s-all-productions .cart-icon {
  width: 110px;
  height: 110px;
}

.s-all-productions .product-category-name {
  display: block;
  font-size: 18px;
  text-align: left;
  line-height: 1.25;
}

.s-all-productions .owl-controls .owl-nav div {
  top: 50%;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}

.s-all-brands {
  padding-top: 10px;
  padding-bottom: 0;
}

.s-all-brands .h2, .s-all-brands h2 {
  margin-bottom: 25px;
}

.s-all-brands .brand-item {
  border: 1px solid #f1f1f1;
  text-align: center;
  height: 252px;
  padding-top: 40px;
}

.s-all-brands .brand-img {
  width: 220px;
  height: 170px;
  line-height: 170px;
  font-size: 0;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.s-all-brands .brand-img img {
  vertical-align: middle;
  display: inline-block;
  max-width: 100%;
}

.s-all-brands .owl-controls .owl-nav div {
  top: 50%;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}

@media only screen and (max-width: 1439px) {
  .s-main-offer .product-item-wrap {
    display: none;
  }
  .main-offer-slider-wrap {
    width: calc(100% - 220px);
  }
  .product-item-wrap {
    width: 25%;
  }
  .s-actions .action-item {
    width: 100%;
    max-width: 965px;
  }
  .s-actions .action-item:nth-child(2n):after {
    width: calc(100% - 15px);
  }
  .s-actions .action-item:nth-last-child(2):after {
    display: block;
  }
  .s-actions .action-item:last-child {
    margin-bottom: 0;
  }
  .s-actions .action-item:last-child:after {
    display: none;
  }
  .distributor-item, .outlet-item {
    width: 25%;
  }
  .s-cart .radio-group {
    padding-left: 20px;
    padding-right: 30px;
  }
  .cart-table .th--name,
  .cart-table .td--name {
    width: 30%;
  }
  .cart-table .th--actions,
  .cart-table .td--actions {
    width: 12%;
  }
}

@media only screen and (max-width: 1249px) {
  .main-offer-slider .owl-controls .owl-nav div.owl-prev {
    left: 10px;
  }
  .main-offer-slider .owl-controls .owl-nav div.owl-next {
    right: 10px;
  }
  .product-item-wrap {
    width: 33.33333%;
  }
  .distributor-item, .outlet-item {
    width: 33.33333%;
  }
  .s-cart .payment-select {
    max-width: 310px;
  }
  .s-cart .radios-wrap br {
    display: none;
  }
  .s-cart .radios-wrap .radio-label {
    margin-bottom: 15px;
    margin-left: 35px;
  }
  .s-cart .radios-wrap .radio-label:first-child {
    margin: 0;
    margin-bottom: 15px;
  }
  .s-cart .contract-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .s-cart .contract-row .contract-select {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .s-cart .order-properties-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .s-cart .order-properties-group .left-col {
    width: 100%;
  }
  .s-cart .order-properties-group .middle-col {
    width: 100%;
  }
  .s-cart .order-properties-group .right-col {
    width: 100%;
    padding-left: 0px;
  }
  .s-cart .radio-group {
    padding-left: 0;
    padding-right: 0;
  }
  .s-cart .delivery-row {
    margin-bottom: 10px;
  }
  .cart-table {
    font-size: 10px;
  }
  .cart-table .rec-col {
    font-size: 8px;
  }
  .cart-table .td--qty {
    font-size: 14px;
  }
  .cart-table .th--rec {
    font-size: 8px;
  }
  .cart-table .action-item .bonus-qty {
    font-size: 10px;
  }
  .cart-table .tr-group-heading-content {
    font-size: 12px;
  }
  .cart-table .tr-group-heading-content img {
    width: 14px;
  }
  .cart-table .action-item img {
    width: 14px;
  }
}

@media only screen and (max-width: 1050px) {
  .s-main-offer .menu-substrate {
    display: none;
  }
  .main-offer-slider-wrap {
    width: 100%;
  }
  aside.catalogue-sidebar ul.breadcrumbs {
    display: none;
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar {
    position: fixed;
    left: -243px;
    -webkit-transform: translate(-243px, 0);
        -ms-transform: translate(-243px, 0);
            transform: translate(-243px, 0);
    top: 0;
    padding-left: 15px;
    bottom: 0;
    -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 243px;
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar .filters {
    max-height: calc(100vh - 276px);
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar.scrolled {
    padding-top: 0;
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar.scrolled .filters {
    max-height: calc(100vh - 156px);
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar.active {
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 20;
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar .filter-items {
    padding-right: 20px;
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar .filters {
    max-height: calc(100vh - 200px);
  }
  .s-actions aside.catalogue-sidebar.actions-sidebar.scrolled .filters {
    max-height: calc(100vh - 80px);
  }
  aside.catalogue-sidebar .close-sidebar-btn {
    display: block;
  }
  .s-cart ul.cart-tabs > li {
    width: 240px;
  }
  .reg-step .inputs-container, .reg-steps .actions ul[role=menu] {
    position: relative;
    right: 50px;
  }
  .s-product-profile .product-action-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .s-actions .actions-content {
    width: 100%;
    float: none;
  }
  .s-actions .action-item {
    padding-left: 0;
  }
  .catalogue-items-title-wrap {
    display: none;
  }
  .s-distributor-profile .regions-info {
    padding-left: 20px;
  }
  .s-cart .cart-heading-wrap .heading-txt {
    font-size: 18px;
  }
  .s-cart .cart-heading-wrap .counter-item {
    font-size: 12px;
    margin-right: 10px;
  }
  .s-cart .cart-heading-wrap .heading-counters {
    padding-top: 14px;
  }
  .s-cart .cart-heading-wrap .counter-item .counter-unit img {
    width: 10px;
  }
  .s-cart .cart-heading-wrap {
    padding-left: 0;
  }
  .s-cart .error-message {
    left: -40px;
  }
  .s-cart .error-message:before {
    left: 14%;
  }
  .s-cart .total-counters {
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 22px;
  }
  .s-cart .total-counter-item {
    margin-right: 15px;
    font-size: 17px;
  }
  .s-cart .total-counter-item .total-counter-name {
    margin-right: 0;
    font-size: 14px;
  }
  .s-cart .total-counter-item .total-counter-alignment {
    min-width: 150px;
  }
  .s-cart .total-counter-item .total-counter-unit .svg {
    width: 15px;
  }
  .cart-table .action-item img {
    margin-right: 4px;
  }
  .cart-table .td {
    padding-right: 5px;
    padding-left: 5px;
  }
  .cart-table .th--barcode,
  .cart-table .td--barcode {
    display: none;
    width: 0;
  }
  .cart-table .th--name,
  .cart-table .td--name {
    width: 27%;
  }
  .cart-table .th--price,
  .cart-table .td--price {
    width: 12%;
  }
  .cart-table .th--sum,
  .cart-table .td--sum {
    width: 14%;
  }
  .cart-table .th--actions,
  .cart-table .td--actions {
    width: 15%;
  }
  .cart-table .th--del,
  .cart-table .td--del {
    width: 4%;
    padding-right: 10px;
  }
  .cart-table .th--rec,
  .cart-table .td--rec {
    width: 7%;
  }
  .cart-table .th--unit,
  .cart-table .td--unit {
    width: 6%;
  }
  .cart-table .th--qty,
  .cart-table .td--qty {
    width: 15%;
  }
  .s-cart ul.cart-tabs > li {
    width: auto;
    font-size: 14px;
  }
  .s-cart .trade-point-select.bootstrap-select .dropdown-toggle {
    padding-top: 9px;
    padding-left: 16px;
    padding-right: 35px;
    font-size: 14px;
  }
  .s-cart .trade-point {
    padding-top: 9px;
    padding-left: 16px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .reg-steps {
    font-size: 20px;
  }
  .reg-step .inputs-container {
    max-width: 650px;
  }
  .reg-step .step-info-item-name-wrap {
    font-size: 1em;
  }
  .reg-step .inputs-container,
  .reg-steps .actions ul[role=menu] {
    right: 0;
  }
  .reg-step .input-name-wrap {
    font-size: 23px;
    width: 250px;
  }
  .reg-steps input,
  .reg-steps textarea,
  .reg-step .input-text-wrap .select-style select {
    font-size: 23px;
  }
  .reg-step button,
  .reg-step .button,
  .reg-steps .actions ul[role=menu] li:nth-child(2) a[role=menuitem],
  .reg-steps .actions ul[role=menu] li:nth-child(3) a[role=menuitem],
  .reg-steps .actions ul[role=menu] li:nth-child(1) a[role=menuitem] {
    font-size: 23px;
  }
  .reg-step .btn-confirm-phone, .reg-step .btn-change-phone, .reg-step .btn-confirm-code {
    top: 60px;
    left: auto;
    right: 0;
    width: 180px;
  }
  .reg-step .plain-info-txt {
    font-size: 18px;
  }
  .reg-step .phone-input-wrap {
    margin-bottom: 40px;
  }
  .reg-step .sms-row.active {
    margin-bottom: 40px;
  }
  .reg-step .trade-point-delete-btn {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
    width: 150px;
    margin-bottom: 30px;
  }
  .reg-step .add-point-btn {
    height: 55px;
    line-height: 55px;
  }
  .reg-step .input-text-wrap {
    width: 400px;
  }
  .reg-step .input-text-wrap input, .reg-step .input-text-wrap .select-style select {
    height: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  body {
    width: 768px;
    overflow-x: hidden;
  }
  body.media-mobile {
    width: auto;
  }
  html {
    overflow-x: auto;
  }
}

@media only screen and (min-width: 1850px) {
  .product-item-wrap {
    width: 16.67%;
  }
  .distributor-item, .outlet-item {
    width: 16.66667%;
  }
}

@media only screen and (max-width: 1050px) {
  .hidden-md {
    display: none;
  }
}

@media only screen and (min-width: 1050px) {
  .visible-md {
    display: none;
  }
}

.s-main-products-slider .container {
  max-width: 1439px;
}

.b-table {
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.b-table a {
  color: inherit;
}

.b-table a:hover {
  color: #3ab3df;
}

.b-table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.b-table .tbody .tr {
  padding: 12px 0 11px;
  border-bottom: 1px solid #F1F1F1;
  line-height: 1.2;
}

.b-table .th {
  border-right: 5px solid #fff;
  background: #F1F1F1;
  text-align: center;
  line-height: 1.4;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #9F9F9F;
  min-height: 40px;
}

.b-table .th:last-child {
  border-right: none;
}

.b-table .th,
.b-table .td {
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (max-width: 1249px) {
  .b-table {
    font-size: 10px;
  }
  .b-table select {
    font-size: 1em;
  }
}

.sidebar {
  width: 270px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.sidebar .sidebar-selects {
  padding-bottom: 10px;
}

.sidebar .sidebar-select {
  background-color: #F1F1F1;
  width: auto;
  overflow: visible;
}

.sidebar .sidebar-select select {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 48px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

@media only screen and (max-width: 1439px) {
  .sidebar:not(.lg-not-stretched) {
    width: 100%;
    padding-right: 0;
  }
}

.display-content {
  width: calc(100% - 270px);
}

@media only screen and (max-width: 1439px) {
  .display-content:not(.lg-not-stretched) {
    width: 100%;
  }
}

.s-main-products-slider .product-item-wrap:hover .item-zoom-group {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  -o-transition: transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.s-main-products-slider .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
  -webkit-transform: translate(60px, 0);
      -ms-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

@media only screen and (max-width: 1850px) {
    .s-main-products-slider .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
        -webkit-transform: translate(105px, 0);
        -ms-transform: translate(105px, 0);
        transform: translate(105px, 0);
    }
}

@media only screen and (max-width: 1256px) {
  .s-main-products-slider .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(95px, 0);
        -ms-transform: translate(95px, 0);
            transform: translate(95px, 0);
  }
}

@media only screen and (max-width: 1000px) {
    .s-main-products-slider .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
        -webkit-transform: translate(135px, 0);
        -ms-transform: translate(135px, 0);
        transform: translate(135px, 0);
    }
}

@media only screen and (max-width: 767px) {
  .s-main-products-slider .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.s-main-products-slider .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
  -webkit-transform: translate(-60px, 0);
      -ms-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

@media only screen and (max-width: 1850px) {
  .s-main-products-slider .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(-55px, 0);
        -ms-transform: translate(-55px, 0);
            transform: translate(-55px, 0);
  }
}

@media only screen and (max-width: 1256px) {
  .s-main-products-slider .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(-45px, 0);
        -ms-transform: translate(-45px, 0);
            transform: translate(-45px, 0);
  }
}

@media only screen and (max-width: 1000px) {
  .s-main-products-slider .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(-85px, 0);
        -ms-transform: translate(-85px, 0);
            transform: translate(-85px, 0);
  }
}

@media only screen and (max-width: 767px) {
  .s-main-products-slider .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.label {
  font-size: 12px;
  color: #9F9F9F;
  line-height: 1.2;
  margin-bottom: 5px;
  display: inline-block;
}

.bs-styled-select .dropdown-toggle:focus {
  outline: none !important;
}

.bs-styled-select .btn {
  background: transparent;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  color: inherit;
  padding: 10px 30px 10px 12px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.bs-styled-select .btn .caret {
  border: none;
  background-image: url(../img/down-blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 8px;
}

.bs-styled-select .dropdown-menu {
  border-radius: 0px;
  border: 1px solid #F1F1F1;
  border-top: 0;
  margin: 0;
  font-size: 16px;
}

.bs-styled-select .dropdown-menu li a {
  padding: 10px 12px;
}

.bs-styled-select.btn-group .dropdown-toggle .caret {
  margin: 0;
  right: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.t-bon-num-wrap {
  color: #22D3BB;
}

.t-bon-num-wrap .price-cy {
  position: relative;
  top: 2px;
  margin-left: 3px;
}

.t-bon-num-wrap .price-cy img {
  width: 15px;
}

.dd-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

.dd-heading .dd-h-img {
  padding-right: 15px;
  font-size: 0;
}

.dd-heading .dd-h-img img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 5px solid  #F1F1F1;
}

.dd-heading .dd-h-img .dd-h-img__inner_style_offborder {
  border: none;
}

.dd-heading .dd-h-txt {
  color: #B46CD2;
  line-height: 1.2;
  font-weight: 400;
  padding-top: 6px;
  font-size: 24px;
}

@media only screen and (max-width: 1050px) {
  .dd-heading .dd-h-txt {
    font-size: 20px;
    padding-top: 8px;
  }
}

.dd-heading .dd-h-txt_style_small-gray {
  font-size: 18px;
  line-height: 1.389;
  color: #9F9F9F;
  padding-top: 0;
}

@media only screen and (max-width: 1050px) {
  .dd-heading .dd-h-txt_style_small-gray {
    font-size: 14px;
  }
}

.dd-heading--black .dd-h-txt {
  color: #000;
}

.right-btn-wrap {
  text-align: right;
}

.plain-info-txt {
  font-size: 14px;
  padding: 6px 0 6px 7px;
  border-left: 4px solid  #FFB74D;
  line-height: 1.3;
  color: #9F9F9F;
}

@media only screen and (max-width: 1050px) {
  .plain-info-txt {
    font-size: 12px;
    padding: 5px 0 5px 7px;
  }
}

.search-input {
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 60px;
  background: url(../img/search-icon.svg) 20px 50% no-repeat;
  background-size: 19px 19px;
}

.tag-list-wrap {
  position: relative;
}

.tag-list-wrap ul {
  font-size: 0;
  margin-right: -10px;
  margin-bottom: -10px;
}

.tag-list-wrap li {
  display: inline-block;
  white-space: nowrap;
  padding: 5px 10px;
  background: #22D3BB;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.tag-list-wrap li a {
  color: inherit;
}

.tag-list-wrap li.tag--hidden {
  display: none;
}

.tag-list-wrap li.hidden-count {
  background: #F1F1F1;
  color: #222;
  border-radius: 5px;
}

.plaintab {
  width: 100%;
  border-right: 1px solid #F1F1F1;
  border-left: 5px solid #3AB3DF;
  position: relative;
  padding: 10px 30px 10px 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.plaintab:after, .plaintab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.plaintab:before {
  top: 0;
}

.plaintab:after {
  bottom: 0px;
}

.plaintab .tabrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.plaintab .tabrow:first-child {
  padding-top: 0;
}

.plaintab .tabrow:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.plaintab .tab-heading {
  color: #9F9F9F;
  margin-bottom: 7px;
}

.plaintab .tab-big-txt {
  font-size: 22px;
  padding-bottom: 3px;
}

.plaintab .tab-big-txt a {
  color: inherit;
}

.plaintab .tab-big-txt a:hover {
  color: #3ab3df;
}

.plaintab .tab-buttons-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.plaintab .tab-buttons-col button {
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 17px;
  padding-bottom: 17px;
  border: none;
  padding-left: 3px;
  padding-right: 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.plaintab .tab-buttons-col .del-btn {
  color: #FC828F;
}

@media only screen and (max-width: 1050px) {
  .plaintab .tab-big-txt {
    font-size: 16px;
  }
}

.error-message {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #fff;
  background: #22D3BB;
  padding: 9px 15px 9px 20px;
  white-space: nowrap;
  visibility: hidden;
  z-index: 100;
  position: absolute;
  font-size: 18px;
  top: calc(100% + 12px);
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error-message:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #22d3bb;
  top: -12px;
  z-index: 50;
  margin-left: -6px;
}

.error-message span {
  margin-left: 10px;
  margin-right: 15px;
}

.error-message .error-close {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.error-message .error-close:hover path {
  fill: #3ab3df;
}

.error-message.top {
  right: 0;
  left: auto;
  top: auto;
  bottom: calc(100% + 12px);
}

.error-message.top .error-close {
  margin-left: 45px;
}

.error-message.top:before {
  top: auto;
  bottom: -12px;
  right: 100px;
  left: auto;
  border-bottom: none;
  border-top: 12px solid #22d3bb;
}

.display-error .error-message {
  visibility: visible;
}

.intl-phone-wrap .hidden {
  display: none;
}

.intl-phone-wrap > span {
  font-size: 14px;
  display: block;
  margin: 3px 0 7px;
}

.intl-phone-wrap .valid-msg {
  color: #22d3bb;
}

.intl-phone-wrap .error-msg {
  color: #fe0000;
}

.download-link {
  display: inline-block;
  position: relative;
  min-height: 20px;
  color: #3AB3DF;
  line-height: 1.3;
}

.download-link .download-icon {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}

.download-link span {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #3AB3DF;
  margin-left: 34px;
}

.download-link:hover {
  color: #74cae8;
}

.download-link:hover path {
  fill: #74cae8;
}

.req-price-popup {
  max-width: 1240px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  padding: 30px 30px 50px;
}

.req-price-popup .mfp-close {
  display: none;
}

.req-price-popup .dd-heading {
  margin-bottom: 15px;
}

.req-price-popup .req-price-popup-content {
  padding-left: 55px;
}

.req-price-popup .popup-note {
  color: #9F9F9F;
  font-size: 14px;
}

.req-price-popup .terms-note {
  font-size: 18px;
  color: #9F9F9F;
  line-height: 1.6;
  margin-bottom: 20px;
}

.req-price-popup .plain-info-txt {
  margin-bottom: 40px;
}

.req-price-popup .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.req-price-popup .cancel-btn,
.req-price-popup .send-req-btn {
  width: 210px;
}

.req-price-popup .outlets-list {
  padding: 30px 0;
}

.req-price-popup .outlets-list .checkbox-label {
  width: 100%;
}

.req-price-popup .outlets-list .checkbox-txt-wrap {
  width: 100%;
}

.req-price-popup .outlets-list .checkbox-txt-wrap:before {
  margin-right: 16px;
}

.req-price-popup .outlets-list .checkbox-txt-wrap .checkbox-txt {
  max-width: calc(100% - 35px);
}

.req-price-popup .outlets-list li {
  margin-bottom: 35px;
}

.req-price-popup .outlets-list li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1050px) {
  .req-price-popup {
    max-width: 700px;
  }
  .req-price-popup .terms-note {
    font-size: 16px;
  }
  .req-price-popup .plain-info-txt {
    font-size: 14px;
  }
}

.right-button-wrap {
  text-align: right;
  position: relative;
}

.mfp-wrap .mfp-close {
  font-size: 35px;
  width: 60px;
  height: 60px;
  top: 10px;
  font-weight: 300;
}

.center {
  text-align: center;
}

.btn-tabs {
  padding-bottom: 10px;
}

@media only screen and (max-width: 1249px) {
  .btn-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
  }
  .btn-tabs:after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    height: 1px;
    bottom: 0;
    width: 100000px;
    background: #CFCFCF;
  }
}

.btn-tab-item {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1249px) {
  .btn-tab-item {
    margin: 0;
  }
}

.btn-tab-item .btn-tab {
  width: 100%;
  text-align: center;
}

.btn-tab-item .btn-tab.active {
  border-color: #3AB3DF;
  cursor: default;
  pointer-events: none;
}

@media only screen and (max-width: 1249px) {
  .btn-tab-item .btn-tab {
    border: none;
    padding: 13px 25px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
  }
  .btn-tab-item .btn-tab:hover, .btn-tab-item .btn-tab:focus {
    background: #fff;
  }
  .btn-tab-item .btn-tab.active {
    padding-top: 8px;
    border: 1px solid  #CFCFCF;
    border-bottom: 0;
    border-top: 5px solid  #3AB3DF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
  }
  .btn-tab-item .btn-tab.active:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
  }
}

.pagination-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  padding-top: 30px;
}

.pagination-nav .control-btn {
  padding: 12px 15px;
  font-size: 1em;
  min-width: 135px;
  text-align: center;
}

.pagination-nav > * {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.pagination-nav .pagination-nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -5px;
  padding-left: 20px;
  padding-right: 20px;
}

.pagination-nav .pagination-nums li {
  margin-right: 5px;
}

.pagination-nav .pagination-nums li a {
  display: inline-block;
  border: 1px solid #f1f1f1;
  color: #3ab3df;
  border-radius: 1px;
  padding: 11px 10px;
  min-width: 50px;
  text-align: center;
}

.pagination-nav .pagination-nums li:hover:not(.active) a {
  background: #f1f1f1;
}

.pagination-nav .pagination-nums li.active a {
  cursor: default;
  pointer-events: none;
  background-color: #3ab3df;
  color: #fff;
  border-color: transparent;
}

.pagination-nav--simple {
  padding-top: 20px;
}

.pagination-nav--simple .pagination-nums {
  padding: 0;
}

.pagination-nav--simple .pagination-nums li a {
  border: none;
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 40px;
  border-right: 2px;
}

.informer {
  border: 1px solid #F1F1F1;
  border-left: 5px solid #B46CD2;
  padding: 9px 10px 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 18px;
  color: #B46CD2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.informer .informer-i {
  width: 20px;
  height: auto;
}

.informer .informer-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
  padding-top: 0px;
  line-height: 1.2;
}

@media only screen and (max-width: 1050px) {
  .informer {
    font-size: 14px;
  }
  .informer .informer-content {
    padding-top: 3px;
  }
}

.informer--processing {
  color: #FFB74D;
  border-color: #FFB74D;
}

.informer--processing .informer-i path {
  fill: #FFB74D;
}

.inner-products-carousel {
  position: relative;
  z-index: 10;
}

.inner-products-carousel:hover, .inner-products-carousel:focus, .inner-products-carousel:active {
  z-index: 20;
}

.inner-products-carousel .owl-stage-outer {
  overflow: visible;
}

.inner-products-carousel .owl-item {
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.inner-products-carousel .owl-item:not(.active) {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.inner-products-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.inner-products-carousel .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.inner-products-carousel .owl-controls .owl-nav div {
  top: 186px;
}

.inner-products-carousel .owl-controls .owl-nav div.owl-prev {
  left: 20px;
}

.inner-products-carousel .owl-controls .owl-nav div.owl-next {
  right: 20px;
}

@media only screen and (min-width: 1249px) {
  .inner-products-carousel .owl-controls .owl-nav div.owl-prev {
    left: -40px;
  }
  .inner-products-carousel .owl-controls .owl-nav div.owl-next {
    right: -40px;
  }
}

.inner-products-carousel .product-item-wrap {
  width: 100%;
}

.inner-products-carousel .product-item-wrap:hover .item-zoom-group {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  -o-transition: transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

@media only screen and (max-width: 1439px) {
  .inner-products-carousel .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(-45px, 0);
        -ms-transform: translate(-45px, 0);
            transform: translate(-45px, 0);
  }
}

@media only screen and (max-width: 1249px) {
  .inner-products-carousel .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(80px, 0);
        -ms-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
}

@media only screen and (max-width: 1050px) {
  .inner-products-carousel .owl-item.active.first .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(120px, 0);
        -ms-transform: translate(120px, 0);
            transform: translate(120px, 0);
  }
  .inner-products-carousel .owl-item.active.last .product-item-wrap:hover .item-zoom-group {
    -webkit-transform: translate(-95px, 0);
        -ms-transform: translate(-95px, 0);
            transform: translate(-95px, 0);
  }
}

.download-col-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.download-col-links .download-link-wrap {
  width: 33.333%;
  padding-right: 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media only screen and (max-width: 1050px) {
  .download-col-links .download-link-wrap {
    width: 50%;
  }
}

.secondary-txt {
  font-size: 18px;
  color: #9F9F9F;
  line-height: 1.44;
}

.secondary-txt p + p {
  margin-top: 1.5em;
}

.secondary-txt strong, .secondary-txt b {
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (max-width: 1050px) {
  .secondary-txt p {
    font-size: 16px;
  }
}

.contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-items .contact-item-col {
  width: 50%;
  padding-right: 20px;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.contact-item .contact-item-icon {
  width: 30px;
}

.contact-item .contact-item-icon img, .contact-item .contact-item-icon .svg {
  max-width: 100%;
  height: auto;
}

.contact-item .contact-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  padding-left: 20px;
  padding-top: 6px;
}

.contact-item .contact-item-content a {
  color: inherit;
}

.contact-item .contact-item-content a:hover, .contact-item .contact-item-content a:focus {
  color: #3ab3df;
}

.contact-item .contact-item-row + .contact-item-row {
  margin-top: 20px;
}

.contact-item .contact-item-note {
  margin-left: 60px;
  color: #CFCFCF;
}

@media only screen and (max-width: 1439px) {
  .contact-item .contact-item-icon {
    width: 20px;
  }
  .contact-item .contact-item-content {
    font-size: 16px;
    padding-top: 2px;
  }
  .contact-item .contact-item-note {
    margin-left: 20px;
    font-size: 14px;
  }
}

.product-items-row:after {
  content: "";
  clear: both;
  display: table;
}

.product-items-row .product-item-wrap {
  width: 20%;
}

.product-items-row .product-item-wrap:hover .item-zoom-group {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  -o-transition: transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

@media only screen and (max-width: 1439px) {
  .product-items-row .product-item-wrap {
    width: 25%;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 1050px) and (max-width: 1439px) {
  .product-items-row .product-item-wrap:nth-child(4n+1):hover .item-zoom-group {
    -webkit-transform: translate(65px, 0);
        -ms-transform: translate(65px, 0);
            transform: translate(65px, 0);
  }
}

@media only screen and (max-width: 1439px) and (min-width: 1050px) and (max-width: 1439px) {
  .product-items-row .product-item-wrap:nth-child(4n):hover .item-zoom-group {
    -webkit-transform: translate(-65px, 0);
        -ms-transform: translate(-65px, 0);
            transform: translate(-65px, 0);
  }
}

@media only screen and (max-width: 1050px) {
  .product-items-row .product-item-wrap {
    width: 33.3333%;
  }
  .product-items-row .product-item-wrap:nth-child(3n+1):hover .item-zoom-group {
    -webkit-transform: translate(80px, 0);
        -ms-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
  .product-items-row .product-item-wrap:nth-child(3n):hover .item-zoom-group {
    -webkit-transform: translate(-80px, 0);
        -ms-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
  }
}

.order-tab {
  width: 100%;
  border-right: 1px solid #F1F1F1;
  border-left: 5px solid transparent;
  position: relative;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

.order-tab:after, .order-tab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.order-tab:before {
  top: 0;
}

.order-tab:after {
  bottom: 0px;
}

.order-tab .bonus-sum {
  color: #3AB3DF;
}

.order-tab .bonus-sum span {
  margin-right: 2px;
}

.order-tab .bonus-sum img {
  width: 25px;
}

.order-tab .order-tab-toprow,
.order-tab .order-tab-botrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-tab .order-tab-toprow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.order-tab .order-tab-botrow {
  padding-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-tab .tab-heading {
  color: #9F9F9F;
}

.order-tab .tab-big-txt {
  font-size: 22px;
  padding-top: 6px;
  padding-bottom: 3px;
}

.order-tab .shop-address {
  color: #9F9F9F;
  line-height: 1.4;
}

.order-tab .number-col {
  font-size: 14px;
  color: #9F9F9F;
  text-align: right;
  line-height: 1.8;
}

.order-tab .company-col {
  text-transform: uppercase;
}

.order-tab .shop-name {
  font-size: 16px;
  margin-bottom: 6px;
}

.order-tab .status-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-tab .status-item .status-icon img {
  width: 40px;
}

.order-tab .status-item .status-txt {
  font-size: 18px;
  padding-left: 20px;
  max-width: calc(100% - 40px);
  text-align: center;
  line-height: 1.4;
}

.order-tab .tab-btn {
  padding-top: 17px;
  padding-bottom: 17px;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.order-tab .tab-btns {
  font-size: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order-tab .tab-btns .tab-btn {
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.order-tab .action-btns-group {
  text-align: right;
}

.order-tab .action-btn {
  background: transparent;
  padding: 10px;
}

.order-tab .action-btn:hover {
  background-color: #f1f1f1;
}

.order-tab .action-btn.disabled {
  pointer-events: none;
  cursor: default;
}

.order-tab .action-btn.disabled svg path {
  fill: #CFCFCF;
}

@media only screen and (max-width: 1050px) {
  .order-tab .action-btn .action-btn-icon {
    width: 25px;
    height: auto;
  }
}

.order-tab .action-btn + .action-btn {
  margin-left: 17px;
}

@media only screen and (max-width: 1050px) {
  .order-tab .action-btn + .action-btn {
    margin-left: 5px;
  }
}

.order-tab .status-col {
  width: 26.3%;
  padding-left: 30px;
}

.order-tab .button-col {
  padding-left: 20px;
  width: 16.3%;
}

.order-tab .date-col, .order-tab .number-col, .order-tab .sum-col {
  text-align: right;
  width: 18%;
  padding-left: 20px;
}

.order-tab .debt-col,
.order-tab .overdue-debt-col {
  text-align: right;
  width: 14%;
  padding-left: 20px;
}

.order-tab .overdue-debt-col {
  width: 16%;
}

.order-tab .shop-col {
  width: 35.7%;
}

.order-tab .sku-col {
  width: 9%;
  text-align: right;
}

.order-tab .company-col {
  width: 26.7%;
  padding-right: 20px;
  line-height: 1.6;
}

.order-tab--deleted {
  border-left-color: #FC828F;
}

.order-tab--deleted .sku-col .tab-big-txt {
  color: #FC828F;
}

.order-tab--deleted .status-txt {
  color: #FC828F;
}

.order-tab--new {
  border-left-color: #61ADF2;
}

.order-tab--new .sku-col .tab-big-txt {
  color: #61ADF2;
}

.order-tab--new .status-txt {
  color: #61ADF2;
}

.order-tab--accepted {
  border-left-color: #22D3BB;
}

.order-tab--accepted .sku-col .tab-big-txt {
  color: #22D3BB;
}

.order-tab--accepted .status-txt {
  color: #22D3BB;
}

.order-tab--processing {
  border-left-color: #FFB74D;
}

.order-tab--processing .sku-col .tab-big-txt {
  color: #FFB74D;
}

.order-tab--processing .status-txt {
  color: #FFB74D;
}

.order-tab--awaiting {
  border-left-color: #B46CD2;
}

.order-tab--awaiting .sku-col .tab-big-txt {
  color: #B46CD2;
}

.order-tab--awaiting .status-txt {
  color: #B46CD2;
}

.order-tab--delivered {
  border-left-color: #4FBA7E;
}

.order-tab--delivered .sku-col .tab-big-txt {
  color: #4FBA7E;
}

.order-tab--delivered .status-txt {
  color: #4FBA7E;
}

.order-tab--debt-expired .date-col .tab-big-txt,
.order-tab--debt-expired .debt-col .tab-big-txt {
  color: #FF5252;
}

@media only screen and (max-width: 1439px) {
  .order-tab .tab-btns .tab-btn {
    width: 50%;
  }
}

@media only screen and (max-width: 1249px) {
  .order-tab .status-item .status-txt {
    font-size: 14px;
    padding-left: 10px;
  }
  .order-tab .date-col, .order-tab .number-col, .order-tab .sum-col {
    padding-left: 10px;
    width: 22%;
  }
  .order-tab .debt-col, .order-tab .overdue-debt-col {
    width: 14%;
    padding-left: 10px;
  }
  .order-tab .button-col {
    width: 20.3%;
  }
  .order-tab .company-col {
    font-size: 12px;
    width: 24.7%;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 1050px) {
  .order-tab {
    padding: 10px 15px;
  }
  .order-tab .shop-address {
    font-size: 14px;
    line-height: 1.6;
  }
  .order-tab .tab-heading {
    font-size: 14px;
  }
  .order-tab .tab-big-txt {
    font-size: 20px;
  }
  .order-tab .button-col, .order-tab .status-col {
    padding-left: 20px;
  }
  .order-tab .tab-btns {
    margin-bottom: -5px;
    display: block;
  }
  .order-tab .tab-btns .tab-btn {
    width: auto;
    display: block;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .order-tab .bonus-sum img {
    width: 20px;
  }
}

.order-tab--brief {
  margin-bottom: 20px;
}

.order-tab--brief .tab-heading {
  font-size: 14px;
}

.order-tab--brief .tab-big-txt {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 5px;
  padding-bottom: 0;
}

.order-tab--brief .order-tab-toprow {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
  border-bottom: none;
}

.order-tab--brief .shop-col {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.order-tab--brief .sum-col {
  width: 16%;
}

.order-tab--brief .qty-col {
  text-align: right;
  padding-left: 20px;
  width: 15%;
}

.order-tab--brief .number-col {
  width: 15%;
}

.order-tab--brief .number-col a {
  text-decoration: underline;
}

.order-tab--brief .status-item .status-txt {
  max-width: 160px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.order-tab--brief .status-item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.order-tab--brief .status-col {
  width: 29%;
  padding-top: 10px;
  padding-left: 20px;
  text-align: right;
  padding-right: 35px;
  -ms-flex-item-align: center;
      align-self: center;
}

@media only screen and (max-width: 1050px) {
  .order-tab--brief .tab-heading {
    font-size: 12px;
  }
  .order-tab--brief .tab-big-txt {
    font-size: 12px;
  }
  .order-tab--brief .number-col {
    font-size: 12px;
  }
  .order-tab--brief .status-col {
    padding-right: 0;
    padding-left: 15px;
    width: 25%;
  }
  .order-tab--brief .status-item .status-txt {
    max-width: 110px;
  }
}

.pay-window-main {
  background: #ffffff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  min-height: 90vh;
}

.pay-window-sidebar {
  background: #3AB3DF;
  -webkit-box-shadow: inset -8px 0px 9px rgba(34, 34, 34, 0.1);
          box-shadow: inset -8px 0px 9px rgba(34, 34, 34, 0.1);
  padding: 90px 20px 50px;
  color: #ffffff;
  width: 250px;
  border-radius: 2px 0px 0px 2px;
}

.pay-window-sidebar .plain-info-txt {
  color: #ffffff;
  margin-top: 15px;
}

.pay-window-sidebar p {
  padding: 5px 0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pay-window-sidebar .note {
  font-size: 12px;
  color: #D2F1FC;
  margin-top: 5px;
}

.pay-window-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 20px 80px;
}

.pay-window-content .mfp-close {
  position: absolute;
  font-size: 30px;
  top: 0;
  right: 0;
}

.pay-window .sidebar-item {
  margin-bottom: 20px;
}

.pay-window .sidebar-number {
  line-height: 1.25;
  font-size: 24px;
  text-align: center;
  padding: 5px 0;
}

.pay-window .sidebar-number .bonus-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.pay-window .sidebar-number .bonus-icon svg {
  width: 22px;
  height: auto;
}

.pay-window .sidebar-number .bonus-icon svg path {
  fill: #fff;
}

.pay-window .h2 {
  margin-bottom: 30px;
}

.pay-window .pay-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pay-window .pay-control-col {
  width: 270px;
}

.pay-window .pay-value-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.pay-window .pay-input {
  width: 430px;
}

.pay-window .pay-input:disabled {
  color: #F1F1F1;
}

.pay-window .pay-bonuses-wrap {
  padding-left: 20px;
  padding-top: 12px;
}

.pay-window .pay-bonuses-wrap.disabled {
  color: #F1F1F1;
}

.pay-window .checkbox-txt-wrap {
  padding-top: 12px;
}

.pay-window .checkbox-txt-wrap .checkbox-txt {
  max-width: calc(100% - 26px);
  color: #9F9F9F;
}

.pay-window .input-note {
  font-size: 14px;
  color: #CFCFCF;
  padding-top: 3px;
  padding-left: 10px;
}

.pay-window .key-txt {
  color: #9F9F9F;
  padding-left: 27px;
  padding-top: 12px;
}

.pay-window .pay-methods {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -19px;
}

.pay-window .pay-method-wrap {
  width: 25%;
  padding-right: 10px;
  margin-bottom: 19px;
}

.pay-window .pay-method-radio {
  display: none;
}

.pay-window .pay-method-label {
  cursor: pointer;
  text-align: center;
  display: block;
}

.pay-window .pay-method-logo-wrap {
  border: 1px solid #F1F1F1;
  display: block;
  width: 100%;
  height: 90px;
  padding: 10px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pay-window .pay-method-logo {
  max-width: 100%;
  max-height: 100%;
}

.pay-window .pay-method-logo path {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.pay-window .pay-method-name {
  min-height: 33px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.pay-window .pay-method-radio:checked + .pay-method-logo-wrap {
  border-color: #3AB3DF;
  -webkit-box-shadow: 0px 0px 4px #3AB3DF;
          box-shadow: 0px 0px 4px #3AB3DF;
}

.pay-window .pay-method-radio:disabled + .pay-method-logo-wrap .pay-method-logo path {
  fill: #F1F1F1;
}

.pay-window .pay-method-radio:disabled + .pay-method-logo-wrap + .pay-method-name {
  color: #F1F1F1;
}

.pay-window .results-row {
  padding-top: 9px;
  border-top: 1px solid #CFCFCF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pay-window .result-item {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.pay-window .result-item:last-child {
  padding-right: 0;
}

.pay-window .result-item-name {
  color: #9F9F9F;
}

.pay-window .result-item-value {
  font-weight: 300;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  color: #00BFA5;
  text-align: right;
  padding-left: 5px;
}

.pay-window .pay-debt-btn {
  min-width: 210px;
}

@media only screen and (max-width: 1439px) {
  .pay-window .pay-control-col {
    width: 200px;
  }
  .pay-window .sidebar-number {
    font-size: 18px;
  }
  .pay-window .checkbox-txt-wrap .checkbox-txt {
    font-size: 14px;
  }
  .pay-window .input-note {
    font-size: 8px;
    padding-left: 2px;
  }
  .pay-window .key-txt {
    font-size: 14px;
  }
  .pay-window .result-item-name {
    font-size: 14px;
  }
  .pay-window .result-item-value {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1249px) {
  .pay-window .pay-control-col {
    width: 100%;
    margin-bottom: 20px;
  }
  .pay-window .pay-input {
    width: 258px;
  }
  .pay-window .pay-value-col {
    padding-left: 27px;
  }
  .pay-window .pay-method-wrap {
    width: 33.333%;
    padding-right: 8px;
  }
  .pay-window .pay-method-logo-wrap {
    height: 79px;
  }
  .pay-window .pay-method-name {
    min-height: 20px;
    font-size: 14px;
  }
  .pay-window .results-row {
    margin-bottom: 10px;
  }
  .pay-window .result-item {
    width: 45%;
    padding-right: 0px;
    min-height: 30px;
  }
  .pay-window .result-item:nth-child(1) {
    width: 55%;
    padding-right: 10px;
  }
  .pay-window .result-item:last-child {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1439px) {
  .pay-window-sidebar {
    width: 206px;
    font-size: 14px;
    padding: 68px 15px 50px;
  }
  .pay-window-sidebar-number .bonus-icon svg {
    width: 16px;
  }
  .pay-window-sidebar p {
    margin-bottom: 10px;
  }
  .pay-window-sidebar .plain-info-txt {
    font-size: 12px;
  }
  .pay-window-sidebar .note {
    font-size: 8px;
  }
}

.fullscreen-form-outer {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 100vh;
}

.fullscreen-form-wrap {
  background: #ffffff;
  width: 620px;
  max-width: 100%;
  padding: 15px 0 60px;
}

@media only screen and (max-width: 1249px) {
  .fullscreen-form-wrap {
    width: 565px;
  }
}

@media only screen and (max-width: 900px) {
  .fullscreen-form-wrap {
    width: 100%;
    padding: 211px 0 84px;
  }
}

@media only screen and (max-width: 767px) {
  .fullscreen-form-wrap {
    padding: 25px 0 23px;
  }
}

.forgot-password-steps-list {
  width: 280px;
  max-width: 100%;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.mobile-login-steps-list-item + .mobile-login-steps-list-item:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 200px;
  z-index: -1;
  border-bottom: 1px dashed #F1F1F1;
  top: 50%;
  right: 100%;
}

.forgot-password-steps-list-item {
  background: #F1F1F1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #CFCFCF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.forgot-password-steps-list-item + .forgot-password-steps-list-item:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80px;
  z-index: -1;
  border-bottom: 1px dashed #F1F1F1;
  top: 50%;
  right: 100%;
}

.forgot-password-steps-list-item + .forgot-password-steps-list-item.active:before {
  border-color: #22d3bb;
}

.forgot-password-steps-list-item.active {
  background: #22D3BB;
  color: #FFFFFF;
}

.fullscreen-form {
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fullscreen-form .form-logo img {
  width: 100%;
  display: block;
}

.fullscreen-form .fullscreen-form-inner {
  padding-top: 123px;
}

.fullscreen-form .input-wrap {
  margin-bottom: 20px;
  position: relative;
}

.fullscreen-form .show-password-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 20px;
  cursor: pointer;
}

.fullscreen-form .show-password-btn:hover .svg g path:nth-child(2) {
  fill: #aaa;
}

.fullscreen-form .input-note {
  padding-left: 10px;
  margin-top: 3px;
  margin-bottom: 7px;
  font-size: 10px;
  color: #9F9F9F;
}

.fullscreen-form .error-txt {
  padding-left: 10px;
  margin-top: 3px;
  margin-bottom: 7px;
  font-size: 10px;
  color: #FF5252;
}

.fullscreen-form .input {
  width: 100%;
}

.fullscreen-form .input.error {
  background: #ffffff;
}

.fullscreen-form .forgot-password-link-wrap {
  position: relative;
  bottom: 5px;
}

.fullscreen-form .forgot-password-link {
  text-decoration: underline;
  color: #3AB3DF;
}

.fullscreen-form .forgot-password-link:hover, .fullscreen-form .forgot-password-link:focus {
  opacity: 0.8;
}

.fullscreen-form .form-actions-btns {
  padding-top: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fullscreen-form .form-actions-btns .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fullscreen-form .form-actions-btns .button + .button {
  margin-left: 20px;
}

.fullscreen-form .forgot-password-steps {
  padding-top: 44px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fullscreen-form .forgot-password-step-title {
  line-height: 1.55;
  margin-bottom: 20px;
}

.fullscreen-form .forgot-password-step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fullscreen-form .info-txt {
  font-size: 14px;
  color: #9F9F9F;
  line-height: 1.2;
}

.fullscreen-form .forgot-password-info {
  min-height: 70px;
  margin-bottom: 20px;
}

.fullscreen-form .pin-send-info {
  min-height: 59px;
  margin-bottom: 20px;
}

.fullscreen-form .fullwidth-btn {
  width: 100%;
}

.fullscreen-form .hidden {
  display: none !important;
}

.fullscreen-form .pin-info-txt {
  margin-bottom: 20px;
}

.fullscreen-form .send-pin-again-txt {
  min-height: 40px;
  margin-bottom: 40px;
  font-size: 12px;
  color: #9F9F9F;
  padding-top: 14px;
}

.fullscreen-form .send-pin-again-wrap {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.fullscreen-form .send-pin-again-link {
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.fullscreen-form .send-pin-btn-wrap {
  padding-bottom: 40px;
}

.fullscreen-form .forgot-password-backstep-wrap {
  padding-top: 40px;
}

.fullscreen-form .forgot-password-backstep {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 12px;
  color: #3AB3DF;
}

.fullscreen-form .forgot-password-backstep .back-arrow {
  margin-right: 10px;
}

.fullscreen-form .forgot-password-backstep:hover {
  color: #74cae8;
}

.fullscreen-form .forgot-password-backstep:hover .back-arrow path {
  fill: #74cae8;
}

.fullscreen-form .min-password-length-txt {
  padding: 11px 0;
  margin-bottom: 20px;
}

.fullscreen-form .save-password-btn-wrap {
  padding-top: 50px;
}

.fullscreen-form .success-txt {
  padding: 40px 0 20px;
}

.fullscreen-form .login-link-wrap {
  padding-top: 60px;
}

@media only screen and (max-width: 1249px) {
  .fullscreen-form {
    width: 340px;
  }
  .fullscreen-form .info-txt {
    font-size: 12px;
  }
  .fullscreen-form .forgot-password-step-title {
    font-size: 18px;
  }
  .fullscreen-form .forgot-password-info {
    min-height: 60px;
  }
  .fullscreen-form .pin-send-info {
    min-height: auto;
    margin-bottom: 70px;
  }
  .fullscreen-form .min-password-length-txt {
    padding: 5px 0;
  }
  .fullscreen-form .save-password-btn-wrap {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .fullscreen-form {
    width: 254px;
  }
  .fullscreen-form .forgot-password-steps {
    padding-top: 27px;
  }
  .fullscreen-form .forgot-password-info {
    min-height: auto;
    margin-bottom: 24px;
  }
  .fullscreen-form .forgot-password-step-title {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .fullscreen-form .info-txt {
    font-size: 10px;
  }
  .fullscreen-form .fullscreen-form-inner {
    padding-top: 75px;
  }
  .fullscreen-form .forgot-password-link-wrap {
    bottom: 0;
  }
  .fullscreen-form .form-actions-btns {
    padding-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fullscreen-form .form-actions-btns .button + .button {
    margin: 0;
  }
  .fullscreen-form .form-actions-btns .reg-link {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
  .fullscreen-form .send-pin-again-wrap,
  .fullscreen-form .send-pin-again-txt {
    margin-bottom: 32px;
    padding-top: 0;
  }
  .fullscreen-form .send-pin-btn-wrap {
    padding-bottom: 24px;
  }
  .fullscreen-form .save-password-btn-wrap {
    padding-top: 20px;
  }
  .fullscreen-form .min-password-length-txt {
    margin-bottom: 10px;
    padding-top: 0;
  }
  .fullscreen-form .forgot-password-step-title {
    padding: 50px 0 45px;
  }
  .fullscreen-form .login-link-wrap {
    padding-top: 105px;
  }
  .fullscreen-form .login-link {
    font-size: 14px;
    padding: 12px 5px;
  }
}

.page-up-btn {
  position: fixed;
  right: 40px;
  bottom: 24px;
  background: #FFFFFF;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  width: 40px;
  height: 40px;
  z-index: 1000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-up-btn-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-up-btn:hover {
  border-color: #3ab3df;
}

.page-up-btn.visible {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-nav {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  z-index: -1;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}

.mobile-menu-nav a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 767px) {
  body:not(.media-mobile) .mobile-menu-nav {
    display: none;
  }
  .mobile-menu-nav {
    display: block;
  }
}

.mobile-menu-nav::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: calc(100vw - 300px);
  background: rgba(34, 34, 34, 0.5);
}

.mobile-menu-nav-close {
  position: absolute;
  left: calc(100% + 27px);
  top: 24px;
}

.mobile-menu-nav-close::before {
  content: "";
  position: absolute;
  left: -100vw;
  top: -100vh;
  bottom: -100vh;
  right: -100vw;
}

.mobile-menu-nav-close-img {
  width: 20px;
  height: auto;
}

.mobile-menu-nav-close-img path {
  fill: #F1F1F1;
}

.mobile-menu-nav.active {
  visibility: visible;
  z-index: 5000;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.mobile-menu {
  font-size: 14px;
  overflow-y: auto;
  height: 100%;
  padding-top: 16px;
  position: relative;
  z-index: 10;
  background: #F1F1F1;
}

.mobile-menu-item {
  display: block;
}

.mobile-menu-item--indent {
  margin-bottom: 17px;
}

.mobile-menu-link {
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding: 5px 10px 5px 18px;
  color: #3AB3DF;
  border-bottom: 1px solid #F1F1F1;
}

.mobile-menu-link-icon {
  margin-right: 18px;
}

.mobile-menu-link-icon > * {
  width: 14px;
  fill: currentColor;
}

.mobile-menu-link-icon > * * {
  fill: currentColor;
}

.mobile-menu-link-text {
  padding-right: 10px;
}

.mobile-menu-link-arrow {
  margin-left: auto;
}

.mobile-menu-link-arrow > * {
  width: 6px;
  height: 10px;
  fill: currentColor;
}

.mobile-menu-link-arrow > * * {
  fill: currentColor;
}

.mobile-submenu-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  z-index: 5500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  z-index: -1;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}

.mobile-submenu-nav.active {
  visibility: visible;
  z-index: 5000;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.mobile-submenu {
  font-size: 14px;
  font-weight: 300;
  overflow-y: auto;
  height: 100%;
  padding-top: 16px;
  position: relative;
  z-index: 10;
  background: #F1F1F1;
}

.mobile-submenu-back {
  font-weight: 400;
  padding: 5px 16px;
  background: #ffffff;
  color: #3AB3DF;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #F1F1F1;
  margin-bottom: 17px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

.mobile-submenu-back-text {
  padding-right: 10px;
}

.mobile-submenu-back-arrow {
  margin-right: 18px;
}

.mobile-submenu-back-arrow > * {
  width: 6px;
  height: 10px;
  fill: currentColor;
}

.mobile-submenu-back-arrow > * * {
  fill: currentColor;
}

.mobile-submenu-back:hover {
  background: #D2F1FC;
}

.mobile-submenu-link {
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding: 5px 10px 5px 18px;
  border-bottom: 1px solid #F1F1F1;
}

.mobile-submenu-link-icon {
  margin-right: 18px;
}

.mobile-submenu-link-icon > * {
  width: 14px;
  fill: currentColor;
}

.mobile-submenu-link-icon > * * {
  fill: currentColor;
}

.mobile-submenu-link-text {
  padding-right: 10px;
  color: #222222;
}

.mobile-submenu-link-arrow {
  margin-left: auto;
}

.mobile-submenu-link-arrow > * {
  width: 6px;
  height: 10px;
  fill: currentColor;
}

.mobile-submenu-link-arrow > * * {
  fill: currentColor;
}

.mobile-submenu-link:hover {
  background: #D2F1FC;
}

.sk-circle {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #CFCFCF;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.primary-footer {
  margin-top: auto;
  background-color: #00b6dc;
  color: #EDEEEF;
  padding: 10px 0 30px;
  font-size: 14px;
  overflow-x: hidden;
}

@media only screen and (max-width: 575.98px) {
  .primary-footer {
    padding-top: 40px;
    font-size: 12px;
  }
}

.primary-footer a {
  color: #EDEEEF;
}

.primary-footer .underline {
  text-decoration: underline;
}

@media only screen and (min-width: 1439px) {
  .primary-footer__container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.primary-footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.primary-footer__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  padding-right: 20px;
}

@media only screen and (max-width: 1050px) {
  .primary-footer__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .primary-footer__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .primary-footer__col:not(:first-child) {
    margin-top: 15px;
  }
}

.primary-footer__col:last-child {
  padding-right: 0;
}

@media only screen and (min-width: 1050px) {
  .primary-footer__col:last-child {
    margin-left: auto;
  }
}

.primary-footer__title {
  font-size: 19px;
  line-height: 1.368;
  margin: 20px 0 15px;
  font-weight: 400;
}

@media only screen and (max-width: 575.98px) {
  .primary-footer__title {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .primary-footer__title_type_btn::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 0.5em;
    background-image: url(/img/down-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    margin-left: 0.5em;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .primary-footer__title_type_btn.active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .primary-footer__title_type_btn.active ~ .primary-footer__list_type_hiding {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    max-height: 1500px;
  }
}

.primary-footer__list {
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .primary-footer__list {
    padding-left: 0;
  }
  .primary-footer__list_type_hiding {
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    overflow: hidden;
    -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
            transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
}

.primary-footer__list-item {
  margin-bottom: 17px;
}

@media only screen and (max-width: 575.98px) {
  .primary-footer__list-item {
    margin-bottom: 13px;
  }
}

.primary-footer__list-item:last-child {
  margin: 0;
}

.primary-footer__link {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.primary-footer__link:hover {
  color: #ffffff;
}

.primary-footer__link:hover svg *[fill*="#"] {
  fill: currentColor;
}

.primary-footer__link-icon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 4px;
}

@media only screen and (max-width: 575.98px) {
  .primary-footer__link-icon {
    width: 13px;
    height: 13px;
    margin-right: 3px;
  }
}

.primary-footer__link-text {
  vertical-align: middle;
}

.primary-footer__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -30px;
  margin-bottom: -28px;
}

@media only screen and (max-width: 767px) {
  .primary-footer__payments {
    margin-right: 0;
    margin-bottom: -10px;
  }
}

.primary-footer__pay-item {
  margin-right: 35px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .primary-footer__pay-item {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.primary-footer__pay-logo {
  display: block;
  max-width: 80px;
}

.s-orders-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.orders-sidebar {
  width: 270px;
  padding-right: 20px;
  padding-bottom: 40px;
}

.orders-sidebar .orders-filter-selects {
  padding-bottom: 25px;
}

.orders-sidebar .orders-filter-select {
  width: auto;
  overflow: visible;
  margin-bottom: 6px;
}

.orders-sidebar .orders-filter-select select {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.orders-sidebar .debt-chart {
  text-align: center;
  padding-left: 10px;
  font-size: 0;
  margin-bottom: 10px;
}

.orders-sidebar .debt-chart svg {
  height: auto;
  max-width: 100%;
}

.orders-sidebar .period-date-g {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.orders-sidebar .period-date-wrap {
  display: inline-block;
  vertical-align: top;
}

.orders-sidebar .period-date-wrap input {
  font-size: 14px;
  padding: 10px 0 9px;
  text-align: center;
  margin-right: 3px;
  width: 86px;
  vertical-align: middle;
}

.orders-sidebar .period-date-wrap .period-date-icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.orders-sidebar .debt-numbers {
  padding-right: 20px;
  text-align: right;
}

.orders-sidebar .debt-heading {
  color: #9F9F9F;
  font-size: 16px;
  margin-bottom: 5px;
}

.orders-sidebar .debt-number {
  font-size: 22px;
  margin-bottom: 10px;
}

.orders-sidebar .payment-system-logo {
  margin-bottom: 20px;
  margin-top: 20px;
}

.orders-sidebar .payment-system-logo img {
  width: 100%;
  max-width: 100%;
}

.orders-sidebar .pay-btn {
  font-size: 18px;
  padding: 15px 15px;
  width: 100%;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.orders-sidebar .purchases-heading {
  color: #9F9F9F;
  margin-bottom: 4px;
}

.orders-sidebar .purchases-chart svg {
  max-width: 100%;
  font-size: 9px;
}

.orders-sidebar .purchases-chart .bar {
  fill: #22D3BB;
}

.orders-sidebar .purchases-chart .bar:first-child {
  fill: #22D3BB;
}

.orders-sidebar .purchases-chart .x text {
  font-size: 6px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  text-anchor: middle;
  text-transform: capitalize;
}

.orders-sidebar .purchases-chart .x .domain {
  stroke: #9FA7AA;
  display: none;
}

.orders-sidebar .purchases-chart .x .tick line {
  display: none;
}

.orders-sidebar .purchases-chart .y .domain {
  display: none;
}

.orders-sidebar .purchases-chart .y text {
  text-anchor: end;
  font-family: "Open Sans", sans-serif;
}

.orders-sidebar .purchases-chart .y.axis {
  font-size: 6px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

.orders-sidebar .purchases-chart .y.axis .zero line {
  stroke: #9FA7AA;
  stroke-opacity: 1;
}

.orders-sidebar .purchases-chart .y.axis line {
  stroke: #9FA7AA;
  stroke-opacity: 1;
  shape-rendering: crispEdges;
}

.orders-display-content {
  width: calc(100% - 270px);
}

.order-item {
  margin-bottom: 10px;
}

.order-item .order-toprow {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CFCFCF;
}

.order-item .order-heading {
  font-size: 22px;
  padding-left: 20px;
  padding-right: 10px;
  width: 230px;
  color: #222222;
}

.order-item .order-progressbar-wrap {
  width: calc(100% - 230px);
  position: relative;
  padding-right: 70px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.order-item .order-progressbar-wrap .progress-percentage {
  bottom: 0;
  right: 10px;
  position: absolute;
  font-size: 18px;
  color: #9F9F9F;
}

.order-item .order-progressbar {
  border: 1px solid #CFCFCF;
  min-height: 10px;
  color: #9F9F9F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order-item .progressbar-part--processing {
  background: #FFB74D;
}

.order-item .progressbar-part--accepted {
  background: #00BFA5;
}

.order-item .progressbar-part--awaiting {
  background: #B46CD2;
}

.order-item .progressbar-part--delivered {
  background: #4FBA7E;
}

.order-item .order-progressbar-counters {
  padding-top: 8px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.order-item .sku-counter-wrap {
  text-align: right;
  min-width: 120px;
}

.order-item .sku-counter-wrap {
  padding-right: 10px;
}

.order-item .sku-counter-wrap--all {
  color: #61ADF2;
}

.order-item .sku-counter-wrap--accepted {
  color: #00BFA5;
}

.order-item .sku-counter-wrap--processing {
  color: #FFB74D;
}

.order-item .sku-counter-wrap--awaiting {
  color: #B46CD2;
}

.order-item .sku-counter-wrap--delivered {
  color: #4FBA7E;
}

@media only screen and (max-width: 1439px) {
  /**/
  .s-orders-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .orders-sidebar {
    width: 100%;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .orders-sidebar .orders-filter-selects {
    padding-bottom: 0;
    width: 54%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .orders-sidebar .orders-filter-select {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .orders-sidebar .orders-filter-select-status {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: calc(34% - 20px);
    margin-right: 20px;
  }
  .orders-sidebar .orders-filter-select-sup {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: calc(36% - 20px);
    margin-right: 20px;
  }
  .orders-sidebar .orders-filter-select-address {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 56%;
  }
  .orders-sidebar .orders-filter-select-pay {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 30%;
  }
  .orders-sidebar .orders-filter-select-period {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(44% - 20px);
    padding-right: 5px;
    margin-right: 20px;
  }
  .orders-sidebar .purchases-volume {
    display: none;
  }
  .orders-sidebar .debt-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 50px;
    width: 46%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 16px;
  }
  .orders-sidebar .debt-wrap .debt-days {
    font-size: 58px !important;
  }
  .orders-sidebar .debt-chart {
    padding-left: 0;
    margin-bottom: 0;
  }
  .orders-sidebar .debt-chart svg {
    width: 100px;
  }
  .orders-sidebar .debt-numbers {
    padding-left: 15px;
    padding-right: 15px;
  }
  .orders-sidebar .payment-system-logo {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .orders-display-content {
    width: 100%;
  }
}

@media only screen and (max-width: 1249px) {
  /**/
  .orders-sidebar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .orders-sidebar .purchases-volume {
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 270px;
  }
  .orders-sidebar .debt-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 270px);
  }
  .orders-sidebar .orders-filter-selects {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-top: 20px;
  }
  .orders-sidebar .debt-numbers {
    padding-left: 20px;
    padding-right: 20px;
  }
  .orders-sidebar .period-date-g {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .orders-sidebar .period-date-g .period-date-wrap:first-child {
    margin-right: 12px;
  }
  .orders-sidebar .orders-filter-select-period {
    width: calc(36% - 20px);
  }
  .orders-sidebar .orders-filter-select-address {
    width: 64%;
  }
  .orders-sidebar .orders-filter-select-status {
    width: calc(33% - 20px);
  }
  .orders-sidebar .orders-filter-select-sup {
    width: calc(36% - 20px);
  }
  .orders-sidebar .orders-filter-select-pay {
    width: 31%;
  }
  .order-item .order-progressbar-counters {
    font-size: 8px;
  }
  .order-item .sku-counter-wrap {
    padding-right: 5px;
  }
  .order-item .sku-counter-wrap {
    min-width: 80px;
  }
}

@media only screen and (max-width: 1050px) {
  /**/
  .orders-sidebar .purchases-volume {
    width: 206px;
  }
  .orders-sidebar .debt-wrap {
    width: calc(100% - 206px);
  }
  .order-item .order-progressbar-wrap .progress-percentage {
    font-size: 14px;
  }
}

.s-order-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 1439px) {
  .s-order-view {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s-order-view .h-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.s-order-view .h-wrap .h-note {
  font-size: 18px;
  color: #61ADF2;
  padding-top: 5px;
}

@media only screen and (max-width: 1439px) {
  .s-order-view .h-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
  }
  .s-order-view .h-wrap h1, .s-order-view .h-wrap .h1 {
    padding-bottom: 0;
    padding-left: 0;
  }
  .s-order-view .h-wrap .h-note {
    margin-bottom: 10px;
    padding-top: 0;
  }
}

@media only screen and (max-width: 1050px) {
  .s-order-view .h-wrap .h-note {
    font-size: 12px;
  }
}

.s-order-view h1, .s-order-view .h1 {
  padding-left: 0px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1439px) {
  .s-order-view h1, .s-order-view .h1 {
    padding-bottom: 9px;
    padding-right: 265px;
  }
}

@media only screen and (max-width: 1050px) {
  .s-order-view h1, .s-order-view .h1 {
    font-size: 18px;
    padding-bottom: 11px;
  }
}

.s-order-view h2, .s-order-view .h2 {
  margin-bottom: 28px;
}

.s-order-view .order-all-sum-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.s-order-view .all-sum-txt {
  margin-right: 30px;
  font-size: 18px;
  color: #9F9F9F;
  padding-top: 16px;
}

.s-order-view .all-sum-group {
  font-size: 26px;
  color: #000;
  font-weight: 300;
  margin-top: 10px;
}

.s-order-view .all-sum-change {
  font-size: 14px;
  display: block;
  margin-top: 6px;
}

.s-order-view .all-sum-change--plus {
  color: #FF5252;
}

.s-order-view .all-sum-change--plus:before {
  content: "+ ";
}

.s-order-view .all-sum-change--minus {
  color: #00BFA5;
}

.s-order-view .all-sum-change--minus:before {
  content: "- ";
}

.order-comment {
  border: 1px solid #F1F1F1;
  border-left: 5px solid transparent;
  padding: 10px 10px 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
  font-size: 16px;
}

.order-comment .comment-icon {
  width: 20px;
}

.order-comment .comment-txt {
  width: calc(100% - 20px);
  padding-left: 10px;
  padding-top: 2px;
  line-height: 1.2;
}

.order-comment.order-my-comment .comment-txt {
  padding-top: 0px;
  width: auto;
}

.order-comment--deleted {
  border-left-color: #FF5252;
}

.order-comment--deleted .comment-icon:not(.built-fill) path {
  fill: #FF5252;
}

.order-comment--deleted .comment-txt {
  color: #FF5252;
}

.order-comment--new {
  border-left-color: #61ADF2;
}

.order-comment--new .comment-icon:not(.built-fill) path {
  fill: #61ADF2;
}

.order-comment--new .comment-txt {
  color: #61ADF2;
}

.order-comment--accepted {
  border-left-color: #00BFA5;
}

.order-comment--accepted .comment-icon:not(.built-fill) path {
  fill: #00BFA5;
}

.order-comment--accepted .comment-txt {
  color: #00BFA5;
}

.order-comment--processing {
  border-left-color: #FFB74D;
}

.order-comment--processing .comment-icon:not(.built-fill) path {
  fill: #FFB74D;
}

.order-comment--processing .comment-txt {
  color: #FFB74D;
}

.order-comment--awaiting {
  border-left-color: #B46CD2;
}

.order-comment--awaiting .comment-icon:not(.built-fill) path {
  fill: #B46CD2;
}

.order-comment--awaiting .comment-txt {
  color: #B46CD2;
}

.order-comment--delivered {
  border-left-color: #4FBA7E;
}

.order-comment--delivered .comment-icon:not(.built-fill) path {
  fill: #4FBA7E;
}

.order-comment--delivered .comment-txt {
  color: #4FBA7E;
}

@media only screen and (max-width: 1050px) {
  .order-comment {
    font-size: 14px;
  }
  .order-comment .comment-txt {
    padding-top: 3px;
  }
}

.order-view-tab {
  width: 100%;
  border-right: 1px solid #F1F1F1;
  border-left: 5px solid transparent;
  position: relative;
  padding: 20px 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.order-view-tab:after, .order-view-tab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.order-view-tab:before {
  top: 0;
}

.order-view-tab:after {
  bottom: 0px;
}

.order-view-tab .order-view-tab-toprow,
.order-view-tab .order-view-tab-botrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-view-tab .order-view-tab-toprow {
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.order-view-tab .order-view-tab-botrow {
  padding-top: 10px;
}

.order-view-tab .tab-heading {
  color: #9F9F9F;
  margin-bottom: 6px;
}

.order-view-tab .tab-big-txt {
  font-size: 22px;
  padding-top: 6px;
  padding-bottom: 3px;
}

.order-view-tab .shop-col,
.order-view-tab .company-col {
  width: 26%;
  padding-right: 20px;
}

.order-view-tab .company-col {
  color: #9F9F9F;
  text-transform: uppercase;
  line-height: 1.2;
}

.order-view-tab .shop-col .shop-name {
  margin-bottom: 6px;
}

.order-view-tab .shop-col .shop-address {
  color: #9F9F9F;
  line-height: 1.2;
}

.order-view-tab .payment-form-col,
.order-view-tab .delivery-col {
  width: 21%;
  padding-right: 20px;
  text-align: right;
}

.order-view-tab .payment-type-col,
.order-view-tab .delivery-service-col {
  width: 18%;
  padding-right: 20px;
  text-align: right;
}

.order-view-tab .date-col,
.order-view-tab .bonus-col {
  width: 12%;
  padding-right: 20px;
  text-align: right;
}

.order-view-tab .debt-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  padding-right: 20px;
}

.order-view-tab .debt-col .debt {
  color: #00BFA5;
}

.order-view-tab .overdue-debt-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  padding-right: 20px;
}

.order-view-tab .overdue-debt-col .debt {
  color: #FF5252;
}

.order-view-tab .paid-col {
  color: #4FBA7E;
  font-size: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

.order-view-tab .paid-col .paid-icon {
  width: 35px;
  display: inline-block;
  vertical-align: middle;
}

.order-view-tab .paid-col .paid-icon img {
  max-width: 100%;
}

.order-view-tab .paid-col .paid-txt {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  max-width: calc(100% - 35px);
  padding-left: 10px;
}

.order-view-tab .delivery-time,
.order-view-tab .delivery-track {
  color: #9F9F9F;
  font-size: 10px;
}

.order-view-tab .sum-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

.order-view-tab .bonus-col .bonus-group-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.order-view-tab .bonus-col .bonus-group-wrap .bonus-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.order-view-tab .bonus-col .bonus-group-wrap .bonus-icon {
  margin-left: 5px;
  height: 1px;
  width: 25px;
  height: 1px;
  position: relative;
}

.order-view-tab .bonus-col .bonus-group-wrap .bonus-icon .svg {
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.order-view-tab .bonus-col .bonus-group-wrap .bonus-icon .svg path {
  fill: #9F9F9F;
}

.order-view-tab .bonus-col .bonus-group-wrap.active {
  cursor: pointer;
  color: #3AB3DF;
}

.order-view-tab .bonus-col .bonus-group-wrap.active .tab-heading {
  color: #3AB3DF;
}

.order-view-tab .bonus-col .bonus-group-wrap.active .svg path {
  fill: #3AB3DF;
}

.order-view-tab .order-view-tab-notice {
  font-size: 16px;
  color: #9F9F9F;
  margin-bottom: 8px;
}

.order-view-tab .order-view-tab-notice img {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  position: relative;
  bottom: 2px;
}

.order-view-tab--debt-expired .date-col,
.order-view-tab--debt-expired .debt-col .debt {
  color: #FF5252;
}

.order-view-tab--deleted {
  border-left-color: #FF5252;
}

.order-view-tab--new {
  border-left-color: #61ADF2;
}

.order-view-tab--accepted {
  border-left-color: #00BFA5;
}

.order-view-tab--processing {
  border-left-color: #FFB74D;
}

.order-view-tab--awaiting {
  border-left-color: #B46CD2;
}

.order-view-tab--delivered {
  border-left-color: #4FBA7E;
}

.order-view-sidebar {
  width: 270px;
  padding-right: 20px;
  padding-bottom: 40px;
}

.order-view-sidebar .order-view-btn {
  width: 100%;
  min-width: 70px;
  padding: 11px 15px;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.order-view-sidebar .plain-info-txt {
  margin-bottom: 30px;
}

.order-view-sidebar .download-links .download-link {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1439px) {
  .order-view-sidebar {
    width: auto;
    right: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .order-view-sidebar .order-view-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .order-view-sidebar .order-view-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
  .order-view-sidebar .order-view-btn:last-child {
    margin-right: 0;
  }
  .order-view-sidebar .download-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .order-view-sidebar .download-links .download-link {
    margin-right: 50px;
  }
  .order-view-sidebar .download-links .download-link:last-child {
    margin-right: 0;
  }
}

.order-view-content {
  width: calc(100% - 270px);
}

@media only screen and (max-width: 1439px) {
  .order-view-content {
    width: 100%;
  }
}

.order-view-table .change {
  font-size: 10px;
}

.order-view-table .change--plus {
  color: #00BFA5;
}

.order-view-table .change--plus:before {
  content: "+ ";
}

.order-view-table .change--minus {
  color: #FF5252;
}

.order-view-table .change--minus:before {
  content: "- ";
}

.order-view-table .th--barcode, .order-view-table .td--barcode {
  width: 16%;
}

.order-view-table .th--name, .order-view-table .td--name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.order-view-table .th--qty, .order-view-table .td--qty {
  width: 13%;
}

.order-view-table .th--price, .order-view-table .td--price {
  width: 18%;
}

.order-view-table .th--sum, .order-view-table .td--sum {
  width: 21%;
}

.order-view-table .td--qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-view-table .td--qty .qty-number {
  padding-right: 5px;
  width: calc(100% - 50px);
}

.order-view-table .td--qty .change {
  width: 50px;
}

.order-view-table .td--price {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-view-table .td--price .price-wrap {
  padding-right: 5px;
  width: calc(100% - 65px);
}

.order-view-table .td--price .change {
  width: 65px;
}

.order-view-table .td--sum {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-view-table .td--sum .sum-wrap {
  padding-right: 5px;
  width: calc(100% - 75px);
}

.order-view-table .td--sum .change {
  width: 75px;
}

.order-view-table .td--price .change--plus, .order-view-table .td--sum .change--plus {
  color: #FF5252;
}

.order-view-table .td--price .change--minus, .order-view-table .td--sum .change--minus {
  color: #00BFA5;
}

.order-history-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 920px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.order-history-items .order-history-item {
  width: calc(25% - 30px);
  margin-bottom: 15px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.order-history-items .order-history-item .order-history-item-dots {
  position: absolute;
  font-size: 0;
  top: 28px;
  left: 77px;
}

.order-history-items .order-history-item .order-history-item-content {
  width: 120px;
  max-width: 100%;
}

.order-history-items .order-history-item .order-history-item-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.order-history-items .order-history-item .order-history-item-icon svg {
  height: 30px;
}

.order-history-items .order-history-item .order-history-item-icon path {
  fill: #fff;
}

.order-history-items .order-history-item .order-history-item-status {
  line-height: 1.15;
  min-height: 35px;
  margin-bottom: 5px;
  color: #222222;
}

.order-history-items .order-history-item .order-history-item-timestamp {
  color: #9F9F9F;
  line-height: 1.15;
}

.order-history-items .order-history-item:last-child .order-history-item-dots {
  display: none;
}

.order-history-items .order-history-item--deleted .order-history-item-icon {
  background: #FF5252;
}

.order-history-items .order-history-item--new .order-history-item-icon {
  background: #61ADF2;
}

.order-history-items .order-history-item--new .order-history-item-dots circle {
  fill: #61ADF2;
}

.order-history-items .order-history-item--accepted .order-history-item-icon {
  background: #00BFA5;
}

.order-history-items .order-history-item--accepted .order-history-item-dots circle {
  fill: #00BFA5;
}

.order-history-items .order-history-item--processing .order-history-item-icon {
  background: #FFB74D;
}

.order-history-items .order-history-item--processing .order-history-item-dots circle {
  fill: #FFB74D;
}

.order-history-items .order-history-item--awaiting .order-history-item-icon {
  background: #B46CD2;
}

.order-history-items .order-history-item--awaiting .order-history-item-dots circle {
  fill: #B46CD2;
}

.order-history-items .order-history-item--delivered {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.order-history-items .order-history-item--delivered .order-history-item-icon {
  background: #4FBA7E;
}

.order-history-items .order-history-item--delivered .order-history-item-dots circle {
  fill: #4FBA7E;
}

.order-history-items .order-history-item--inactive .order-history-item-icon {
  background: #cfcfcf;
}

.order-history-items .order-history-item--inactive .order-history-item-dots circle {
  fill: #cfcfcf;
}

.pay-tab {
  width: 100%;
  border-right: 1px solid #F1F1F1;
  border-left: 4px solid transparent;
  position: relative;
  padding: 10px 20px 10px 16px;
  margin-bottom: 20px;
  font-size: 16px;
}

.pay-tab:after, .pay-tab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.pay-tab:before {
  top: 0;
}

.pay-tab:after {
  bottom: 0px;
}

.pay-tab .pay-tab-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pay-tab .tab-heading {
  color: #9f9f9f;
  line-height: 1.3;
}

.pay-tab .tab-info {
  min-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pay-tab .bonus-icon {
  margin-left: 5px;
}

.pay-tab .bonus-icon .svg {
  width: 15px;
  height: auto;
  display: block;
}

.pay-tab .bonus-icon path {
  fill: #9F9F9F;
}

.pay-tab .pay-methods-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pay-tab .pay-methods-box .pay-method-item .svg {
  display: block;
}

.pay-tab .pay-methods-box .pay-method-item + .pay-method-item {
  margin-left: 10px;
}

.pay-tab .qiwi-logo {
  width: auto;
  height: 25px;
}

.pay-tab .sum-col,
.pay-tab .bonus-col,
.pay-tab .pay-col {
  text-align: right;
}

.pay-tab .sum-col .tab-info,
.pay-tab .bonus-col .tab-info,
.pay-tab .pay-col .tab-info {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pay-tab .date-col {
  width: 18%;
  padding-right: 30px;
}

.pay-tab .sum-col,
.pay-tab .bonus-col {
  width: 18%;
  padding-left: 10px;
}

.pay-tab .sum-col .sum-number {
  margin-right: 0.2em;
}

.pay-tab .pay-col {
  width: 20%;
  padding-left: 15px;
}

.pay-tab .status-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 60px;
}

.pay-tab .status-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pay-tab .status-item .status-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0;
}

.pay-tab .status-item .status-icon .svg {
  position: relative;
  height: 20px;
  width: auto;
}

.pay-tab .status-item .status-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 15px;
  font-size: 18px;
}

.pay-tab .bonus-logo {
  width: 18px;
  height: auto;
}

.pay-tab .bonus-logo path {
  fill: #22D3BB;
}

.pay-tab--processing {
  border-left-color: #FFB74D;
}

.pay-tab--processing .status-icon {
  background: #FFB74D;
}

.pay-tab--processing .status-icon .svg {
  bottom: 2px;
}

.pay-tab--processing .status-txt {
  color: #FFB74D;
}

.pay-tab--accepted {
  border-left-color: #00BFA5;
}

.pay-tab--accepted .status-icon {
  background: #00BFA5;
}

.pay-tab--accepted .status-icon .svg path {
  fill: #fff;
}

.pay-tab--accepted .status-txt {
  color: #00BFA5;
}

.pay-tab--canceled {
  border-left-color: #FF5252;
}

.pay-tab--canceled .status-icon {
  background: #FF5252;
}

.pay-tab--canceled .status-icon .svg path {
  fill: #fff;
}

.pay-tab--canceled .status-txt {
  color: #FF5252;
}

@media only screen and (max-width: 1050px) {
  .pay-tab {
    font-size: 14px;
  }
  .pay-tab .status-item .status-txt {
    font-size: 16px;
  }
  .pay-tab .date-col {
    width: 14%;
    padding-right: 10px;
  }
  .pay-tab .sum-col {
    width: 22%;
  }
  .pay-tab .bonus-col {
    width: 14%;
  }
  .pay-tab .pay-col {
    width: 19%;
  }
  .pay-tab .status-col {
    padding-left: 25px;
  }
  .pay-tab .qiwi-logo {
    height: 20px;
  }
  .pay-tab .bonus-logo {
    width: 15px;
  }
}

@media only screen and (max-width: 1439px) {
  /**/
}

@media only screen and (max-width: 1249px) {
  /**/
  .order-view-table .change {
    font-size: 8px;
  }
  .order-view-table .td--price .change {
    width: 45px;
  }
  .order-view-table .td--qty .qty-number {
    width: calc(100% - 45px);
  }
  .order-view-table .td--sum .change {
    width: 59px;
  }
  .order-view-table .td--sum .sum-wrap {
    width: calc(100% - 59px);
  }
  .order-view-table .th--qty, .order-view-table .td--qty {
    width: 11%;
  }
  .order-view-table .th--price, .order-view-table .td--price {
    width: 20%;
  }
  .order-view-table .th--sum, .order-view-table .td--sum {
    width: 22%;
  }
  .s-order-view .all-sum-txt {
    font-size: 16px;
  }
  .s-order-view .all-sum-group {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1050px) {
  /**/
  .order-view-tab {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 15px;
  }
  .order-view-tab .order-view-tab-notice {
    font-size: 14px;
  }
  .order-view-tab .order-view-tab-notice img {
    bottom: 3px;
  }
  .order-view-tab .delivery-service-col {
    display: none;
  }
  .order-view-tab .tab-big-txt {
    font-size: 20px;
    padding-top: 2px;
  }
  .order-view-tab .company-col,
  .order-view-tab .shop-col {
    padding-right: 13px;
    width: 36%;
  }
  .order-view-tab .payment-type-col {
    display: none;
  }
  .order-view-tab .date-col,
  .order-view-tab .bonus-col {
    padding-right: 20px;
    width: 18%;
  }
  .order-view-tab .delivery-col,
  .order-view-tab .payment-form-col {
    width: 21%;
  }
  .order-view-tab .sum-col {
    width: 26%;
  }
}

.s-promo-view {
  padding-bottom: 30px;
}

.s-promo-view h1, .s-promo-view .h1 {
  font-size: 24px;
  margin-bottom: 25px;
}

.s-promo-view .top-action-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .top-action-review {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .top-action-review {
    padding-bottom: 10px;
  }
}

.s-promo-view .action-descr {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1249px) {
  .s-promo-view .action-descr {
    width: 60%;
  }
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .action-descr {
    padding-left: 0;
    width: 100%;
    margin-bottom: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .action-descr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.s-promo-view .action-descr_type_fullwidth {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (min-width: 767px) {
  .s-promo-view .action-descr_type_fullwidth .action-timer {
    width: 31%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
  .s-promo-view .action-descr_type_fullwidth .action-timer {
    width: 40%;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1050px) {
  .s-promo-view .action-descr_type_fullwidth .action-timer {
    position: static;
    width: 55%;
  }
}

@media only screen and (min-width: 767px) {
  .s-promo-view .action-descr_type_fullwidth .action-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media only screen and (min-width: 767px) and (max-width: 767px) {
  .s-promo-view .action-descr_type_fullwidth .action-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.products-table-wrap .group-name {
  padding: 11px 10px;
  text-align: center;
}

.promo-offer-group-name {
  margin-bottom: 10px;
}

.s-promo-view .action-title {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.375;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .action-title {
    font-size: 20px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .action-title {
    font-size: 14px;
    width: 100%;
    margin-bottom: 15px;
  }
}

.s-promo-view .action-banner {
  width: calc(49% + 20px);
  padding-right: 20px;
  text-align: center;
  font-size: 0;
}

.s-promo-view .action-banner img {
  max-width: 100%;
}

@media only screen and (max-width: 1249px) {
  .s-promo-view .action-banner {
    width: 40%;
  }
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .action-banner {
    width: 49%;
    margin-bottom: 25px;
    min-height: 100px;
  }
  .s-promo-view .action-banner img {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .action-banner {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1050px) and (min-width: 767px) {
  .s-promo-view .timer-wrap {
    position: absolute;
    left: 49%;
    padding-left: 20px;
    top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .timer-wrap .timer-number {
    font-size: 45px;
  }
}

.s-promo-view .timer-txt {
  font-size: 16px;
  color: #9f9f9f;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .timer-txt {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.s-promo-view .action-products-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .action-products-descr {
    padding-left: 7px;
  }
}

.s-promo-view .action-products-descr img {
  width: 40px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .action-products-descr img {
    margin-top: 2px;
  }
}

.s-promo-view .action-products-descr .cart-btn {
  width: 250px;
  font-size: 16px;
  text-transform: uppercase;
  padding: 18px 15px;
}

.s-promo-view .action-products-descr span {
  width: calc(100% - 290px);
  padding-left: 10px;
  padding-top: 5px;
  padding-right: 30px;
  color: #B46CD2;
  font-size: 24px;
  line-height: 1.2;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .action-products-descr span {
    font-size: 20px;
    font-size: 18px;
    padding-top: 0;
  }
}

.s-promo-view .info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #CFCFCF;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.s-promo-view .info-row__conditions {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .info-row__conditions {
    padding-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__conditions {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding-right: 0;
    margin-bottom: 8px;
    width: 100%;
  }
}

.s-promo-view .info-row__help {
  padding-right: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .info-row__help {
    padding-right: 6px;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__help {
    padding-right: 0;
    width: 100%;
  }
}

.s-promo-view .info-row__help-btn {
  background: #00BFA5;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 50px;
}

.s-promo-view .info-row__help-btn:hover {
  background-color: #3ab3df;
}

.s-promo-view .info-row__help-btn:disabled {
  background-color: #cfcfcf;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .info-row__help-btn {
    width: 175px;
    font-size: 14px;
    line-height: 1.2;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__help-btn {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__cart {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    width: 100%;
  }
}

.s-promo-view .info-row__cart-btn {
  width: 250px;
}

@media only screen and (max-width: 1249px) {
  .s-promo-view .info-row__cart-btn {
    width: 148px;
  }
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .info-row__cart-btn {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__cart-btn {
    width: 100%;
  }
}

.s-promo-view .info-row__hr {
  width: 100%;
  margin: 0 0 25px;
  border: none;
}

@media only screen and (max-width: 1249px) {
  .s-promo-view .info-row__hr {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__hr {
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 1249px) {
  .s-promo-view .info-row__counter {
    font-size: 16px;
  }
  .s-promo-view .info-row__counter .t-counter-name {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__counter {
    font-size: 13px;
  }
  .s-promo-view .info-row__counter .t-counter-name {
    font-size: 12px;
  }
}

.s-promo-view .info-row__trigger {
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__trigger {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 50%;
  }
}

.s-promo-view .info-row__trigger-val {
  display: inline-block;
  min-width: 1em;
}

.s-promo-view .info-row__qty {
  margin-left: auto;
  padding-left: 10px;
}

.s-promo-view .info-row__cart {
    margin-left: auto;
}

@media only screen and (max-width: 767px) {
    .s-promo-view .info-row__qty {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 50%;
    margin-bottom: 15px;
  }
}

.s-promo-view .info-row__qty-val {
  min-width: 1em;
}

.s-promo-view .info-row__sku {
  margin-left: auto;
  padding-left: 10px;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__sku {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 100%;
    margin-bottom: 15px;
  }
}

.s-promo-view .info-row__sku-val {
  min-width: 3.2em;
}

.s-promo-view .info-row__sum {
  margin-left: auto;
  padding-left: 10px;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .info-row__sum {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    width: 100%;
    margin-bottom: 10px;
  }
}

.s-promo-view .info-row__sum-val {
  min-width: 1em;
}

.s-promo-view .conditions__progress {
  display: grid;
  grid-gap: 0 20px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  width: 100%;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .conditions__progress {
    grid-gap: 0 10px;
  }
}

.s-promo-view .conditions__progress-text {
  font-weight: 300;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  margin-bottom: 22px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-view .conditions__progress-text {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .s-promo-view .conditions__progress-text {
    grid-column: span 1;
    grid-row: span 1;
    margin-bottom: 7px;
    align-self: center;
  }
}

.s-promo-view .conditions__progress-num {
  font-weight: 300;
  font-size: 24px;
  width: 70px;
  text-align: center;
  grid-row: span 2;
  align-self: center;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .conditions__progress-num {
    grid-column: span 1;
    grid-row: span 1;
    margin-bottom: 10px;
  }
}

.s-promo-view .conditions__progress-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #CFCFCF;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .conditions__progress-bar {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.s-promo-view .conditions__pregress-bar-inner {
  height: 10px;
  display: block;
}

@media only screen and (max-width: 767px) {
  .s-promo-view .conditions__pregress-bar-inner {
    height: 8px;
  }
}

.products-table-wrap_type_promo .td--min-qty,
.products-table-wrap_type_promo .th--min-qty {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
}

.s-orders-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-groups-list-wrap li {
  background: #61ADF2;
}

.template-tab {
  width: 100%;
  border-right: 1px solid #F1F1F1;
  border-left: 5px solid #3AB3DF;
  position: relative;
  padding: 20px 20px 20px 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.template-tab:after, .template-tab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.template-tab:before {
  top: 0;
}

.template-tab:after {
  bottom: 0px;
}

.template-tab .template-tab-toprow,
.template-tab .template-tab-botrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.template-tab .template-tab-toprow {
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.template-tab .template-tab-botrow {
  padding-top: 10px;
}

.template-tab .tab-heading {
  color: #9F9F9F;
  margin-bottom: 10px;
}

.template-tab .tab-big-txt {
  font-size: 22px;
  padding-bottom: 3px;
}

.template-tab .t-name-col {
  width: 30%;
  margin-right: 27%;
  line-height: 1.2;
  font-size: 22px;
}

.template-tab .sku-col {
  width: 10%;
  padding-right: 20px;
  text-align: right;
}

.template-tab .sku-col .tab-big-txt {
  color: #3AB3DF;
}

.template-tab .bonus-col {
  width: 13%;
  padding-right: 20px;
  text-align: right;
}

.template-tab .bonus-col .bonus-group-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #22D3BB;
}

.template-tab .bonus-col .bonus-group-wrap .bonus-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.template-tab .bonus-col .bonus-group-wrap .bonus-icon {
  margin-left: 5px;
  height: 1px;
  width: 20px;
  height: 1px;
  position: relative;
}

.template-tab .bonus-col .bonus-group-wrap .bonus-icon .svg {
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.template-tab .bonus-col .bonus-group-wrap .bonus-icon .svg path {
  fill: #22D3BB;
}

.template-tab .sum-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

.template-tab .suppliers-col {
  width: 36%;
  padding-right: 20px;
}

.template-tab .suppliers-col ul {
  overflow: hidden;
}

.template-tab .product-groups-col {
  width: 27%;
  padding-right: 20px;
}

.template-tab .product-groups-col ul {
  overflow: hidden;
}

.template-tab .tab-buttons-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.template-tab .tab-buttons-col button {
  width: calc(50% - 5px);
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 17px;
  padding-bottom: 17px;
  border: none;
  padding-left: 3px;
  padding-right: 3px;
}

.template-tab .tab-buttons-col .del-btn {
  color: #FC828F;
}

@media only screen and (max-width: 1050px) {
  .template-tab {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 15px;
  }
  .template-tab .t-name-col {
    font-size: 20px;
    margin-right: 15%;
  }
  .template-tab .sku-col {
    width: 15%;
  }
  .template-tab .bonus-col {
    width: 17%;
  }
  .template-tab .tab-big-txt {
    font-size: 20px;
  }
  .template-tab .tab-buttons-col button {
    font-size: 14px;
    width: 40%;
  }
  .template-tab .tab-buttons-col .del-btn {
    width: calc(60% - 5px);
  }
  .template-tab .tag-list-wrap li {
    font-size: 8px;
  }
}

.catalogue-breadcrumbs-wrap {
  padding: 15px 0 0;
}

@media only screen and (max-width: 767px) {
  .catalogue-breadcrumbs-wrap {
    padding-bottom: 10px;
  }
}

.catalogue-breadcrumbs {
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 18px;
}

.catalogue-breadcrumbs li {
  display: inline-block;
  vertical-align: top;
  margin-right: 32px;
  margin-bottom: 10px;
  position: relative;
}

.catalogue-breadcrumbs li:after {
  content: "";
  position: absolute;
  left: calc(100% + 15px);
  top: 3px;
  width: 6px;
  height: 12px;
  background-image: url(../img/right-blue.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.catalogue-breadcrumbs li:last-child {
  margin: 0;
}

.catalogue-breadcrumbs li:last-child:after {
  display: none;
}

.catalogue-breadcrumbs-top {
  padding-left: 10px;
}

.catalogue-breadcrumbs-top:after {
  content: "";
  clear: both;
  display: table;
}

.catalogue-breadcrumbs-top .catalogue-breadcrumbs {
  float: left;
}

@media only screen and (min-width: 1249px) {
  .catalogue-breadcrumbs-top .catalogue-breadcrumbs {
    max-width: calc(100% - 420px);
  }
}

.catalogue-breadcrumbs-top .right-sort-group {
  float: right;
  padding-top: 4px;
  padding-bottom: 15px;
  padding-left: 30px;
}

@media only screen and (min-width: 1249px) {
  .catalogue-breadcrumbs-top .right-sort-group {
    max-width: calc(100% - 420px);
  }
}

.catalogue-breadcrumbs-top .sort-txt {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #5c5c5c;
  margin-right: 5px;
}

.catalogue-breadcrumbs-top .select-style.sort-select {
  width: 220px;
}

.catalogue-breadcrumbs-top .select-style {
  display: inline-block;
  vertical-align: middle;
  width: 174px;
  margin-right: 15px;
}

.catalogue-breadcrumbs-top .select-style select {
  border: 1px solid #f1f1f1;
  color: #5fb1db;
  font-size: 14px;
  font-weight: 400;
  background: url(/img/down-blue.svg) calc(100% - 8px) 50% no-repeat #fff;
  background-size: 12px 7px;
  padding-bottom: 5px;
  padding-top: 5px;
  line-height: 1;
}

.catalogue-breadcrumbs-top .layout-change-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
}

.catalogue-breadcrumbs-top .layout-change-item:last-child {
  margin-right: 0;
}

.catalogue-breadcrumbs-top .layout-change-item img {
  opacity: 0.7;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.catalogue-breadcrumbs-top .layout-change-item.active img, .catalogue-breadcrumbs-top .layout-change-item:hover img, .catalogue-breadcrumbs-top .layout-change-item:focus img {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}

@media only screen and (max-width: 1439px) {
  .catalogue-breadcrumbs-top {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 1249px) {
  .catalogue-breadcrumbs-top .catalogue-breadcrumbs {
    float: none;
    margin-bottom: 10px;
  }
  .catalogue-breadcrumbs-top .right-sort-group {
    float: none;
    padding-left: 0;
    padding-bottom: 25px;
  }
}

body.media-mobile .s-catalogue-content {
  padding: 17px 0 0;
}

.s-catalogue-content .container {
  position: relative;
}

.s-catalogue-content .catalogue-top-mobile {
  display: none;
  padding-bottom: 0px;
  position: relative;
}

.s-catalogue-content .catalogue-top-mobile .filters-btn {
  position: absolute;
  top: -12px;
}

@media only screen and (max-width: 1050px) {
  .s-catalogue-content .catalogue-top-mobile {
    display: block;
  }
}

.s-catalogue-content .theme-mp .back-bar {
  background: #CFCFCF;
}

.s-catalogue-content .theme-mp .back-bar .pointer {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  border: 1px solid #fff;
  background: #3AB3DF;
  top: -8px;
}

.s-catalogue-content .theme-mp .back-bar .selected-bar {
  background: #68C2E3;
  border-radius: 2px;
}

.s-catalogue-content .price-inputs {
  position: relative;
  padding-top: 9px;
}

.s-catalogue-content .price-inputs-txt {
  font-size: 8px;
  color: rgba(159, 159, 159, 0.8);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.s-catalogue-content .price-input-txt {
  position: absolute;
  top: 0;
}

.s-catalogue-content .price-input-txt.from {
  left: 0;
}

.s-catalogue-content .price-input-txt.to {
  left: 51%;
}

.catalogue-content {
  float: left;
  width: calc(100% - 250px);
  padding-left: 20px;
}

.catalogue-product-items .see-more-wrap .see-more-link:hover .see-more-fiction-btn {
  background-color: #f1f1f1;
}

.catalogue-product-items {
  padding-bottom: 150px;
}

.catalogue-product-items .product-item-wrap {
  width: 25%;
}

.catalogue-product-items .product-item-wrap:hover .item-zoom-group {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  -o-transition: transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.catalogue-product-items .see-more-wrap {
  width: 25%;
  float: left;
  border: 1px solid #f1f1f1;
  height: 420px;
  padding: 60px 20px 0;
}

.catalogue-product-items .see-more-wrap .see-more-link {
  text-align: center;
  display: block;
}

.catalogue-product-items .see-more-wrap .see-more-link:hover .svg path {
  fill: #ddd;
}

.catalogue-product-items .see-more-wrap .see-more-arrow {
  margin-bottom: 50px;
}

.catalogue-product-items .see-more-wrap .see-more-arrow .svg {
  width: 154px;
  height: 164px;
}

.catalogue-product-items .see-more-wrap .see-more-fiction-btn {
  color: #3ab3df;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  width: 155px;
  padding: 14px 0;
  font-size: 16px;
  display: inline-block;
}

@media only screen and (max-width: 1439px) {
  .catalogue-product-items .product-item-wrap,
  .catalogue-product-items .see-more-wrap {
    width: 33.33333%;
  }
}

.section .filters-btn, section .filters-btn {
  padding: 15px 15px;
  font-size: 16px;
  width: 55px;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 2px;
}

.section .filters-btn .svg, section .filters-btn .svg {
  width: 24px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
}

.section .filters-btn:hover, section .filters-btn:hover {
  background-color: #fff;
}

.section .filters-btn.active, section .filters-btn.active {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-top: 1px solid #CFCFCF;
  border-left: 1px solid #CFCFCF;
  z-index: 998;
}

.section .filters-btn.active:before, section .filters-btn.active:before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.products-table-wrap .tr-group {
  margin-bottom: 10px;
  padding-left: 90px;
  position: relative;
}

.products-table-wrap .item-name {
  font-size: 18px;
  font-weight: 400;
  background: #F1F1F1;
  width: 100%;
  padding: 11px 10px;
}

.products-table-wrap .req-price-button {
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 200px;
  border-radius: 2px;
}

.products-table-wrap .req-price-button:before {
  content: "";
  height: calc(100% + 1px);
  width: 10px;
  background: #fff;
  display: inline-block;
  position: absolute;
  right: 100%;
  top: 0;
}

.products-table-wrap .req-price-button.disabled {
  cursor: default;
  pointer-events: none;
  border: 1px solid #F1F1F1;
  color: #cfcfcf;
  background-color: transparent;
}

.products-table-wrap .req-price-button.disabled:before {
  top: -1px;
  height: calc(100% + 3px);
  right: calc(100% + 1px);
}

.products-table-wrap .tr-group-photo {
  position: absolute;
  width: 90px;
  max-height: 100%;
  top: 0;
  left: 0;
  padding-right: 10px;
  text-align: center;
}

.products-table-wrap .tr-group-photo img {
  max-width: 100%;
  max-height: 100px;
}

.products-table-wrap .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #2f2f2f;
}

.products-table-wrap .tr--new, .products-table-wrap .tr--hit {
  position: relative;
}

.products-table-wrap .tr--new:before, .products-table-wrap .tr--hit:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 2px;
  height: calc(100% - 10px);
}

.products-table-wrap .tr--new:before {
  background: #61ADF2;
}

.products-table-wrap .tr--hit:before {
  background: #FFB74D;
}

.products-table-wrap .th {
  font-size: 10px;
  font-weight: 400;
  color: #9f9f9f;
  border-right: 4px solid #fff;
  background: #F1F1F1;
  text-align: center;
  min-height: 40px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 5px 2px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.products-table-wrap .th hr {
  border: none;
  border-top: 1px solid #cfcfcf;
  margin: 3px 0;
  width: 100%;
}

.products-table-wrap .th:last-child {
  border-right: none;
}

.products-table-wrap .tbody .tr {
  border-bottom: 1px solid #F1F1F1;
}

.products-table-wrap .tbody .tr:last-child {
  border-bottom: 0;
}

.products-table-wrap .t-select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  background: none;
}

.products-table-wrap .t-select select {
  border: 2px solid #F1F1F1;
  font-size: 10px;
  font-weight: 400;
  background: url(/img/down-blue.svg) calc(100% - 8px) 50% no-repeat #fff;
  background-size: 14px 8px;
  padding-bottom: 5px;
  padding-left: 7px;
  height: 40px;
  padding-right: 20px;
  width: 100%;
  padding-top: 5px;
  line-height: 1;
  color: #9F9F9F;
}

.products-table-wrap .warn-icon {
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap .warn-icon {
    width: 14px;
    height: 14px;
  }
}

.products-table-wrap .warn-icon path {
  fill: #FF5252;
}

.products-table-wrap .action {
  position: relative;
  cursor: pointer;
  display: inline;
}

.products-table-wrap .action:hover .action-descr {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.products-table-wrap .action-descr {
  position: absolute;
  width: 440px;
  background: #D2F1FC;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  left: -360px;
  bottom: calc(100% + 20px);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.products-table-wrap .action-descr:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 352px;
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 18px solid #D2F1FC;
}

.products-table-wrap .action-descr:after {
  content: "";
  position: absolute;
  top: 100%;
  height: 20px;
  width: 100%;
  left: 0px;
}

.products-table-wrap .action-descr a {
  color: inherit;
}

.products-table-wrap .action-descr a:hover {
  opacity: 0.7;
}

.products-table-wrap .action-descr .action-content {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

.products-table-wrap .action-descr .action-content img {
  width: 40px;
  height: 40px;
  border: 5px solid  #FFF;
  border-radius: 50%;
}

.products-table-wrap .action-descr .action-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  color: #3AB3DF;
  padding-top: 5px;
  padding-left: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  max-height: 45px;
  margin-bottom: 10px;
}

.products-table-wrap .action-descr .action-txt p {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.products-table-wrap .action-descr .other-a-link-wrap {
  text-align: right;
}

.products-table-wrap .action-descr .other-a-link {
  font-weight: 600;
  font-size: 14px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #22D3BB;
}

.products-table-wrap .quantity-input {
    width: 100%;
    text-align: center;
    padding-left: 0px;
    padding-top: 3px;
    padding-bottom: 3px;
    border: 1px solid #CFCFCF;
}

.products-table-wrap .quantity-input--ordered {
  background-image: url(../img/cart-icon-green.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right 5px center;
  padding-right: 24px;
  border-color: #22D3BB;
  caret-color: #22D3BB;
}

.products-table-wrap .th, .products-table-wrap .td {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 0;
}

.products-table-wrap .th--barcode, .products-table-wrap .td--barcode {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  text-align: center;
}

.products-table-wrap .th--name, .products-table-wrap .td--name {
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
}

.products-table-wrap .th--qty, .products-table-wrap .td--qty {
  -ms-flex-preferred-size: 8%;
      flex-basis: 8%;
  text-align: center;
}

.products-table-wrap .th--av, .products-table-wrap .td--av {
  -ms-flex-preferred-size: 9%;
      flex-basis: 9%;
}

.products-table-wrap .th--price, .products-table-wrap .td--price {
  -ms-flex-preferred-size: 12.5%;
      flex-basis: 12.5%;
}

.products-table-wrap .th--bonus, .products-table-wrap .td--bonus {
  -ms-flex-preferred-size: 12.5%;
      flex-basis: 12.5%;
}

.products-table-wrap .th--unit, .products-table-wrap .td--unit {
  -ms-flex-preferred-size: 6%;
      flex-basis: 6%;
}

.products-table-wrap .th--order, .products-table-wrap .td--order {
  -ms-flex-preferred-size: 8%;
      flex-basis: 8%;
}

.products-table-wrap .th--barcode {
  padding: 0;
}

.products-table-wrap .td {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.1;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 4px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-left: 5px;
  padding-right: 5px;
}

.products-table-wrap .td .t-select select {
  border: 1px solid #F1F1F1;
  color: #5fb1db;
  padding: 5px;
  padding-left: 6px;
  padding-right: 17px;
  height: 30px;
  background-size: 10px 6px;
  background-position: calc(100% - 5px) 50%;
}

.products-table-wrap .td hr {
  border: none;
  border-top: 1px solid #cfcfcf;
  margin: 3px 0;
  width: 100%;
}

.products-table-wrap .td--av {
  font-size: 10px;
  text-align: center;
  padding-left: 7px;
  padding-right: 7px;
  padding: 6px 7px;
}

.products-table-wrap .td--price {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.products-table-wrap .td--price .currency-only-number {
  margin-right: 0.3em;
}

.products-table-wrap .td--price .item-price-without-promo {
  padding-bottom: 5px;
  text-decoration: line-through;
  color: #9f9f9f;
  font-size: 12px;
}

.products-table-wrap .td--bonus {
  white-space: nowrap;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 0  11px;
  padding-left: 5px;
  padding-right: 5px;
}

.products-table-wrap .td--bonus img {
  width: 16px;
  height: auto;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
}

.products-table-wrap .td--bonus .bonus-quntity {
  color: #5eceba;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}

.products-table-wrap .td--unit {
  padding: 5px 5px 5px 0px;
}

.products-table-wrap .td--unit .t-select select {
  width: 45px;
}

.products-table-wrap .td--order {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 0;
}

.products-table-wrap .td--unit, .products-table-wrap .td--order {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.products-table-wrap .td--unit:after, .products-table-wrap .td--order:after {
  content: "";
  background: #fff;
  height: 1px;
  bottom: -1px;
  width: 100%;
  position: absolute;
  left: 0;
}

.products-table-wrap .item-provider {
  color: #CFCFCF;
  font-size: 14px;
  padding: 14px 20px 0 15px;
  background: #F1F1F1;
  white-space: nowrap;
}

.products-table-wrap .tr-group-body {
  position: relative;
  min-height: 105px;
}

.tr-group-body.tr-group-body-promo-offer {
  min-height: 0;
}

.products-table-wrap .col-provider {
  position: absolute;
  z-index: 2;
  background: #fff;
  height: 100%;
  right: 0;
  top: 0;
  width: 46%;
  text-align: right;
  font-size: 14px;
  color: #CFCFCF;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0 0;
}

.products-table-wrap .col-provider .provider-txt,
.products-table-wrap .col-provider .provider-name {
  margin-bottom: 17px;
}

.products-table-wrap .item-provider-img {
  height: 20px;
  width: auto;
  position: relative;
  bottom: 3px;
}

.products-table-wrap--no-photo .tr-group-photo {
  display: none;
}

.products-table-wrap--no-photo .tr-group {
  padding-left: 0;
}

.products-table-wrap--no-photo .tbody .tr:last-child {
  border-bottom: 1px solid #F1F1F1;
}

.products-table-wrap--no-photo .req-price-button {
  min-width: 250px;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap--no-photo .req-price-button {
    min-width: 225px;
  }
}

@media only screen and (max-width: 1439px) {
  aside.catalogue-sidebar {
    width: 220px;
  }
  .catalogue-content {
    width: calc(100% - 220px);
  }
  .catalogue-product-items {
    padding-left: 0;
  }
  .products-table-wrap .th--price, .products-table-wrap .td--price {
    -ms-flex-preferred-size: 13.5%;
        flex-basis: 13.5%;
  }
  .products-table-wrap .th--bonus, .products-table-wrap .td--bonus {
    -ms-flex-preferred-size: 11%;
        flex-basis: 11%;
  }
  .products-table-wrap .th--unit, .products-table-wrap .td--unit {
    -ms-flex-preferred-size: 7%;
        flex-basis: 7%;
  }
  .products-table-wrap .th--name, .products-table-wrap .td--name {
    -ms-flex-preferred-size: 28.5%;
        flex-basis: 28.5%;
  }
  .products-table-wrap .col-provider {
    width: 48.5%;
  }
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap .tr {
    font-size: 10px;
  }
  .products-table-wrap .td--av {
    font-size: 8px;
  }
  .products-table-wrap .td--bonus .bonus-quntity {
    font-size: 10px;
  }
  .products-table-wrap .td--bonus img {
    width: 10px;
  }
  .products-table-wrap .th--unit, .products-table-wrap .td--unit {
    -ms-flex-preferred-size: 8%;
        flex-basis: 8%;
  }
  .products-table-wrap .th--name, .products-table-wrap .td--name {
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
  }
  .products-table-wrap .col-provider {
    width: 49.5%;
  }
}

@media only screen and (max-width: 1050px) {
  aside.catalogue-sidebar.hiding {
    position: absolute;
    left: -290px;
    -webkit-transform: translate(-290px, 0);
        -ms-transform: translate(-290px, 0);
            transform: translate(-290px, 0);
    top: -12px;
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    width: 290px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    visibility: hidden;
    border-top: 1px solid #CFCFCF;
    border-right: 1px solid #CFCFCF;
  }
  aside.catalogue-sidebar.hiding:before {
    content: "";
    position: absolute;
    right: calc(100%);
    top: 0;
    width: 10px;
    height: 56px;
    background: #fff;
  }
  aside.catalogue-sidebar.hiding.active {
    left: 69px;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 20;
    visibility: visible;
    z-index: 999;
  }
  .catalogue-content {
    padding-left: 0;
    width: 100%;
    float: none;
  }
  .catalogue-content .catalogue-breadcrumbs {
    white-space: nowrap;
  }
  .products-table-wrap .th--av {
    font-size: 8px;
  }
  .products-table-wrap .th--bonus {
    font-size: 8px;
  }
  .products-table-wrap .th--price,
  .products-table-wrap .td--price {
    display: none;
  }
  .products-table-wrap .th--av,
  .products-table-wrap .td--av {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .products-table-wrap .th--bonus,
  .products-table-wrap .td--bonus {
    -ms-flex-preferred-size: 14%;
        flex-basis: 14%;
  }
  .products-table-wrap .th--name,
  .products-table-wrap .td--name {
    -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
  }
  .products-table-wrap .td--bonus .inserted-content {
    text-align: right;
  }
  .products-table-wrap .td--bonus .right-items-group {
    min-height: 11.2px;
  }
  .products-table-wrap .td--bonus .bonus-quntity {
    margin-left: 10px;
  }
  .products-table-wrap .col-provider {
    width: 40%;
  }
}

@media (min-width: 1249px) and (max-width: 1439px) {
  .catalogue-product-items .product-item-wrap:nth-child(3n):hover .item-zoom-group {
    -webkit-transform: translate(-45px, 0);
        -ms-transform: translate(-45px, 0);
            transform: translate(-45px, 0);
  }
}

@media (min-width: 1050px) and (max-width: 1249px) {
  .catalogue-product-items .product-item-wrap:nth-child(3n):hover .item-zoom-group {
    -webkit-transform: translate(-68px, 0);
        -ms-transform: translate(-68px, 0);
            transform: translate(-68px, 0);
  }
}

@media (min-width: 767px) and (max-width: 1050px) {
    .catalogue-product-items .product-item-wrap:nth-child(3n+1):hover .item-zoom-group {
        -webkit-transform: translate(100px, 0);
        -ms-transform: translate(100px, 0);
        transform: translate(100px, 0);
    }
  .catalogue-product-items .product-item-wrap:nth-child(3n):hover .item-zoom-group {
    -webkit-transform: translate(-50px, 0);
        -ms-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }
}

@media (max-width: 1050px) {
  .catalogue-breadcrumbs-top .sort-txt {
    font-size: 14px;
    margin-right: 5px;
  }
  .catalogue-breadcrumbs-top .select-style select {
    font-size: 12px;
  }
}

@media (min-width: 767px) and (max-width: 900px) {
  .catalogue-product-items .product-item-wrap:nth-child(3n):hover .item-zoom-group {
    -webkit-transform: translate(-96px, 0);
        -ms-transform: translate(-96px, 0);
            transform: translate(-96px, 0);
  }
  .catalogue-product-items .product-item-wrap:nth-child(3n+1):hover .item-zoom-group {
    -webkit-transform: translate(146px, 0);
        -ms-transform: translate(146px, 0);
            transform: translate(146px, 0);
  }
}

@media only screen and (max-width: 767px) {
  .catalogue-product-items .product-item-wrap, .catalogue-product-items .see-more-wrap {
    width: 50%;
  }
  body:not(.media-mobile) .catalogue-product-items .product-item-wrap:nth-child(2n):hover .item-zoom-group {
    -webkit-transform: translate(-50px, 0);
        -ms-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }
  body:not(.media-mobile) .catalogue-product-items .product-item-wrap:nth-child(2n+1):hover .item-zoom-group {
    -webkit-transform: translate(50px, 0);
        -ms-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }
}

.products-table-wrap_type_promo {
  position: relative;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .tr-group {
    padding-left: 0;
  }
}

.products-table-wrap_type_promo .tbody .tr--name {
  border-bottom: none;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .tr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .tr--name {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-left: 62px;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .tr--name {
    padding-left: 45px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .tr-group-photo {
    width: 62px;
    height: 52px;
    padding-right: 12px;
  }
  .products-table-wrap_type_promo .tr-group-photo img {
    max-height: 52px;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .tr-group-photo {
    width: 45px;
    height: 45px;
    padding-right: 5px;
  }
  .products-table-wrap_type_promo .tr-group-photo img {
    max-height: 45px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .item-name {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .item-provider {
    padding-top: 18px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .th--name {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 4px;
    width: 100%;
    border-right: none;
  }
}

.products-table-wrap_type_promo .td {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-table-wrap_type_promo .td--barcode,
.products-table-wrap_type_promo .th--barcode {
  -ms-flex-preferred-size: 13%;
      flex-basis: 13%;
  min-width: 100px;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--barcode,
  .products-table-wrap_type_promo .th--barcode {
    -ms-flex-preferred-size: 16%;
        flex-basis: 16%;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--barcode,
  .products-table-wrap_type_promo .th--barcode {
    display: none;
  }
}

.products-table-wrap_type_promo .td--name,
.products-table-wrap_type_promo .th--name {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--name,
  .products-table-wrap_type_promo .th--name {
    width: 100%;
  }
}

.products-table-wrap_type_promo .td--av,
.products-table-wrap_type_promo .th--av {
  -ms-flex-preferred-size: 7%;
      flex-basis: 7%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--av,
  .products-table-wrap_type_promo .th--av {
    font-size: 10px;
    -ms-flex-preferred-size: 12%;
        flex-basis: 12%;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--av,
  .products-table-wrap_type_promo .th--av {
    width: 20%;
  }
}

.products-table-wrap_type_promo .td--price,
.products-table-wrap_type_promo .th--price {
  -ms-flex-preferred-size: 9.5%;
      flex-basis: 9.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--price,
  .products-table-wrap_type_promo .th--price {
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--price,
  .products-table-wrap_type_promo .th--price {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.products-table-wrap_type_promo .td--bonus,
.products-table-wrap_type_promo .th--bonus {
  -ms-flex-preferred-size: 7.5%;
      flex-basis: 7.5%;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--bonus,
  .products-table-wrap_type_promo .th--bonus {
    font-size: 10px;
    -ms-flex-preferred-size: 16%;
        flex-basis: 16%;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--bonus,
  .products-table-wrap_type_promo .th--bonus {
    -ms-flex-preferred-size: 14%;
        flex-basis: 14%;
  }
}

.products-table-wrap_type_promo .td--min-qty,
.products-table-wrap_type_promo .th--min-qty {
  -ms-flex-preferred-size: 9%;
      flex-basis: 9%;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--min-qty,
  .products-table-wrap_type_promo .th--min-qty {
    -ms-flex-preferred-size: 18%;
        flex-basis: 18%;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--min-qty,
  .products-table-wrap_type_promo .th--min-qty {
    -ms-flex-preferred-size: 21%;
        flex-basis: 21%;
  }
}

.products-table-wrap_type_promo .td--order,
.products-table-wrap_type_promo .th--order {
  -ms-flex-preferred-size: 6%;
      flex-basis: 6%;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--order,
  .products-table-wrap_type_promo .th--order {
    -ms-flex-preferred-size: 16%;
        flex-basis: 16%;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--order,
  .products-table-wrap_type_promo .th--order {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }
}

.products-table-wrap_type_promo .th--min-qty {
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td {
    min-height: 25px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--barcode {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--av {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--av {
    font-size: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--av {
    border-top: 1px solid #F1F1F1;
  }
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--name {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--name {
    font-size: 12px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--name {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--price {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--price {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--price {
    border-top: 1px solid #F1F1F1;
  }
}

.products-table-wrap_type_promo .td--bonus {
  padding-left: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--bonus {
    font-size: 14px;
  }
  .products-table-wrap_type_promo .td--bonus .bonus-quntity {
    font-size: 1em;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--bonus {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--bonus {
    border-top: 1px solid #F1F1F1;
  }
}

.products-table-wrap_type_promo .td--bonus img {
  margin-left: 0.6em;
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--bonus {
    padding-left: 5px;
  }
}

.products-table-wrap_type_promo .td--min-qty {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--min-qty {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--min-qty {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .products-table-wrap_type_promo .td--min-qty {
    border-top: 1px solid #F1F1F1;
  }
}

@media only screen and (max-width: 1249px) {
  .products-table-wrap_type_promo .td--order .quantity-input {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1050px) {
  .products-table-wrap_type_promo .td--order .quantity-input {
    font-size: 12px;
  }
}

.products-table-wrap_type_promo .min-qty {
  min-width: 40px;
  padding: 0 5px;
  display: inline-block;
  text-align: center;
}

.promo-tabs {
  margin-right: -20px;
  margin-bottom: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.promo-tab {
  width: calc(33.33333% - 20px);
  margin-right: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-right: 1px solid #F1F1F1;
  border-left: 5px solid #4FBA7E;
  position: relative;
  padding: 10px 20px 10px 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #000;
  z-index: 2;
  background: #fff;
}

.promo-tab--ends {
  border-left-color: #FFB74D;
}

.promo-tab:after, .promo-tab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.promo-tab:before {
  top: 0;
}

.promo-tab:after {
  bottom: 0px;
}

.promo-tab .promo-tab-name {
  line-height: 1.1;
  font-size: 18px;
  height: 39px;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
}

@supports (-webkit-line-clamp: 2) {
  .promo-tab .promo-tab-name {
    display: -webkit-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-line-clamp: 2;
  }
}

.promo-tab .promo-tab-toprow {
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.promo-tab .promo-tab-midrow {
  padding: 10px 20px 20px;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  overflow: hidden;
}

.promo-tab .promo-tab-botrow {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 1px solid #F1F1F1;
}

.promo-tab .tab-heading {
  color: #9F9F9F;
  margin-bottom: 7px;
}

.promo-tab .company-name {
  color: #222222;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.07;
  text-transform: uppercase;
  min-height: 34px;
  margin-bottom: 10px;
}

.promo-tab .product-groups-list-wrap ul {
  height: 59px;
  overflow: hidden;
}

.promo-tab .product-groups-list-wrap li {
  font-size: 10px;
}

.promo-tab .promo-timer {
  font-size: 0;
  color: #9F9F9F;
}

.promo-tab .promo-timer .timer-blocks {
  color: #222222;
  display: inline-block;
  vertical-align: top;
}

.promo-tab .promo-timer .timer-block {
  display: inline-block;
  vertical-align: top;
  font-size: 34px;
  position: relative;
}

.promo-tab .promo-timer .timer-block:after {
  content: ":";
}

.promo-tab .promo-timer .timer-block:last-child:after {
  display: none;
}

.promo-tab .promo-timer .timer-txt {
  color: #9F9F9F;
  display: inline-block;
  vertical-align: top;
  line-height: 1.2;
  font-size: 13px;
  margin-left: 6px;
}

.promo-tab .promo-tab-banner {
  position: absolute;
  padding-left: 5px;
  padding-right: 1px;
  left: 0;
  right: -1px;
  top: 0;
  bottom: -1px;
  -webkit-transition: opacity 0.3s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 10;
  visibility: visible;
  opacity: 1;
}

.promo-tab .promo-tab-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.promo-tab:hover {
  z-index: 1;
}

.promo-tab:hover .promo-tab-banner {
  visibility: hidden;
  -webkit-transform: translateY(calc(100% + 100px));
      -ms-transform: translateY(calc(100% + 100px));
          transform: translateY(calc(100% + 100px));
  opacity: 0;
  z-index: -1;
}

@media only screen and (max-width: 1439px) {
  .promo-tab {
    font-size: 10px;
    padding: 8px 13px 8px 12px;
  }
  .promo-tab .promo-tab-midrow {
    margin-left: -17px;
    margin-right: -13px;
    padding-left: 17px;
    padding-right: 13px;
  }
  .promo-tab .company-name {
    min-height: 29px;
  }
  .promo-tab .promo-tab-banner {
    left: -17px;
    right: -14px;
  }
  .promo-tab .promo-tab-name {
    font-size: 18px;
  }
  .promo-tab .company-name {
    font-size: 14px;
  }
  .promo-tab .promo-timer .timer-block {
    font-size: 30px;
  }
  .promo-tab .promo-timer .timer-txt {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1249px) {
  .promo-tab .go-btn {
    padding: 12px 5px;
  }
  .promo-tab .promo-timer {
    padding-top: 10px;
  }
  .promo-tab .promo-timer .timer-block {
    font-size: 26px;
  }
  .promo-tab .promo-timer .timer-txt {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 1050px) {
  .promo-tab {
    width: calc(50% - 20px);
  }
  .promo-tab .promo-timer {
    padding-top: 0;
  }
  .promo-tab .promo-timer .timer-block {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .promo-tabs {
    margin-right: 0;
  }
  .promo-tab {
    width: 100%;
    font-size: 20px;
  }
  .promo-tab * {
    font-size: 1em;
  }
  .promo-tab .promo-tab-name {
    font-size: 1.5em;
  }
  .promo-tab .tab-heading {
    font-size: 1.75em;
  }
  .promo-tab .company-name {
    font-size: 1.25em;
  }
  .promo-tab .promo-timer {
    font-size: 1.25em;
  }
  .promo-tab .promo-timer .timer-txt {
    font-size: 0.6em;
  }
  .promo-tab .promo-timer .timer-block {
    font-size: 1.5em;
  }
  .promo-tab .go-btn {
    font-size: 1.25em;
  }
}

.s-cart .cart-org-heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}

.s-cart .cart-org-heading-wrap .heading-icon {
  width: 52px;
  font-size: 0;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1050px) {
  .s-cart .cart-org-heading-wrap .heading-icon {
    width: 42px;
  }
}

.s-cart .cart-org-heading-wrap .heading-icon img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 5px solid  #D2F1FC;
}

@media only screen and (max-width: 1050px) {
  .s-cart .cart-org-heading-wrap .heading-icon img {
    width: 40px;
    height: 40px;
  }
}

.s-cart .cart-org-heading-wrap .heading-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #D2F1FC;
  font-size: 24px;
  color: #3AB3DF;
  padding-top: 12px;
  padding-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

@media only screen and (max-width: 1050px) {
  .s-cart .cart-org-heading-wrap .heading-txt {
    font-size: 18px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 4px;
  }
}

.s-cart .cart-org-heading-wrap .heading-txt span {
  font-weight: 300;
  color: #4F4F4F;
}

.s-cart .cart-org-heading-wrap .heading-txt:before {
  content: "";
  height: 100%;
  content: "";
  left: -63px;
  width: 73px;
  height: calc(100% + 23px);
  background: #fff;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.s-cart .t-select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  background: none;
  height: 30px;
  line-height: 30px;
}

.s-cart .t-select select {
  border: none;
  font-size: 14px;
  font-weight: 400;
  background: url(../img/down-gray.svg) calc(100% - 8px) 50% no-repeat transparent;
  background-size: 14px 8px;
  padding-bottom: 0px;
  padding-left: 7px;
  padding-right: 20px;
  width: 100%;
  height: 30px;
  padding-top: 0px;
  line-height: 1;
  color: #9F9F9F;
}

.s-cart .cart-informer--bonus {
  border-left-color: #00BFA5;
  color: #00BFA5;
}

.s-cart .trade-point-orders {
  padding-bottom: 20px;
}

.s-cart .total-counter-item-row {
  display: block;
  margin-bottom: 15px;
}

.s-cart .total-counter-item-row:last-child {
  margin-bottom: 0;
}

.s-cart .total-counter-unit img {
  width: 20px;
}

.t-counter-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 20px;
}

.t-counter-item {
  text-align: right;
  font-weight: 300;
  font-size: 26px;
  color: #00BFA5;
}

@media only screen and (max-width: 1050px) {
  .t-counter-item {
    font-size: 20px;
  }
}

.t-counter-item .t-counter-alignment {
  min-width: 250px;
  display: inline-block;
  position: relative;
}

.t-counter-item .t-counter-alignment .error-message {
  left: auto;
  right: 0;
}

.t-counter-item .t-counter-alignment .error-message:before {
  left: auto;
  right: 30px;
}

.t-counter-item .t-counter-alignment.error .error-message {
  visibility: visible;
}

@media only screen and (max-width: 1050px) {
  .t-counter-item .t-counter-alignment {
    min-width: 160px;
  }
}

.t-counter-item .t-counter-name {
  color: #9F9F9F;
  font-weight: 400;
  font-size: 18px;
}

@media only screen and (max-width: 1050px) {
  .t-counter-item .t-counter-name {
    font-size: 16px;
  }
}

.t-counter-item .t-counter-secondary {
  color: #9F9F9F;
  font-weight: 400;
  font-size: 18px;
}

@media only screen and (max-width: 1050px) {
  .t-counter-item .t-counter-secondary {
    font-size: 16px;
  }
}

.t-counter-item .t-counter-value {
  display: inline-block;
}

.t-counter-item .t-counter-unit img {
  width: 20px;
}

.cart-table--bon .thead {
  font-size: 14px;
  margin-bottom: 0;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .thead {
    font-size: 10px;
  }
}

.cart-table--bon .price-cy {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.cart-table--bon .price-cy img {
  width: 15px;
}

.cart-table--bon .t-select select {
  font-size: 18px;
}

.cart-table--bon .input-group {
  max-width: 110px;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th {
    min-height: 40px;
  }
}

.cart-table--bon .th--barcode,
.cart-table--bon .td--barcode {
  width: 16%;
}

.cart-table--bon .th--name,
.cart-table--bon .td--name {
  width: 26%;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th--name,
  .cart-table--bon .td--name {
    width: 29%;
  }
}

.cart-table--bon .th--price,
.cart-table--bon .td--price {
  width: 11%;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th--price,
  .cart-table--bon .td--price {
    width: 15%;
  }
}

.cart-table--bon .th--unit,
.cart-table--bon .td--unit {
  width: 11%;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th--unit,
  .cart-table--bon .td--unit {
    width: 12%;
  }
}

.cart-table--bon .th--qty,
.cart-table--bon .td--qty {
  width: 16%;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th--qty,
  .cart-table--bon .td--qty {
    width: 18%;
  }
}

.cart-table--bon .th--sum,
.cart-table--bon .td--sum {
  width: 17%;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th--sum,
  .cart-table--bon .td--sum {
    width: 22%;
  }
}

.cart-table--bon .th--del,
.cart-table--bon .td--del {
  width: 3%;
}

@media only screen and (max-width: 1050px) {
  .cart-table--bon .th--del,
  .cart-table--bon .td--del {
    width: 4%;
  }
}

.cart-table--bon .td--price, .cart-table--bon .td--sum {
  text-align: center;
  color: #22D3BB;
}

.s-bonus-exchange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.s-bonus-exchange .bonus-item {
  text-align: center;
  color: #CFCFCF;
  font-size: 46px;
  font-weight: 300;
  margin-bottom: 20px;
}

.s-bonus-exchange .bonus-item .bonus-icon {
  width: 40px;
  height: auto;
}

.s-bonus-exchange .bonus-item--active {
  color: #22D3BB;
}

.s-bonus-exchange .bonus-item--active .bonus-icon path {
  fill: #22D3BB;
}

.s-bonus-exchange .plain-info-txt {
  margin-bottom: 20px;
}

.s-bonus-exchange .nothing-was-found {
  padding-top: 25px;
}

.s-bonus-exchange .nothing-was-found .nothing-was-found-img img {
  width: 166px;
}

@media only screen and (max-width: 1050px) {
  .s-bonus-exchange .nothing-was-found .nothing-was-found-img img {
    width: 125px;
  }
  aside.bonus-exchange-sidebar {
    margin: 0 auto 30px;
  }
}

.s-bonus-exchange .nothing-was-found .nothing-was-found-txt {
  font-size: 24px;
  text-align: center;
  color: #E0E0E0;
  margin-top: 55px;
}

.s-bonus-exchange h1, .s-bonus-exchange .h1 {
  color: #B46CD2;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 400;
}

.s-bonus-exchange h1 span, .s-bonus-exchange .h1 span {
  color: #3ab3df;
}

.s-bonus-exchange h1 span a, .s-bonus-exchange .h1 span a {
  color: inherit;
}

.s-bonus-exchange h1 span a:hover, .s-bonus-exchange .h1 span a:hover {
  color: #74cae8;
}

.s-bonus-exchange .choose-order-btn {
  width: 100%;
  margin-bottom: 20px;
}

.product-item .bonus-cur {
  width: 10px;
  height: auto;
  margin-top: 1px;
}

.product-item .bonus-cur path {
  fill: #9f9f9f;
}

.product-item-wrap:hover .product-item--bonus .bonus-cur {
  display: none;
}

.product-item-wrap:hover .product-item--bonus .col-2 {
  width: 75px;
}

.product-item--bonus .col-3 {
  width: 136px;
  padding-right: 10px;
}

.product-item--bonus .col-4 {
  width: 70px;
}

.bonus-history-table {
  font-size: 14px;
}

.bonus-history-table .tbody .tr {
  padding: 6px 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bonus-history-table .td {
  padding: 3px 0 4px;
}

.bonus-history-table .td--base a {
  color: #3AB3DF;
}

.bonus-history-table .td--base a:hover {
  color: #74cae8;
}

.bonus-history-table .th--base,
.bonus-history-table .td--base {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bonus-history-table .th--date,
.bonus-history-table .td--date {
  width: 13%;
  text-align: center;
}

.bonus-history-table .th--points,
.bonus-history-table .td--points {
  width: 13%;
  text-align: center;
  white-space: nowrap;
}

.bonus-history-table .th--points.posi,
.bonus-history-table .td--points.posi {
  color: #00BFA5;
}

.bonus-history-table .th--points.inert,
.bonus-history-table .td--points.inert {
  color: #9F9F9F;
}

.bonus-history-table .th--points.neg,
.bonus-history-table .td--points.neg {
  color: #FC828F;
}

.distr-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.distr-select .distr-name {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 80%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -3px;
}

.distr-select .option {
    width: 50vw;
}

@media only screen and (max-width: 1050px) {
    .distr-select .distr-name {
        max-width: 80%;
    }
}

.distr-select .filter-option {
  position: relative;
}

.distr-select .distr-bonuses {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #CFCFCF;
  padding-right: 15px;
}

.distr-select .distr-bonuses:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/bonus-grey.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% + 1px);
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.distr-select .distr-bonuses--active {
  color: #22D3BB;
}

.distr-select .distr-bonuses--active:after {
  background-image: url(../img/item-bonus.svg);
}

.distr-select .dropdown-menu a {
  position: relative;
  padding-right: 22px;
}

.distr-select .dropdown-menu a .distr-bonuses {
  right: 22px;
}

@media only screen and (max-width: 1050px) {
  .s-bonus-exchange h1, .s-bonus-exchange .h1 {
    font-size: 14px;
  }
}

.s-promo-present .dd-heading {
  margin-bottom: 5px;
}

.s-promo-present .descr-heading {
  padding-left: 63px;
  margin-bottom: 25px;
  color: #9F9F9F;
  font-size: 24px;
}

@media only screen and (max-width: 1050px) {
  .s-promo-present .descr-heading {
    font-size: 20px;
  }
}

.s-promo-present .right-btn-wrap {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #CFCFCF;
}

.s-promo-present .confirm-presents-btn {
  text-transform: uppercase;
  padding: 17px;
  width: 250px;
  font-weight: 400;
}

.present-table {
  font-size: 14px;
}

.present-table .th {
  font-size: 10px;
  font-weight: 400;
  color: #9f9f9f;
}

.present-table .th--photo, .present-table .td--photo {
  width: 12%;
  background-color: transparent;
}

.present-table .th--name, .present-table .td--name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.present-table .th--instock, .present-table .td--instock {
  width: 16%;
  text-align: center;
}

.present-table .th--qty, .present-table .td--qty {
  width: 29%;
}

.present-table .td--photo, .present-table .td--qty {
  text-align: center;
}

.present-table .td--photo {
  padding-right: 20px;
}

.present-table .td--photo img {
  width: 80px;
  max-width: 100%;
}

.present-table .input-group .input-number {
  width: 60px;
}

.present-table .tbody .tr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}

.present-table .name {
  margin-bottom: 10px;
}

.present-table .min-qty-txt {
  font-size: 12px;
  color: #9F9F9F;
  margin-right: 33px;
}

.present-table .note-txt {
  font-size: 12px;
  color: #B46CD2;
}

.present-table .tr {
  position: relative;
}

.present-table .tr--disabled {
  color: #CFCFCF;
}

.present-table .tr--disabled:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.present-table .tr--disabled .td--photo img {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(218, 218, 218, 0.4)), to(rgba(218, 218, 218, 0.4)));
  background: -o-linear-gradient(bottom, rgba(218, 218, 218, 0.4), rgba(218, 218, 218, 0.4));
  background: linear-gradient(0deg, rgba(218, 218, 218, 0.4), rgba(218, 218, 218, 0.4));
  opacity: 0.7;
}

.present-table .tr--disabled .note-txt,
.present-table .tr--disabled .qty-info-txt {
  color: #CFCFCF;
}

.present-table .tr--disabled .input-number {
  color: #CFCFCF;
}

.present-table .tr--selected .error-txt {
  color: #FC828F;
}

@media only screen and (max-width: 1050px) {
  .present-table .th--photo, .present-table .td--photo {
    width: 90px;
  }
  .present-table .th--qty, .present-table .td--qty {
    width: 27%;
  }
}

@media only screen and (max-width: 550px) {
    .present-table .th--qty, .present-table .td--qty {
        padding: 0px;
    }

    .present-table .input-group .input-number {
        width: 33px;
    }
}

.s-users .users-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.s-users .add-user-btn {
  padding: 12px 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.s-users .users-filters-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
}

.s-users .show-users-filter-wrap {
  font-size: 14px;
  color: #CFCFCF;
  margin-right: 30px;
}

.s-users .show-users-select {
  color: #222;
  width: 70px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.s-users .show-users-select select {
  padding-right: 24px;
  background-position: right 10px center;
}

.s-users .search-input {
  width: 250px;
}

.s-users .pagination-nav {
  padding-top: 20px;
}

.s-users .pagination-nav .pagination-nums {
  padding: 0;
}

.s-users .pagination-nav li {
  margin-right: 0;
}

.s-users .pagination-nav li a {
  border: none;
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 40px;
  border-right: 2px;
}

.tt-tag-list-wrap {
  overflow: hidden;
  height: 50px;
  padding-right: 43px;
}

.tt-tag-list-wrap li {
  background: #D2F1FC;
  color: #222;
}

.tt-tag-list-wrap li.hidden-count {
  left: calc(100% - 43px);
  right: auto;
}

.user-tab .user-heading {
  white-space: nowrap;
}

.user-tab .user-heading .admin-icon {
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  bottom: 2px;
}

.user-tab .user-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.user-tab .email-col {
  text-align: right;
  width: 350px;
  white-space: nowrap;
}

.user-tab .email-col .tab-heading {
  direction: ltr;
}

.user-tab .tel-col {
  text-align: right;
  padding-left: 10px;
  width: 210px;
  white-space: nowrap;
}

.user-tab .tt-col {
  width: 543px;
}

.user-tab .tabrow {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.user-tab .tab-buttons-col {
  width: 330px;
  padding-top: 20px;
}

.user-tab--not-logged {
  border-left-color: #CFCFCF;
}

.user-tab--not-logged .admin-icon path {
  fill: #CFCFCF;
}

.user-tab--not-logged .edit-btn {
  color: #CFCFCF;
}

.user-tab--not-logged .tt-tag-list-wrap li {
  background: #CFCFCF;
}

.user-tab--not-logged .tt-tag-list-wrap li.hidden-count {
  background: #F1F1F1;
}

.s-user-edit h2 {
  margin-bottom: 25px;
  margin-top: 35px;
}

.s-user-edit .user-edit-wrap {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

.s-user-edit .user-edit-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.s-user-edit .user-edit-label-wrap {
  width: 270px;
  padding-right: 20px;
  padding-top: 10px;
}

.s-user-edit .user-edit-label-wrap label {
  font-size: 16px;
  color: #9F9F9F;
}

.s-user-edit .radios {
  padding-top: 10px;
}

.s-user-edit .radios .radio-wrap {
  margin-bottom: 20px;
}

.s-user-edit .radios .radio-wrap:last-child {
  margin-bottom: 0;
}

.s-user-edit .user-edit-val {
  color: #9F9F9F;
  padding: 12px  10px;
  padding-right: 0;
}

.s-user-edit .user-edit-info {
  width: calc(100% - 270px);
  position: relative;
}

.s-user-edit .user-edit-info input {
  width: 100%;
}

.s-user-edit .user-edit-info .intl-tel-input {
  width: 100%;
}

.s-user-edit .user-edit-info .select-style-wrap {
  position: relative;
}

.s-user-edit .user-edit-info .error-message {
  width: 100%;
}

.s-user-edit .user-edit-info .select-style {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.s-user-edit .user-edit-info .select-style select {
  border: none;
  background-color: #F1F1F1;
  border-radius: 2px;
  padding: 12px 45px 12px 163px;
}

.s-user-edit .user-edit-info .select-style .select-placeholder {
  position: absolute;
  top: 12px;
  left: 20px;
  color: #9F9F9F;
}

.s-user-edit .user-edit-info .select-style .select-placeholder option {
  padding: 0;
  background: #fff;
}

.s-user-edit .add-trade-point-btn {
  padding: 11px;
  width: 250px;
  text-transform: uppercase;
}

.s-user-edit .edit-main-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}

.s-user-edit .edit-main-buttons button {
  width: 210px;
  padding: 11px;
  text-transform: uppercase;
}

.s-user-edit .added-tradepoint-item {
  border: 1px solid #F1F1F1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  padding: 11px 40px 11px 20px;
  position: relative;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.s-user-edit .added-tradepoint-item .btn-del {
  position: absolute;
  background: none;
  padding: 0;
  top: 12px;
  right: 19px;
}

.s-user-edit .added-tradepoint-item .btn-del .del-icon:hover path {
  fill: #FF5252;
}

.s-user-edit .checkbox-label {
  margin-bottom: 10px;
  width: 100%;
  line-height: 1.2;
}

.s-user-edit .checkbox-txt-wrap {
  width: 100%;
}

.s-user-edit .checkbox-txt {
  font-size: 16px;
  max-width: calc(100% - 32px);
}

@media only screen and (max-width: 1439px) {
  .s-users .add-user-btn {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .s-users .users-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 1050px) {
  .user-tab .email-col {
    width: 210px;
  }
  .user-tab .tel-col {
    width: 165px;
  }
  .user-tab .botrow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .user-tab .tt-col {
    width: 603px;
  }
  .user-tab .tab-buttons-col {
    padding-top: 10px;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.s-user-ed-settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.s-user-ed-settings .user-edit-wrap {
  margin: 0;
}

.s-user-ed-settings .change-phone-btn {
  min-width: 215px;
  margin-top: 20px;
}

.s-user-ed-settings .change-phone-btn.active {
  margin-bottom: 10px;
}

.s-user-ed-settings .sms-wrap {
  text-align: right;
  position: relative;
}

.s-user-ed-settings .input-sms-wrap {
  position: relative;
  margin-bottom: 20px;
}

.s-user-ed-settings .input-sms-wrap .error-message {
  width: 320px;
}

.s-user-ed-settings .sms-code::-webkit-input-placeholder {
  color: #f1f1f1;
}

.s-user-ed-settings .sms-code::-moz-placeholder {
  color: #f1f1f1;
}

.s-user-ed-settings .sms-code:-ms-input-placeholder {
  color: #f1f1f1;
}

.s-user-ed-settings .sms-code::-ms-input-placeholder {
  color: #f1f1f1;
}

.s-user-ed-settings .sms-code::placeholder {
  color: #f1f1f1;
}

.s-user-ed-settings .confirm-code-btn {
  min-width: 215px;
}

@media only screen and (max-width: 1249px) {
  .s-user-ed-settings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .s-user-ed-settings .user-settings-sidebar {
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .s-user-ed-settings .user-edit-wrap {
    margin: 0 auto;
  }
}

.s-providers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.providers-sidebar .providers-sidebar-selects .sidebar-select {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1439px) {
  .providers-sidebar .providers-sidebar-selects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0;
  }
  .providers-sidebar .providers-sidebar-selects .sidebar-select {
    width: 250px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}

.provider-tabs {
  margin-right: -20px;
  margin-bottom: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.provider-tab {
  width: calc(50% - 20px);
  margin-right: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-right: 1px solid #F1F1F1;
  border-left: 5px solid #3ab3df;
  position: relative;
  padding: 20px 20px 10px 25px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  z-index: 2;
  background: #fff;
}

.provider-tab--green {
  border-left-color: #4FBA7E;
}

.provider-tab:after, .provider-tab:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #F1F1F1;
  z-index: -1;
}

.provider-tab:before {
  top: 0;
}

.provider-tab:after {
  bottom: 0px;
}

.provider-tab .provider-tab-name {
  line-height: 1.1;
  font-size: 20px;
  height: 44px;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
}

@supports (-webkit-line-clamp: 2) {
  .provider-tab .provider-tab-name {
    display: -webkit-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-line-clamp: 2;
  }
}

.provider-tab .provider-tab-toprow {
  padding-bottom: 10px;
  position: relative;
}

.provider-tab .provider-tab-toprow:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
}

.provider-tab .provider-tab-midrow {
  padding: 29px 20px 45px 25px;
  position: relative;
  margin-left: -25px;
  margin-right: -20px;
  overflow: hidden;
  position: relative;
}

.provider-tab .provider-tab-botrow {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.provider-tab .provider-tab-botrow:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  border-top: 1px solid #f1f1f1;
}

.provider-tab .tab-heading {
  color: #9F9F9F;
  margin-bottom: 20px;
}

.provider-tab .about-provider-btn {
  margin-left: auto;
}

.provider-tab .product-groups-list-wrap {
  overflow: hidden;
  height: 50px;
}

.provider-tab .product-groups-list-wrap li.hidden-count {
  left: calc(100% - 43px);
  right: auto;
}

.provider-tab .provider-tab-banner {
  position: absolute;
  left: 0;
  right: 0px;
  top: -1px;
  bottom: -1px;
  background: #fff;
  -webkit-transition: opacity 0.3s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 10;
  visibility: visible;
  opacity: 1;
  padding: 15px;
}

.provider-tab .provider-tab-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #F1F1F1;
}

.provider-tab .provider-tab-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.provider-tab:hover {
  z-index: 1;
}

.provider-tab:hover .provider-tab-banner {
  visibility: hidden;
  -webkit-transform: translateY(calc(100% + 100px));
      -ms-transform: translateY(calc(100% + 100px));
          transform: translateY(calc(100% + 100px));
  opacity: 0;
  z-index: -1;
}

@media only screen and (max-width: 1050px) {
  .provider-tab {
    padding: 10px 14px 10px 18px;
    font-size: 12px;
  }
  .provider-tab .provider-tab-name {
    font-size: 18px;
    height: 40px;
  }
  .provider-tab .provider-tab-midrow {
    padding-left: 18px;
    padding-right: 14px;
    padding-bottom: 40px;
    padding-top: 20px;
    margin-left: -18px;
    margin-right: -14px;
  }
  .provider-tab .tab-heading {
    margin-bottom: 15px;
  }
  .provider-tab .noborder-btn {
    font-size: 14px;
  }
}

.s-provider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 80px;
}

.s-provider h2, .s-provider .h2 {
  line-height: 1.2;
  margin: 23px 0;
}

.s-provider .promo-tab {
  width: calc(50% - 20px);
}

.s-provider .all-btn {
  margin-top: 20px;
  min-width: 260px;
}

.s-provider .provider-delivery-txt {
  font-size: 18px;
  margin-bottom: 20px;
}

.s-provider .provider-delivery-txt strong {
  color: #22d3bb;
  font-weight: 600;
}

.s-provider .provider-map {
  height: 330px;
}

@media only screen and (max-width: 1249px) {
  .s-provider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .s-provider .product-groups-list-wrap {
    max-width: 75%;
  }
}

@media only screen and (max-width: 1249px) {
  .provider-sidebar {
    width: 100%;
  }
}

@media only screen and (max-width: 1249px) {
  .provider-display-content {
    width: 100%;
  }
}

.delivery-regions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -20px;
  margin-right: -20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.delivery-region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.33333%;
  padding-right: 20px;
  margin-bottom: 20px;
}

.delivery-region .delivery-region-icon {
  font-size: 0;
}

.delivery-region .delivery-region-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 6px;
  font-size: 18px;
  padding-left: 14px;
}

@media only screen and (max-width: 1439px) {
  .delivery-region .delivery-region-name {
    font-size: 16px;
    padding-top: 7px;
  }
}

@media only screen and (max-width: 1050px) {
  .delivery-region {
    width: 50%;
  }
  .delivery-region .delivery-region-name {
    font-size: 14px;
    padding-top: 8px;
  }
}

.provider-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.provider-h .provider-h-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 30px;
  padding-top: 8px;
  font-size: 24px;
  font-weight: 300;
}

.provider-h .provider-h-logo {
  width: 105px;
  height: auto;
}

@media only screen and (max-width: 1050px) {
  .provider-h .provider-h-txt {
    font-size: 18px;
    padding-top: 11px;
  }
}

.req-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.req-price-row .req-price-button {
  width: 250px;
  margin-left: 20px;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

.req-price-row .req-price-button.disabled-btn {
  padding-top: 11px;
  padding-bottom: 11px;
}

@media only screen and (max-width: 1050px) {
  .req-price-row .req-price-button {
    width: 184px;
  }
}

.s-product-card {
  padding-bottom: 100px;
}

.s-product-card h1, .s-product-card .h1, .s-product-card h2, .s-product-card .h2 {
  margin-bottom: 20px;
}

.s-product-card .product-items-row {
  margin-bottom: 20px;
}

.s-product-card .cart-btn {
  min-width: 250px;
  margin-top: 10px;
}

.s-product-card .more-btn {
  min-width: 250px;
}

.s-product-card .req-price-button {
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 1050px) {
  .s-product-card .cart-btn, .s-product-card .more-btn {
    min-width: 225px;
  }
}

.product-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-template-columns: 520px auto;
  grid-auto-flow: column;
}

@media only screen and (max-width: 1249px) {
  .product-card-content {
    grid-template-columns: 400px auto;
  }
}

@media only screen and (max-width: 1050px) {
  .product-card-content {
    grid-template-columns: 250px auto;
  }
}

.product-card-gallery {
  width: 520px;
  margin-bottom: 20px;
  grid-row: 1/3;
}

@media only screen and (max-width: 1249px) {
  .product-card-gallery {
    width: 400px;
  }
}

@media only screen and (max-width: 1050px) {
  .product-card-gallery {
    width: 250px;
  }
}

.product-card-descr {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
  grid-row: 1/2;
  grid-column: 2;
}

.product-card-descr .secondary-txt {
  margin-bottom: 20px;
  line-height: 1.2;
}

@media only screen and (max-width: 1050px) {
  .product-card-descr .secondary-txt {
    font-size: 16px;
  }
}

.product-card-details {
  font-size: 18px;
  color: #9F9F9F;
  padding-top: 18px;
  border-top: 1px solid #CFCFCF;
}

.product-card-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.product-card-details .product-key {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10px;
}

.product-card-details .product-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
  text-align: right;
}

@media only screen and (max-width: 1050px) {
  .product-card-details {
    font-size: 16px;
  }
}

.product-card-docs {
  grid-row: 2/3;
  grid-column: 2;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-card-docs .download-col-links .download-link-wrap {
  width: 50%;
}

.product-card-docs.break-row {
  grid-column: 1/3;
  padding: 0;
  grid-row: 3/4;
}

.product-card-docs.break-row .download-col-links .download-link-wrap {
  width: 25%;
}

@media only screen and (max-width: 1249px) {
  .product-card-docs {
    grid-column: 1/3;
    padding: 0;
    grid-row: 2/3;
  }
  .product-card-docs.break-row .download-col-links .download-link-wrap {
    width: 50%;
  }
}

.purchases-chart-wrap {
  height: 360px;
  width: 100%;
}

.purchases-chart-wrap .purchases-chart {
  width: 100%;
  height: 100%;
}

.purchases-chart-wrap .purchases-chart text {
  font-size: 10px;
}

.purchases-chart-wrap .axis path, .purchases-chart-wrap .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.purchases-chart-wrap .axis .tick:nth-child(2) {
  display: none;
}

.purchases-chart-wrap .axis.x .domain {
  stroke: #9F9F9F;
}

.purchases-chart-wrap .axis.x line {
  stroke: #9F9F9F;
}

.purchases-chart-wrap .axis.y .domain {
  stroke: #22D3BB;
}

.purchases-chart-wrap .axis.y line {
  stroke: #22D3BB;
}

.purchases-chart-wrap .grid line {
  stroke: #F1F1F1;
}

.purchases-chart-wrap .grid .domain {
  display: none;
}

.purchases-chart-wrap .grid .tick:nth-child(2) {
  display: none;
}

.purchases-chart-wrap .line {
  fill: none;
  stroke: steelblue;
  stroke-width: 2px;
}

.purchases-chart-wrap #chart {
  width: 100%;
  height: 100%;
  position: absolute;
}

@media only screen and (max-width: 1050px) {
  .purchases-chart-wrap {
    height: 300px;
  }
  .purchases-chart-wrap .purchases-chart text {
    font-size: 8px;
  }
}

.slick-prev,
.slick-next {
  z-index: 1;
  width: 40px;
  height: 50px;
  opacity: .7;
  background-image: url(/img/slider-arrows.svg);
  font-size: 0;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none !important;
}

.slick-prev:before,
.slick-next:before {
  font-size: 0;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
  background-image: url(/img/slider-arrows.svg);
}

.slick-prev {
  left: 0;
  background-position: left center;
}

.slick-prev:hover, .slick-prev:focus {
  background-position: left center;
}

.slick-next {
  right: 0;
  background-position: right center;
}

.slick-next:hover, .slick-next:focus {
  background-position: right center;
}

.product-gallery-main {
  text-align: center;
}

.product-gallery-main .product-gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  text-align: center;
  width: 520px;
  height: 430px;
  cursor: pointer;
}

.product-gallery-main .product-gallery-item.video {
  padding: 0;
}

.product-gallery-main img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  visibility: hidden;
}

.product-gallery-main.slick-initialized img {
  visibility: visible;
}

.product-gallery-main .product-video {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 1050px) {
  .product-gallery-main .product-gallery-item {
    height: 280px;
    padding: 15px;
  }
}

.product-gallery-thumbs {
  margin-top: 20px;
  overflow: hidden;
}

.product-gallery-thumbs .slick-prev,
.product-gallery-thumbs .slick-next {
  visibility: hidden;
  -webkit-transform: translateY(-300px);
      -ms-transform: translateY(-300px);
          transform: translateY(-300px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-gallery-thumbs .slick-list {
  padding: 0 !important;
  margin: 0 -24px;
}

.product-gallery-thumbs .slick-slide {
  margin: 0 24px;
}

.product-gallery-thumbs .product-gallery-thumb {
  width: 90px;
  height: 90px;
  padding: 5px;
  text-align: center;
}

.product-gallery-thumbs .product-gallery-thumb img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.product-gallery-thumbs .product-gallery-thumb .video-icon {
  width: 60px;
  max-width: 100%;
}

.product-gallery-thumbs .slick-current .product-gallery-thumb {
  border: 1px solid #3AB3DF;
}

.product-gallery-thumbs:hover .slick-prev,
.product-gallery-thumbs:hover .slick-next {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: visible;
}

@media only screen and (max-width: 1050px) {
  .product-gallery-thumbs .product-gallery-thumb {
    width: 60px;
    height: 60px;
  }
}

.popup-product-gallery-main {
  text-align: center;
}

.popup-product-gallery-main .product-gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  text-align: center;
  width: 520px;
  height: 460px;
  cursor: pointer;
}

.popup-product-gallery-main .product-gallery-item.video {
  padding: 0;
}

.popup-product-gallery-main img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.popup-product-gallery-main .product-video {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 0;
}

.popup-product-gallery-thumbs {
  margin-top: 20px;
  overflow: hidden;
}

.popup-product-gallery-thumbs .slick-prev,
.popup-product-gallery-thumbs .slick-next {
  visibility: hidden;
  -webkit-transform: translateY(-300px);
      -ms-transform: translateY(-300px);
          transform: translateY(-300px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.popup-product-gallery-thumbs .slick-list {
  padding: 0 !important;
  margin: 0;
  margin-right: -24px;
}

.popup-product-gallery-thumbs .slick-slide {
  margin: 0 24px;
  max-width: 80px;
}

.popup-product-gallery-thumbs .slick-slide:first-child {
  margin-left: 0;
}

.popup-product-gallery-thumbs .product-gallery-thumb {
  width: 80px;
  height: 80px;
  padding: 5px;
  text-align: center;
}

.popup-product-gallery-thumbs .product-gallery-thumb img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.popup-product-gallery-thumbs .product-gallery-thumb .video-icon {
  width: 60px;
  max-width: 100%;
}

.popup-product-gallery-thumbs .slick-current .product-gallery-thumb {
  border: 1px solid #3AB3DF;
}

.popup-product-gallery-thumbs:hover .slick-prev,
.popup-product-gallery-thumbs:hover .slick-next {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: visible;
}

.mfp-wrap .product-card-gallery-popup {
  display: block;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.product-card-gallery-popup-inner {
  padding: 30px;
  background: #ffffff;
  margin: auto;
  position: relative;
}

.product-card-gallery-popup-inner .h2 {
  margin-bottom: 50px;
}

@media only screen and (min-width: 767px) {
  header.main-head .mob-menu-opener {
    display: none;
  }
  header.main-head .mob-search {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  html.main-menu-active {
    left: 0;
  }
  body.media-mobile header.main-head {
    -webkit-box-shadow: none;
            box-shadow: none;
    min-width: auto;
    position: relative;
    padding: 8px 0 8px;
  }
  body.media-mobile .header-lang__list {
    background-color: transparent;
  }
  body.media-mobile header.main-head.nav-up {
    top: 0;
  }
  body.media-mobile header.main-head .row {
    position: relative;
  }
  body.media-mobile header.main-head .catalog-button-wrap {
    display: none;
  }
  body.media-mobile header.main-head .left-col {
    width: auto;
    padding: 0;
    float: none;
  }
  body.media-mobile header.main-head .search-form {
    margin-left: 0;
    margin-bottom: 12px;
  }
  body.media-mobile header.main-head .main-menu {
    display: none;
  }
  body.media-mobile header.main-head .logo {
    display: block;
    text-align: center;
  }
  body.media-mobile header.main-head .logo img {
    width: 160px;
  }
  body.media-mobile header.main-head .right-col {
    float: none;
    width: 100%;
  }
  body.media-mobile header.main-head .address-wrap {
    width: 100%;
  }
  body.media-mobile header.main-head .hovering-cart-item-wrap {
    margin-right: 18px;
  }
  body.media-mobile header.main-head .counting-items-wrap {
    float: none;
    position: absolute;
    right: 0;
    bottom: calc(100% + 74px);
  }
  body.media-mobile header.main-head .count-name {
    display: none;
  }
  body.media-mobile header.main-head .count-number-wrap {
    position: relative;
    z-index: 1;
  }
  body.media-mobile header.main-head .count-number {
    border-radius: 100px;
    background: #f1f1f1;
    padding: 3px 2.5px;
    font-size: 8px;
    text-align: center;
    min-width: auto;
  }
  body.media-mobile header.main-head .count-number img {
    width: 18px;
    position: relative;
    z-index: -1;
  }
  body.media-mobile header.main-head .count-number .counting-item-icon {
    top: 4px;
    right: calc(100%  - 7px);
    z-index: -1;
  }
  body.media-mobile header.main-head .counting-item:last-child {
    margin-right: 0;
  }
  body.media-mobile header.main-head .hovering-cart-item-wrap:hover .cart-items-wrap {
    display: none;
  }
  body.media-mobile header.main-head .address-wrap select {
    height: 40px;
    padding-left: 30px;
    font-size: 14px;
    background-position: calc(100% - 8px) center;
    background-size: 10px 6px;
  }
  body.media-mobile header.main-head .address-wrap .select-style:before {
    top: 13px;
    left: 8px;
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  body.media-mobile header.main-head .mob-menu-opener {
    display: block;
    position: absolute;
    left: 0;
    top: 24px;
  }
  body.media-mobile header.main-head .mob-menu-opener::before {
    content: "";
    position: absolute;
    left: -7px;
    right: -7px;
    top: -20px;
    bottom: -20px;
  }
  body.media-mobile header.main-head .mob-menu-opener-inner {
    width: 20px;
    height: 2px;
    color: #3ab3df;
    position: relative;
    background: currentColor;
  }
  body.media-mobile header.main-head .mob-menu-opener-inner::before, body.media-mobile header.main-head .mob-menu-opener-inner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
  }
  body.media-mobile header.main-head .mob-menu-opener-inner::before {
    top: -6px;
  }
  body.media-mobile header.main-head .mob-menu-opener-inner::after {
    bottom: -6px;
  }
  body.media-mobile header.main-head .mob-search {
    display: block;
    position: absolute;
    left: 33px;
    top: 15px;
  }
  body.media-mobile header.main-head .mob-search-img {
    width: 19px;
  }
  body.media-mobile.fixed-head-indent {
    padding-top: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  body.media-mobile {
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.media-mobile footer.main-footer {
    margin-top: auto;
    position: static;
  }
  body.media-mobile .foot-col {
    float: none;
    width: 100%;
    margin-bottom: 25px;
  }
  body.media-mobile .foot-col:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  body.media-mobile .s-main-offer {
    padding: 8px 0;
  }
  body.media-mobile .main-offer-slider-wrap {
    float: none;
  }
  body.media-mobile .main-offer-slider {
    height: auto;
  }
  body.media-mobile .main-offer-slider {
    width: 100%;
  }
  body.media-mobile .main-offer-slider.owl-carousel {
    width: 100%;
  }
  body.media-mobile .main-offer-slider img {
    width: 100%;
  }
  body.media-mobile .main-offer-slider.owl-carousel .owl-item img {
    width: 100%;
  }
  body.media-mobile .main-offer-slider.owl-carousel .owl-controls {
    display: none;
  }
  body.media-mobile .s-main-products-slider {
    padding: 8px 0;
  }
  body.media-mobile .s-main-products-slider .owl-controls .owl-nav {
    display: none;
  }
  body.media-mobile .s-main-products-slider .h2 {
    font-size: 14px;
  }
  body.media-mobile .s-main-products-slider .product-items-carousel {
    margin-top: 16px;
    padding: 0 15px;
  }
  body.media-mobile .s-main-products-slider .product-items-carousel .owl-item {
    visibility: hidden;
  }
  body.media-mobile .s-main-products-slider .product-items-carousel .owl-item.active {
    visibility: visible;
  }
  body.media-mobile .s-hit-products {
    padding-bottom: 80px;
  }
  body.media-mobile .s-main-products-slider .owl-item.active.first .product-item-wrap.hover .item-zoom-group {
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin: 0;
  }
  body.media-mobile .s-main-products-slider .owl-item.active.last .product-item-wrap.hover .item-zoom-group {
    margin: 0;
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.product-item-wrap .col-title-bottom {
  display: none;
}

.product-item-wrap .product-item-cancel {
  display: none;
}

.product-item-wrap .item-recommend {
  display: none;
}

.product-item-wrap .col-select {
  display: none;
}

.product-item-wrap .col-av {
  display: none;
}

@media only screen and (min-width: 767px) {
  .product-item-wrap .col-3 .mob-hover-visible {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  html.main-menu-active header.main-head:not(.main-page) {
    left: 0;
  }
  body.media-mobile .product-item-wrap {
    height: 320px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    -webkit-transition: 0s all !important;
    -o-transition: 0s all !important;
    transition: 0s all !important;
  }
  body.media-mobile .product-item-wrap * {
    -webkit-transition: 0s all !important;
    -o-transition: 0s all !important;
    transition: 0s all !important;
  }
  body.media-mobile .product-item-wrap a, body.media-mobile .product-item-wrap img {
    pointer-events: none;
    z-index: -1;
  }
  body.media-mobile .product-item-wrap .item-zoom-group::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  body.media-mobile .product-item-wrap.on-touch .item-zoom-group::after {
    z-index: 100;
    background-color: rgba(97, 173, 242, 0.3);
    -webkit-transition: background 0.75s linear;
    -o-transition: background 0.75s linear;
    transition: background 0.75s linear;
  }
  body.media-mobile .product-item-wrap.hover a, body.media-mobile .product-item-wrap.hover img {
    pointer-events: auto;
    z-index: 1;
  }
  body.media-mobile .product-item-wrap .product-item-tab-page.active {
    height: 320px;
  }
  body.media-mobile .product-item-wrap .item-zoom-group {
    padding-top: 15px;
    min-height: 320px;
  }
  body.media-mobile .product-item-wrap .item-prop {
    margin-bottom: 7px;
    width: 43px;
    line-height: 14px;
    font-size: 8px;
  }
  body.media-mobile .product-item-wrap .product-item-cancel {
    position: absolute;
    right: 13px;
    top: 13px;
    z-index: 20;
  }
  body.media-mobile .product-item-wrap .product-item-cancel::before {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    top: -15px;
    bottom: -15px;
  }
  body.media-mobile .product-item-wrap .product-item-cancel-img {
    width: 13px;
    height: auto;
    display: block;
  }
  body.media-mobile .product-item-wrap .item-select-style {
    width: 48px;
  }
  body.media-mobile .product-item-wrap .item-select {
    border-radius: 2px;
    padding-left: 6px;
    padding-right: 20px;
    font-size: 10px;
    color: #3AB3DF;
    width: 100%;
    background-size: 11px 6px;
    background-position: right 7px center;
  }
  body.media-mobile .product-item-wrap .right-items-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.media-mobile .product-item-wrap .action {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  body.media-mobile .product-item-wrap .action, body.media-mobile .product-item-wrap .bonus, body.media-mobile .product-item-wrap .neighbors {
    margin: 0;
  }
  body.media-mobile .product-item-wrap .action {
    margin-right: 4px;
  }
  body.media-mobile .product-item-wrap .bonus {
    margin-top: 3px;
  }
  body.media-mobile .product-item-wrap .bonus-quntity {
    font-size: 14px;
  }
  body.media-mobile .product-item-wrap .col-av {
    width: 70px;
    text-align: center;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 48px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    margin-left: auto;
    margin-right: 10px;
  }
  body.media-mobile .product-item-wrap .action-descr {
    width: 328px;
    left: -70px;
  }
  body.media-mobile .product-item-wrap .action-descr:before {
    left: 62px;
  }
  body.media-mobile .product-item-wrap .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.media-mobile .product-item-wrap .btn-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  body.media-mobile .product-item-wrap .input-number {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: auto;
    font-size: 14px;
  }
  body.media-mobile .product-item-wrap.hover {
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s;
  }
  body.media-mobile .product-item-wrap.hover * {
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s;
  }
  body.media-mobile .product-item-wrap.hover .product-item--req-price .col-provider-h {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    width: 130px;
    padding-left: 40px;
    margin-bottom: 5px;
    padding-top: 5px;
  }
  body.media-mobile .product-item-wrap.hover .col-provider {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
  body.media-mobile .product-item-wrap.hover .product-item-photo {
    height: 184px;
    max-width: calc(100% - 35px);
    margin-left: auto;
    margin-right: auto;
  }
  body.media-mobile .product-item-wrap.hover .item-prop {
    width: 69px;
    line-height: 20px;
    font-size: 10px;
    margin-bottom: 10px;
  }
  body.media-mobile .product-item-wrap.hover .item-zoom-group {
    width: 345px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  }
  body.media-mobile .product-item-wrap.hover .product-item-cancel {
    display: block;
  }
  body.media-mobile .product-item-wrap.hover .product-item {
    width: 315px;
  }
  body.media-mobile .product-item-wrap.hover .product-item-name {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    font-size: 14px;
    min-height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 8px;
  }
  body.media-mobile .product-item-wrap.hover .item-main-prop {
    line-height: 1.333;
    font-size: 12px;
    margin-bottom: 8px;
  }
  body.media-mobile .product-item-wrap.hover .product-item--req-price .col-provider {
    width: 165px;
    font-size: 14px;
    padding-left: 40px;
    position: relative;
    margin-bottom: -18px;
  }
  body.media-mobile .product-item-wrap.hover .mob-hover-hidden {
    display: none !important;
  }
  body.media-mobile .product-item-wrap.hover .mob-hover-visible {
    display: initial;
  }
  body.media-mobile .product-item-wrap.hover .col-title {
    font-size: 8px;
    text-align: center;
    line-height: 1.1;
  }
  body.media-mobile .product-item-wrap.hover .col-title-bottom {
    display: block;
    border-top: 1px solid #F1F1F1;
    padding-top: 2px;
    margin-top: 2px;
  }
  body.media-mobile .product-item-wrap.hover .item-recommend {
    display: block;
    color: #9F9F9F;
    line-height: 1.1;
    font-size: 8px;
  }
  body.media-mobile .product-item-wrap.hover .item-price {
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
    margin-bottom: 4px;
  }
  body.media-mobile .product-item-wrap.hover .item-price > * {
    vertical-align: middle;
  }
  body.media-mobile .product-item-wrap.hover .item-price .price-cur {
    position: static;
    top: 0;
  }
  body.media-mobile .product-item-wrap.hover .col-2 {
    display: none;
  }
  body.media-mobile .product-item-wrap .row--header {
    margin-bottom: 14px;
  }
  body.media-mobile .product-item-wrap.hover .row--header .col-5 {
    display: none;
  }
  body.media-mobile .product-item-wrap.hover .col-5 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    padding-left: 8px;
    padding-right: 13px;
    width: 63px;
  }
  body.media-mobile .product-item-wrap.hover .col-select {
    display: block;
    padding-left: 8px;
    width: 56px;
  }
  body.media-mobile .product-item-wrap.hover .col-av {
    display: block;
  }
  body.media-mobile .product-item-wrap.hover .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.media-mobile .product-item-wrap.hover .row--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
  }
  body.media-mobile .product-item-wrap.hover .row--header .col-1 {
    width: 120px;
    padding: 0 0 0 8px;
  }
  body.media-mobile .product-item .col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  body.media-mobile .product-item-wrap.hover .row--header .col-3 {
    width: auto;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  body.media-mobile .product-item-wrap.hover .row--header .col-4 {
    width: 128px;
  }
  body.media-mobile .product-item-wrap.hover .row:not(.row--header) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8px;
  }
  body.media-mobile .product-item-wrap.hover .row:not(.row--header) .col-1 {
    padding: 0 0 0 8px;
    width: 155px;
  }
  body.media-mobile .product-item-wrap.hover .row:not(.row--header) .col-4 {
    text-align: right;
    width: calc(100% - 155px);
    padding-left: 10px;
    margin-bottom: 8px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  body.media-mobile .product-item-wrap.hover .row:not(.row--header) .col-3 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    width: 128px;
    padding: 0;
    text-align: right;
  }
  body.media-mobile .product-item {
    width: 144px;
    font-size: 12px;
  }
  body.media-mobile .product-item .product-item-photo-link {
    width: auto;
    height: auto;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
  body.media-mobile .product-item .product-item-photo {
    height: 144px;
    line-height: 144px;
    margin-bottom: 34px;
  }
  body.media-mobile .product-item .product-item-name {
    font-size: 12px;
    line-height: 1.333;
    min-height: 48px;
    margin-bottom: 5px;
  }
  body.media-mobile .product-item .row {
    font-size: 10px;
  }
  body.media-mobile .product-item .col-title {
    font-size: 12px;
    margin-bottom: 0;
  }
  body.media-mobile .product-item .col-1 {
    width: 50px;
    padding-right: 7px;
  }
  body.media-mobile .product-item .col-2 {
    width: 50px;
    padding-right: 7px;
  }
  body.media-mobile .product-item .col-4 {
    width: 44px;
  }
  body.media-mobile .product-item .col-provider {
    width: 44px;
  }
  body.media-mobile .product-item .hidden-count {
    font-size: 10px;
    margin-top: 10px;
  }
  body.media-mobile .product-item .cart-button,
  body.media-mobile .product-item .req-price-button {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 8px;
    border-radius: 2px;
    text-transform: uppercase;
  }
}

@media only screen and (min-width: 768px) {
  .s-catalogue-content .catalogue-top-mobile .filters-btn--sort {
    display: none;
  }
  .s-catalogue-content .catalogue-top-mobile .filters-btn-txt {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .s-catalogue-content {
    padding-top: 0px;
  }
  .s-catalogue-content .catalogue-top-mobile .filters-btn {
    top: 0;
  }
  .catalogue-breadcrumbs-top .right-sort-group {
    text-align: center;
    float: none;
  }
  .catalogue-breadcrumbs-top .layout-change-item {
    display: none;
  }
  .catalogue-breadcrumbs-top .select-style {
    margin-right: 0;
  }
  .catalogue-breadcrumbs-top .catalogue-breadcrumbs {
    margin-bottom: 50px;
  }
  .catalogue-breadcrumbs {
    font-size: 10px;
    padding: 7px 0 0;
    margin: 0;
  }
  .catalogue-breadcrumbs li {
    margin-right: 22px;
  }
  .catalogue-breadcrumbs li::after {
    left: calc(100% + 7px);
    width: 9px;
    height: 6px;
  }
  .section .filters-btn.active, section .filters-btn.active {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #F1F1F1;
  }
  aside.catalogue-sidebar.hiding:before {
    display: none;
  }
  .s-catalogue-content .catalogue-top-mobile {
    position: relative;
    margin-bottom: 10px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .s-catalogue-content .catalogue-top-mobile .filters-btn {
    position: relative;
    font-size: 14px;
    color: #3AB3DF;
    width: 50px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 8px;
    border: 1px solid #F1F1F1;
    border-radius: 2px;
    padding: 8px 10px;
  }
  .s-catalogue-content .catalogue-top-mobile .filters-btn:last-child {
    margin-right: 0;
  }
  .s-catalogue-content .catalogue-top-mobile .filters-btn .svg {
    display: none;
  }
  aside.catalogue-sidebar.hiding.active {
    left: 15px;
    top: 32px;
  }
  body.media-mobile .catalogue-product-items .see-more-wrap {
    height: 320px;
  }
  body.media-mobile .catalogue-product-items .product-item-wrap, body.media-mobile .catalogue-product-items .see-more-wrap {
    width: 50%;
  }
  body.media-mobile .catalogue-product-items .see-more-wrap .see-more-arrow {
    margin-bottom: 15px;
  }
  body.media-mobile .catalogue-product-items .see-more-wrap .see-more-arrow .svg {
    width: 110px;
    height: 150px;
  }
  body.media-mobile .catalogue-product-items .see-more-wrap .see-more-fiction-btn {
    max-width: 100%;
    font-size: 12px;
  }
  body.media-mobile .catalogue-product-items .product-item-wrap:nth-child(n).hover .item-zoom-group {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: auto;
    right: auto;
    margin: 0;
  }
  body.media-mobile .catalogue-product-items .product-item-wrap:nth-child(2n+1) {
    margin-bottom: 16px;
  }
  body.media-mobile .catalogue-product-items .product-item-wrap:nth-child(2n+1).hover .item-zoom-group {
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin: 0;
  }
  body.media-mobile .catalogue-product-items .product-item-wrap:nth-child(2n) {
    margin-bottom: 16px;
  }
  body.media-mobile .catalogue-product-items .product-item-wrap:nth-child(2n).hover .item-zoom-group {
    margin: 0;
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.s-magic-templates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.file-label {
  position: relative;
  -o-text-overflow: hidden;
     text-overflow: hidden;
  cursor: pointer;
  width: 100%;
  display: inline-block;
}

.file-label__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label__icon {
  vertical-align: middle;
  margin-right: 15px;
  width: 19px;
  height: 16px;
}

.file-label__txt {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.file-label__btn {
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1439px) {
  .file-label__error {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.file-label__error::before {
  left: 10%;
}

@media only screen and (max-width: 1439px) {
  .file-label__error::before {
    left: 50%;
  }
}

.file-label:hover .file-label__txt {
  text-decoration: none;
}

.magic-wait {
  text-align: center;
  padding: 60px 0;
}

@media only screen and (max-width: 1439px) {
  .magic-wait {
    padding: 70px 0;
  }
}

.magic-wait__title {
  font-size: 24px;
  color: #cfcfcf;
  margin-bottom: 30px;
  font-size: 1.1;
}

@media only screen and (max-width: 1050px) {
  .magic-wait__title {
    font-size: 18px;
  }
}

.preloader {
  text-align: center;
}

.preloader__text {
  color: #cfcfcf;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1050px) {
  .preloader__text {
    font-size: 12px;
  }
}

.preloader__spinner {
  display: inline-block;
  width: 70px;
  height: 70px;
}

@media only screen and (max-width: 1050px) {
  .preloader__spinner {
    width: 60px;
    height: 60px;
  }
}

.magic-sidebar__info {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -20px;
  }
}

@media only screen and (max-width: 1050px) {
  .magic-sidebar-form {
    margin: 0;
  }
}

.magic-sidebar-form__step {
  padding-bottom: 20px;
  position: relative;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form__step {
    width: 33.333%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1050px) {
  .magic-sidebar-form__step:first-child {
    padding-left: 0;
  }
  .magic-sidebar-form__step:last-child {
    padding-right: 0;
  }
}

.magic-sidebar-form__step::before {
  content: "";
  position: absolute;
  left: 14.5px;
  top: 0;
  height: 100%;
  width: 0;
  border-left: 1px dashed #F1F1F1;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form__step::before {
    width: calc(33.333vw - 33px);
    height: 1px;
    left: 50%;
    top: 14.5px;
    border-left: none;
    border-top: 1px dashed #F1F1F1;
  }
}

@media only screen and (max-width: 1249px) {
  .magic-sidebar-form__step::before {
    width: calc(33.333vw - 10px);
  }
}

.magic-sidebar-form__step:last-child::before {
  display: none;
}

.magic-sidebar-form__step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form__step-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 1050px) {
  .magic-sidebar-form__step-title {
    font-size: 14px;
  }
}

.magic-sidebar-form__step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f1f1f1;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #b46cd2;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form__step-number {
    margin-bottom: 20px;
  }
}

.magic-sidebar-form__select {
  padding-left: 40px;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form__select {
    padding-left: 0;
  }
}

.magic-sidebar-form__btn {
  padding-left: 40px;
}

@media only screen and (max-width: 1439px) {
  .magic-sidebar-form__btn {
    padding-left: 0;
  }
}

.magic-sidebar-form__submit-btn {
  width: 100%;
}

.s-magic-order {
  counter-reset: cart-counter;
  padding-bottom: 100px;
}

.s-magic-order__data {
  padding: 23px 20px 25px 30px;
  border: 1px solid #F1F1F1;
  border-left: none;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  .s-magic-order__data {
    padding: 20px 20px 20px 30px;
  }
}

.s-magic-order__data::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 5px;
  background-color: #3ab3df;
}

.s-magic-order__data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.s-magic-order__data-row + .s-magic-order__data-row {
  margin-top: 30px;
}

.s-magic-order__data-key {
  color: #9f9f9f;
  width: 15.15%;
  padding-bottom: 6px;
}

@media only screen and (max-width: 1050px) {
  .s-magic-order__data-key {
    width: 22%;
  }
}

.s-magic-order__data-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 5px;
  border-bottom: 1px solid #F1F1F1;
  padding-left: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.s-magic-order__data-value-edit {
  margin-left: auto;
  padding: 0;
  background: transparent;
  padding: 3px;
}

.s-magic-order__data-value-edit:hover, .s-magic-order__data-value-edit:focus {
  background: transparent;
}

.s-magic-order__data-value-edit .svg {
  width: 14px;
  display: block;
  height: 14px;
}

.s-magic-order__data-value-edit .svg path {
  fill: #CFCFCF;
}

.s-magic-order__data-value-input {
  padding: 0;
  border: none;
  width: auto;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}

.s-magic-order__data-value-input[disabled] {
  color: #9f9f9f;
}

.s-magic-order__actions {
  text-align: right;
  padding-top: 20px;
}

.s-magic-order__action-btn {
  width: 250px;
}

@media only screen and (max-width: 1050px) {
  .s-magic-order__action-btn {
    width: 224px;
  }
}

.s-magic-order__action-btn_cancel {
  margin-right: 17px;
}

.s-cart_inner {
  counter-reset: none;
  padding: 0;
}

.magic-order-table .t-select select {
  background-image: url(../img/down-blue.svg);
}

@media only screen and (max-width: 1249px) {
  .magic-order-table .t-select select {
    font-size: 10px;
  }
}

.magic-order-table__mark {
  padding-top: 7px;
  padding-right: 7px;
}

.magic-order-table__mark-icon {
  width: 14px;
  height: 12px;
}

.magic-order-table__mark-icon_warning path {
  fill: #FFB74D;
}

.magic-order-table__edit {
  margin-left: auto;
  padding: 0;
  background: transparent;
  margin-left: 17px;
  vertical-align: middle;
  position: relative;
  bottom: 6px;
}

.magic-order-table__edit::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
}

.magic-order-table__edit:hover, .magic-order-table__edit:focus {
  background: transparent;
}

.magic-order-table__edit:hover .svg path, .magic-order-table__edit:focus .svg path {
  fill: #74cae8;
}

.magic-order-table__edit .svg {
  width: 13px;
  display: block;
  height: 13px;
}

.magic-order-table__edit .svg path {
  fill: #3ab3df;
}

.magic-order-table .input-group {
  max-width: 100px;
}

.magic-order-table .tr .magic-order-table__mark-icon_warning {
  display: none;
}

.magic-order-table .tr .magic-order-table__edit {
  display: none;
}

.magic-order-table .tr--warning .magic-order-table__mark-icon_check {
  display: none;
}

.magic-order-table .tr--warning .magic-order-table__mark-icon_warning {
  display: inline-block;
}

.magic-order-table .tr--warning .magic-order-table__edit {
  display: inline-block;
}

.magic-order-table .tr--warning .td--barcode, .magic-order-table .tr--warning .td--name {
  color: #FC828F;
}

.magic-order-table .tr--warning .td--barcode a, .magic-order-table .tr--warning .td--name a {
  color: #FC828F;
}

.magic-order-table .th--magic-mark,
.magic-order-table .td--magic-mark {
  width: 4%;
}

.magic-order-table .th--barcode,
.magic-order-table .td--barcode {
  width: 15.8%;
}

@media only screen and (max-width: 1050px) {
  .magic-order-table .th--barcode,
  .magic-order-table .td--barcode {
    display: block;
    width: 13.5%;
  }
}

.magic-order-table .th--name,
.magic-order-table .td--name {
  width: 30.7%;
}

@media only screen and (max-width: 1050px) {
  .magic-order-table .th--name,
  .magic-order-table .td--name {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.magic-order-table .th--unit,
.magic-order-table .td--unit {
  width: 10%;
}

@media only screen and (max-width: 1050px) {
  .magic-order-table .th--unit,
  .magic-order-table .td--unit {
    width: 7%;
  }
}

.magic-order-table .th--qty,
.magic-order-table .td--qty {
  width: 13.5%;
}

@media only screen and (max-width: 1050px) {
  .magic-order-table .th--qty,
  .magic-order-table .td--qty {
    width: 15%;
  }
}

.magic-order-table .th--price,
.magic-order-table .td--price {
  width: 11%;
}

@media only screen and (max-width: 1050px) {
  .magic-order-table .th--price,
  .magic-order-table .td--price {
    width: 13%;
  }
}

.magic-order-table .th--sum,
.magic-order-table .td--sum {
  width: 15.8%;
}

@media only screen and (max-width: 1050px) {
  .magic-order-table .th--sum,
  .magic-order-table .td--sum {
    width: 14%;
  }
}

.magic-order-table .th--del,
.magic-order-table .td--del {
  width: 3.2%;
}

.magic-order-table .td--magic-mark {
  text-align: center;
}

.magic-order-table .td--name a {
  display: inline-block;
  max-width: calc(100% - 50px);
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.magic-order-table .td--del {
  text-align: center;
}

.magic-replace button.mfp-close {
  visibility: hidden;
}

.magic-replace__close.mfp-close {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.magic-replace__container {
  margin: 0 auto;
}

.magic-replace__inner {
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__inner {
    padding: 20px;
  }
}

.magic-replace__item-table {
  border: 1px solid #F1F1F1;
}

.magic-replace__item-table .tbody .tr {
  border-bottom: none;
}

.magic-replace__item-table .btn-del-cart-item {
  display: none;
}

.magic-replace__item-table .tr--warning .magic-order-table__edit {
  display: none;
}

.magic-replace__actions {
  text-align: right;
  padding-top: 40px;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__actions {
    padding-top: 20px;
  }
}

.magic-replace__action-btn {
  width: 250px;
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__action-btn {
    width: 210px;
  }
}

.magic-replace__action-btn_cancel {
  margin-right: 27px;
}

.magic-replace__action-btn_replace {
  position: relative;
}

.magic-replace__action-btn_replace .error-message {
  text-align: left;
  line-height: 1.4;
  font-weight: 400;
  text-transform: none;
}

.magic-replace__step {
  position: relative;
}

.magic-replace__step::before {
  content: "";
  position: absolute;
  left: 14.5px;
  top: 10px;
  height: 100%;
  width: 0;
  border-left: 1px dashed #F1F1F1;
}

.magic-replace__step:last-child:before {
  display: none;
}

.magic-replace__step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 19px;
}

.magic-replace__step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f1f1f1;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #b46cd2;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__step-number {
    margin-right: 20px;
  }
}

.magic-replace__step-descr {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
  padding-right: 20px;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__step-descr {
    font-size: 18px;
  }
}

.magic-replace__step-count {
  font-size: 14px;
  color: #cfcfcf;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__step-count {
    font-size: 10px;
  }
}

.magic-replace__search {
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 19px;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__search {
    padding-left: 50px;
  }
}

.magic-replace__search-text {
  font-size: 14px;
  color: #CFCFCF;
  margin-bottom: 15px;
  width: 100%;
}

.magic-replace__search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 59px;
  background: url(../img/search-icon.svg) 20px 50% no-repeat;
  background-size: 20px 20px;
}

.magic-replace__search-btn {
  width: 160px;
  margin-left: 28px;
}

@media only screen and (max-width: 1050px) {
  .magic-replace__search-btn {
    width: 112px;
    margin-left: 19px;
  }
}

.magic-replace-table {
  margin-bottom: 0;
}

.magic-replace-table .th {
  min-height: 40px;
}

.magic-replace-table .th--replace-barcode,
.magic-replace-table .td--replace-barcode {
  width: 17.5%;
  text-align: center;
}

.magic-replace-table .th--replace-article,
.magic-replace-table .td--replace-article {
  width: 17.5%;
  text-align: center;
}

.magic-replace-table .th--replace-name,
.magic-replace-table .td--replace-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.magic-replace-table .th--replace-price,
.magic-replace-table .td--replace-price {
  width: 13%;
}

.magic-replace-table .thead {
  margin-bottom: 0;
}

.magic-replace-table .tbody .tr {
  min-height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.magic-replace-table .tbody .tr:hover, .magic-replace-table .tbody .tr.selected {
  background-color: #3ab3df;
  color: #ffffff;
}

.magic-replace-table .tbody .tr:hover a, .magic-replace-table .tbody .tr.selected a {
  color: #ffffff;
}

.magic-replace-table .td--replace-name {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.magic-replace-table .td--replace-price {
  text-align: right;
  padding-right: 20px;
}

@media only screen and (max-width: 1050px) {
  .magic-replace-table .td--replace-price {
    padding-right: 5px;
  }
}

@media only screen and (max-width: 1050px) {
  .magic-replace-table .td--replace-price {
    padding-right: 5px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1050px) {
  .catalogue-content .right-sort-group {
    float: right;
    min-height: 56px;
  }
}

#changePasswordForm .error {
  color: #fe0000;
}

/*==========  Desktop First  ==========*/
@media only screen and (max-width: 1439px) {
  /**/
}

@media only screen and (max-width: 1249px) {
  /**/
}

@media only screen and (max-width: 1050px) {
  /**/
}

@media only screen and (max-width: 767px) {
  /**/
}

/*==========  Mobile First  ==========*/
@media only screen and (min-width: 767px) {
  /**/
}

@media only screen and (min-width: 1050px) {
  /**/
}

/* Small Devices, Tablets */
@media only screen and (min-width: 1249px) {
  /**/
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 1439px) {
  /**/
}

.trade-point-orders__not-av {
  padding: 10px 0 7px;
  will-change: height, opacity;
  height: 100%;
  -webkit-transition-property: height, opacity, -webkit-transform;
  transition-property: height, opacity, -webkit-transform;
  -o-transition-property: height, opacity, transform;
  transition-property: height, opacity, transform;
  transition-property: height, opacity, transform, -webkit-transform;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.trade-point-orders__caution {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trade-point-orders__not-av-actions {
  text-align: right;
}

.trade-point-orders__not-av-btn {
  min-width: 250px;
}

.not-av-table__article-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11%;
          flex: 0 0 11%;
  max-width: 11%;
  padding: 0 10px;
  text-align: left;
}

@media only screen and (max-width: 1439px) {
  .not-av-table__article-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media only screen and (max-width: 1050px) {
  .not-av-table__article-col.td, .not-av-table__article-col.th {
    display: none;
  }
}

.not-av-table__article-col .custom-table__lighttheme-select.select-style {
  width: 100%;
}

.not-av-table__name-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.not-av-table__name-col.th {
  padding-right: 15px;
}

.not-av-table__name-col.td {
  padding-left: 30px;
}

@media only screen and (max-width: 1249px) {
  .not-av-table__name-col.td {
    padding-left: 5px;
  }
}

.not-av-table__qty-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13%;
          flex: 0 0 13%;
  max-width: 13%;
  text-align: center;
}

@media only screen and (max-width: 1050px) {
  .not-av-table__qty-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
    max-width: 15%;
  }
}

.not-av-table__qty-col.td, .not-av-table__qty-col.th {
  padding-right: 15px;
}

@media only screen and (max-width: 1249px) {
  .not-av-table__qty-col.td, .not-av-table__qty-col.th {
    padding-right: 10px;
  }
}

.not-av-table__supplier-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  max-width: 23%;
}

@media only screen and (max-width: 1439px) {
  .not-av-table__supplier-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media only screen and (max-width: 1249px) {
  .not-av-table__supplier-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
    max-width: 27%;
  }
}

.not-av-table__supplier-col.th {
  padding-right: 15px;
}

@media only screen and (max-width: 1249px) {
  .not-av-table__supplier-col.td {
    padding-left: 5px;
  }
}

.not-av-table__del-col {
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.5%;
          flex: 0 0 2.5%;
  max-width: 2.5%;
  min-width: 30px;
}

.not-av-table__del {
  display: inline-block;
  width: auto;
  cursor: pointer;
  font-size: 12px;
  color: #9F9F9F;
  background-color: transparent;
  padding: 0;
}

.not-av-table__del:hover, .not-av-table__del:focus, .not-av-table__del:active {
  color: #FF5252;
  background-color: transparent;
}

.not-av-table__del-icon {
  display: block;
  width: 1em;
  height: 1em;
}

.not-av-table__del-icon path {
  fill: currentColor;
}

@media only screen and (max-width: 1249px) {
  .not-av-table .t-select select {
    font-size: 10px;
  }
}

.bonuses-history-label {
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

    .bonuses-history-label a {
        color: #B46CD2;
    }
}


@media (max-width: 500px) {
    .intl-tel-input .country-list {
        white-space: normal;
    }
}

.ui-widget .search-form input {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.ui-menu.ui-widget {
    z-index: 1000;
}

.ui-widget :hover, .ui-widget button, .ui-widget .button {
    transition: none;
}

.ui-autocomplete {
    max-height: 135px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}

.right-items-group .bonus {
    margin-right: -5px;
    margin-left: 0px;
    float:right;
}

.catalog-button:focus, .catalog-button:hover {
    color: #3ab3df !important;
    background: #F1F1F1 !important;
}

.promo-offer-link {
    padding-top: 10px;
}

.promo-offer-group-red {
    color: red!important;
}

.relationship-row {
    padding-bottom: 10px;
}

.s-cart .select-style select.relationship-not-confirmed {
    border: #00BFA5;
    border-style: solid;
}

.s-cart .contract-select {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

    .s-cart .contract-select.select-style {
        overflow: visible;
    }


.s-cart .contract-select.error .error-message {
    visibility: visible;
    left: auto;
    right: 0;
}

@media only screen and (max-width: 1249px) {
    .s-cart .contract-select.error .error-message {
        left: 0;
        right: auto;
    }
}

.agreement-link {
    color: #3ab3df
}
.special-message .checkbox-txt {
    user-select: text;
}