@charset "UTF-8";
@import "../fonts/stylesheet.css";
.jq-checkbox {
  top: -1px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  border: 0px;
  background: url(./img/cb0.png) no-repeat center;
  padding: 0px 0;
  cursor: pointer;
}

.jq-checkbox.checked {
  background: url(./img/cb1.png) no-repeat center;
}

/*
.jq-checkbox.checked .jq-checkbox__div {

	width: 22px;
	height: 22px;
	margin: 0px;
	border-radius:4px;
	background: #262626;
	border: 1px solid #262626 !important;
}
*/
/*
.jq-checkbox.focused {
	border: 1px solid #08C;
}
*/
.jq-checkbox.disabled {
  opacity: 0.55;
}

.jq-radio {
  top: -1px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  border: 1px solid #C3C3C3;
  border-radius: 50%;
  background: #F5F5F5;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  cursor: pointer;
}

.jq-radio.checked .jq-radio__div {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 3px;
  border-radius: 50%;
  background: #777;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.jq-radio.focused {
  border: 1px solid #08C;
}

.jq-radio.disabled {
  opacity: 0.55;
}

.jq-file {
  width: 270px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jq-file input {
  height: auto;
  line-height: 1em;
  cursor: pointer;
}

.jq-file__name {
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  box-shadow: inset 1px 1px #F1F1F1;
  font: 14px/32px Arial, sans-serif;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #CCC;
  border-radius: 0 4px 4px 0;
  background: #F5F5F5;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
}

.jq-file:hover .jq-file__browse {
  background: #E6E6E6;
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-file:active .jq-file__browse {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}

.jq-file.focused .jq-file__name {
  border: 1px solid #5794BF;
}

.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}

.jq-number {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 36px 0 0;
}

.jq-number__field {
  width: 100px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jq-number__field:hover {
  border-color: #B3B3B3;
}

.jq-number__field input {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: none;
  outline: none;
  background: none;
  font: 14px Arial, sans-serif;
  color: #333;
  text-align: left; /* для Opera Presto */
  -moz-appearance: textfield;
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
  margin: 0; /* в каких-то браузерах присутствует отступ */
  -webkit-appearance: none;
}

.jq-number__spin {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 14px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #F5F5F5;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}

.jq-number__spin.minus {
  top: auto;
  bottom: 0;
}

.jq-number__spin:hover {
  background: #E6E6E6;
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-number__spin:active {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}

.jq-number__spin:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 11px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #999;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus:after {
  top: 5px;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-bottom: none;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus:hover:after {
  border-top-color: #000;
}

.jq-number__spin.plus:hover:after {
  border-bottom-color: #000;
}

.jq-number.focused .jq-number__field {
  border: 1px solid #5794BF;
}

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}

.jq-number.disabled .jq-number__spin:after {
  border-bottom-color: #AAA;
}

.jq-number.disabled .jq-number__spin.minus:after {
  border-top-color: #AAA;
}

.jq-selectbox {
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
}

.jq-selectbox__select {
  height: 26px;
  padding: 0 45px 0 0px;
  font: 14px/26px Arial, sans-serif;
  color: #333;
  border: 1px solid #d9dada;
  background: #fff;
}

.jq-selectbox__select:active {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}

.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #5794BF;
}

.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}

.jq-selectbox__select-text {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jq-selectbox .placeholder {
  color: #888;
}

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
}

.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 0;
  height: 0;
  border-top: 8px solid #4E545C;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000;
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  border-top-color: #AAA;
}

.jq-selectbox__dropdown {
  box-sizing: border-box;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #CCC;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif;
}
@media screen and (max-width: 700px) {
  .jq-selectbox__dropdown {
    max-width: 100% !important;
  }
}

.jq-selectbox__search {
  margin: 5px;
}

.jq-selectbox__search input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  border: 1px solid #CCC;
  border-radius: 3px;
  outline: none;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
  box-shadow: inset 1px 1px #F1F1F1;
  color: #333;
  -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #F0F0F0;
  font-size: 13px;
}

.jq-selectbox ul {
  margin: 0;
  padding: 0;
}

.jq-selectbox li {
  min-height: 18px;
  padding: 5px 10px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  color: #231F20;
}

.jq-selectbox li.selected {
  background-color: #A3ABB1;
  color: #FFF;
}

.jq-selectbox li:hover {
  background-color: #08C;
  color: #FFF;
}

.jq-selectbox li.disabled {
  color: #AAA;
}

.jq-selectbox li.disabled:hover {
  background: none;
}

.jq-selectbox li.optgroup {
  font-weight: bold;
}

.jq-selectbox li.optgroup:hover {
  background: none;
  color: #231F20;
  cursor: default;
}

.jq-selectbox li.option {
  padding-left: 25px;
}

.jq-select-multiple {
  box-sizing: border-box;
  padding: 1px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/18px Arial, sans-serif;
  color: #333;
  cursor: default;
}

.jq-select-multiple.focused {
  border: 1px solid #5794BF;
}

.jq-select-multiple.disabled {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}

.jq-select-multiple ul {
  margin: 0;
  padding: 0;
}

.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.jq-select-multiple li:first-child {
  border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
  border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
  background: #08C;
  color: #FFF;
}

.jq-select-multiple li.disabled {
  color: #AAA;
}

.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
  background: #CCC;
  color: #FFF;
}

.jq-select-multiple li.optgroup {
  font-weight: bold;
}

.jq-select-multiple li.option {
  padding-left: 25px;
}

input[type=email].styler,
input[type=password].styler,
input[type=search].styler,
input[type=tel].styler,
input[type=text].styler,
input[type=url].styler,
textarea.styler {
  padding: 8px 9px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
}

input[type=search].styler {
  -webkit-appearance: none;
}

textarea.styler {
  overflow: auto;
}

input[type=email].styler:hover,
input[type=password].styler:hover,
input[type=search].styler:hover,
input[type=tel].styler:hover,
input[type=text].styler:hover,
input[type=url].styler:hover,
textarea.styler:hover {
  border-color: #B3B3B3;
}

