@charset 'UTF-8';
@import url( ./normalize.min.css );

/* roboto-300 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto2';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Roboto2/roboto-v30-cyrillic_latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/Roboto2/roboto-v30-cyrillic_latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-regular - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto2';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Roboto2/roboto-v30-cyrillic_latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/Roboto2/roboto-v30-cyrillic_latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-500 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto2';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Roboto2/roboto-v30-cyrillic_latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/Roboto2/roboto-v30-cyrillic_latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-700 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto2';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Roboto2/roboto-v30-cyrillic_latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/Roboto2/roboto-v30-cyrillic_latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
}

body {
  min-height: 100vh;
  font-family: PTSans, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: stretch;
  align-items: stretch;
  justify-content: flex-start;
  flex-basis: auto;
}
body.lock {
  overflow: hidden;
}
#main {
  flex-grow: 1;
  flex-basis: auto;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: CeraPro, serif;
  line-height: 1.5em;
  font-weight: 400;
}
.h2 {
  font-size: 24px;
}
hr {
  display: block;
  margin: 15px 0;
  border: 0;
  height: 1px;
  background: #dadada;
  color: #dadada;
}

.red {
  color: #f1635f;
}

p.small {
  font-size: 11px;
}

img {
  max-width: 100%;
}

#loading {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255,255,255,.7);
  opacity: 0;
  visibility: hidden;
  transition: .5s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#loading.active {
  opacity: 1;
  visibility: visible;
}
#loading:before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  border-top: 2px solid #f15d58;
  border-left: 1.75px solid #f15d58dd;
  border-bottom: 1.50px solid #f15d58aa;
  border-right: 1.25px solid transparent;
  border-radius: 50%;
  animation: rotate .5s ease infinite;
}
/*#loading:after {
  content: '';
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 30px;
  height: 30px;
  background: url(../images/cart.png) no-repeat;
  background-size: contain;
  background-position: center;
  box-shadow: 0 0 20px #fff;
}*/
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#back-top {
  position: fixed;
  left: 25px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 27px rgba(0,0,0,.16);
  font-size: 24px;
  line-height: 400;
  background: #fff;
  color: #a4a4a4;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
  z-index: 14;
}
#back-top.active {
  opacity: 1;
  visibility: visible;
}
#back-top:hover {
  background: #f15d58;
  color: #fff;
}

.mt0 {
  margin-top: 0 !important;
}

.label-group,
.btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 10px -10px;
}
.label-group .input-label {
  width: calc( 50% - 20px );
  margin: 0 10px;
}
.btn-group .btn {
  margin: 0 10px;
}

label.input-label {
  display: block;
  margin: 10px 0;
}
label.input-label span {
  cursor: pointer;
  font-family: CeraPro, serif;
  font-size: 14px;
  line-height: 1.1em;
  margin-bottom: 5px;
  display: block;
  color: #3c3c3c;
}
label.input-label span sup {
  color: #f26561;
}
label.input-label input,
label.input-label textarea {
  font-size: 14px;
  line-height: 1em;
  padding: 8px 10px;
  /*background: #f2f4f7;*/
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #333;
  resize: none;
}
label.input-label textarea {
  line-height: 1.5em;
}
label.input-label input::placeholder,
label.input-label textarea::placeholder {
  color: #737373;
}

label.checkbox-label,
label.radio-label {
  display: block;
  margin: 15px 0;
  cursor: pointer;
}
label.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
label.checkbox-label input {
  width: 14px;
  height: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  transition: .2s ease-in-out;
}
label.checkbox-label input:checked {
  accent-color: #f15d58;
  background: #f15d58;
}
label.radio-label input {
  display: none;
}
label.checkbox-label span,
label.radio-label span {
  display: block;
  padding: 0;
  padding-left: 25px;
  font-size: 14px;
  color: #0f0f0f;
  line-height: 1.1em;
  position: relative;
}
label.checkbox-label span {
  padding-left: 0;
  margin-left: 8px;
}
label.checkbox-label span em,
label.radio-label span em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 12px;
  line-height: 1em;
  color: #3c3c3c;
}
label.checkbox-label.small span,
label.radio-label.small span {
  font-size: 12px;
}
label.checkbox-label.small span em,
label.radio-label.small span em {
  font-size: 10px;
}
label.checkbox-label span:before {
  /*content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 1em;
  color: transparent;
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 14px;
  height: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  transition: .2s ease-in-out;*/
}
label.checkbox-label input:checked + span {}
label.checkbox-label input:checked + span:before {
  background: #f15d58;
  border: 1px solid #f15d58;
  color: #fff;
}
label.radio-label span:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  transition: .2s ease-in-out;
}
label.radio-label span:after {
  content: '';
  display: block;
  position: absolute;
  left: 5px;
  top: 4px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
label.radio-label input:checked + span {}
label.radio-label input:checked + span:before {
  border: 1px solid #f15d58;
  background: #f15d58;
}
label.radio-label input:checked + span:after {
  opacity: 1;
  visibility: visible;
}

.form-info {
  margin: 0;
  font-size: 14px;
  color: #0f0f0f;
  line-height: 1.1em;
}
.form-info a {
  text-decoration: none;
  color: #f1635f;
  border-bottom: 1px dashed #f1635f;
}

.page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page ul li {
  padding-left: 20px;
  position: relative;
}
.page ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f1635f;
}

ul.decorative {
  margin: 20px 0;
  padding: 0;
  list-style: none !important;
}
ul.decorative li {
  font-size: 15px;
  line-height: 1.3em;
  margin: 20px 0;
  padding-left: 25px;
  position: relative;
}
ul.decorative li:before {
  display: none;
}
ul.decorative li:after {
  content: '\f00c';
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-weight: 300;
  line-height: 1em;
  color: #32bc08;
}
ul.decorative li:first-child {
  margin-top: 0;
}
ul.decorative li:last-child {
  margin-bottom: 0;
}

div.table {
  margin: 15px 0;
}
div.table .table-header {
  background: #f3f4f7;
  color: #707071;
  font-size: 14px;
  line-height: 1em;
}
div.table .table-body {}
div.table .table-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e0e2e8;
}
div.table .table-row .table-col {
  padding: 15px;
}

.fa-success,
.fa-info,
.fa-error {
  display: block;
  width: 25px;
  height: 25px;
  background: #eee;
  border-radius: 50%;
  position: relative;
  font-style: normal;
}
.fa-success {
  background: #76b172;
}
.fa-error {
  background: #f15d58;
}
.fa-info {
  background: #4557c0;
}
.fa-success:before,
.fa-info:before,
.fa-error:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  line-height: 1em;
  font-weight: bold;
  color: #fff;
}
.fa-success:before {
  content: '\f00c';
  left: 5px;
  top: 6px;
  font-size: 15px;
}
.fa-error:before {
  content: '\f00d';
  left: 7px;
  top: 5px;
}
.fa-info:before {
  content: '\f12a' !important;
  left: 9px;
  top: 4px;
}

.tabs {
  position: relative;
}
.tabs .controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dcdcdc;
  margin: 25px 0;
}
.tabs.icons .controls {
  border-bottom: 0;
}
.tabs .controls .item {
  color: #f15d58;
  padding: 10px 0;
  margin-left: 25px;
  position: relative;
  cursor: pointer;
  transition: .2s ease-in-out;
}
.tabs .controls .item:first-child {
  margin-left: 0;
}
.tabs .controls .item:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  transition: .2s ease-in-out;
}
.tabs .controls .item:hover,
.tabs .controls .item.active {
  color: #4c4c4c;
}
.tabs .controls .item.active {
  padding-right: 20px;
  position: relative;
}
.tabs .controls .item:hover:after,
.tabs .controls .item.active:after {
  background: #f15d58;
}
.tabs .controls .item:before {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  font-size: 10px;
  line-height: 1em;
  position: absolute;
  right: 0;
  top: calc( 50% - 3px );
  transform: translate(-50%,-50%);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
}
.tabs .controls .item.active:before {
  opacity: 1;
  visibility: visible;
}
.tabs.icons .controls .item:after {
  display: none;
}
.tabs.icons .controls .item:before {
  display: none;
}
.tabs .tab {
  height: 0;
  overflow: hidden;
  display: none;
}
.tabs .tab.active {
  height: initial;
  display: block;
}

.privacy-policy-warning {
  font-size: 12px;
  color: #737373;
  line-height: 1.2em;
  text-align: center;
  margin: 0;
}
.privacy-policy-warning a {
  color: #f15d58;
  text-decoration: none;
  border-bottom: 1px dashed #f1635f;
}

.awtooltip {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: #f7f7f7;
  border-radius: 5px;
  color: #333;
  font-size: 12px;
  line-height: 1em;
  padding: 7px 10px;
  z-index: 9999;
  transform: translate(-50%,-150%);
  pointer-events: none;
  -webkit-box-shadow: 3px 3px 10px rgba(0,0,0,.3);
  box-shadow: 3px 3px 10px rgba(0,0,0,.3);
}
.awtooltip:after {
  content: '';
  position: absolute;
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f7f7f7;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1
}
.awtooltip.red {
  background: #f15d58;
  color: #fff;
}
.awtooltip.red:after {
  border-top: 5px solid #f15d58;
}

.awmodals {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.6);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
.awmodals.active {
  opacity: 1;
  visibility: visible;
}
.awmodals .awmodal {
  width: 100%;
  max-width: 500px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.6);
  box-shadow: 0 0 5px rgba(0,0,0,.6);
  transform: translate(0, -100px);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
.awmodals .awmodal.active {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
.awmodals .awmodal .header {
  font-family: PTSans, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
  color: #000;
  padding: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.awmodals .awmodal .header .awclose {
  position: absolute;
  display: block;
  top: 14px;
  right: 14px;
  width: 25px;
  height: 25px;
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: .2s ease-in-out;
  color: #ddd;
}
.awmodals .awmodal .header .awclose:hover {
  color: red;
}
.awmodals .awmodal .body {
  padding: 0 15px 10px;
}
.awmodals .awmodal .btn {
  font-size: 16px;
  line-height: 1em;
  width: 100%;
  padding: 15px;
}
.awmodals .awmodal .privacy-policy-warning {
  margin-top: 15px;
  margin-bottom: 5px;
}

.quantity {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.quantity button {
  display: block;
  height: 38px;
  width: 30px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #9e9e9f;
  font-size: 15px;
  line-height: 1em;
  cursor: pointer;
  position: relative;
}
.quantity button.dec {
  border-radius: 5px 0 0 5px;
}
.quantity button.blocked {
  background: #eee;
}
.quantity button.dec:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 1px;
  background: #9e9e9f;
}
.quantity button.inc {
  border-radius: 0 5px 5px 0;
}
.quantity button.inc:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 1px;
  background: #9e9e9f;
}
.quantity button.inc:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 1px;
  height: 10px;
  background: #9e9e9f;
}
.quantity input {
  display: block;
  height: 38px;
  width: 38px;
  border: 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  color: #1e1e1e;
  font-size: 15px;
  line-height: 1em;
  text-align: center;
}
.product-limited {
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding-bottom: 15px;
  color: #555;
}
button.text {
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  color: #f15d58;
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 1px dashed #f15d58;
}

.btn {
  display: block;
  margin: 0;
  padding: 15px 25px;
  font-size: 14px;
  line-height: 1em;
  color: #1e1e1e;
  background: #eee;
  border: 1px solid #d9d9d9 !important;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  transition: .2s ease;
}
.btn:hover {
  background: #dedede;
}
.btn.primary {
  background: #f15d58;
  color: #fff;
  border: none !important;
}
.btn.primary:hover {
  background: #b1322e;
}
.btn.blue {
  background: #4469f6;
  color: #fff;
}
.btn.blue:hover {
  background: #4469f6
}
.btn.green {
  background: #76b172;
  color: #fff;
  border: none !important;
}
.btn.green:hover {
  background: #5f9e5a
}
.btn.white {
  background: #fff;
  color: #676767;
}
.btn.white:hover {
  background: #f3f4f7;
}
.btn.wishlist,
.btn.print,
.btn.warning {
  padding: 5px 0 5px 35px;
  margin: 0;
  font-size: 16px;
  line-height: 1em;
  font-weight: 300;
  color: #3c3c3c;
  position: relative;
  background: transparent;
  white-space: nowrap;
  border: none !important;
}
.btn.wishlist:hover,
.btn.wishlist.active,
.btn.print:hover,
.btn.warning:hover {
  color: #f2605c;
}
.btn.wishlist:before,
.btn.print:before,
.btn.warning:before {
  content: '';
  font-family: 'Font Awesome 5 Pro';
  font-size: 25px;
  line-height: 1em;
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.btn.wishlist:before {
  content: '\f004';
}
.btn.wishlist.active:before {
  font-weight: bold;
}
.btn.print:before {
  content: '\f02f';
}
.btn.warning:before {
  content: '\f071';
}
.btn.small {
  padding: 7px 15px;
  font-size: 12px;
  line-height: 1em;
  margin-top: 5px;
}

.breadcrumb {
  width: 100%;
  max-width: 1250px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb li {
  font-size: 14px;
  color: #898989;
}
.breadcrumb li a {
  color: #898989;
  text-decoration: none;
}
.breadcrumb li .divider {
  display: inline-block;
  margin: 0 5px 0 2px;
}
.breadcrumb li:first-child {
  display: none;
}
.breadcrumb .siblings li:first-child {
	display: inherit;
}

#main {
  padding: 0 15px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: .5vw;
}
.grid.x5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid.x4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.x3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.x2 {
  grid-template-columns: repeat(2, 1fr);
}

section.block,
section.page {}
section.block .inner,
section.page .inner {
  max-width: 1250px;
  margin: 30px auto;
}
section.page .inner {
  margin-top: 0;
}
section.page a {
  text-decoration: none;
  color: #f1635f;
  border-bottom: 1px dashed #f1635f;
}
section.page .header {
  margin-bottom: 15px;
}
section.page .header h1,
section.page .header h2 {
  margin: 0;
}

#header .header-offer {
  background-position: left !important;
  background-size: contain !important;
  z-index: 1;
  position: relative;
}
#header .header-offer.center .inner {
  justify-content: center;
  align-items: center;
  text-align: center;
}
#header .header-offer:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*background: rgba(0,0,0,.6);*/
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
#header .header-offer .inner {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#header .header-offer.small .inner {
  padding: 7px 0;
}
#header .header-offer .inner .offer {}
#header .header-offer .inner .offer .title {
  font-size: 30px;
  line-height: 1.3em;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,.4)
}
#header .header-offer.small .inner .offer .title {
  font-size: 22px;
}
#header .header-offer .inner .offer .subtitle {
	font-size: 18px;
	line-height: 2em;
	color: #fff;
}
#header .header-offer .inner .offer .subtitle a {

	color: #fff;
}
#header .header-offer .inner .btn {
  margin-left: 45px;
  padding: 10px 20px 11px;
  padding-right: 45px;
  position: relative;
  line-height: 1em;
}
#header .header-offer .inner .btn:after {
  content: '';
  display: block;
  pointer-events: none;
  width: 12px;
  height: 12px;
  background: url(../images/arrow-right.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translate(0,-50%);
}

#categories-group {}
#categories-group .inner {}
#categories-group .group {
  background: #eee;
  padding: 15px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 1px rgba(0,0,0,.1);
  box-shadow: 0 0 1px rgba(0,0,0,.1);
  transition: .2s ease;
  z-index: 1;
  position: relative;
}
#categories-group .group .image,
#categories-group .group .hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-background-size: cover !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
#categories-group .group .image {
  opacity: 1;
  visibility: visible;
}
#categories-group .group .hover {
  opacity: 0;
  visibility: hidden;
}
#categories-group .group:hover {
  -webkit-box-shadow: 0 20px 30px rgba(0,0,0,.3);
  box-shadow: 0 20px 30px rgba(0,0,0,.3);
}
#categories-group .group:hover .image {
  opacity: 0;
  visibility: hidden;
}
#categories-group .group:hover .hover {
  opacity: 1;
  visibility: visible;
}
#categories-group .group .header {
  margin-bottom: 15px;
}
#categories-group .group .header h3 {
  font-family: PTSans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: #4469f6;
  margin: 0;
}
#categories-group .group ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#categories-group .group ul.list li.item {
  margin: 5px 0
}
#categories-group .group ul.list li.item a {
  text-decoration: none;
  font-size: 14px;
  color: #676767;
  transition: .2s ease;
  display: inline-block;
  line-height: 1.3;
}
#categories-group .group:hover ul.list li.item a {
  color: #333;
}
#categories-group .group ul.list li.item a:hover {
  color: #f26561;
}

#bonus-card .inner {
  background: #fa8580;
  padding: 30px 45px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  color: #3c3c3c;
  overflow: hidden;
}
#bonus-card .inner:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: -1;
  background: url(/images/bonus-cards.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: left;
}
#bonus-card .inner h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1em;
  margin: 0 0 20px;
}
#bonus-card .inner h3 a {
  color: #ffcd6c;
}
#bonus-card .inner p {
  margin: 0;
}

#homepage_slider .inner {
  overflow: hidden;
  position: relative;
  /*height: 320px;*/
}
#homepage_slider .inner .slides {}
#homepage_slider .inner .slides .slide {
  display: block;
  margin: 0;
  padding: 0;
}
#homepage_slider .inner .slides .slide img {
  width: 100%;
}
#homepage_slider .inner .controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
#homepage_slider .inner .controls button {
  padding: 0;
  margin: 0;
  background: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
}
#homepage_slider .inner .dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 0;
}
#homepage_slider .inner .dots .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin: 0 -5px;
}
#homepage_slider .inner .dots .slick-dots li {
  margin: 0 5px;
  outline: none;
}
#homepage_slider .inner .dots .slick-dots li button {
  display: none;
  outline: none;
}
#homepage_slider .inner .dots .slick-dots li:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: .2s ease;
  outline: none;
}
#homepage_slider .inner .dots .slick-dots li.slick-active:after {
  width: 36px;
  background: #fff;
  border-radius: 25px;
}

section.block.slider {}
section.block.slider .inner {
  -webkit-background-size: cover !important;
  background-size: cover !important;
  background-position: center !important;
}
section.block.slider .header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border: none;
}
section.block.slider .header h2,
section.block.slider .header h2 a {
  color: #f26561;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  font-family: PTSans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 30px 0 0;
  line-height: 1em;
}
section.block.slider .header h2 a {
  text-decoration: none;
  border-bottom: 0;
}
section.block.slider .header h2 a:hover {
  border-bottom: 1px solid #f26561;
}
section.block.slider .header h2 img,
section.block.slider .header h2 svg {
  display: block;
  width: 23px;
  height: 32px;
  margin-right: 10px;
}
section.block.slider .header .divider {
  flex: 1;
  height: 1px;
  background: #d2d2d299; 
}
section.block.slider.short .header .divider {
  display: none;
}
section.block.slider .header .controls {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
section.block.slider .header .controls button {
  display: block;
  background: #fff;
  outline: none;
  border: 1px solid #d2d2d2;
  line-height: 1em;
  cursor: pointer;
  transition: .2s ease;
}
section.block.slider .header .controls button:hover {
  background: #eee;
  transition: .2s ease;
}
section.block.slider .header .controls button.prev {
  padding: 10px 14px 8px 12px;
  border-radius: 5px 0 0 5px;
}
section.block.slider .header .controls button.next {
  padding: 10px 12px 8px 14px;
  border-left: 0;
  border-radius: 0 5px 5px 0;
}
section.block.slider.inactive .slides {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -5px;
}
section.block.slider .slides .slide {
  margin: 0 5px;
}
section.block.slider .slides .slide.showmore {}
section.block.slider .slides .slide.showmore a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 484px;
  background: #f2f4f7;
  padding: 3px;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  text-decoration: none;
}
section.block.slider .slides .slide.showmore a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #FF4E3A;
  border-radius: 8px;
  color: #fff;
  font-size: 26px;
  margin: 0 auto 10px;
}
section.block.slider .slides .slide.showmore a span:not(.icon) {
  display: block;
  text-align: center;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #000;
}

section.grouped-sliders {
  max-width: 1250px;
  margin: 0 auto;
}
section.grouped-sliders>.inner {
  margin: 0 -15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
}
section.grouped-sliders .item {
  width: calc( 100% / 2 - 30px );
  margin: 0 15px;
}
section.grouped-sliders section.block.slider .inner {
  margin: 0;
}

.product_card {
  background: #f2f4f7;
  padding: 3px;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  display: block;
  text-decoration: none;
  position: relative;
  transition: .2s ease;
}
.product_card:hover {
  border: 1px solid #8a715d;
  box-shadow: 0 0 10px rgba(0,0,0,.18);
  transition: .2s ease;
}
.product_card .image {
  display: block;
  padding: 10px;
  padding-top: 0;
  background: #fff;
  margin-bottom: 10px;
  text-decoration: none;
  border-bottom: 0;
  position: relative;
}
.product_card .image img {
  max-width: 100%;
  margin: 0 auto;
}
.product_card .info {
  display: block !important;
  padding: 0 10px !important;
  line-height: 18px !important;
  z-index: 1 !important;
  border-bottom: none !important;
  margin: 0 !important;
}
.product_card .ean {
/*  display: inline-block;*/
  font-size: 13px !important;
  line-height: 1em !important;
  color: #7f7f7f !important;
  margin-bottom: 10px !important;
  cursor: pointer !important;
  text-align: right;
  padding: 7px 7px 0 0;
/*  position: absolute;
  top: 7px;
  right: 7px;  */
}
.product_card .info .name {
  display: block;
  font-size: 15px;
  color: #1e1e1e;
  text-decoration: none;
  margin-bottom: 10px;
  transition: .2s ease;
  position: relative;
  z-index: 2;
  height: 36px;
  transition: .2s ease;
  border-bottom: none;
}
.product_card .info .name span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 36px;
  overflow: hidden;
  transition: .1s linear;
  z-index: 1;
}
.product_card:hover .info .name span {
  max-height: 500px;
  padding: 5px 0;
  background: #eee;
}
.product_card .info .available,
#product .available {
  margin-bottom: 10px;
}
.product_card .info .available span,
#product .available span {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1em;
}
.product_card .info .available span:before,
#product .available span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  transform: translate(0,-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #797979;
}
.product_card .info .available .avlb,
#product .available .avlb {
  color: #64ad75;
}
.product_card .info .available .avlb:before,
#product .available .avlb:before {
  background: #64ad75;
}
.product_card .info .available .navlb,
#product .available .navlb {
  color: #f26561;
}
.product_card .info .available .navlb:before,
#product .available .navlb:before {
  background: #f26561;
}
.product_card .info .available .mavlb,
#product .available .mavlb {
  color: #c6a66a
}
.product_card .info .available .mavlb:before,
#product .available .mavlb:before {
  background: #c6a66a
}
.product_card .info .available .savlb,
#product .available .savlb {
  color: #6491ce;
}
.product_card .info .available .savlb:before,
#product .available .savlb:before {
  background: #6491ce;
}
.product_card .info .prices {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -2px 10px;
}
.product_card .info .prices .current {
  margin: 0 2px;
  font-size: 19px;
  line-height: 1em;
  font-weight: 700;
  color: #000;
}
.product_card .info .prices .current.red {
  color: #f2605c;
}
.product_card .info .prices .old {
  margin: 0 2px;
  font-size: 15px;
  line-height: 1em;
  color: #000;
  position: relative;
}
.product_card .order {
  padding: 5px 0;
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}
.product_card .order .quantity {
  margin: 0 3px 0 5px;
}
.product_card .order .buy {
  min-width: 122px;
  text-align: center;
  margin: 0 5px 0 3px;
  padding: 12px 25px;
}
.product_card .order .buy {

}
.product_card .order .buy.active {
  background: #b1322e;
}