input[type=email].styler:focus,
input[type=password].styler:focus,
input[type=search].styler:focus,
input[type=tel].styler:focus,
input[type=text].styler:focus,
input[type=url].styler:focus,
textarea.styler:focus {
  border-color: #CCC;
  border-top-color: #B3B3B3;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

button.styler,
input[type=button].styler,
input[type=submit].styler,
input[type=reset].styler {
  overflow: visible;
  padding: 8px 11px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  outline: none;
  background: #F5F5F5;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}

button.styler::-moz-focus-inner,
input[type=button].styler::-moz-focus-inner,
input[type=submit].styler::-moz-focus-inner,
input[type=reset].styler::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.styler:not([disabled]):hover,
input[type=button].styler:not([disabled]):hover,
input[type=submit].styler:not([disabled]):hover,
input[type=reset].styler:hover {
  background: #E6E6E6;
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

button.styler:not([disabled]):active,
input[type=button].styler:not([disabled]):active,
input[type=submit].styler:not([disabled]):active,
input[type=reset].styler:active {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}

button.styler[disabled],
input[type=button].styler[disabled],
input[type=submit].styler[disabled] {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden; /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px 44px 25px 44px;
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: 12px;
      padding-right: 12px;
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  /*pointer-events: none;*/
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23253035'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
  color: #253035;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23253035'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.suggestions-nowrap {
  white-space: nowrap;
}

.suggestions-input {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.suggestions-input::-ms-clear {
  display: none;
}

.suggestions-wrapper {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: top;
  min-height: 1px;
  -webkit-text-size-adjust: 100%;
}

.suggestions-addon {
  display: none;
  opacity: 0;
  position: absolute;
}

.suggestions-addon[data-addon-type=spinner] {
  background: rgba(255, 255, 255, 0.75) url("data:image/gif;base64,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") 50% 50% no-repeat;
  border-radius: 50%;
}

.suggestions-addon[data-addon-type=clear] {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48Zz48cGF0aCBkPSdtMjAsMjBtMTAsMGwyMCwyMGwyMCwtMjBsMTAsMTBsLTIwLDIwbDIwLDIwbC0xMCwxMGwtMjAsLTIwbC0yMCwyMGwtMTAsLTEwbDIwLC0yMGwtMjAsLTIwbDEwLC0xMCcgZmlsbD0nIzk5OScvPjwvZz48L3N2Zz4=") 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 0.8;
}

.suggestions-addon[data-addon-type=clear]:hover {
  opacity: 1;
}

.suggestions-suggestions {
  background: #fff;
  border: 1px solid #999;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  z-index: 9999;
  -webkit-text-size-adjust: 100%;
}

.suggestions-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}

.suggestions-suggestions.suggestions-mobile {
  border-style: none;
}

.suggestions-suggestions.suggestions-mobile .suggestions-suggestion {
  border-bottom: 1px solid #ddd;
}

.suggestions-suggestion {
  padding: 4px 4px;
  overflow: hidden;
}

.suggestions-suggestion:hover {
  background: #f7f7f7;
}

.suggestions-selected {
  background: #f0f0f0;
}

.suggestions-selected:hover {
  background: #f0f0f0;
}

.suggestions-hint {
  padding: 4px 4px;
  white-space: nowrap;
  overflow: hidden;
  color: #777;
  font-size: 85%;
}

.suggestions-constraints {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
}

.suggestions-constraints:empty {
  display: none !important;
}

.suggestions-constraints li {
  background: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: default;
  display: inline-block;
  margin: 0 4px 0 0;
  padding: 0 0.5em;
}

.suggestions-constraints li .suggestions-remove {
  height: 1em;
  width: 1em;
  display: inline-block;
  margin: 0 0 0 0.25em;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48Zz48cGF0aCBkPSdtMjAsMjBtMTAsMGwyMCwyMGwyMCwtMjBsMTAsMTBsLTIwLDIwbDIwLDIwbC0xMCwxMGwtMjAsLTIwbC0yMCwyMGwtMTAsLTEwbDIwLC0yMGwtMjAsLTIwbDEwLC0xMCcgZmlsbD0nIzk5OScvPjwvZz48L3N2Zz4=") 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 0.8;
}

.suggestions-constraints li .suggestions-remove:hover {
  opacity: 1;
}

.suggestions-constraints li span {
  vertical-align: middle;
}

.suggestions-subtext {
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestions-subtext_inline {
  display: inline-block;
  min-width: 6em;
  vertical-align: bottom;
  margin: 0 0.5em 0 0;
}

.suggestions-subtext-delimiter {
  display: inline-block;
  width: 2px;
}

.suggestions-subtext_label {
  margin: 0 0 0 0.25em;
  border-radius: 3px;
  padding: 0 3px;
  background: #f5f5f5;
  font-size: 85%;
}

.suggestions-value[data-suggestion-status=LIQUIDATED] {
  position: relative;
}

.suggestions-value[data-suggestion-status=LIQUIDATED]:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  content: "";
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  overflow: hidden;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 20px;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  border: 5px solid #000;
  background: #fff;
}

#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}

#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(images/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: bottom left;
}

#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(images/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: bottom right;
}

#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(images/controls.png) no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: bottom center;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

textarea {
  resize: none;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Cera Pro";
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  min-width: 320px;
  position: relative;
}

body.compensate-for-scrollbar {
  overflow: auto;
}

.fancybox-button {
  /*
  	transition: all .3s ease-in-out;
  	&:hover{
  		transform: rotate(360deg);
  	}
  	*/
}

input, button, select, textarea {
  font-family: "Cera Pro";
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}

img {
  vertical-align: top;
}

b {
  font-weight: bold;
}

p {
  margin: 0 0 15px 0;
}

a {
  color: #e30613;
  text-decoration: underline;
}
a:hover {
  color: #ff2f62;
  text-decoration: none;
}

h1, .h1 {
  font-size: 30px;
  margin: 0 0 40px 0;
  padding: 0px;
  color: #000;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 900px) {
  h1, .h1 {
    margin: 0 0 25px 0;
  }
}
h1 a, .h1 a {
  color: #000;
  text-decoration: none;
}
h1 a.payment, .h1 a.payment {
  color: #e30613;
  text-decoration: underline;
  padding-left: 20px;
  font-weight: normal;
}
h1 a.payment:hover, .h1 a.payment:hover {
  color: #c10734;
  text-decoration: none;
}
h1 a.delivery, .h1 a.delivery {
  color: #e30613;
  text-decoration: underline;
  padding-right: 20px;
  font-weight: normal;
}
h1 a.delivery:hover, .h1 a.delivery:hover {
  color: #ff4b4d;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  h1, .h1 {
    font-size: 22px;
  }
}

h2, .h2 {
  font-size: 24px;
  margin: 0 0 30px 0;
  padding: 0px;
  color: #000;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  h2, .h2 {
    font-size: 22px;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 900px;
}

.wrap {
  flex-grow: 1;
}

@media screen and (min-width: 900px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .hidden-mobile {
    display: none !important;
  }
}