.order .in-cart {
  color: #f2605c;
  display: block;
  flex: 1;
  text-align: center;
}
.order .in-cart a {
  margin-left: 10px;
  color: #f15d58;
  text-decoration: none;
  border-bottom: 1px dashed #f15d58;
}

section.block.slider.short .product_card,
section.block.slider.short .product_card .info .name span {
  background: #fff;
}
/*section.block.slider.short .product_card .info .name:hover span {
  max-height: 72px;
}*/
section.block.slider.short .product_card .info .prices .current {
  font-size: 16px;
  color: #343434;
}
section.block.slider.short .product_card .info .prices .old {
  font-size: 13px;
}
section.block.slider.short .product_card .info .prices .old:after {
  top: 7px;
}

section#we-are-recommended .slides .slide {}
section#we-are-recommended .slides .slide .logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: calc( 100% - 30px );
  height: 100px;
  margin: 15px;
  padding: 15px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border-radius: 3px;
  transition: .2s ease;
}
section#we-are-recommended .slides .slide:hover .logo {
  transform: translate(0,-10px);
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,.3);
  box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
section#we-are-recommended .slides .slide .logo img {
  max-width: 100%;
  max-height: 70px;
}

section#contacts {}
section#contacts .inner {}
section#contacts .inner .header {}
section#contacts .inner .grid {
  grid-gap: 1vw;
}
section#contacts .inner .grid .item {}
section#contacts .inner .grid .item .header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 15px;
  padding-top: 20px;
  border-top: 1px solid #d3d3d3;
}
section#contacts .inner .grid .item .header .address,
section#contacts .inner .grid .item .header .phone,
section#contacts .inner .grid .item .header .hours {
  padding: 0 15px;
  border-right: 1px solid #d3d3d3;
}
section#contacts .inner .grid .item .header .address {
  padding: 0;
  width: 270px;
}
section#contacts .inner .grid .item .header .phone {
  width: 170px;
}
section#contacts .inner .grid .item .header .hours {
  width: 170px;
  border-right: 0;
  padding-right: 0;
}
section#contacts .inner .grid .item .header span {
  display: block;
  margin: 0;
  margin-bottom: 15px;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  color: #3c3c3c;
  position: relative;
}
section#contacts .inner .grid .item .header .address span::before,
section#contacts .inner .grid .item .header .phone span::before,
section#contacts .inner .grid .item .header .hours span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  display: block;
  background-size: cover !important;
  background-position: center !important;
}
section#contacts .inner .grid .item .header .address span::before {
  width: 18px;
  height: 21px;
  background: url(/images/icons/point.png) no-repeat;
}
section#contacts .inner .grid .item .header .phone span::before {
  width: 14px;
  height: 21px;
  background: url(/images/icons/phone.png) no-repeat;
}
section#contacts .inner .grid .item .header .hours span::before {
  width: 20px;
  height: 21px;
  background: url(/images/icons/clock.png) no-repeat;
}
section#contacts .inner .grid .item .header p {
  margin: 0;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1em;
  color: #3c3c3c;
}
section#contacts .inner .grid .item .header a {
  text-decoration: none;
  color: #3c3c3c;
}
section#contacts .inner .grid .item .map {
  margin-bottom: 20px;
}
section#contacts .inner .grid.info {}
section#contacts .inner .grid.info h3 {}
section#contacts .inner .grid.info p {
  margin: 5px 0;
  font-size: 16px;
  line-height: 1.3em;
  color: #3c3c3c;
}
section#contacts .inner .grid.info a {
  color: #f1635f;
  text-decoration: none;
  border-bottom: 1px dashed #f1635f;
}

#footer {
  margin-top: 30px;
}
#footer .block .inner {
  width: 1250px;
  margin: 0 auto;
  padding: 30px 0 10px 0;
}
#footer #footer-top {
  background: #f2f4f7;
}
#footer #footer-top .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: stretch;
  align-items: stretch;
  justify-content: space-between;
}
#footer #footer-top .inner .col {}
#footer #footer-top .inner .col:first-child {
  width: 100%;
  max-width: 215px;
}
#footer #footer-top .inner .col:first-child ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
#footer #footer-top .inner .col:first-child ul li {}
#footer #footer-top .inner .col:first-child ul li a {
  font-size: 15px;
  line-height: 2em;
  color: #676767;
  text-decoration: none;
  transition: .2s ease;
}
#footer #footer-top .inner .col:first-child ul li a:hover {
  color: #f15d58;
}
#footer #footer-top .inner .col:first-child .btn {
  display: inline-block;
  font-size: 18px;
  text-align: center;
}
#footer #footer-top .inner .col h3 {
  font-family: PTSans, sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5em;
  color: #3c3c3c;
  margin: 0;
}
#footer #footer-top .inner .col h3 a {
  color: #3c3c3c;
  text-decoration: none;
  color: #f15d58;
  border-bottom: 1px dashed #f15d58;
}
#footer #footer-top .inner .col ul {}
#footer #footer-top .inner .col ul a {}
#footer #footer-top .inner .col.blog {
  width: 100%;
  max-width: 380px;
  border-right: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
  padding: 0 45px;
}
#footer #footer-top .inner .col.blog .items {}
#footer #footer-top .inner .col.blog .items .item {
  margin: 15px 0;
}
#footer #footer-top .inner .col.blog .items .item .date {
  font-size: 12px;
  line-height: 2em;
  color: #676767;
}
#footer #footer-top .inner .col.blog .items .item a {
  display: block;
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2em;
  color: #3c3c3c;
  transition: .2s ease;
  text-decoration: none;
}
#footer #footer-top .inner .col.blog .items .item a:hover {
  color: #f15d58;
}
#footer #footer-top .inner .col.blog .items .item .intro {
  font-size: 15px;
  line-height: 1.2em;
  color: #676767;
  max-height: 70px;
  overflow-y: hidden;
}
#footer #footer-top .inner .col.blog .items .item .intro p {
  margin: 0;
}
#footer #footer-top .inner .col.image {
  margin-left: 45px;
  width: 50%;
  padding: 35px;
  font-size: 30px;
  line-height: 1.2em;
  color: #f15d58;
  -webkit-box-shadow: 0 15px 25px rgba(0,0,0,.1);
  box-shadow: 0 15px 25px rgba(0,0,0,.1);
  background: #fafafc url('/images/footer.jpg') no-repeat;;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
#footer #footer-top .advantages {
  width: 1250px;
  margin: 0 auto;
  padding: 60px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}
#footer #footer-top .advantages .item {
  width: 100%;
  max-width: 250px;
  padding: 0 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
}
#footer #footer-top .advantages .item .icon {
  margin-right: 25px;
}
#footer #footer-top .advantages .item span {
  font-size: 18px;
  color: #57595e;
}
#footer #footer-bottom {
  background: #dee1e6;
}
#footer #footer-bottom a {
  color: #7e8186;
  text-decoration: none;
  transition: .2s ease;
}
#footer #footer-bottom a:hover {
  color: #f15d58;
}
#footer #footer-bottom .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}
#footer #footer-bottom .inner .col {
  margin: 0 15px;  
}
#footer #footer-bottom .inner .col:first-child {
  margin-left: 0;
  width: 260px;
}

#footer #footer-bottom .inner .col:last-child {
  margin-right: 0;
  width: 210px;
  text-align: right;
}
#footer #footer-bottom .inner .logo {
  display: block;
  margin-bottom: 35px;
}
#footer #footer-bottom .inner .col:first-child a {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
#footer #footer-bottom .inner .col:last-child a {
  display: block;
  font-size: 18px;
  line-height: 1.5em;
}
#footer #footer-bottom .inner .col:last-child a.footer-callback {
  font-size: 12px;
}
#footer #footer-bottom .inner .socials {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -5px 15px;
}
#footer #footer-bottom .inner .socials a {
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flex !important;
  display: -o-flex !important;
  display: flex !important;
  -webkit-flex-direction: column !important;
  -moz-flex-direction: column !important;
  -ms-flex-direction: column !important;
  -o-flex-direction: column !important;
  flex-direction: column !important;
  -ms-align-items: center !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw;
  max-width: 38px;
  height: 100vh;
  max-height: 38px;
  margin: 0 5px;
  border: 1px solid #7e8186;
  border-radius: 50%;
  fill: #7e8186;
  transition: .2s ease;
}
#footer #footer-bottom .inner .socials a:hover {
  border-color:#f15d58;
  fill:#f15d58;
}
#footer #footer-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer #footer-bottom ul li {
  margin: 0 0 8px;
  padding: 0;
}
#footer #footer-bottom ul li a {
  font-size: 15px;
}

.header-offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

section#offers {}
section#offers .inner {}
section#offers .inner .page-header {}
section#offers .inner .page-header h2 {
  margin-top: 0;
}
section#offers .inner .grid {
  grid-gap: 1vw;
}
section#offers .inner .grid .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 325px;
  padding: 35px;
  border-radius: 6px;
  text-decoration: none;
  transition: .2s ease-in-out;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  border-bottom: 0;
}
section#offers .inner .grid .item:before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  background: rgb(0,0,0,.6);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,.6) 25%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,.6) 25%, rgba(255,255,255,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,.6) 25%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
section#offers .inner .grid .item:hover {
  z-index: 10;
  -webkit-box-shadow: 0 20px 30px rgba(0,0,0,.3);
  box-shadow: 0 20px 30px rgba(0,0,0,.3);
}
section#offers .inner .grid .item:hover:before {
  opacity: 1;
  visibility: visible;
}
section#offers .inner .grid .item .info {
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
section#offers .inner .grid .item:hover .info {
  opacity: 1;
  visibility: visible;
}
section#offers .inner .grid .item .info span {
  display: block;
  font-family: CeraPro, serif;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
}
section#offers .inner .grid .item .info .title {
  font-size: 36px;
  margin-bottom: 10px;
}
section#offers .inner .grid .item .info .subtitle {}

section#offer {}
section#offer .inner {}
section#offer .inner .page-header {}
section#offer .inner .page-header h2 {
  margin-top: 0;
}
section#offer .inner .page-header .date {}
section#offer .inner .about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  margin: 0;
  margin-bottom: 30px;
}
section#offer .inner .about .image {
  width: calc( 470px - 15px );
  margin-right: 15px;
}
section#offer .inner .about .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 6px;
}
section#offer .inner .about .description {
  width: calc( 100% - 470px - 15px );
  margin-left: 15px;
}
section#offer .inner .about .description .short {
  margin: 1em 0;
}
section#offer .inner .about .description .full {}
section#offer .inner .gifts {
  margin-bottom: 30px;
}
section#offer .inner .gifts h3 {
  font-size: 26px;
}
section#offer .inner .gifts .items {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -1vw;
}
section#offer .inner .gifts .items .item {
  width: calc( 100% / 4 - 2vw );
  margin: 1vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2em;
  color: #1e1e1e;
  border-bottom: 0;
}
section#offer .inner .gifts .items .item .image {
  margin-right: 10px;
  width: 100%;
  max-width: 80px;
}
section#offer .inner .gifts .items .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section#offer .inner .products {}

.item-page ul {
  list-style: none;
  margin: 0;
  padding: 25px;
  background: #f2f4f7;
}
.item-page ul li {
  padding-left: 25px;
  position: relative;
  margin: 5px 0;
  font-size: 16px;
}
.item-page ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  background: #f1635f;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.item-page ul li:first-child {
  margin-top: 0;
}
.item-page ul li:last-child {
  margin-bottom: 0;
}

.blog {}
.blog .leading {}
.blog .leading .item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-basis: auto;
  margin: 30px -15px;
}
.blog .leading .item .image {
  display: block;
  width: 320px;
  height: 320px;
  min-width: 320px;
  border-radius: 5px;
  margin: 0 15px;
}
.blog .leading .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.blog .leading .item .description {
  flex-grow: 1;
  flex-basis: auto;
  margin: 0 15px;
  padding: 25px;
  background: #f2f4f7;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.blog .leading .item .description .info {
}
.blog .leading .item .description .info .date {
  font-size: 12px;
  line-height: 1em;
  color: #757575;
  margin-bottom: 5px;
}
.blog .leading .item .description .info .title {
  font-family: CeraPro, serif;
  font-size: 28px;
  line-height: 1em;
  color: #3c3c3c;
  margin: 5px 0 20px;
}
.blog .leading .item .description .info p {
  font-size: 16px;
  line-height: 1.2em;
  margin: 10px 0;
}
.blog .leading .item .description a {
  position: relative;
}
.blog .leading .item .description a:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -20px;
  top: 7px;
  width: 12px;
  height: 12px;
  font-size: 8px;
  font-weight: lighter;
  line-height: 1em;
  color: #898989;
  border: 1px solid #898989;
  border-radius: 50%;
}
.blog.item-page {}
.blog.item-page .header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}
.blog.item-page .header h2 {}
.blog.item-page .body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0;
  flex-basis: auto;
}
.blog.item-page .body .image {
  display: block;
  width: 275px;
  min-width: 275px;
  margin-right: 15px;
}
.blog.item-page .body .image img {
  max-width: 100%;
}
.blog.item-page .body .text {
  flex: 1;
  flex-basis: auto;
  /*text-align: justify;*/
  /*max-width: 730px;*/
}
.blog.item-page .body .text p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.2em;
}
.blog.item-page .body .text p:first-child {
  margin-top: 0;
}
.blog.item-page .body .text p:last-child {
  margin-bottom: 0;
}
.blog.item-page .body .text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog.item-page .body .text ul li {
  padding-left: 15px;
  position: relative;
}
.blog.item-page .body .text ul li:before {
  content: '\f111';
  font-family: 'Font Awesome 5 Pro';
  font-size: 6px;
  line-height: 1em;
  color: #f1635f;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 10px;
}
.product_card .info-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product_card .btn.wishlist {
/*  position: absolute;*/
/*  right: 10px;*/
/*  top: 10px;*/
  display: block;
  width: 41px;
  height: 41px;
  padding: 0;
  margin: 0;
}
.btn.wishlist::before {
	width: 25px;
	height: 25px;
	font-size: 25px;
	transition: .2s ease-in-out;
}
.btn.wishlist.active:before,
.btn.wishlist:hover:before {
  color: #f15d58;
}

.label.discount,
.label.offer {
  display: block;
  width: 41px;
  height: 41px;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 11;
}
.label.discount:before,
.label.offer:before {
  content: '';
  display: block;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #f15d58;
}
.label.discount:after,
.label.offer:after {
  display: block;
  font-family: 'Font Awesome 5 Pro';
  line-height: 1em;
  position: absolute;
  color: #fff;
  font-weight: lighter;
}
.label.discount:after {
  content: '\f295';
  font-size: 23px;
  left: 12px;
  top: 9px;
}
.label.offer:after {
  content: '\f06b';
  font-size: 25px;
  left: 8px;
  top: 9px;
}

.awmodals #category_help.awmodal {
  max-width: 700px;
  max-height: 60vh;
  overflow-y: scroll;
}

#categories-group .group .header h3 a {
  text-decoration: none;
  color: #4469f6;
}

.categories-list {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  background: #f2f4f7;
  padding: 15px;
  margin: 25px 0;
}
.categories-list .col {
  display: block;
  width: 100%;
  max-width: calc( 100% / 4 - 10px );
  margin: 5px;
  padding: 0;
  list-style: none;
}
.categories-list .col:first-child {
  margin-left: 0;
}
.categories-list .col li {
  line-height: 14px;
}
.categories-list .col a {
  display: block;
  margin: 10px 0;
  font-size: 14px;
  line-height: 14px;
  color: #353535;
  padding: 0;
  border: 0 !important;
  transition: .2s ease-in-out;
}
.categories-list .col a:hover {
  color: #f26561;
}
.categories-list .col li:first-child a {
  margin-top: 0;
}
.categories-list .col li:last-child a {
  margin-bottom: 0;
}

#pad {}
#pad .tabs {}
#pad .tabs .controls {
  justify-content: center;
}
#pad .tabs .controls .item {
  font-size: 18px;
  margin-left: 40px;
}
#pad .tabs .controls .item:first-child {
  margin-left: 0;
}
#pad .tabs .controls .item:before {
  top: calc( 50% + 2px );
}
#pad .tabs .welcome {
  padding: 45px;
  margin: 0;
}
#pad .tabs h3.center {
  font-size: 36px;
  font-weight: 400;
  line-height: 1em;
  color: #3c3c3c;
  text-align: center;
  margin: 0 0 35px;
}
#pad .tabs blockquote {
  background: #f2f4f7;
  padding: 45px;
  margin: 35px 0 0;
}
#pad .tabs blockquote p {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.5em;
  color: #3c3c3c;
}
#pad .tabs blockquote p:first-child {
  margin-top: 0;
}
#pad .tabs blockquote p:last-child {
  margin-bottom: 0;
}
#pad .tabs blockquote p.small {
  font-size: 16px;
  line-height: 1.2em;
  color: #6a6b6e;
}
#pad .tabs blockquote ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#pad .tabs blockquote ul li {
  padding-left: 25px;
  position: relative;
  margin: 15px 0;
  font-size: 18px;
}
#pad .tabs blockquote ul li:first-child {
  margin-top: 0;
}
#pad .tabs blockquote ul li:last-child {
  margin-bottom: 0;
}
#pad .tabs blockquote ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  background: #f1635f;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
#pad .tabs blockquote .logos {}
#pad .tabs blockquote .logos img {
  display: inline-block;
  margin: 0 5px;
}
#pad .tabs .grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  margin: 0 -7px;
  grid-gap: initial;
}
#pad .tabs .grid .item {
  width: calc(100% / 5 - 14px);
  margin: 0 7px;
  padding: 25px;
  background: #eef3f9;
  border-radius: 4px;
  transition: .2s ease-in-out;
  cursor: pointer;
}
#pad .tabs .grid .item .icon {
  display: block;
  margin-bottom: 30px;
  font-size: 40px;
  color: #f1635f;
  transition: .2s ease-in-out;
}
#pad .tabs .grid .item span {
  display: block;
  margin: 15px 0 0;
  color: #898989;
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.2em;
  transition: .2s ease-in-out;
}
#pad .tabs .grid .item .title {
  color: #3c3c3c;
  font-size: 19px;
  transition: .2s ease-in-out;
}
#pad .tabs .grid .item:hover {
  transform: translate(0,-20px);
  background: #f1635f;
  color: #ffffff;
}
#pad .tabs .grid .item.active {
  background: #f1635f;
  color: #ffffff;
}
#pad .tabs .grid .item:hover .icon,
#pad .tabs .grid .item.active .icon {
  color: #fff;
}
#pad .tabs .grid .item:hover span,
#pad .tabs .grid .item.active span {
  color: #ffffffaa;
}
#pad .tabs .grid .item:hover .title,
#pad .tabs .grid .item.active .title {
  color: #ffffff;
}

section.block.callback {
  margin: 50px -15px 0;
  border-top: 1px solid #dce2e9;
}
section.block.callback .grid {
  grid-gap: 0;
}
section.block.callback .grid .item {
  padding: 40px 40px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
section.block.callback .grid .item:after {
  content: '';
  display: block;
  width: 1px;
  height: 100px;
  background: #d0dfe5;
  position: absolute;
  right: 0;
  top: 40px;
}
section.block.callback .grid .item:last-child:after {
  display: none;
}
section.block.callback .grid .item .icon {
  margin-right: 35px;
}
section.block.callback .grid .item .description {}
section.block.callback .grid .item .description a {
  display: block;
  margin-top: 5px;
  font-weight: 700;
  color: #3c3c3c;
  text-decoration: none;
  transition: .2s ease-in-out;
}
section.block.callback .grid .item .description span,
section.block.callback .grid .item .description span a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2em;
  color: #898989;
}
section.block.callback .grid .item .description span a {
  display: initial !important;
  border-bottom: 1px dashed #898989;
}
section.block.callback .grid .item .description a:hover {
  color: #f15d58;
  border-color: #f15d58
}
section.block.callback .grid .item .description .title {
  display: block;
  font-size: 19px;
  line-height: 1.2em;
  margin-bottom: 20px;
  color: #3c3c3c;
}

.faq {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 10px 0;
}
.faq .sidebar {
  width: 100%;
  max-width: 240px;
  margin-right: 30px;
}
.faq .sidebar h3 {
  font-size: 20px;
  line-height: 1.1em;
  margin: 0;
  margin-bottom: 10px;
}
.faq .sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq .sidebar ul li {
  padding: 0 !important;
}
.faq .sidebar ul li:before {
  display: none !important;
}
.faq .sidebar ul li a {
  display: block;
  border-bottom: none;
  padding: 7px 10px;
  transition: .2s ease-in-out;
  color: #666;
  font-size: 14px;
  line-height: 1.1em;
  border-bottom: 1px solid #dfdfdf;
}
.faq .sidebar ul li a:hover {
  color: #fff;
  background: #f1635f;
  border-bottom: 1px solid #f1635f;
}
.faq .sidebar ul li.active a {
  color: #fff;
  background: #f1635f;
  border-bottom: 1px solid #f1635f;
}
.faq .questions {
  flex: 1;
}
.faq .questions .item {
  margin-bottom: 10px;
}
.faq .questions .item .question {
  font-size: 18px;
  line-height: 1em;
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
  padding-left: 20px;
  position: relative;
}
.faq .questions .item .question:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  line-height: 1em;
  font-weight: 300;
  color: #dfdfdf;
  position: absolute;
  left: 5px;
  top: 1px;
}
.faq .questions .item .answer {
  display: none;
  border: 1px solid #dfdfdf;
  border-top: 0;
  padding: 15px;
}
.faq .questions .item .answer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq .questions .item .answer ul li {
  position: relative;
  padding-left: 15px;
}
.faq .questions .item .answer ul li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #f1635f;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
}
.faq .questions .item.active {}
.faq .questions .item.active .question {
  border-bottom: 3px solid #f1635f;
}
.faq .questions .item.active .question:before {
  content: '\f078';
  color: #f1635f;
  position: absolute;
  left: 1px;
  top: 1px;
}
.faq .questions .item.active .answer {
  display: block;
}

section#recomendations .grid {
  grid-gap: 1vw;
}
section#recomendations .grid .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 325px;
  padding: 35px;
  border-radius: 6px;
  text-decoration: none;
  transition: .2s ease-in-out;
  background-size: cover !important;
  background-position: top !important;
  position: relative;
  border-bottom: 0;
}
section#recomendations .grid .item:before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  background: rgb(0,0,0,.6);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,.6) 25%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,.6) 25%, rgba(255,255,255,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,.6) 25%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
section#recomendations .grid .item .info {
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
section#recomendations .grid .item .info span {
  display: block;
  font-family: CeraPro, serif;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
}
section#recomendations .grid .item .info .title {
  font-size: 36px;
  margin-bottom: 10px;
}
section#recomendations .grid .item .info .subtitle {}
section#recomendations .grid .item:hover {
  z-index: 10;
  -webkit-box-shadow: 0 20px 30px rgba(0,0,0,.3);
  box-shadow: 0 20px 30px rgba(0,0,0,.3);
}
section#recomendations .grid .item:hover:before {
  opacity: 1;
  visibility: visible;
}
section#recomendations .grid .item .info {
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
section#recomendations .grid .item:hover .info {
  opacity: 1;
  visibility: visible;
}
section#recomendation .image {
  width: 100%;
  max-width: 900px;
  margin: 10px 0;
}
section#recomendation .image a {
  text-decoration: none;
  border-bottom: 0;
}
section#recomendation .image img {
  max-width: 100%;
}