.width {
  max-width: 1550px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1590px) {
  .width {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 900px) {
  .width {
    width: auto;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.get-img {
  background-size: cover;
  background-position: center center;
}
.get-img img {
  display: none;
}

.get-img2 {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.get-img2 img {
  display: none;
}

.get-link {
  cursor: pointer;
}

form {
  /*
  input:required {
  	border: 3px solid red;
  }
  */
}
form select,
form input[type=text],
form input[type=password],
form textarea {
  padding: 0 15px;
  border: 3px solid #d3d3d3;
  width: 100%;
  box-sizing: border-box;
  max-width: 400px;
  border-radius: 2px;
  transition: 0.3s;
}
form textarea {
  resize: none;
  height: 80px;
  padding: 10px 15px;
}
form select,
form input[type=text],
form input[type=password] {
  line-height: 45px;
  height: 45px;
  background: #f7f7f7;
}
form select:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form textarea:focus {
  border: 3px solid #e30613;
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.1);
}
form .item, form .form-item {
  margin: 0 0 20px 0;
}
form .item span, form .form-item span {
  display: block;
  padding: 0 0 5px 0;
}
form .required {
  border: 3px solid red !important;
}
form .agree-required {
  color: #ff0000;
}
form .agree-required a {
  color: #ff0000;
}
form .submit input[type=submit], form .submit button {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
form .submit input[type=submit]:hover, form .submit button:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
form input[type=submit] {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
form input[type=submit]:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
form .forgot {
  margin: 20px 0 0px 0;
}
form .i-agree {
  display: block;
  font-size: 12px;
}

/******************** UNIVERSAL ********************/
.logon-info {
  padding: 10px 20px;
}

/* MOBILE MENU */
@media screen and (max-width: 900px) {
  .menu-ss {
    padding: 30px;
  }
  .menu-ss a {
    padding: 0px !important;
  }
  .menu-ss svg {
    display: block !important;
  }
  .menu-ss svg * {
    fill: #000;
  }
  .footer-contact-info .phone-block .worktime {
    padding-bottom: 10px;
  }
  .footer-contact-info .phone-block .city {
    color: #373737;
  }
  .footer-contact-info .phone-block .phone {
    padding-bottom: 10px;
  }
  .footer-contact-info .phone-block .phone a {
    padding: 0px;
  }
  .footer-contact-info .phone-block .list-wrap {
    display: block;
    padding-bottom: 10px;
  }
  .search-mobile {
    padding: 5px 10px;
  }
  .search-mobile form {
    position: relative;
  }
  .search-mobile .input {
    width: 100%;
  }
  .search-mobile .submit {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .search-mobile .submit input[type=submit], .search-mobile .submit button {
    height: 45px;
    padding: 0 20px;
    border-radius: 0 3px 3px 0;
  }
  .menu-wrap {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    display: none;
    overflow: auto;
    height: 100%;
  }
  .menu-block {
    width: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    height: 100%;
    background: #fff;
    box-shadow: 20px 0 20px rgba(0, 0, 0, 0.5);
  }
  .menu {
    height: 100%;
    box-sizing: border-box;
    padding: 0px;
    position: relative;
  }
  .menu .ss {
    padding-top: 10px;
    justify-content: space-around;
  }
  .menu .ss a {
    padding: 0px;
  }
  .menu .ss a img {
    width: 30px;
    height: 30px;
  }
  .menu ul {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 300px;
    list-style: none;
  }
  .menu ul li {
    display: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .menu ul li.has-icon-cart > a > span > b {
    background: #000;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    margin-left: 5px;
  }
  .menu ul li a {
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 20px 40px 20px 20px;
    position: relative;
  }
  .menu ul li a > svg {
    display: none;
  }
  .menu ul li.has-child > a:after, .menu ul li.has-child > .cat-menu-wrap > .cat-menu > a:after {
    content: "";
    background: url(../img/right-arrow.svg) no-repeat center center;
    width: 15px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 25px;
    top: 50%;
    margin-top: -10px;
  }
  .menu ul ul {
    /*display:none;*/
    visibility: hidden;
    height: 100%;
    position: absolute;
    left: 300px;
    top: 0px;
    background: #fff;
  }
  .menu .m-active {
    visibility: visible;
    /*display:block;*/
  }
  .menu .m-active > li {
    display: block;
  }
  .menu .li-active {
    display: block;
  }
  .menu > ul > li > a {
    font-weight: bold;
  }
  .menu .menu-footer-link-bg {
    background: #F8F8F9;
  }
  .menu .menu-footer-link-bg a {
    color: #000;
  }
  .menu .menu-footer-link-bg a:hover {
    opacity: 0.6;
  }
  .menu .menu-footer-link-bg span {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    border-radius: 100%;
    background: #8a8a9b;
  }
  .menu .menu-footer-info {
    padding: 20px;
  }
  .menu .menu-mobile-close {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 32px;
    height: 32px;
    padding: 20px;
    cursor: pointer;
    opacity: 0.5;
    z-index: 999;
  }
  .menu .menu-mobile-close:hover {
    opacity: 1;
  }
  .menu .menu-mobile-close:after, .menu .menu-mobile-close:before {
    position: absolute;
    left: 35px;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: #fff;
  }
  .menu .menu-mobile-close:after {
    transform: rotate(-45deg);
  }
  .menu .menu-mobile-close:before {
    transform: rotate(45deg);
  }
  .menu .menu-sub-name {
    font-weight: bold;
    background: #F8F8F9;
  }
  .menu .menu-sub-name a {
    color: #000;
  }
  .menu .menu-back a {
    color: #000;
  }
  .menu .menu-back i {
    font-size: 18px;
    padding-right: 10px;
  }
  .footer-contact-info .button a {
    display: inline-block;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    background: #e30613;
    border-radius: 3px;
    color: #fff;
    transition: 0.3s;
    padding: 0 30px;
    cursor: pointer;
    border: 0px;
    text-decoration: none;
    white-space: nowrap;
  }
  .footer-contact-info .button a:hover {
    background: #ff2f62;
    box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
  }
}
/* DESKTOP MENU */
@media screen and (min-width: 901px) {
  .visible-fixed {
    display: none;
  }
  .hdr-menu-wrapper-fixed .visible-fixed {
    display: block;
  }
  .hdr-menu-wrapper-wrap {
    height: 50px;
  }
  .hdr-menu-wrapper {
    background: rgba(255, 255, 255, 0.42);
    height: 50px;
    z-index: 2;
    position: relative;
  }
  .hdr-menu-wrapper.hdr-menu-wrapper-fixed {
    position: fixed;
    width: 100%;
    top: 0px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 901px) and (max-width: 1550px) {
  .hdr-menu-wrapper .width {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 901px) {
  .menu-wrap {
    display: block !important;
  }
  .menu-block {
    margin: 0 auto;
  }
  .menu {
    position: relative;
  }
  .menu ul {
    list-style: none;
  }
  .menu > ul {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    display: flex;
  }
  .menu > ul > li.has-icon > a {
    padding-left: 65px;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 21px auto;
    position: relative;
  }
  .menu > ul > li.has-icon > a > svg {
    height: 24px;
    max-width: 22px;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -12px;
  }
  .menu > ul > li.has-icon > a > svg * {
    transition: 0.3s;
    fill: #2d2d2d;
    stroke: #2d2d2d;
  }
}
@media screen and (min-width: 901px) and (max-width: 1550px) {
  .menu > ul > li.has-icon.has-icon-cart > a {
    height: 50px;
    padding: 0px 0px 0px 0px;
    width: 50px;
    background-position: center;
  }
  .menu > ul > li.has-icon.has-icon-cart > a span {
    display: none;
  }
}
@media screen and (min-width: 901px) {
  .menu > ul > li.has-icon.has-icon-cart b {
    margin-left: 5px;
    display: inline-block;
    background: #2d2d2d;
    color: #fff;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
  }
  .menu > ul > li:hover > a {
    background-color: #e30613;
    color: #fff;
    box-shadow: 0 0 5px rgba(177, 0, 2, 0.75);
  }
  .menu > ul > li:hover > a > svg * {
    fill: #fff;
    stroke: #fff;
  }
  .menu > ul > li > a {
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d;
    font-style: normal;
    text-decoration: none;
    display: block;
    padding: 15px 30px;
    text-transform: uppercase;
    white-space: nowrap;
  }
}
@media screen and (min-width: 901px) and (max-width: 1550px) {
  .menu > ul > li > a {
    padding: 15px 8px;
  }
}
@media screen and (min-width: 901px) {
  .menu > ul > li.active {
    background-color: #e30613;
  }
  .menu > ul > li.active > a {
    color: #fff;
  }
  .menu > ul > li.active > a > svg * {
    fill: #fff;
    stroke: #fff;
  }
  .menu > ul > li:hover { /* hover 1 level menu*/ }
  .menu > ul > li:hover > .popup {
    opacity: 1;
    visibility: visible;
    max-height: 10000px;
  }
  .menu > ul > li:nth-last-child(2) > .popup {
    right: 0px;
  }
  .menu > ul > li > .popup { /* FOR all popup 2 level*/
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    max-height: 0px;
    z-index: 10;
    position: absolute;
    background: #fff;
  }
  .menu > ul > li > ul.popup { /*	2 level menu popup STANDART */
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
  .menu > ul > li > ul.popup li a {
    transition: all 0.3s ease-in-out;
    padding: 10px 30px 10px 20px;
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: #000;
  }
  .menu > ul > li > ul.popup li a:hover {
    background: #e30613;
    color: #fff;
  }
  .menu > ul > li > div.popup { /*	2 level menu popup CATALOG */
    /*
    	width:100%;
    	left:0px;
    	*/
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    line-height: 1;
  }
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .menu > ul > li > div.popup {
    width: 100%;
    left: 0px;
    margin-left: 0px;
  }
}
@media screen and (min-width: 901px) {
  .menu > ul > li > div.popup > div.popup-width {
    margin: 0 auto;
    background: #fff;
    padding: 30px 20px 20px 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
  .menu > ul > li > div.popup > div.popup-width > ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    display: flex;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li { /* 2 level li */
    width: 30%;
    box-sizing: border-box;
    padding: 0 0px 0px 0px;
    position: relative;
    /*
    &>div.img{
    	width:40px;
    	height:40px;
    	top:0px;
    	left:0px;
    	position:absolute;
    }
    */
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li.active > a {
    background: #e30613;
    color: #fff;
    text-decoration: none;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li.active > a:hover {
    color: #fff;
    text-decoration: none;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li > a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #4d4b40;
    text-decoration: underline;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li > a:hover {
    color: #000;
    text-decoration: none;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li > ul { /*	3 level menu popup CATALOG */ }
  .menu > ul > li > div.popup > div.popup-width > ul > li > ul > li { /* 3 level li */
    position: relative;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li > ul > li.active > a {
    background: #e30613;
    color: #fff;
    text-decoration: none;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li > ul > li.active > a:hover {
    color: #fff;
    text-decoration: none;
  }
  .menu > ul > li > div.popup > div.popup-width > ul > li > ul > li > a {
    color: #000;
    padding: 8px 0 8px 40px;
    display: block;
  }
}
/********************************************** SUPER - MENU - END **********************************************/
body.inner .hdr-menu-wrapper {
  background: #f2f3f5;
  /*box-shadow:0 5px 5px rgba(0,0,0,0.1);*/
}

.head-wrap {
  background: #1d1d1b;
}

.head {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
  height: 100px;
}
@media screen and (max-width: 900px) {
  .head {
    height: 70px;
  }
}
.head > div {
  padding-right: 40px;
}
.head > div:nth-last-child(2) {
  padding-right: 0px;
}
@media screen and (max-width: 900px) {
  .head .head-ss {
    display: none;
  }
}
.head .menu-mobile {
  cursor: pointer;
  display: none;
  padding: 15px 0 15px 20px;
}
@media screen and (max-width: 900px) {
  .head .menu-mobile {
    display: block;
  }
}
.head .menu-mobile svg {
  vertical-align: top;
  width: 32px;
}
.head .menu-mobile svg * {
  fill: #fff;
  stroke: #fff;
}
.head .logo-text {
  flex-grow: 1;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  border-left: 1px solid #fff;
  padding-left: 40px;
}
@media screen and (max-width: 900px) {
  .head .logo-text {
    display: none;
  }
}
.head .logo-text p, .head .logo-text div {
  margin: 0px;
  padding: 0px;
}
.head .logo-text div {
  padding: 0 0 4px 0;
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
}
.head .logo-text p {
  line-height: 1.2;
  font-size: 12px;
  text-transform: uppercase;
}
.head .logo a {
  color: #000;
  text-decoration: none;
  display: block;
}
.head .logo a img {
  width: 100%;
  max-width: 160px;
  display: block;
}
@media screen and (max-width: 900px) {
  .head .logo a img {
    max-height: 60px;
  }
}
.head .phones {
  text-align: right;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
@media screen and (max-width: 530px) {
  .head .phones {
    display: none;
  }
}
@media screen and (max-width: 530px) {
  .head .favcart {
    display: none;
  }
}
.head .favcart.active > a svg {
  height: 24px;
}
.head .favcart.active > a svg * {
  fill: #e30613;
}
.head .favcart.active > a span {
  display: block;
}
.head .favcart > a {
  position: relative;
  display: block;
}
.head .favcart > a:hover svg * {
  fill: #ff2f62;
}
.head .favcart > a svg {
  height: 24px;
}
.head .favcart > a svg * {
  fill: #838383;
}
.head .favcart > a span {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  background: #000;
  top: 0px;
  top: -10px;
  left: 21px;
  border: 2px solid #fff;
}
.head .cart > a svg {
  height: 26px;
}
.head .cart:hover .cart-popup {
  visibility: visible;
  opacity: 1;
}
.head .cart .cart-popup {
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 20;
  background: #efe6e8;
  padding: 20px;
  border-radius: 3px;
  right: 0px;
}
.head .cart .cart-popup .total, .head .cart .cart-popup .summ {
  white-space: nowrap;
}
.head .cart .cart-popup .btn {
  padding: 10px 0;
}
.head .cart .cart-popup .btn a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.head .cart .cart-popup .btn a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.head .cart .cart-popup .ico-eye a {
  padding-left: 20px;
  background: url(../img/ico-eye.svg) no-repeat left center;
  background-size: 14px auto;
}

.phone-block {
  position: relative;
  padding: 20px 0;
}
.phone-block .worktime {
  color: #877f6a;
}
.phone-block:hover .phones-popup {
  visibility: visible;
  opacity: 1;
}
.phone-block .phones-popup {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  cursor: default;
  display: block;
  position: absolute;
  top: 0px;
  right: -20px;
  background: #efe6e8;
  padding: 17px 20px;
  z-index: 5;
  border-radius: 3px;
  /*box-shadow:0 0 1px rgba(0,0,0,1);*/
}
.phone-block .phones-popup > a {
  background: #514e44;
  color: #fff;
  border-radius: 2px;
  text-decoration: none;
  height: 18px;
  line-height: 18px;
  padding: 0 10px;
  font-size: 10px;
  display: inline-block;
}
.phone-block .phone {
  padding: 0 0 10px 0;
}
.phone-block .phone a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  white-space: nowrap;
}
.phone-block .city {
  white-space: nowrap;
}
.phone-block .city span {
  color: #877f6a;
}
.phone-block .city b {
  font-size: 16px;
}
.phone-block .list-wrap {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: stretch;
  display: flex;
}
.phone-block .list {
  padding: 0 10px 0 0;
}
.phone-block .list a {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  padding: 5px 0;
  color: #e30613;
}
.phone-block .list a img {
  width: 18px;
  margin-right: 13px;
}
.phone-block .callback {
  padding: 0 0 10px 0;
}
.phone-block .callback a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.phone-block .callback a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}

.desktop-search-block {
  transition: 0.3s;
  background: #fff;
  height: 0px;
  overflow: hidden;
  position: relative;
  opacity: 0.4;
  z-index: 100;
  position: absolute;
  width: 100%;
}
.desktop-search-block.desktop-search-block-fixed {
  position: fixed;
  top: 50px;
}
.desktop-search-block.desktop-search-block-active {
  opacity: 1;
  height: auto;
  z-index: 20;
  padding: 25px 0;
  box-shadow: 0 0 100px rgb(0, 0, 0), 0 0 100px rgb(0, 0, 0);
}
.desktop-search-block .row {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
}
.desktop-search-block .input {
  position: relative;
  flex-grow: 1;
  padding-right: 40px;
}
.desktop-search-block .input input {
  background: url(../img/ico-search-gray.svg) no-repeat 20px center #f7f7f7;
  background-size: 21px auto;
  max-width: none;
  width: 100%;
  padding-left: 60px;
  box-sizing: border-box;
}
.desktop-search-block .submit {
  padding-right: 35px;
}
.desktop-search-block .submit input {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-search-block .submit input:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.desktop-search-block .close a {
  display: block;
  width: 26px;
  height: 26px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
}
.desktop-search-block .close a:hover {
  transform: rotate(360deg);
}

@media screen and (max-width: 900px) {
  .main-slider-width {
    padding: 0px;
  }
}

/*
.main-slider-wrap{
	@media screen and (max-width: $width_tablet) {
		margin-top:0px;
	}
	margin-top: $height_menu * -1;
}
*/
.main-slider {
  background: #fff;
}
.main-slider .swiper-pagination {
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .main-slider .swiper-pagination {
    padding-left: 0px;
    text-align: center;
  }
}
.main-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: none;
  border: 2px solid #fff;
  margin: 0 8px;
  border-radius: 50%;
  box-shadow: 0 0 2px rgb(0, 0, 0);
}
.main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e30613;
}
.main-slider .item {
  height: 500px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
}
@media screen and (max-width: 900px) {
  .main-slider .item {
    height: 70vh;
  }
}
@media screen and (max-width: 600px) {
  .main-slider .item {
    height: 50vh;
  }
}
.main-slider .item .img-mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .main-slider .item .img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
  }
}
@media screen and (max-width: 600px) {
  .main-slider .item .img-mobile img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
.main-slider .item .block {
  padding: 0px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  max-width: 700px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .main-slider .item .block {
    max-width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .main-slider .item .block {
    z-index: 2;
  }
}
.main-slider .item .block .ttl {
  line-height: 0.9;
  font-size: 42px;
  font-weight: 500;
  padding: 10px;
}
@media screen and (max-width: 900px) {
  .main-slider .item .block .ttl {
    font-size: 32px;
  }
}
.main-slider .item .block .txt {
  padding: 10px;
  font-size: 26px;
  font-weight: 300;
}
@media screen and (max-width: 900px) {
  .main-slider .item .block .txt {
    font-size: 18px;
  }
}

.sub-list-wrap {
  padding: 30px 0 5px 0;
  background: #f3f3f3;
}
@media screen and (max-width: 600px) {
  .sub-list-wrap {
    padding: 20px 0 10px 0;
  }
}

.sub-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: flex-start;
  display: flex;
}
.sub-list .item {
  width: 244px;
  padding: 18px;
  box-sizing: border-box;
  background: #fff;
  transition: 0.3s;
  border-radius: 3px;
  margin: 0 10px 25px 10px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  display: flex;
}
@media screen and (max-width: 600px) {
  .sub-list .item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    align-content: center;
    padding: 10px;
    margin: 0 0px 10px 0px;
  }
}
.sub-list .item.empty {
  padding: 0px;
  margin: 0px;
  background: none;
}
.sub-list .item.empty:hover {
  box-shadow: none;
}
.sub-list .item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.sub-list .item:hover .img {
  filter: contrast(120%);
}
.sub-list .item:hover .name a {
  color: #e30613;
}
.sub-list .item .img > div {
  height: 194px;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .sub-list .item .img > div {
    width: 100px;
    height: 100px;
    margin-right: 10px;
  }
}
.sub-list .item .name {
  flex-grow: 1;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  display: flex;
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width: 600px) {
  .sub-list .item .name {
    padding-top: 0px;
    display: block;
    text-align: left;
  }
}
.sub-list .item .name a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

/* sub-list */
.whywe-wrap {
  padding: 55px 0;
}
@media screen and (max-width: 900px) {
  .whywe-wrap {
    padding: 20px 0;
  }
}

.whywe {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
@media screen and (max-width: 900px) {
  .whywe {
    display: block;
  }
}
.whywe .item {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .whywe .item {
    width: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    display: flex;
    padding-bottom: 20px;
  }
}
.whywe .item .num > div {
  top: 0px;
  position: absolute;
  margin-top: 20px;
  font-size: 120px;
  font-weight: bold;
  width: 144px;
  height: 144px;
  line-height: 135px;
  background: #f8eec6;
  border-radius: 50%;
  color: #e30613;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .whywe .item .num > div {
    width: 80px;
    height: 80px;
    line-height: 70px;
    font-size: 60px;
    position: static;
    float: none;
    margin-top: 0px;
  }
}
.whywe .item .text {
  min-height: 170px;
  width: 170px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding: 0px 0px 0px 130px;
}
@media screen and (max-width: 900px) {
  .whywe .item .text {
    width: auto;
    min-height: auto;
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .whywe .item .text {
    font-size: 18px;
  }
}

/* whywe */
.news-list-wrap {
  padding: 55px 0 25px 0;
}
@media screen and (max-width: 900px) {
  .news-list-wrap {
    padding: 20px 0 20px 0;
  }
}
.news-list-wrap.news-list-wrap-inner {
  padding: 10px 0;
}

.news-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: flex-start;
  display: flex;
}
@media screen and (max-width: 900px) {
  .news-list {
    justify-content: space-around;
  }
}
.news-list .item {
  width: 30%;
  font-size: 16px;
  border-radius: 3px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .news-list .item {
    width: 280px;
    margin-bottom: 20px;
  }
}
.news-list .item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.news-list .item:hover .name {
  transform: translateY(10px);
}
.news-list .item:hover .link {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}
.news-list .item.empty {
  background: none;
  padding: 0px;
  margin-bottom: 0px;
}
.news-list .item.empty:hover {
  box-shadow: none;
}
.news-list .item .item-in {
  height: 280px;
  padding: 25px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  display: flex;
}
.news-list .item .name {
  flex-grow: 1;
  transition: 0.5s;
}
.news-list .item .name a {
  text-decoration: underline;
  color: #fff;
}
.news-list .item .link {
  transition: 0.5s;
  display: inline-block;
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
}

/* news-list */
.seo-text-wrap {
  padding: 55px 0;
}
@media screen and (max-width: 900px) {
  .seo-text-wrap {
    padding: 20px 0;
  }
}
@media screen and (max-width: 900px) {
  .seo-text-wrap .row {
    display: block;
  }
}
.seo-text-wrap .width {
  width: 940px;
}
@media screen and (max-width: 940px) {
  .seo-text-wrap .width {
    width: auto;
  }
}
.seo-text-wrap .sert {
  padding-left: 80px;
}
@media screen and (max-width: 900px) {
  .seo-text-wrap .sert {
    padding-top: 20px;
    padding-left: 0px;
    text-align: center;
  }
}
.seo-text-wrap .sert a {
  border: 8px solid #f0edd8;
  border-radius: 3px;
  display: inline-block;
  transition: 0.3s;
}
.seo-text-wrap .sert a:hover {
  box-shadow: 0 0 15px #f0edd8;
}

/* seo-text-wrap */
.seo-text {
  flex-grow: 1;
}
.seo-text h1, .seo-text h2 {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

/* seo-text */
@media screen and (max-width: 900px) {
  .about-page .row {
    display: block;
  }
}
.about-page .sert {
  padding-left: 80px;
}
@media screen and (max-width: 900px) {
  .about-page .sert {
    padding-top: 20px;
    padding-left: 0px;
    text-align: center;
  }
}
.about-page .sert a {
  border: 8px solid #f0edd8;
  border-radius: 3px;
  display: inline-block;
  transition: 0.3s;
}
.about-page .sert a:hover {
  box-shadow: 0 0 15px #f0edd8;
}

/* about-page */
.footer {
  background: #f3f3f3;
  padding: 45px 0;
  /* row1 */
}
.footer .footer-ss {
  position: absolute;
  right: 0px;
  top: 0px;
}
@media screen and (max-width: 900px) {
  .footer .footer-ss {
    position: relative;
    margin-top: 20px;
  }
}
.footer .footer-ss svg * {
  fill: #000;
}
@media screen and (max-width: 900px) {
  .footer .footer-menu {
    display: none;
  }
}
.footer .footer-menu ul {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 20px;
       column-gap: 20px;
  list-style: none;
}
.footer .footer-menu ul li {
  padding: 0px 0px 15px 0px;
  line-height: 1.1;
}
.footer .footer-menu ul li a {
  color: #b1b1b1;
  text-decoration: underline;
}
.footer .footer-menu ul li a:hover {
  color: #fff;
  text-decoration: none;
}
.footer .copyright {
  padding-top: 10px;
  text-align: center;
}
.footer .copyright a {
  color: #000000;
}
.footer .copyright p {
  padding: 0 0 5px 0;
  margin: 0px;
}
.footer .zaytsevs {
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0.2;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .footer .zaytsevs {
    position: static;
    padding-top: 20px;
    text-align: center;
  }
}
.footer .zaytsevs img, .footer .zaytsevs svg {
  width: 120px;
}
.footer .zaytsevs path {
  fill: #000;
  stroke: #797979;
}
.footer .zaytsevs:hover {
  opacity: 0.8;
}
.footer .row1 {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
@media screen and (max-width: 900px) {
  .footer .row1 {
    justify-content: center;
  }
}
.footer .footer-contacts {
  text-align: right;
  padding-left: 30px;
}
@media screen and (max-width: 900px) {
  .footer .footer-contacts {
    padding-left: 0px;
  }
}
.footer .footer-contacts .phone {
  padding: 0 0 35px 0;
}
.footer .footer-contacts .phone a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  white-space: nowrap;
}
.footer .footer-contacts .city {
  color: #fff;
  white-space: nowrap;
}
.footer .footer-contacts .city b {
  font-size: 16px;
}
.footer .footer-contacts .email {
  padding: 0 0 50px 0;
}
.footer .footer-contacts .email a {
  color: #fff;
  text-decoration: underline;
  font-size: 24px;
  white-space: nowrap;
}
.footer .footer-contacts .email a:hover {
  text-decoration: none;
}
.footer .footer-contacts .tg a {
  padding-left: 20px;
}
.footer .footer-contacts .tg a:hover svg * {
  fill: #dadada;
}
.footer .footer-contacts .tg a svg {
  width: 34px;
}
.footer .footer-contacts .tg a svg * {
  fill: #fff;
}

/* footer*/
.popup-form1 {
  overflow: hidden;
  width: 300px;
  padding: 48px 40px 20px 40px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.popup-form1 .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 23px;
  color: #000000;
  padding-bottom: 30px;
  text-align: center;
}
.popup-form1 .submit {
  padding-top: 15px;
  text-align: center;
}
.popup-form1 .submit button {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.popup-form1 .submit button:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}

/* popup-form1 */
.fixed-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 71px;
  height: 71px;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .fixed-whatsapp {
    display: none;
  }
}
.fixed-whatsapp:hover a {
  transform: rotateY(360deg);
}
.fixed-whatsapp a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/whatsapp-big.svg) no-repeat;
  transition: all 0.7s ease-in-out;
}

.inner-wrap {
  padding: 10px 0 40px 0;
}
.inner-wrap.inner-wrap-catalog {
  padding: 10px 0 0px 0;
}
.inner-wrap.inner-wrap-gray {
  background: #ededed;
}
.inner-wrap h1 {
  text-align: left;
}

.path {
  color: #c4c1b0;
  font-size: 12px;
  padding: 0 0 30px 0;
}
@media screen and (max-width: 600px) {
  .path {
    padding: 0 0 20px 0;
  }
}
.path a {
  color: #626262;
}

.text-info-cat {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  padding-bottom: 5px;
}
@media screen and (max-width: 1100px) {
  .text-info-cat {
    flex-wrap: wrap;
  }
}
.text-info-cat .cat-imgs {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
@media screen and (max-width: 900px) {
  .text-info-cat .cat-imgs {
    flex-wrap: wrap;
  }
}
.text-info-cat .cat-imgs > div {
  padding-right: 20px;
  padding-bottom: 20px;
}
.text-info-cat .cat-imgs .get-img, .text-info-cat .cat-imgs .video {
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 900px) {
  .text-info-cat .cat-imgs .get-img, .text-info-cat .cat-imgs .video {
    width: 120px;
    height: 120px;
  }
}
.text-info-cat .cat-imgs .get-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.text-info-cat .cat-imgs .video iframe {
  width: 100%;
  height: 100%;
}
.text-info-cat .cat-text {
  flex-grow: 1;
}
.text-info-cat .cat-text .video {
  display: none;
}
@media screen and (max-width: 600px) {
  .text-info-cat .cat-text {
    font-size: 12px;
  }
}

/* text-info-cat */
.text-info img {
  max-width: 100%;
}

.cat-info {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  display: flex;
  margin-bottom: 20px;
  border: 3px solid #d8d8d8;
  background: #fafafa;
  border-radius: 3px;
  padding: 10px 20px;
}
@media screen and (max-width: 600px) {
  .cat-info {
    flex-wrap: wrap;
  }
}
.cat-info > div {
  padding-right: 20px;
}
.cat-info > div:last-child {
  padding-right: 0px;
}
@media screen and (max-width: 600px) {
  .cat-info .ico {
    display: none;
  }
}
.cat-info .ico img {
  width: 48px;
}
.cat-info .name {
  font-weight: bold;
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .cat-info .name {
    padding-bottom: 10px;
  }
}
.cat-info .download a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.cat-info .download a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}

.item-on-page {
  padding-bottom: 20px;
  text-align: right;
}
@media screen and (max-width: 600px) {
  .item-on-page {
    font-size: 12px;
    text-align: center;
  }
}
.item-on-page form select {
  height: 35px;
  border: 1px solid #d3d3d3;
  max-width: 130px;
}
@media screen and (max-width: 600px) {
  .item-on-page form select {
    max-width: 100px;
    padding: 0 5px;
  }
}

.filter-wrap {
  width: 250px;
}
@media screen and (max-width: 900px) {
  .filter-wrap {
    display: none;
  }
}

.filter {
  padding: 0 0 20px 0;
}
.filter .filter__name {
  font-weight: bold;
  font-size: 16px;
  padding: 0 0 3px 0;
}
.filter .filter__list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
.filter .filter__list label {
  padding-right: 10px;
  padding-bottom: 6px;
  white-space: nowrap;
  min-width: 83px;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter .filter__list label.disabled {
  opacity: 0.4;
}
.filter .filter__list span:before {
  content: "";
  display: inline-block;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background: #f2f3f5;
  margin-right: 8px;
  vertical-align: top;
  border: 2px solid #d8d8d8;
}
.filter .filter__list input[type=checkbox] {
  display: none;
}
.filter .filter__list input[type=checkbox]:checked + span:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' width='512' height='512' viewBox='0 0 78.369 78.369' style='enable-background:new 0 0 78.369 78.369;' xml:space='preserve' class=''%3E%3Cg%3E%3Cg%3E%3Cpath d='M78.049,19.015L29.458,67.606c-0.428,0.428-1.121,0.428-1.548,0L0.32,40.015c-0.427-0.426-0.427-1.119,0-1.547l6.704-6.704 c0.428-0.427,1.121-0.427,1.548,0l20.113,20.112l41.113-41.113c0.429-0.427,1.12-0.427,1.548,0l6.703,6.704 C78.477,17.894,78.477,18.586,78.049,19.015z' data-original='%23000000' class='active-path' style='fill:%23FFFFFF' data-old_color='%23000000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #e30613;
  border: 1px solid #e30613;
}

.filter-popup-btn {
  display: none;
  position: absolute;
  z-index: 1;
}

.cat2col {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
.cat2col .cat2col__left {
  flex-shrink: 1;
}
.cat2col .cat2col__right {
  flex-grow: 1;
  padding-left: 30px;
}
@media screen and (max-width: 900px) {
  .cat2col .cat2col__right {
    padding-left: 0px;
  }
}

.goods {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  display: flex;
}
@media screen and (max-width: 600px) {
  .goods {
    justify-content: space-around;
  }
}
.goods .item {
  box-sizing: border-box;
  transition: 0.3s;
  padding: 20px 30px;
  border-radius: 3px;
  width: 20%;
  margin-bottom: 30px;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  display: flex;
}
@media screen and (max-width: 1250px) {
  .goods .item {
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .goods .item {
    width: 30%;
  }
}
@media screen and (max-width: 900px) {
  .goods .item {
    padding: 10px;
    width: 45%;
  }
}
@media screen and (max-width: 600px) {
  .goods .item {
    width: 100%;
    max-width: 320px;
  }
}
.goods .item.empty:hover {
  box-shadow: none;
  background: none;
}
.goods .item:hover {
  background: #fcfcfb;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.goods .item .img {
  padding: 15px 0;
}
.goods .item .img a {
  display: block;
  height: 220px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .goods .item .img a {
    height: 200px;
  }
}
.goods .item .details {
  flex-grow: 1;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
}
@media screen and (max-width: 900px) {
  .goods .item .details > div {
    padding-bottom: 10px;
  }
}
.goods .item .name {
  flex-grow: 1;
}
.goods .item .name a {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .goods .item .name a {
    font-size: 16px;
  }
}
.goods .item .articul {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 0 5px 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
  border-bottom: 2px solid #f2f3f5;
}
.goods .item .articul span:last-child {
  font-weight: bold;
}
.goods .item .firm {
  display: none;
}
.goods .item .col {
  position: relative;
  cursor: default;
  /*
  span{
  	vertical-align:middle;
  	font-size:14px;
  	width:14px;
  	height:14px;
  	line-height:14px;
  	text-align:center;
  	border:1px solid #000;
  	border-radius:50%;
  	display:inline-block;
  	position:absolute;
  	margin:4px 0 0 3px;
  }
  */
}
.goods .item .col:hover .col__popup {
  display: block;
}
.goods .item .col .col__popup {
  display: none;
  position: absolute;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  white-space: nowrap;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
}
.goods .item .col .col__popup .ttl {
  padding-bottom: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.goods .item .col .col__popup .itm {
  white-space: nowrap;
}
.goods .item .col .col__popup .itm.itm1 {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.goods .item .col .col__popup table td {
  padding: 3px;
}
.goods .item .cart {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .goods .item .cart .add-favorite {
    display: none;
  }
  .goods .item .cart .fast-order {
    display: none;
  }
  .goods .item .cart br {
    display: none;
  }
}
.goods .item .fast {
  width: 100%;
  text-align: right;
}
.goods .item .fast a {
  display: block;
  margin-right: 0px;
}
.goods .item .app-cart-add {
  padding: 7px 0;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .goods .item .app-cart-add {
    padding: 0;
  }
}
.goods .item .app-cart-add a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 15px;
}
@media screen and (max-width: 900px) {
  .goods .item .app-cart-add a {
    padding: 0 15px;
  }
}
.goods .item .app-cart-add a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.goods .item .price {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
}
.pagination {
  padding: 20px;
  font-size: 18px;
  color: #cfd4c9;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
}
.pagination .active2 {
  color: #cfd4c9;
}
.pagination a {
  margin: 0 5px;
  display: inline-block;
  font-size: 24px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: Center;
  text-decoration: none;
}
.pagination a.active {
  background: #e30613;
  color: #fff;
  text-decoration: none;
}

.good-item {
  /* good-img-block */
  /* good-main-info */
  /* good-main-har */
  /* text-wrap */
}
.good-item .row1 {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  margin: 0 0px 50px 0px;
}
@media screen and (max-width: 900px) {
  .good-item .row1 {
    flex-wrap: wrap;
    margin: 0 0px 30px 0px;
  }
}
.good-item .row1 > div {
  width: 30%;
}
@media screen and (max-width: 1100px) {
  .good-item .row1 > div {
    width: 32%;
  }
}
@media screen and (max-width: 900px) {
  .good-item .row1 > div {
    width: 48%;
  }
}
@media screen and (max-width: 700px) {
  .good-item .row1 > div {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .good-item .good-img-block {
    width: 100% !important;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .good-item .good-img-block {
    margin-bottom: 10px;
  }
}
.good-item .good-img-block .main-img {
  margin-bottom: 20px;
}
.good-item .good-img-block .main-img .item {
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .good-item .good-img-block .main-img .item {
    width: auto;
  }
}
.good-item .good-img-block .main-img .item a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .good-item .good-img-block .main-imgs {
    display: none;
  }
}
.good-item .good-img-block .main-imgs .item {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.good-item .good-img-block .main-imgs .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.good-item .good-img-block .swiper-button-prev {
  left: 0px;
}
.good-item .good-img-block .swiper-button-next {
  right: 0px;
}
.good-item .good-img-block .swiper-button-prev, .good-item .good-img-block .swiper-button-next {
  width: 16px;
  height: 40px;
  margin-top: -20px;
  background-size: 16px auto;
}
.good-item .good-img-block .swiper-button-prev.swiper-button-disabled, .good-item .good-img-block .swiper-button-next.swiper-button-disabled {
  opacity: 0.1;
}
@media screen and (max-width: 1100px) {
  .good-item .good-main-info {
    margin-bottom: 30px;
  }
}
.good-item .good-main-info .item {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
  min-height: 40px;
}
.good-item .good-main-info .item:nth-child(odd) {
  background: #efefef;
}
.good-item .good-main-info .item.price {
  background: none;
}
.good-item .good-main-info .item.price > div {
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}
.good-item .good-main-info .item.price > div span {
  font-weight: normal;
}
.good-item .good-main-info .item.articul {
  background: none;
}
.good-item .good-main-info .item.articul > div {
  font-size: 16px;
  font-weight: bold;
}
.good-item .good-main-info .item.item-fav {
  background: none;
  padding-bottom: 15px;
  text-align: right;
}
.good-item .good-main-info .item > div {
  padding: 0px 10px;
}
.good-item .good-main-info .item > div:first-child {
  flex-grow: 1;
}
.good-item .good-main-info .item > div:last-child {
  width: 100px;
  flex-shrink: 0;
}
.good-item .good-main-info .item > div.cart a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.good-item .good-main-info .item > div.cart a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.good-item .good-main-info .item.item-buttons {
  min-height: 60px;
  background: none;
}
.good-item .good-main-info .item.item-buttons > div:first-child {
  text-align: right;
}
.good-item .good-main-info .item.item-buttons > div:last-child {
  width: auto;
}
.good-item .good-main-info .item.item-buttons .fast-order {
  font-weight: bold;
}
.good-item .good-main-info .item.item-download {
  min-height: 70px;
  border: 3px solid #d8d8d8;
  background: #fafafa;
  border-radius: 3px;
}
@media screen and (max-width: 355px) {
  .good-item .good-main-info .item.item-download {
    padding: 5px 0 5px 0px;
  }
}
.good-item .good-main-info .item.item-download:hover em {
  text-decoration: none;
  color: #e30613;
}
.good-item .good-main-info .item.item-download .ico {
  padding: 0px 0 0 10px;
}
@media screen and (max-width: 1000px) and (min-width: 900px) {
  .good-item .good-main-info .item.item-download .ico {
    display: none;
  }
}
@media screen and (max-width: 355px) {
  .good-item .good-main-info .item.item-download .ico {
    display: none;
  }
}
.good-item .good-main-info .item.item-download .ico img {
  width: 30px;
}
.good-item .good-main-info .item.item-download em {
  font-style: normal;
  text-decoration: underline;
}
.good-item .good-main-info .item.item-download a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex !important;
}
.good-item .good-main-info .item.item-download a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.good-item .good-main-har-wrap .ttl {
  padding: 0 0 15px 10px;
}
.good-item .good-main-har .item {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  display: flex;
  overflow: hidden;
  min-height: 40px;
}
.good-item .good-main-har .item:nth-child(odd) {
  background: #efefef;
}
.good-item .good-main-har .item > div {
  padding: 0px 10px;
}
.good-item .good-main-har .item > div:first-child {
  min-width: 100px;
  flex-grow: 1;
}
.good-item .good-main-har .item > div:last-child {
  flex-shrink: 0;
  text-align: right;
}
.good-item .text-wrap {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  padding: 0 0 30px 0;
}
@media screen and (max-width: 900px) {
  .good-item .text-wrap {
    display: block;
  }
}
.good-item .text-wrap .text img {
  max-width: 100%;
}
.good-item .text-wrap .text .video {
  display: none;
}
.good-item .text-wrap .video {
  padding-left: 60px;
}
@media screen and (max-width: 900px) {
  .good-item .text-wrap .video {
    padding-left: 0px;
  }
}
.good-item .text-wrap .video iframe {
  width: 360px;
  height: 280px;
}
@media screen and (max-width: 900px) {
  .good-item .text-wrap .video iframe {
    width: 100%;
  }
}

/* good-item */
.add-favorite {
  text-decoration: none;
}
.add-favorite:hover span {
  text-decoration: none;
}
.add-favorite span {
  text-decoration: underline;
}

/* add-favorite */
.related-wrap {
  padding: 0 30px 0px 30px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 450px) {
  .related-wrap {
    padding: 0 20px 0 20px;
  }
}
.related-wrap .swiper-container {
  position: static;
}

/* related-wrap */
.related-slider .swiper-button-prev {
  left: 0px;
}
.related-slider .swiper-button-next {
  right: 0px;
}
.related-slider .swiper-button-prev, .related-slider .swiper-button-next {
  width: 16px;
  height: 40px;
  margin-top: -20px;
  background-size: 16px auto;
}
.related-slider .swiper-button-prev.swiper-button-disabled, .related-slider .swiper-button-next.swiper-button-disabled {
  opacity: 0.1;
}
.related-slider .item {
  max-width: 400px;
  box-sizing: border-box;
  transition: 0.3s;
  padding: 10px 15px;
  margin: 0px auto;
  background: #fff;
  border-radius: 3px;
}
.related-slider .item .name {
  max-height: 67px;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}
.related-slider .item .img {
  padding-right: 20px;
}
.related-slider .item .img a {
  width: 160px;
  height: 180px;
  display: block;
}
@media screen and (max-width: 450px) {
  .related-slider .item .img a {
    width: 100%;
  }
}
.related-slider .item .info {
  padding: 15px 0 0 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  display: flex;
}
@media screen and (max-width: 450px) {
  .related-slider .item .info > div {
    width: 50%;
  }
}
.related-slider .item .details {
  flex-grow: 1;
  padding-bottom: 20px;
  /*
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:space-between; 
  align-items:center; 
  align-content:center; 
  display:flex; 
  */
}
.related-slider .item .details > div {
  padding-bottom: 10px;
}
.related-slider .item .name {
  font-size: 16px;
  font-weight: bold;
}
.related-slider .item .app-cart-add {
  padding: 0;
  display: inline-block;
}
.related-slider .item .app-cart-add a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 15px;
}
@media screen and (max-width: 450px) {
  .related-slider .item .app-cart-add a {
    padding: 0 10px;
  }
}
.related-slider .item .app-cart-add a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.related-slider .item .price {
  font-size: 22px;
  font-weight: bold;
}
.related-slider .item .price span {
  font-weight: normal;
}

/* related-wrap */
.gray-block {
  background: #f3f3f3;
  padding: 30px 0 30px 0;
}
@media screen and (max-width: 450px) {
  .gray-block {
    padding: 30px 0 1px 0;
  }
}
@media screen and (max-width: 450px) {
  .gray-block .width {
    padding: 0px 5px;
  }
}

/* gray-block */
.title2 {
  font-size: 22px;
  font-weight: normal;
  margin-right: 0px;
  color: #000;
  padding: 3px 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 4px solid #b1b1b1;
}

.contacts-row {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
@media screen and (max-width: 900px) {
  .contacts-row {
    display: block;
  }
}
.contacts-row .docs {
  max-width: 50%;
}
@media screen and (max-width: 900px) {
  .contacts-row .docs {
    max-width: 100%;
  }
}

.contacts-img {
  max-width: 100%;
}

.cart-item-delete {
  opacity: 0.4;
}

.app-cart-restore {
  display: none;
}

.warn-text {
  color: #ff0000;
  margin: 0 0 20px 0;
}

.notify {
  border-radius: 2px;
  width: 250px;
  padding: 10px 10px;
  margin: 5px 5px 0 0;
  box-shadow: 0px 0px 10px rbga(0, 0, 0, 0.8);
  z-index: 99999;
}
.notify b {
  display: block;
}
.notify a {
  color: #fff;
}
.notify .exit {
  width: 14px;
  height: 14px;
  background: url(../img/glyphicons-halflings.png);
  background-position: -312px 0px;
  float: right;
  cursor: pointer;
}

.notify_error {
  background: #cc0000;
  color: #fff;
}

.notify_success {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.notify_info {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.fast-order-form {
  width: 780px;
  padding: 20px;
}
.fast-order-form h1 {
  text-align: left;
  font-size: 22px;
}

.fast-order-form .samovivoz fieldset {
  max-width: 400px !important;
}

.fast-order-form h1 {
  padding: 0;
}

.fast-order-form .right {
  float: right;
  width: 300px;
}

.fast-order-form .submit {
  text-align: center;
}

.fast-order-form .item {
  vertical-align: top;
  box-sizing: border-box;
}

.fast-order-form .item .info {
  display: block;
  position: relative;
  padding: 10px 0 0 0;
}

.fast-order-form .item .name {
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}

.fast-order-form .item .details {
  display: block;
  width: auto;
}

.fast-order-form .item .img {
  width: 150px;
}

.fast-order-form .item .img img {
  max-width: 150px;
  max-height: 150px;
}

.fast-order-form .item .row {
  display: block;
  vertical-align: top;
  padding: 0;
}

.fast-order-form .item .row b {
  font-size: 16px;
}

.fast-order-form .item .price {
  color: #e30613;
  font-size: 22px;
}

.fast-order-form .item .padtop {
  padding-top: 15px;
}

.paymethod {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}

.paymethod .item {
  width: 135px;
  text-align: center;
  padding: 10px 0;
  border: 2px solid transparent;
  cursor: pointer;
}

.paymethod .item label {
  cursor: pointer;
}

.paymethod .active {
  border: 2px solid #75932a;
}

legend {
  padding: 0 10px;
  font-weight: bold;
  margin-left: -10px;
}

fieldset {
  padding: 20px;
}

form em {
  color: #e30613;
  font-style: normal;
}

.cart-table {
  display: table;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .cart-table {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .cart-table .firm {
    display: none;
  }
}
.cart-table > div.th {
  display: table-row;
}
@media screen and (max-width: 900px) {
  .cart-table > div.th {
    display: none;
  }
}
.cart-table > div.th > div {
  display: table-cell;
  padding: 5px 20px 5px 5px;
  background: #efefef;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .cart-table > div.th > div {
    display: block;
  }
}
.cart-table > div.tr {
  display: table-row;
}
@media screen and (max-width: 900px) {
  .cart-table > div.tr {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    display: flex;
    border-bottom: 1px solid #b6b6b6;
  }
}
.cart-table > div.tr > div {
  display: table-cell;
  padding: 5px 20px 5px 5px;
  border-bottom: 1px solid #b6b6b6;
  vertical-align: middle;
}
@media screen and (max-width: 900px) {
  .cart-table > div.tr > div {
    display: block;
    border-bottom: 0px;
  }
}
.cart-table .img {
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .cart-table .img {
    width: 40px;
  }
}
.cart-table .img img {
  max-width: 80px;
  max-height: 80px;
}
@media screen and (max-width: 900px) {
  .cart-table .img img {
    max-width: 40px;
    max-height: 40px;
  }
}
.cart-table input[type=text] {
  width: 30px;
  text-align: center;
}

.cart-order {
  clear: both;
  text-align: center;
  padding: 20px 0 0 0;
}

.cart-order input[type=button] {
  padding: 5px;
}

.cart-table input[type=button] {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.cart-table input[type=button]:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}
.cart-table .total {
  font-weight: bold;
}

.cart-order input[type=button] {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.cart-order input[type=button]:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}

.fos_token {
  display: none;
}

.address_dom {
  float: left;
  max-width: 125px;
  margin-right: 10px;
}

.address_dom:last-child {
  margin-right: 0px;
}

.address_dom input {
  width: 100%;
}

.address_korp {
  max-width: 265px;
  min-width: 265px;
}

.address_dom2 {
  float: left;
  width: 265px;
  margin-right: 10px;
}

.address_dom2 {
  margin-right: 0px;
}

.address_dom2 input {
  width: 100%;
}

.shipping-block label {
  display: block;
  padding: 3px 0;
  position: relative;
  line-height: 32px;
}

.shipping-block label .popup {
  display: none;
  position: absolute;
  width: 400px;
  background: #fff;
  border: 4px solid #000;
  padding: 20px;
  top: 0px;
  left: -200px;
  z-index: 10000;
  color: #000;
  line-height: 20px;
}

.shipping-block label .info {
  display: inline-block;
  color: #7C9C2D;
  position: relative;
}

.shipping-block label .info:hover .popup {
  display: block;
}

.shipping-block label .popup .name {
  font-size: 20px;
  margin: 0 0 10px 0;
}

.shipping-block label .popup .img {
  padding: 10px 0 0 0;
}

.shipping-block label .popup .img img {
  width: 100%;
}

.shipping-block label .popup .time {
  margin: 0 0 10px 0;
}

.shipping-block label img {
  vertical-align: top;
  padding-right: 10px;
}

.clear {
  clear: both;
}

.title3 {
  font-size: 22px;
  font-weight: 400;
  margin-right: 0;
  color: #000;
  padding: 3px 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 4px solid #b1b1b1;
}

.button button, .button a {
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  background: #e30613;
  border-radius: 3px;
  color: #fff;
  transition: 0.3s;
  padding: 0 30px;
  cursor: pointer;
  border: 0px;
  text-decoration: none;
  white-space: nowrap;
}
.button button:hover, .button a:hover {
  background: #ff2f62;
  box-shadow: 0px 0px 10px rgba(240, 0, 0, 0.5);
}

.overflow {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0px;
  top: 0px;
  z-index: 999;
}

.years18-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1010;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.years18 {
  background: #fff;
  padding: 60px 40px 40px 40px;
  width: 300px;
}
.years18 .years18__hi {
  text-align: center;
  font-size: 20px;
}
.years18 .years18__q {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.years18 .years18__btns {
  text-align: center;
  padding: 30px 0 50px 0;
}
.years18 .years18__btns a {
  display: inline-block;
  margin: 0 20px;
  padding: 5px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.years18 .years18__btns a:first-child {
  background: #e30613;
}
.years18 .years18__btns a:last-child {
  background: #fad706;
}
.years18 .years18__info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.years18 .years18__info span {
  flex-shrink: 0;
  background: #f6f6f6;
  font-weight: bold;
  border-radius: 50%;
  line-height: 40px;
  width: 40px;
  text-align: center;
  display: block;
}
.years18 .years18__info div {
  font-size: 9px;
  padding-left: 10px;
  line-height: 1.15;
  color: rgb(85, 85, 85);
}

.ss-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.ss-block a {
  display: block;
  margin: 0 10px;
}
/*# sourceMappingURL=main.css.map */