section.block.slider {
  opacity: 0;
}

.page ul.chzn-results li::before {
  content: '';
  display: none;
}

.pagination {
  margin: 15px 0;
}
.pagination-start,
.pagination-end,
.pagination_result_counter {
  display: none;
}
.pagination ul {
  list-style: none;
  margin: 0 -5px;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.pagination ul li {
  margin: 0 5px;
  padding-left: 0 !important;
}
.pagination ul li:before {
  display: none !important;
}
.pagination ul span,
.pagination ul a {
  display: block;
  padding: 10px;
  min-width: 32px;
  height: 36px;
  text-align: center;
  font-size: 14px;
  line-height: 1em;
}
.pagination ul span {
  border: 0;
  color: #fff;
  background: #f1635f;
  border-radius: 3px;
}
.pagination ul a {
  border: 1px solid #d9d9d9 !important;
  color: #9d9d9d !important;
  border-radius: 3px;
  transition: .2s ease-in-out;
}
.pagination ul a:hover {
  color: #f1635f !important;
  border-color: #f1635f !important;
}
.pagination .pagination-prev span,
.pagination .pagination-next span {
  background: #9d9d9d;
  opacity: .3;
}
.pagination .pagination-prev span,
.pagination .pagination-prev a,
.pagination .pagination-next span,
.pagination .pagination-next a {
  font-size: 0;
  position: relative;
}
.pagination .pagination-prev span:before,
.pagination .pagination-prev a:before,
.pagination .pagination-next span:before,
.pagination .pagination-next a:before {
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  opacity: 1;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.pagination .pagination-prev span:before,
.pagination .pagination-prev a:before {
  content: '\f053';
}
.pagination .pagination-next span:before,
.pagination .pagination-next a:before {
  content: '\f054';
}

.checkout-finish {
  text-align: center;
}
.checkout-finish h2 {
  font-size: 32px;
  line-height: 1.3em;
  margin: 20px 0;
}
.checkout-finish p {
  font-size: 16px;
  line-height: 1.3em;
  margin: 0 auto;
  margin-bottom: 15px;
  width: 100%;
  max-width: 600px
}
.checkout-finish p.big {
  font-size: 22px;
  margin-bottom: 25px;
}
.checkout-finish p.contacts a {
  display: inline-block;
  margin: 0 15px;
}
.checkout-finish p .btn {
  display: inline-block;
  margin: 0 auto;
}


.categories-list li,
#category.search .categories .col li {
  padding: 0 !important;
  line-height: 14px !important;
}
.categories-list li:before,
#category.search .categories .col li:before {
  display: none !important;
}

.static_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -5px 30px -5px;
}
.static_block_image {
  width: calc(38% - 10px);
  margin: 0 5px;
  text-align: center;
}
.static_block_content {
  flex: 1;
  margin: 0 5px;
}
.static_block_content.style1 h3 {
  color: #ff0000;
  font-size: 18pt;
  margin-top: 0;
}
.blog.item-page .body .text .static_block_content.style1 p {
  font-size: 18pt;
}

.static_block_grid4 {
 display: flex;
 flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}

.static_block_grid4 > div {
  margin: 5px;
  padding: 5px;
  flex: 0 1 auto;
  font-size: 18pt;
  width: calc(25% - 10px);
}


.static_block_grid3 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}

.static_block_grid3 > div {
  margin: 5px;
  padding: 5px;
  flex: 0 1 auto;
  font-size: 18pt;
  width: calc(30% - 10px);
}


.static_block_grid2 {
 display: flex;
 flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}

.static_block_grid2 > div {
  margin: 5px;
  padding: 5px;
  flex: 0 1 auto;
  font-size: 18pt;
  width: calc(50% - 10px);
}

h3.border-bottom {
  border-bottom: 3px solid #f00;
}

.static_grid_icon {
  text-align: center;
  margin-bottom: 10px;
}

.static_grid_caption {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  color: #555;
}

.captcha-warning {
  text-align: center;
  padding-bottom: 15px;
  color: #7e8186;
}

.grecaptcha-badge {
  display: none !important;
}

.strike {
  text-decoration: line-through;
}

.economy-price {
  color: #000;
  font-weight: bold;
}

.economy-price span {
  color: #f15d58;
  font-weight: 400;
}

.category_partner_header {
  font-weight: bold;
}
.category_partner_link {
  background: url('/templates/atemplate/images/cart.png') no-repeat left center;
  background-size: 25px 25px;
  line-height: 25px;
  display: inline-block;
  padding-left: 30px;
  margin: 10px 0;
}

section.page a.category_partner_link {
  border: 0; 
}

section.page a.category_partner_link span {
  text-decoration: none;
  color: #f1635f;
  border-bottom: 1px dashed #f1635f;
}

.checkout-finish p.big2 {
  font-size: 28px;
  margin-bottom: 0;
}

.checkout-finish p.small2 {
  font-size: 16px;
  color: #333;
  margin-bottom: 0px;
}

.checkout-finish p.btn_wrapper {
  
}

.checkout-finish p.btn_wrapper .btn {
  margin: 10px 0;
}

.btn.big {
  font-size: 23px;
}
.btn.inline {
  display: inline-block;
}

.red_devil {
  border: 2px solid #f15d58;
  width: 100%;
  max-width: 600px;
  margin: 0px auto 10px;
  padding: 10px 0 0 0;
}

.social-fixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  z-index: 999;
}
.social-fixed a {
  display: block;
  padding: 10px;
  font-size: 0;
  line-height: 0;
  margin-bottom: 10px;
  background: #f15d58;
  color: #fff;
  text-decoration: none;
  border-radius: 3px 0 0 3px;
}

.pagination ul span > span,
.pagination ul a > span {
  display: inline;
  padding: 0;
  min-width: auto;
  height: auto;
  text-align: center;
  font-size: 14px;
  line-height: 1em;
}

.pagination ul li.disabled span {
  background: #9d9d9d;
  opacity: .3;
}

.pagination ul span > span.icon-first:before,
.pagination ul a > span.icon-first:before,
.pagination ul span > span.icon-previous:before,
.pagination ul a > span.icon-previous:before,
.pagination ul span > span.icon-next:before,
.pagination ul .icon-next:before,
.pagination ul .icon-last:before
{
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  opacity: 1;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  color: #9d9d9d !important;
}

.pagination ul li.disabled span:before {
  color: #fff !important;
}

.pagination ul a:hover .icon-first:before,
.pagination ul a:hover .icon-previous:before,
.pagination ul a:hover .icon-next:before,
.pagination ul a:hover .icon-last:before {
  color: #f1635f !important;
}

.pagination .icon-first:before{
  content: '\f323';  
}
.pagination ul .icon-previous:before {
  content: '\f053';
}
.pagination ul .icon-next:before {
  content: '\f054';
}
.pagination ul .icon-last:before {
  content: '\f101';
}

.tooltip {
  display: none !important;
}

.messages .limit {
  display: none;
}

.awsecret {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 500px;
}
.awsecret img {
  display: block;
  margin-right: 15px;
}
.awsecret .input-label {
  width: 100%;
}

.oneclick-wrap {
  flex: 1 1 auto;
  text-align: right;
}

.oneclick-wrap .btn {
  display: inline-block;
  padding: 8px 17px;
  font-size: 12px;
  line-height: 1em;
}

#cart > .inner.import_cart .products .table {
  width: 100%;
}

#bonus-fields-btn,
#bonus-fields-btn2 {
  padding: 0;
  border: 0;
  background: transparent;
  color: #f1635f;
  border-bottom: 1px dashed #f1635f;
  cursor: pointer;
}

#bonus-fields-btn:hover,
#bonus-fields-btn2:hover {
  border-bottom: 1px solid #f1635f;
}




.vacancies {}
.vacancies #main {
  padding: 0;
}
.vacancies .page-header {
  background: #F1625E;
  padding-top: 45px;
  padding-bottom: 60px;
  /*height: 455px;*/
  position: relative;
}
.vacancies .page-header .inner {
  position: relative;
  margin: 0 auto;
  padding: 0;
}
.vacancies .page-header h2 {
  font-size: 72px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 0 45px !important;
  width: 100%;
  max-width: 595px;
}
.vacancies .page-header .more {
  width: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #FF9B9B;
}
.vacancies .page-header .more-item {
  flex: 1;
  margin-right: 15px;
}
.vacancies .page-header .more-item:last-child {
  margin-right: 0;
}
.vacancies .page-header .more-item strong {
  display: block;
  font-size: 42px;
  line-height: 1em;
  color: #fff;
  margin-bottom: 15px;
}
.vacancies .page-header .more-item span {
  display: block;
  font-size: 13px;
  line-height: 1.3em;
  color: #fff;
}
.vacancies .page-header .image {
  position: absolute;
  bottom: -68px;
  right: -75px;
  pointer-events: none;
}
.vacancies .page-header .image .bubble {
  position: absolute;
  display: block;
  width: 256px;
  border-radius: 19px 19px 0 19px;
  left: 140px;
  top: 240px;
  background: #fff;
  box-shadow: 0 4px 19px rgba(0,0,0,.2);
  padding: 19px;
}
.vacancies .page-header .image .bubble strong {
  text-align: right;
  display: block;
  font-size: 18px;
  line-height: 1em;
  color: #050505;
  margin-bottom: 15px;
}
.vacancies .page-header .image .bubble span {
  text-align: right;
  display: block;
  font-size: 13px;
  line-height: 1.3em;
  color: #878787;
}
.vacancies .page-header .nav {
  position: absolute;
  background: rgba(187,19,19,.6);
  backdrop-filter: blur(21px);
  left: 0;
  right: 0;
  bottom: 0;
}
.vacancies .page-header .nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 15px 0;
  list-style: none;
}
.vacancies .page-header .nav ul li {
  padding: 0;
  margin: 0;
}
.vacancies .page-header .nav ul li a {
  color: #fff;
  text-decoration: none;
  border: 0;
  display: block;
  font-size: 18px;
  line-height: 1em;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}
.vacancies .page-header .nav ul li a:hover {
  border-bottom: 1px solid #FF8282;
}
.vacancies .page-header .nav ul li:before,
.vacancies .page-header .nav ul li:after {
  display: none;
}

.vacancies .block {
  margin: 40px 0;
}
.vacancies #footer-top,
.vacancies #footer-bottom {
  margin: 0 !important;
}
.vacancies .block .block-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.vacancies .block .block-header h3 {
  font-size: 36px;
  line-height: 1em;
  margin: 0;
  color: #010101;
}

.vacancies .block .block-header a {
  display: block;
  position: relative;
  padding-right: 35px;
  border: 0;
  font-size: 18px;
  color: #2E2E2E;
}
.vacancies .block .block-header a:before,
.stories-item .info a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #CDCDCD;
  border-radius: 50%;
  transition: .2s ease-in-out;
}
.vacancies .block .block-header a:after,
.stories-item .info a:after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #A5A5A5;
  border-bottom: 2px solid #A5A5A5;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translate(0,-50%) rotate(-45deg);
  transition: .2s ease-in-out;
}
.vacancies .block .block-header a:hover:before,
.stories-item .info a:hover:before {
  background: #f15d58;
  border-color: #f15d58;
}
.vacancies .block .block-header a:hover:after,
.stories-item .info a:hover:after {
  border-color: #fff;
}

.vacancies .blue {
  background: #EDF4F7;
  padding: 40px 0;
  margin: 40px 0;
}
.vacancies .blue .block {
  margin: 0;
}

.stories-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.stories-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% / 3 - 20px);
  margin: 0 10px 15px;
  background: #EDF4F7;
  padding: 20px;
  overflow: hidden;
  position: relative;
  min-height: 275px;
  z-index: 1;
}
.stories-item .label {
  font-size: 13px;
  line-height: 1em;
  color: #8E8E8E;
}
.stories-item .image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: darken;
  width: 240px;
  height: 275px;
}
.stories-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
.stories-item .info {
  width: 150px;
}
.stories-item .info strong {
  display: block;
  font-size: 18px;
  line-height: 1.2em;
  color: #2E2E2E;
  margin: 0 0 5px;
}
.stories-item .info span {
  display: block;
  font-size: 13px;
  line-height: 1.2em;
  color: #8E8E8E;
  margin: 5px 0;
}
.stories-item .info a {
  display: inline-block;
  border: 0;
  height: 27px;
  position: relative;
  margin-top: 20px;
}
.stories-item .info a:before {
  right: initial;
  left: 0;
}
.stories-item .info a:after {
  right: initial;
  left: 8px;
}

.responsibilities {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -3px;
}
.responsibilities-item {
  background: #fff;
  width: calc(100% / 3 - 6px);
  margin: 0 3px 6px;
  padding: 25px;
  transition: .2s ease-in-out;
}
.responsibilities-item:hover {
  background: #EDF4F7;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.responsibilities-item .image {
  height: 180px;
  padding: 15px 0;
  text-align: right;
}
.responsibilities-item .image img {
  height: 150px;
  object-fit: contain;
  object-position: right;
}
.responsibilities-item span {
  display: block;
  font-size: 18px;
  line-height: 1.2em;
  color: #212121;
}

#recreation .gallery-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#recreation .gallery-item {
  display: block;
  flex: 0 0 33.33%;
  height: 300px;
  position: relative;
  z-index: 1;
  border: 0 !important;
}
#recreation .gallery-item:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.0);
  transition: .2s ease-in-out;
}
#recreation .gallery-item:hover:before {
  background: rgba(0,0,0,.4);
}
#recreation .gallery-item:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 63px;
  height: 63px;
  background: url(/images/vacancy/eye-icon.png) no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
#recreation .gallery-item:hover:after {
  opacity: .8;
  visibility: visible;
}
#recreation .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#recreation .btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  background: transparent;
  color: #F1625E;
  border: 1px solid #F1625E !important;
  border-radius: 9px;
  text-align: center;
  font-size: 18px;
  line-height: 1em;
}

.vacancies .board {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.vacancies .board-items:nth-child(1) {
  width: 100%;
  max-width: 640px;
}
.vacancies .board-items:nth-child(2) {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.vacancies .board-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #CDCDCD;
  padding: 20px 0;
}
.vacancies .board-item:last-child {
  border-bottom: 1px solid #CDCDCD;
}
.vacancies .board-item a {
  font-size: 21px;
  line-height: 1.2em;
  color: #212121;
  border: 0 !important;
}
.vacancies .board-item span {
  flex: 0 0 170px;
  font-size: 18px;
  line-height: 1em;
  color: #8E8E8E;
  text-align: right;
}
.vacancies .board-items .board-categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.vacancies .board-items .board-categories li {
  display: inline-block;
  margin: 0 0 1em;
  padding: 0 0 5px;
  font-size: 18px;
  line-height: 1em;
  color: #2E2E2E;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.vacancies .board-items .board-categories li.active {
  color: #EF635C;
  border-color: #EF635C;
  cursor: initial;
}
.vacancies .board-items .board-categories li:before,
.vacancies .board-items .board-categories li:after {
  display: none;
}
.vacancies .board-items .info {
  background: #F8F8F8;
  padding: 30px;
}
.vacancies .board-items .info p {
  font-size: 18px;
  line-height: 1.2em;
  margin: 0 0 15px;
}
.vacancies .board-items .info .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.vacancies .board-items .info .contact .phone {
  font-size: 24px;
  line-height: 1em;
  color: #010101;
  border: 0 !important;
  margin-right: 10px;
}
.vacancies .board-items .info .contact .whatsapp,
.vacancies .board-items .info .contact .telegram {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0 !important;
  color: #fff;
  margin: 0 2px;
}
.vacancies .board-items .info .contact .whatsapp {
  background: #5DC46E;
}
.vacancies .board-items .info .contact .telegram {
  background: #62B4FF;
}

.vacancies .contacts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.vacancies .contacts .info {
  flex: 0 0 390px;
  padding: 30px;
  background: #EDF4F7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.vacancies .contacts .info span {
  display: block;
  font-size: 14px;
  line-height: 1em;
  color: #727272;
}
.vacancies .contacts .info p {
  margin: 0;
  color: #010101;
  font-size: 14px;
  line-height: 1.3em;
}
.vacancies .contacts .info p strong {
  display: block;
  font-size: 21px;
  line-height: 1.3em;
  margin-bottom: 5px;
}
.vacancies .contacts .info a {
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  color: #010101;
  border: 0 !important;
}
.vacancies .contacts .info .email {
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  color: #F1625E;
  border: 0 !important;
}
.vacancies .contacts .info .socials a {
  display: inline-block;
  margin: 0 5px;
  color: #727272;
  border: 0 !important;
  transition: .2s ease-in-out;
}
.vacancies .contacts .info .socials a svg {
  fill: #727272;
  transition: .2s ease-in-out;
}
.vacancies .contacts .info .socials a:hover,
.vacancies .contacts .info .socials a:hover svg {
  color: #F1625E;
  fill: #F1625E;
}
.vacancies .contacts .map {
  flex: 1;
}

.vacancies #content-wrapper {
  display: none;
}
.vacancies #footer {
  margin-top: 0;
}

.blue.questions {
  margin: 40px 0 0;
}
.blue.questions .inner {
  width: 700px;
  position: relative;
}
.blue.questions .image {
  position: absolute;
  right: 0;
  bottom: -76px;
  width: 325px;
  height: 293px;
}
.blue.questions .image img {
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.blue.questions .inner .info {
  padding: 0;
  width: 350px;
}
.blue.questions .inner .info h3 {
  font-size: 36px;
  line-height: 1.2em;
  color: #010101;
  margin: 0 0 30px;
}
.blue.questions .inner .info p {
  font-size: 24px;
  line-height: 1.2em;
  color: #010101;
  margin: 0 0 30px;
}
.blue.questions .inner .info .btn {
  display: inline-block;
  background: transparent;
  color: #F1625E;
  border: 1px solid #F1625E !important;
  border-radius: 9px;
  text-align: center;
  font-size: 18px;
  line-height: 1em;
}

@media screen and (max-width: 1300px) {
  .vacancies .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .vacancies .contacts {
    flex-direction: column;
    align-items: center;
  }
  .vacancies .contacts .info {
    flex: 1;
    width: 100%
  }
}

.story {}
.story .left {
  float: left;
  width: 220px;
  margin: 0 15px 15px 0;
}
.story .left .photo {
  width: 220px;
  height: 280px;
  margin-bottom: 5px;
}
.story .left .photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.story .left small {
  display: block;
  text-align: center;
}
.b24-widget-button-position-bottom-right {
  right: 15px !important;
  bottom: 15px !important;
}
.cash-info {
  margin-top: 10px;
  background: #fff;
}
a.cash-info {
  border-bottom: 0 !important;
  text-decoration: none !important;
  display: block;
}
.cash-info span {
  display: block;
  padding: 5px 10px;
  text-align: center;
  color: #000;
}
.awmodals .awmodal .header > i {
  opacity: 0.3
}
.product_card .price-conditions {
  font-size: 12px;
  margin-top: -5px;
  margin-bottom: 5px;
}

.about__header,
.guarantee__header,
.purchases__header {
  background: #F1625E;
  margin: 0 -15px;
  position: relative;
  padding: 40px 0 205px;
  z-index: 1;
}
.about__header {
  padding: 130px 0 205px;
}
.purchases__header {
  padding-bottom: 200px;
  padding-top: 60px;
  z-index: -1;
}
.about__container,
.guarantee__container,
.purchases__container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}
.about__container {
  position: relative;
}
.about__header h2,
.guarantee__header h2,
.purchases__header h2 {
  display: block;
  width: 100%;
  max-width: 468px;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1em;
  margin: 0;
}
.purchases__header h2 {
  font-size: 48px;
  margin-bottom: 35px;
}
.guarantee__header h2,
.purchases__header h2 {
  max-width: 610px;
}
.about__header .bg,
.guarantee__header .bg,
.purchases__header .bg {
  position: absolute;
  right: 0;
  top: 33px;
  width: 100%;
  max-width: 690px;
  height: 100%;
  max-height: 530px;
  z-index: -2;
}
.about__header .bg {
  height: initial;
  right: -108px;
  top: initial;
  bottom: -156px;
}
.guarantee__header .bg {
  top: 0;
  max-width: initial;
  max-height: 590px;
}
.purchases__header .bg {
  top: -50px;
}
.about__header .bg img,
.guarantee__header .bg img,
.purchases__header .bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.purchases__header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 560px;
}
.purchases__header ul li {
  font-size: 18px;
  line-height: 1.5em;
  color: #fff;
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
}
.purchases__header ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}
.about__subheader,
.guarantee__subheader {
  margin: -150px 0 20px;
  background: #EDF4F7;
  padding: 45px;
  position: relative;
  z-index: 1;
}
.guarantee__subheader {
  background: #fff;
  box-shadow: 0 4px 19px rgba(0,0,0,.08);
  transition: .5s ease-in-out;
}
.guarantee__subheader:hover {
  transition: .5s ease-in-out;
  background:  #EDF4F7;
}
.about__subheader .bg,
.guarantee__subheader .bg {
  position: absolute;
  right: 0;
  top: 25px;
  bottom: 25px;
}
.guarantee__subheader .bg {
  right: 45px;
}
.about__subheader .bg img,
.guarantee__subheader .bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about__subheader .inner,
.guarantee__subheader .inner {
  width: 100%;
  max-width: 540px !important;
}
.about__subheader .inner h3,
.guarantee__subheader .inner h3 {
  font-size: 36px;
  line-height: 1.1em;
  margin: 0 0 1em;
}
.about__subheader .inner p,
.guarantee__subheader .inner p {
  font-size: 15px;
  line-height: 1.5em;
  margin: 0 0 1em;
  color: #727272;
}
.guarantee__subheader .inner a {
  color: #F1625E;
}
.guarantee__subheader .inner ul {
  margin: 0 0 1em;
  padding: 0;
  list-style: 0;
}
.guarantee__subheader .inner ul li {
  padding-left: 15px;
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #727272;
  list-style: none;
  margin-bottom: .5em;
}
.guarantee__subheader .inner ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #F1625E;
  border-radius: 50%;
}
.about__block,
.guarantee__block {
  padding: 95px 60px;
  margin: 0 0 20px;
  box-shadow: 0 4px 19px rgba(0,0,0,.08);
  position: relative;
  transition: .5s ease-in-out;
}
.about__block .inner,
.guarantee__block .inner {
  display: block;
  width: 100%;
  max-width: 500px !important;
  margin: 0 !important;
}
.about__block h3,
.guarantee__block h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
  margin: 0 0 1em;
}
.about__block p,
.guarantee__block p {
  margin: 0 0 1em;
  font-size: 15px;
  line-height: 1.5em;
  color: #727272;
}
.about__block .bg,
.guarantee__block .bg {
  position: absolute;
  width: 100%;
  max-width: 300px;
  right: 100px;
  top: 60px;
  bottom: 60px;
}
.about__block .bg img,
.guarantee__block .bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about__items {
  margin: 0 -12px 20px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.about__item {
  width: calc(100% / 3 - 12px);
  margin: 12px 12px 0;
  padding: 40px;
  box-shadow: 0 4px 19px rgba(0,0,0,.08);
  transition: .5s ease-in-out;
}
.about__item:hover{
  transition: .5s ease-in-out;
  background:  #EDF4F7;
}
.about__item .image {
  display: block;
  width: 250px;
  height: 180px;
  margin: 0 auto 40px;
}
.about__item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about__item h4 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.about__item p {
  font-size: 15px;
  line-height: 1.2em;
  color: #727272;
  margin: 0 0 1em;
}

.guarantee__block {
  margin: 20px 0 0;
  padding: 50px;
}
.guarantee__block .inner {
  max-width: initial !important;
}
.guarantee__block .inner h3 {
  text-align: center;
  font-size: 36px;
}
.guarantee__block .image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 320px;
  margin: 36px 0 0;
}
.guarantee__block .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.guarantee__items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0 -15px;
}
.guarantee__item {
  display: block;
  width: calc(100% / 2 - 30px);
  margin: 0 15px;
  padding: 50px;
  box-shadow: 0 4px 19px rgba(0,0,0,.08);
  transition: .5s ease-in-out;
}
.guarantee__item:hover {
  background: #EDF4F7;
  transition: .5s ease-in-out;
}
.guarantee__item .image {
  display: block;
  width: 260px;
  height: 200px;
  margin: 0 auto 30px;
}
.guarantee__item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.guarantee__item p {
  font-size: 18px;
  line-height: 1.2em;
  color: #727272;
  margin: 0 0 1em;
}
.guarantee__item a {
  display: block;
  color: #F1625E;
  text-decoration: none;
}
.guarantee__item .contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 1em 0;
}
.guarantee__item .contact a {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.3em;
  color: #1A1A1A;
  margin-right: 10px;
}
.guarantee__item .contact .whatsapp,
.guarantee__item .contact .telegram {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0 !important;
  color: #fff;
  margin: 0 2px;
}
.guarantee__item .contact .whatsapp {
  background: #5DC46E;
}
.guarantee__item .contact .telegram {
  background: #62B4FF;
}

.purchases__container.mt {
  margin-top: -150px;
}
.purchases__items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
  z-index: 1;
}
.purchases__item {
  width: calc(100% / 2 - 30px);
  margin: 15px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 19px rgba(0,0,0,.08);
  position: relative;
  transition: .2s ease-in-out;
}
.purchases__item:hover {
  background: #EDF4F7;
}
.purchases__item .icon {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 60px;
  height: 60px;
}
.purchases__item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.purchases__item .header {
  font-size: 36px;
  line-height: 1.1em;
  max-width: 383px;
  margin-bottom: 30px;
}
.purchases__item .description {
  font-size: 15px;
  line-height: 1.3em;
  color: #727272;
}
.purchases__contacts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: 0 4px 19px rgba(0,0,0,.08);
  padding: 30px;
}
.purchases__contacts .person,
.purchases__contacts .info {
  flex: 0 0 50%;
}
.purchases__contacts .person {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-right: 1px solid #C7D0D5;
  padding-right: 30px;
}
.purchases__contacts .person .photo {
  flex: 0 0 200px;
  height: 200px;
  margin-right: 40px;
}
.purchases__contacts .person .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.purchases__contacts .person strong,
.purchases__contacts .info strong {
  display: block;
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 10px;
}
.purchases__contacts .info strong {
  margin-bottom: 30px;
}
.purchases__contacts .person span {
  display: block;
  font-size: 18px;
  margin-bottom: 35px;
}
.purchases__contacts .person .btn {
  display: inline-block;
  background: transparent;
  color: #F1625E;
  border: 1px solid #F1625E !important;
  border-radius: 9px;
  text-align: center;
  font-size: 18px;
  line-height: 1em;
}
.purchases__contacts .info {
  padding-left: 30px;
}
.purchases__contacts .info .phones {
  margin-bottom: 20px;
}
.purchases__contacts .info .phones a {
  display: block;
  font-size: 24px;
  line-height: 1.6em;
  color: #010101;
  text-decoration: none;
}
.purchases__contacts .info .email a {
  display: block;
  color: #F1625E;
  font-size: 18px;
}
.purchases__contacts .info .phones,
.purchases__contacts .info .email {
  position: relative;
  padding-left: 35px;
}
.purchases__contacts .info .phones .icon,
.purchases__contacts .info .email .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.purchases__contacts .info .phones .icon {
  top: 8px;
  left: 6px;
}

.bonuses__block {
  margin: 20px 0 0;
  padding: 20px 0;
}
.bonuses__container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
}
.bonuses__header {
  background: #F1625E;
  margin: 0 -15px;
  position: relative;
  padding: 100px 0 100px;
  z-index: 1;
}
.bonuses__header h2 {
  display: block;
  max-width: 462px;
  color: #fff;
  font-size: 92px;
  line-height: 82px;
  font-weight: 700;
  margin: 0 0 50px;
}
.bonuses__header h3 {
  display: block;
  max-width: 556px;
  color: #fff;
  font-size: 36px;
  line-height: 39px;
  font-weight: 400;
}
.bonuses__header .bg {
  position: absolute;
  top: -80px;
  right: 0;
  z-index: -1;
}
.bonuses__tabs-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 40px;
}
.bonuses__tabs-control {
  display: block;
  padding: 24px 0;
  margin: 0 40px;
  color: #010101;
  font-size: 18px;
  line-height: 1.3em;
  border-bottom: 4px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}
.bonuses__tabs-control:hover,
.bonuses__tabs-control.active {
  color: #F1625E;
  border-color: #F1625E;
}
.bonuses__tabs {
  position: relative;
}
.bonuses__tab {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.bonuses__tab.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.bonuses__tab-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0 -13px;
}
.bonuses__tab-item {
  flex: 1;
  margin: 0 13px;
  padding: 75px 30px 30px;
  box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: .2s ease;
  z-index: 2;
}
.bonuses__tab-item:nth-child(odd):after,
.bonuses__tab-item:nth-child(even):after {
  content: '';
  position: absolute;
  right: -10px;
  top: 130px;
  display: block;
  background-size: contain !important;
  z-index: 3;
  transform: translate(50%,-50%);
}
.bonuses__tab-item:nth-child(odd):after {
  width: 98px;
  height: 40px;
  background: url(/modules/mod_td_bonusnaya_programma_2/static/dtu.png) no-repeat;
}
.bonuses__tab-item:nth-child(even):after {
  width: 125px;
  height: 22px;
  background: url(/modules/mod_td_bonusnaya_programma_2/static/utd.png) no-repeat;
}
.bonuses__tab-item:last-child:after {
  display: none;
}
.bonuses__tab-item:hover {
  background: #EDF4F7;
  z-index: 1;
}
.bonuses__tab-counter {
  position: absolute;
  left: 25px;
  top: 25px;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 50px;
  border-radius: 50%;
  background: #EDF4F7;
}
.bonuses__tab-image {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 150px;
  margin: 0 auto 50px;
}
.bonuses__tab-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.bonuses__tab-description {
  font-size: 18px;
  color: #010101;
}
.bonuses__block#card img {
  width: 100%;
}
.bonuses__block#offer .bonuses__container {
  position: relative;
  background: #EDF4F7;
  padding: 90px 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.bonuses__block#offer .image {
  flex: 0 0 320px;
  height: 230px;
  margin-right: 80px;
}
.bonuses__block#offer .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.bonuses__block#offer .info,
.bonuses__block#offer .info * {
  font-size: 18px;
  line-height: 1.3em;
}
.bonuses__block#offer .info h3 {
  font-size: 36px;
  margin-bottom: 45px;
}
.bonuses__block#offer .info p {
  margin: 0 0 1em;
}

.page-bottom .block {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto 50px;
}
.page-bottom .block-header,
.page-bottom .block-header * {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
}
.page-bottom .block-header {
  margin: 0 0 1em;
}
.page-bottom .contacts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  background: #EDF4F7;
}
.page-bottom .contacts .info {
  flex: 0 0 340px;
  margin: 30px;
}
.page-bottom .contacts .map {
  height: 300px;
  width: 100%;
  max-width: 100%;
}
.page-bottom .contacts .info span {
  display: block;
  font-size: 14px;
  line-height: 1.3em;
  color: #727272;
  margin-bottom: 24px;
}
.page-bottom .contacts .info p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.page-bottom .contacts .info p strong {
  display: block;
  font-weight: 400;
  font-size: 21px;
}
.page-bottom .contacts .info a {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1em;
  text-decoration: none;
  color: #010101;
}
.page-bottom .contacts .info > span > a {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1em;
  text-decoration: none;
  color: #F1625E;
}
.page-bottom .contacts .info .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.page-bottom .contacts .info .socials a {
  display: block;
  text-decoration: none;
  margin-right: 15px;
  color: #727272;
  text-decoration: none;
}
.page-bottom .contacts .info .socials a svg,
.page-bottom .contacts .info .socials a path {
  color: #727272;
  fill: #727272;
}
.page-bottom .questions {
  background: #EDF4F7;
  margin: 0;
}
.page-bottom .questions .inner {
  width: 100%;
  padding: 60px 0;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-bottom .questions .inner .image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 325px;
  z-index: -1;
}
.page-bottom .questions .inner .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-bottom .inner .info h3 {
  font-size: 36px;
  line-height: 1.2em;
  color: #010101;
  margin: 0 0 30px;
}
.page-bottom .inner .info p {
  font-size: 24px;
  line-height: 1.2em;
  color: #010101;
  margin: 0 0 30px;
}
.page-bottom .inner .info .btn {
  display: inline-block;
  background: transparent;
  color: #F1625E;
  border: 1px solid #F1625E !important;
  border-radius: 9px;
  text-align: center;
  font-size: 18px;
  line-height: 1em;
}
.about__block:hover, .guarantee__block:hover {
  transition: .5s ease-in-out;
  background: #EDF4F7;
}
.b24-widget-button-social-item.ui-icon-service-mobilon_whats_app {
  display: none !important;
}
.product-share {
  margin-top: 10px;
}
.ya-share2__list {
  width: 100%;
  text-align: center;
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite a .ya-share2__badge,
.ya-share2__container.ya-share2__container_color-scheme_blackwhite a:hover .ya-share2__badge {
  transition: .2s ease;
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_vkontakte .ya-share2__badge {
  background-color: rgb(0, 119, 255);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_odnoklassniki .ya-share2__badge {
  background-color: rgb(238, 130, 8);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_telegram .ya-share2__badge {
  background-color: rgb(51, 144, 236);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_viber .ya-share2__badge {
  background-color: rgb(115, 96, 242);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_whatsapp .ya-share2__badge {
  background-color: rgb(0, 230, 118);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_vkontakte a:hover .ya-share2__badge {
  background-color: rgba(0, 119, 255, 0.8);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_odnoklassniki a:hover .ya-share2__badge {
  background-color: rgba(238, 130, 8, 0.8);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_telegram a:hover .ya-share2__badge {
  background-color: rgba(51, 144, 236, 0.8);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_viber a:hover .ya-share2__badge {
  background-color: rgba(115, 96, 242, 0.8);
}
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__item_service_whatsapp a:hover .ya-share2__badge {
  background-color: rgba(0, 230, 118, 0.8);
}
.page ul li.ya-share2__item:before {
  display: none;
}
.mobile {
  display: none;
}
.ui-icon-service-telegram {
  display: none !important;
}
section.page .product-share a {
  border: 0;
}
section.page .product-share a:hover .ya-share2__badge {
  background: #f3f4f7
}
section#offer .inner .about .description table {
  border-collapse: collapse;
}
section#offer .inner .about .description table td,
section#offer .inner .about .description table th {
  border: 1px solid #ccc;
  padding: 3px;
}
@media screen and ( max-width: 1490px ) {
  .about__header .bg {
    right: 0
  }
}
@media screen and ( max-width: 1300px ) {
  .page-bottom .questions .inner {
    max-width: 750px !important;
  }
  .page-bottom .block {
    padding: 0 15px
  }
}
@media screen and ( max-width: 1290px ) {
  .about__header,
  .guarantee__header,
  .purchases__header,
  .bonuses__header {
    padding-left: 20px;
    padding-right: 20px
  }
  .bonuses__header .bg {
    max-width: 450px;
    top: 50%;
    transform: translate(0,-50%);
  }
  .about__subheader,
  .guarantee__subheader,
  .purchases__header {
    z-index: 1
  }
  .about__subheader .bg,
  .guarantee__subheader .bg {
    z-index: -1
  }
  .guarantee__header {
    z-index: 1;
    padding: 50px 15px
  }
  .purchases__header {
    padding: 50px 20px;
  }
  .purchases__container.mt {
    margin-top: 20px
  }
  .guarantee__header .bg {
    width: initial;
    right: 0
  }
  .guarantee__subheader {
    margin-top: 0
  }
}
@media screen and ( max-width: 992px ) {
  .ui-icon-service-telegram {
    display: block !important;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .about__header,
  .guarantee__header,
  .purchases__header,
  .bonuses__header {
    margin: 0;
    padding: 20px 20px 145px 20px;
    z-index: 1
  }
  .about__header .bg,
  .guarantee__header .bg,
  .purchases__header .bg {
    width: initial;
  }
  .about__header h2,
  .guarantee__header h2,
  .bonuses__header h2 {
    font-size: 38px;
  }
  .bonuses__header h2 {
    line-height: 1.5em;
    margin-bottom: 45px
  }
  .about__subheader .inner,
  .guarantee__subheader .inner {
    order: 1;
  }
  .bonuses__header h3 {
    max-width: 350px;
    font-size: 28px
  }
  .about__subheader .bg,
  .guarantee__subheader .bg {
    position: relative;
    order: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1em;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
  }
  .about__subheader,
  .guarantee__subheader {
    margin: 0
  }
  .about__block,
  .guarantee__block {
    padding: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    transition: .5s ease-in-out;
  }
  .about__block .bg,
  .guarantee__block .bg {
    position: initial;
    flex: 0 0 300px;
    margin: 0 0 0 30px
  }
  .about__block h3,
  .guarantee__block h3 {
    font-size: 30px
  }
  .about__items {
    margin: 0 0 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center
  }
  .about__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 1em
  }
  .about__item .image {
    flex: 0 0 250px;
    margin: 0 30px 0 0;
  }
  .about__item h4 {
    font-size: 28px;
    margin-top: 0
  }
  .page-bottom .block-header {
    /*padding-left: 30px;
    padding-right: 30px*/
  }
  .page-bottom .contacts {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
  }
  .page-bottom .contacts .info {
    flex: 0;
    margin: 0 0 30px;
    padding: 30px
  }
  .guarantee__items {
    flex-direction: column;
    margin: 0
  }
  .guarantee__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 15px;
  }
  .guarantee__item .image {
    flex: 0 0 250px;
    margin-right: 30px
  }
  .purchases__items {
    margin: 0;
  }
  .purchases__item {
    width: 100%;
    margin: 0 0 15px;
  }
  .purchases__contacts {
    flex-direction: column;
  }
  .purchases__contacts .person {
    border: 0;
    border-bottom: 1px solid #C7D0D5;
    padding: 30px;
  }
  .purchases__contacts .info {
    padding: 30px
  }
  .bonuses__tabs-control {
    font-size: 14px;
    margin: 0 15px
  }
  .bonuses__tab-items {
    display: block;
    margin: 0;
    padding: 15px;
  }
  .bonuses__tab-item {
    padding: 30px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 15px;
  }
  .bonuses__tab-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 25px 0 0;
  }
  .bonuses__tab-item:after {
    display: none !important
  }
  .bonuses__block#offer .bonuses__container {
    flex-direction: column;
  }
  .bonuses__block#offer .bonuses__container {
    padding: 50px;
  }
  .bonuses__block#offer .image {
    flex: 0 0 240px;
    height: 240px;
    margin: 0 0 25px
  }
  .about__container {
    position: unset;
  }
  .about__header .bg, .guarantee__header .bg, .purchases__header .bg {
    top: unset;
    left: 0;
    right: 0;
    bottom: -10px;
    max-width: 250px;
    margin: 0 auto;
  }
  .guarantee__header .bg {
    max-height: 150px;
  }
  .purchases__header .bg {
    bottom: -175px;
  }
  .bonuses__header .bg {
    max-width: 220px;
    left: 0;
    right: 0;
    bottom: -280px;
    top: unset;
    margin: 0 auto;
  }
  .b24-widget-button-social-item.ui-icon-service-mobilon_whats_app {
    display: block !important;
  }
}
@media screen and ( max-width: 767px ) {
/*  .about__header .bg,
  .guarantee__header .bg,
  .purchases__header .bg,
  .bonuses__header h2,
  .bonuses__header h3 {
    max-width: initial;
  }*/
  .bonuses__header h2 {
    margin-bottom: 20px
  }
  .bonuses__header h3 {
    margin: 0
  }
  .about__block,
  .about__item {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
  .about__item .image,
  .about__block .bg {
    margin: 0
  }
  .about__item h4 {
    margin-top: 20px;
  }
  .page-bottom .questions .inner {
    padding: 60px 15px
  }
  .guarantee__block,
  .guarantee__item {
    flex-direction: column;
  }
  .guarantee__block .image,
  .guarantee__item .image {
    flex: initial;
    margin: 0 auto 30px;
  }
  .about__subheader .inner h3,
  .guarantee__subheader .inner h3,
  .guarantee__block .inner h3 {
    font-size: 28px
  }
}
@media screen and ( max-width: 576px ) {
  .page-bottom .questions .inner {
    padding: 15px
  }
  .blue.questions .inner .info {
    width: 100%;
    max-width: initial;
  }
  .page-bottom .questions .inner .image {
    display: none !important
  }
  .purchases__header h2 {
    font-size: 28px;
  }
  .purchases__item .header,
  .purchases__contacts .person strong,
  .purchases__contacts .info strong {
    font-size: 24px
  }
  .purchases__contacts .info .phones a {
    font-size: 18px
  }
  .purchases__item .icon {
    display: none
  }
  .purchases__contacts .info,
  .purchases__contacts .person {
    padding: 30px 0
  }
  .purchases__contacts .person {
    flex-direction: column;
    align-items: center;
    justify-content: center
  }
  .purchases__contacts .person * {
    text-align: center
  }
  .purchases__contacts .person .photo {
    margin: 0 0 30px
  }
  .bonuses__tabs-controls {
    flex-direction: column;
  }
  .bonuses__tab-item {
    flex-direction: column;
  }
  .bonuses__tab-image {
    margin: 0 0 25px
  }
  .bonuses__block {
    padding: 0
  }
}

.product_card .btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 5px 0 3px;
}
.product_card .btn-group .quickorder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 38px;
  height: 38px;
  font-size: 16px;
  line-height: 38px;
  background: #f15d58;
  color: #fff;
  border-radius: 5px 0 0 5px;
  border-right: 1px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: .2s ease;
}
.product_card .btn-group .quickorder:hover {
  background: #b1322e;
}
.product_card .btn-group .btn {
  margin: 0;
  border-radius: 0 5px 5px 0;
  padding: 12px 5px;
}
.product_card .order .quickorder + .buy {
	min-width: 82px;
}
.awmodal .product {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.awmodal .product picture {
  display: block;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
.awmodal .product picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.awmodal .product .info .name {
  display: block;
  font-size: 16px;
  line-height: 1.1em;
}
.awmodal .product .info .ean {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 12px;
  color: #aaa;
}

#addreview {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 25px auto;
  padding: 25px;
  box-shadow: 5px 5px 25px rgba(25,25,25,.1);
}
#addreview h2 {
  margin: 0 0 25px;
  font-size: 1.17em;
}
#addreview .form-info.privacy {
  margin-bottom: 0;
}

.cookie-agreement {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: #fff;
  z-index: 99999;
  box-shadow: 0 0 25px rgba(0,0,0,.15);
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.cookie-agreement .info,
.cookie-agreement .info * {
  font-size: 13px;
  line-height: 1.3em;
  color: #242424;
}
.cookie-agreement .btn {
  margin: 0 0 0 16px;
}
.red-old-price-label {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 6px;
  /* background: #f26561; */
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  padding: 2px 4px 2px 20px;
  border-radius: 0px 5px 5px 0;
  background: url('/images/icons/old-price-red-label2.png') no-repeat;
  background-size: auto 28px;
  text-align: center;
  width: 104px;
  height: 28px;
  white-space: nowrap;
}
/* Работает в Firefox */
.children-cats.level-1 {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f3f4f7;
}
/* Работает в Chrome, Edge и Safari */
.children-cats.level-1::-webkit-scrollbar {
  width: 12px;
}
.children-cats.level-1::-webkit-scrollbar-track {
  background: #f3f4f7;
}
.children-cats.level-1::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 20px;
  border: 3px solid #f3f4f7;
}


.category-slider {}
.category-slider-inner {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.category-slider-image {
  flex: 0 0 calc(33% - 5px);
  display: block;
  text-decoration: none;
  height: 450px;
  margin-right: 5px;
}
.category-slider-image img {
  width: 100% !important;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}
.category-slider-slides {
  flex: 1;
  overflow: hidden;
}
.text-center {
  text-align: center;
}
.about-inner {
  display: flex;
}
.about-text {
  width: 70%;
  margin-right: 40px;
}
.blog.item-page .body .text p {
	font-size: 20px;
	line-height: 1.5;
	text-indent: 15px;
}
.about-images {
  width: 30%;
}
.blog.item-page .body .about-images .image {
  width: 100%;
  height: 200px;
}
.about-images .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.checkout-finish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 77px;
  text-align: center;
}
.checkout-finish .text {
  flex-grow: 1;
}
.checkout-finish .badge {
  background: #EDF4F7;
  border-radius: 6px;
  display: inline-block;
  padding: 15px 31px;
  margin-bottom: 15px;
}
.checkout-finish .after {
  font-size: 14px;
  color: #8E8E8E;
  max-width: 300px;
  margin: 0 auto;
}
.checkout-finish .after a {
  border: 0;
}
.btn:disabled {
	opacity: 0.5;
}
label.input-label .suggestions-subtext span {
  display: inline;
}
@media screen and ( max-width: 992px ) {
  .category-slider-inner {
    flex-wrap: wrap;
  }
  .category-slider-image,
  .category-slider-slides {
    flex: 0 0 100%;
  }
  .category-slider-image {
    margin: 0 0 10px;
    width: 350px;
    height: 350px;
  }
  .category-slider-image img {
    object-position: center;
  }
}
.breadcrumb li a svg,
.breadcrumb li span svg {
  vertical-align: top;
  margin-top: 4px;
}
.has-siblings {
  position: relative;
}
.breadcrumb .siblings {
	position: absolute;
	left: 0;
	top: 25px;
	left: initial;
	bottom: initial;
	display: block;
	width: 100vw;
	max-width: 250px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 10px 10px 50px rgba(0,0,0,.3) !important;
	padding: 5px 0;
  list-style: none;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	z-index: 2;
	transition: .2s ease;
}
.breadcrumb .focus .siblings {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	z-index: 3;
}
.breadcrumb .siblings li a {
  padding: 2px 10px;
  display: block;
  transition: .2s;
}
.breadcrumb .siblings li a:hover {
	color: #f1635f;
}
#contacts * {
  text-indent: 0;
}


section.block.slider .slides .slide {
  min-width: 240px;
}
section.block.slider .slides .slick-track {
  display: flex;
  flex-direction: row;
  justify-content: center;
}