* {
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

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

body {
  font: 16px/23px 'Montserrat', Arial, sans-serif; /* 16px/23px 'PT Sans', Arial, sans-serif */
  height: 100%;
  color: #282828;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  height: auto !important;
  height: 100%;
}

.layout {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1240px;
}

.layout-fluid {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.layout__table {
  display: table;
  margin: 0;
  padding: 0;
  min-width: 100%;
}

.row:before, .row:after, .clr:before, .clr:after, .layout:before, .layout:after, .layout-fluid:before, .layout-fluid:after, .section:before, .section:after, nav:before, nav:after, .product-card:before, .product-card:after {
  content: " ";
  display: table;
}

.row:after, .clr:after, .layout:after, .layout-fluid:after, .section:after, nav:after, .product-card:after {
  clear: both;
}

.body-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(33, 43, 68, 0.5);
}

/* Style */
a, .link {
  color: #a10000;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

a:hover, .link:hover {
  color: #df0000;
}

.dashed {
  border-bottom: 1px dashed;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: bold;
}

h1, .h1 {
  font-size: 32px;
  line-height: 40px;
}

h2, .h2 {
  font-size: 28px;
  line-height: 34px;
}

h3, .h3 {
  font-size: 22px;
  line-height: 30px;
}

h4, .h4 {
  font-size: 20px;
  line-height: 28px;
}

h5, .h5 {
  font-size: 18px;
  line-height: 26px;
}

h6, .h6 {
  font-size: 16px;
  line-height: 24px;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.ul-style li, .ol-style li {
  position: relative;
  text-align: left;
  margin-bottom: 14px;
  margin-left: 18px;
}

.ul-style li:last-child, .ol-style li:last-child {
  margin-bottom: 0;
}

.ul-style_default {
  list-style-type: disc;
}

.ol-style_default {
  list-style-type: decimal;
}

.ul-style_inline li {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 14px;
  margin-left: 0;
  font-weight: bold;
}

.ul-style_inline li:before {
  content: "•";
  margin-right: 10px;
}

.ul-style_inline li:last-child {
  margin: 0;
}

.ul-style_check li {
  margin-left: 25px;
}

.ul-style_check li:before {
  content: "\f00c";
  position: absolute;
  font-size: 16px;
  top: -1px;
  left: -25px;
  color: #28a762;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
}

.ul-style_2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.wide {
  width: 100%;
}

img {
  font: 0/0 a;
  border: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-popup:hover {
  cursor: pointer;
  opacity: .7;
  border-color: #decaca;
}

.img-border {
  padding: 15px;
  background: #fff;
  border: 1px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.img-left {
  float: left;
  margin: 0 20px 20px 0;
}

.img-right {
  float: right;
  margin: 0 0 20px 20px;
}

.img-desc {
  width: 190px;
  padding: 4px;
  background: #fff;
  border: 1px solid #dfe1e7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.img-desc_left {
  float: left;
  margin: 0 20px 20px 0;
}

.img-desc_right {
  float: right;
  margin: 0 0 20px 20px;
}

.banner-responsive img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

iframe {
  border: 0;
}


/* Flex */

.flex { display: flex; }

.flex-row { flex-direction: row;  }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

.flex-wrap { flex-wrap: wrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
.flex-nowrap { flex-wrap: nowrap; }

.justify-normal { justify-content: normal; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.justify-stretch { justify-content: stretch; }

.justify-items-start { justify-items: start; }
.justify-items-end { justify-items: end; }
.justify-items-center { justify-items: center; }
.justify-items-stretch { justify-items: stretch; }

.align-content-normal { align-content: normal; }
.align-content-center { align-content: center; }
.align-content-start { align-content: flex-start; }
.align-content-end { align-content: flex-end; }
.align-content-between { align-content: space-between; }
.align-content-around { align-content: space-around; }
.align-content-evenly { align-content: space-evenly; }
.align-content-baseline { align-content: baseline; }
.align-content-stretch { align-content: stretch; }

.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch { align-items: stretch; }


/* Text */

.h1-main {
  margin-bottom: 50px;
  /*font-family: 'Unbounded';*/
  font-size: 40px;
  line-height: 2.7rem;
  /* font-weight: 800; */
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .h1-main {
    font-size: 34px;
    line-height: 2.5rem;
    margin-bottom: 40px !important;
  }
}

.text-strong {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: 15px;
  line-height: 20px;
}

.text-big {
  font-size: 17px;
  line-height: 26px;
}

.text-xl {
  font-size: 19px;
  line-height: 28px;
}


.block-border {
  margin: 30px 0;
  padding: 10px 25px;
  border: 2px solid #dadada;
}

.block-border.is-rounded {
  border-radius: 60px;
}

.block-border.is-red {
  border-color: #ffa59d;
}


.text-border {
  overflow: hidden;
  margin: 5px 0;
  font-size: 14px;
}

.text-border:before, .text-border:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  margin: 0 10px;
}

.text-border:before {
  margin-left: -100%;
}

.text-border:after {
  margin-right: -100%;
}

.text-border_center {
  text-align: center;
}

.text-border_right {
  text-align: right;
}


.text-block {
  position: relative;
  padding: 15px 20px;
  overflow: hidden;
  background-color: #f0f0f0;
  border: 0 solid #d3d3d3;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  z-index: 1;
}

.text-block_border-right {
  border-left-width: 5px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.text-block_orange {
  background-color: #fff0dd;
}


.text-orange {
  color: #f57f11 !important;
}

.text-red {
  color: #dd1f1f !important;
}

.font-montserrat {
  font-family: 'Montserrat';
}

.font-unbounded {
  font-family: 'Unbounded';
  line-height: 2rem;
}



/* Block Counter */
.block-counter-h2 {
  counter-reset: heading2;
}

.block-counter-h3 {
  counter-reset: heading3;
}

.block-counter-h4 {
  counter-reset: heading4;
}

.block-counter-h2 h2:before, .block-counter-h2 .h2:before {
  content: counter(heading2)".";
  counter-increment: heading2;
  margin-right: 6px;
}

.block-counter-h3 h3:before, .block-counter-h3 .h3:before {
  content: counter(heading3)".";
  counter-increment: heading3;
  margin-right: 6px;
}

.block-counter-h4 h4:before, .block-counter-h4 .h4:before {
  content: counter(heading4)".";
  counter-increment: heading4;
  margin-right: 6px;
}

/* Icon */
.icon {
  display: inline-block;
  vertical-align: top;
}

.fa-caret-down, .fa-caret-up {
  font-size: 13px;
}

.sticker {
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #eee;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.sticker img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 4px;
}

.sticker__notice {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 5px;
  font-size: 12px;
  line-height: 25px;
  white-space: nowrap;
  text-align: center;
  background: rgba(46, 51, 71, 0.7607843137254902);
  color: #fff;
  padding: 0 8px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  z-index: 7;
}

.sticker__notice:before {
  content: '';
  position: absolute;
  left: 14px;
  top: -12px;
  border: 6px solid transparent;
  border-bottom: 6px solid rgba(46, 51, 71, 0.7607843137254902);
}

.sticker:hover .sticker__notice {
  display: block;
}


/* File Items */
.file-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.file-item__link {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 500px;
  text-wrap: balance;
}

.file-item__link:before {
  content: "";
  margin: 1px 12px 0 0;
  height: 48px;
  width: 35px;
  flex-shrink: 0;
  align-self: flex-start;
  background-image: url('/img/file-red.svg');
  background-repeat: no-repeat;
}

.file-item__link:after {
  content: var(--ext, "");
  position: absolute;
  top: 18px;
  width: 35px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}


/* Form */
button, input, optgroup, select, textarea {
  position: relative;
  color: inherit;
  font: inherit;
  margin: 0;
  border: 0;
  outline: none;
}

button, input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}

label {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  font-size: 14px;
  color: #434343;
}

.input, .input-text, .textarea {
  background: #ecedf1;
  display: block;
  border-bottom: 1px solid #dadde6;
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.input, .select {
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
}

.input_without-border {
  border-color: transparent;
}

.input_radius {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.textarea {
  padding: 5px 10px;
  resize: none;
  min-height: 70px;
}

.select {
  padding-right: 30px;
  color: #999;
  font-size: 16px;
  -webkit-appearance: none;
  background: #fff url('../img/arrow-select.png') 100% 50% no-repeat;
}

::-webkit-input-placeholder {
  color: #b7b8b9;
}

::-moz-placeholder {
  color: #b7b8b9;
}

:-moz-placeholder {
  color: #b7b8b9;
}

:-ms-input-placeholder {
  color: #b7b8b9;
}

.input.error {
  background: #ff9b9b;
}

.input.error::-webkit-input-placeholder {
  color: #ff1e1e;
}

.input.error::-moz-placeholder {
  color: #ff1e1e;
}

.input.error:-moz-placeholder {
  color: #ff1e1e;
}

.input.error:-ms-input-placeholder {
  color: #ff1e1e;
}

.form-success, .form-notice {
  display: none;
}

.form-block {
  display: block;
}

.form-block label {
  font-weight: bold;
  padding: 0 5px;
}

.form-block__row {
  margin-bottom: 20px;
}

.form-block__row:last-child {
  margin-bottom: 0;
}

.form-block__row_inline {
  font-size: 0;
}

.form-block__cell {
  position: relative;
  margin-top: 15px;
}

.form-block__cell:first-child {
  margin-top: 0;
}

.form-block__cell_hidden {
  display: none !important;
}

.form-block__cell_error label {
  color: #db3737;
}

.form-block__cell_error input {
  border-color: #efbfbf !important;
  background: #ffe4e4 !important;
}

.form-block__row_inline .form-block__cell {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 2%;
  margin-top: 0;
}

.form-block__row_inline .form-block__cell:last-child {
  margin-right: 0;
}

.form-block__row_inline-3 .form-block__cell {
  width: 32%;
  margin-right: 2%;
}

.form-block__row_inline-2 .form-block__cell {
  width: 49%;
  margin-right: 2%;
}

.form-block_white .input, .form-block_white .input-text, .form-block_white .textarea {
  background: #fff;
}

.block-agreement {
  margin-top: 10px;
  font-size: 13px;
  line-height: 16px;
  color: #999;
}

.registration-form {
  max-width: 450px;
  padding: 20px 25px;
  background: #eceef7;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.forgot-password-link {
  float: right;
  font-size: 14px;
}

.registration-stropuva {
  margin-top: 30px;
  padding: 20px 25px;
  background: #eceef7;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.calculation-form {
  padding: 20px 25px;
  background-color: #eceef7;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  overflow: hidden;
}
.calculation-form__result {
  margin: 30px -25px -20px;
  padding: 20px 25px;
  border-top: 1px solid #e0e1e7;
  background: #f8f8fb;
}

/* Change count */
.change-count {
  position: relative;
}

.change-count input {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  padding: 0 20px 0 5px;
  height: 41px;
  line-height: 41px;
  background: #dfe1e7;
}

.change-count__button {
  position: absolute;
  right: 7px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.change-count__button i {
  font-size: 18px;
  color: #a0a3ad;
}

.change-count__button:hover i {
  color: #c32131;
}

.change-count__button_minus {
  bottom: 2px;
}

.change-count__button_plus {
  top: 2px;
}

/* Checkbox */
.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.checkbox__custom {
  position: relative;
  float: left;
  cursor: pointer;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #BABABA;
  background: #fff;
}

.checkbox__label {
  cursor: pointer;
  position: relative;
  top: -1px;
  line-height: 20px;
  display: block;
  padding-left: 23px;
}

.checkbox__input:checked+.checkbox__custom:before {
  content: '\f00c';
  position: absolute;
  font-size: 11px;
  line-height: 1;
  top: 50%;
  left: 2px;
  margin-top: -1px;
  color: #fff;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  transition: all .2s;
  font-weight: 900;
}

.checkbox__input:checked+.checkbox__custom {
  background: #f5961f;
  border-color: transparent;
}

.checkbox_radio .checkbox__custom, .checkbox_radio .checkbox__input:checked+.checkbox__custom:before {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.checkbox-disabled {
  opacity: .5;
}

/* Upload Images */
.upload-block input[type=file] {
  display: none;
}

.upload-block .upload-block__button {
  padding: 0;
}

.upload-block__clear {
  display: none;
  margin: 0 0 4px 15px;
  font-size: 15px;
  color: #ce2121;
  border-bottom: 1px dotted;
  cursor: pointer;
}

.upload-block.is-images .upload-block__clear {
  display: inline-block;
}

.upload-block__image {
  display: inline-block;
  position: relative;
  margin: 10px 10px 0 0;
  width: 80px;
  height: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #f1f1f1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}

/* Table */
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}

table th [class*="col-"], table td [class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table {
  width: 100%;
  border: 1px solid #e8e8e8;
}

.table td, .table th {
  padding: 10px 20px;
  background: #fff;
  vertical-align: top;
}

.table th {
  font-weight: normal;
  padding: 10px 20px;
  color: #8d8d8d;
  text-align: left;
}

.table tr:nth-child(2n+1) td {
  background: #f5f5f7;
}

.table-heading th {
  font-weight: bold;
  color: #282828;
}

.table-bordered th, .table-bordered td {
  border: 1px solid #ebebef;
}

.table-nostriped tr:nth-child(2n+1) td {
  background: transparent;
}

.td-yellow {
  background: #f9f4aa !important;
}

.th-yellow {
  background: #ece794 !important;
}

.td-red, .th-red {
  background: #ff7a71 !important;
}

.td-green, .th-green {
  background: #aee6c3 !important;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

/* Button */
.button {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background: transparent;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 0;
  padding: 6px 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.button_border {
  padding: 4px 15px;
  border: 2px solid #e5e5e5;
}

.button_border:hover {
  border-color: #f42f2a;
  color: #f42f2a;
}

.button_radius {
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  border-radius: 45px;
}

.button_default {
  color: #fff;
  background: #f5961f;
  background: -webkit-linear-gradient(top left, #ffa700, #ff7717);
  background: -o-linear-gradient(top right, #ffa700, #ff7717);
  background: -moz-linear-gradient(top right, #ffa700, #ff7717);
  background: linear-gradient(top right, #ffa700, #ff7717);
  /*color: #fff;
  background: #707070;
  background: -webkit-linear-gradient(top left, #585858, #767676);
  background: -o-linear-gradient(top left, #585858, #767676);
  background: -moz-linear-gradient(top left, #585858, #767676);
  background: linear-gradient(top left, #585858, #767676);*/
}

.button_default:hover {
  color: #fff;
  background: #4a4343; /*#404040;*/
}

.button_yellow {
  background: #4a4343;
  background: -webkit-linear-gradient(top right, #ffb01d, #fff161);
  background: -o-linear-gradient(top right, #ffb01d, #fff161);
  background: -moz-linear-gradient(top right, #ffb01d, #fff161);
  background: linear-gradient(top right, #ffb01d, #fff161);
  color: #000;
}

.button_yellow:hover {
  background: #4a4343;
  color: #fff;
}

.button_gray {
  background: #666666; /*#7f696b;*/
  color: #fff;
}

.button_gray:hover {
  background: #4a4a4a; /*#695859;*/
  color: #fff;
}

.button_black {
  background: #282828;
  color: #fff;
}

.button_black:hover {
  background: #394352;
  color: #fff;
}

.button_red {
  background: #7f696b;
  color: #fff;
}

.button_red:hover {
  background: #695859;
  color: #fff;
}

.button_danger {
  background: #c32130;
  color: #fff;
}

.button_danger:hover {
  background: #970b18;
  color: #fff;
}

.button_buy {
  background: #d71c1c;
  background: -webkit-linear-gradient(bottom left, #bd0c0c, #f34343);
  background: -o-linear-gradient(bottom left, #bd0c0c, #f34343);
  background: -moz-linear-gradient(bottom left, #bd0c0c, #f34343);
  background: linear-gradient(bottom left, #bd0c0c, #f34343);
  color: #fff;
}

.button_buy:hover {
  background: #4a4343;
}

.button_added {
  background: #59964b !important;
  color: #fff !important;
  opacity: 1 !important;
}

.button_whatsapp {
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  padding: 0 14px 0 3px;
  background: #0c9f43;
  color: #fff;
  font-weight: bold;
}

.button_whatsapp:hover {
  color: #fff;
  background-color: #078b38;
}

.button_whatsapp svg {
  margin: 7px 7px 8px 8px;
}

.button_small {
  padding: 2px 10px;
}

.button[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=45);
  opacity: .45;
}

/* Modal */
.open-popup {
  cursor: pointer;
}

.modal-block {
  position: relative;
  width: 500px;
  margin: 30px auto;
  padding: 40px;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.modal-block_large {
  width: 800px;
}

.modal-block__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.modal-block__title_center, .modal-block__text_center {
  text-align: center;
}

.modal-block__text {
  font-size: 14px;
  line-height: 19px;
  background: #e9f0f3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 20px;
}

.mfp-figure:after {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #fff;
}

img.mfp-img {
  padding: 40px;
}

.mfp-bottom-bar {
  margin: 0;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  right: 0;
  color: #fff;
  background: #c32132;
  opacity: 1;
}

/* Slider */
.slides-arrows {
  position: absolute;
  font-size: 38px;
  color: #f5861f;
  top: 50%;
  margin-top: -19px;
  cursor: pointer;
  z-index: 5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: .2s linear;
}

.slides-arrows:before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

.slides-arrows_prev {
  left: 10px;
}

.slides-arrows_next {
  right: 10px;
}

.slides-arrows_next-down, .slides-arrows_prev-up {
  position: absolute;
  top: inherit;
  margin-top: inherit;
  bottom: -10px;
}

.slides-arrows_next-down {
  right: 50%;
  margin-right: -32px;
}

.slides-arrows_prev-up {
  left: 50%;
  margin-left: -32px;
}

.slides-arrows:hover {
  color: rgba(165, 153, 154, 0.59) !important;
  text-shadow: none !important;
}

.slides-arrows:hover:before {
  background: #f0f5ff !important;
}

.slides-arrows.slick-disabled {
  cursor: not-allowed;
  filter: alpha(opacity=45);
  opacity: .45;
}

.banner-slider__item {
  display: none;
}

.banner-slider_responsive {
  margin: 0 !important;
}

.banner-slider_responsive img {
  margin: 0 auto;
}

.banner-slider_responsive .slick-dots {
  left: 50%;
  bottom: 20px;
  width: auto;
  padding: 5px 2px;
  background: rgba(19, 19, 19, 0.54);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.banner-slider_responsive .slides-arrows {
  color: #fff;
}

.banner-slider_responsive .slides-arrows:before {
  background: #35393e;
}

/* Gallery */
.gallery {
  font-size: 0;
}

.gallery__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 10px 0;
}

.gallery__item:hover img {
  opacity: 0.8;
}

.gallery__item img {
  display: block;
  max-height: 215px !important;
  width: auto !important;
  cursor: pointer;
  border: 2px solid #676f7b;
  box-shadow: 0 0 4px #a5a5a5;
}

/* Tab content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Notice */
.notice {
  position: relative;
  margin: 10px 0;
  background: #e0e0e0;
  padding: 15px 15px 15px 45px;
  line-height: 17px;
  font-size: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.notice::before {
  position: absolute;
  font-size: 22px;
  top: 50%;
  left: 10px;
  color: #bfbcaf;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.notice_inline {
  display: inline-block;
}

.notice_top {
  margin: 0 0 10px;
}

.notice_info {
  background: #eae8df;
}

.notice_info::before {
  content: "\f05a";
}

.notice_error, .notice_warning {
  background: #ffc6c6;
}

.notice_error::before, .notice_warning::before {
  content: "\f057";
  color: #f59196;
}

.notice_success {
  background: #e0f7dd;
}

.notice_success::before {
  content: "\f058";
  color: #87c37f;
}

.maintenance-page {
  width: 100%;
  text-align: center;
  line-height: 40px;
  background: #fb4e4e;
  color: #fff;
}

/* ----------- Header ----------- */
.header {
  position: relative;
}


.header__top {
  position: relative;
  padding: 15px 0;
  color: #333; /*#ffffff*/
  background-color: #fff; /*#e5a231;*/
  /*-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.39);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.39);*/
  z-index: 1;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
}

.header-menu {
  margin: 0 65px 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.header-menu__item.is-catalog {
  display: none;
}

.header-menu__item:hover {
  color: #f57f11;
  cursor: pointer;
}
.header-menu__item.is-active {
  font-weight: bold;
  color: #f57f11;
}

.header-menu__link {
  color: #333333;
}

.header-menu__item:hover .header-menu__link {
  color: #f57f11;
  cursor: pointer;
}


.header-contacts {
  display: flex;
}

.header-contacts__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.header-phone__link {
  font-weight: bold;
  color: #333333;
}

@media screen and (max-width: 1100px) {
  .header-menu {
    font-size: 15px;
  }
}

@media screen and (max-width: 1060px) {
  .header-menu {
    font-size: 14px;
  }
}

@media screen and (max-width: 1023px) {
  .header__top-inner {
    flex-direction: column-reverse;
  }

  .header-menu {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-menu__item {
    width: 100%;
    border-bottom: 1px solid #c9c9c9;
  }

  .header-menu__item:first-child {
    border-top: 1px solid #c9c9c9;
  }

  .header-menu__link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    padding: 15px 25px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .header-menu__item.is-catalog {
    display: block;
    background-color: #f5861f;
    border-color: transparent;
  }
  .header-menu__item.is-catalog.is-active {
    background-color: transparent;
  }
  .header-menu__item.is-catalog .header-menu__link {
    color: #ffffff;
  }
  .header-menu__item.is-catalog:hover .header-menu__link {
    color: #333333;
  }

  .header-menu__item.is-active .header-menu__link {
    color: #fff;
    background-color: #333333;
  }

  .header-contacts {
    padding-top: 2px;
  }

  .header-contacts__inner {
    width: 100%;
  }

  .header-contacts__inner:after {
    content: "\f095";
    position: absolute;
    font-size: 40px;
    top: 20px;
    right: 25px;
    color: #e9e9e9;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: 'Font Awesome 5 Free';
    z-index: -1;
  }

  .header-contacts__item {
    width: 100%;
  }

  .header-phone__link {
    display: block;
    padding: 20px 25px;
    width: 100%;
  }
}



.header__logo, .header__contact, .header__whatsapp, .header__callback, .header__basket, .header__compare, .header__login {
  display: table-cell;
  vertical-align: middle;
}

.header__logo {
  min-width: 140px;
  white-space: nowrap;
}

.logo-icon, .logo-name {
  display: inline-block;
  vertical-align: middle;
}

.logo-icon {
  width: auto;
  height: 48px;
  max-width: 200px;
}

.logo-name {
  height: 14px;
  margin: 0 0 0 5px;
}

.header-icon {
  vertical-align: top;
  width: 32px;
  height: 32px;
  background: #444444;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 32px !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.header__contact {
  width: 100%;
/*  padding: 0 8%;*/
}

.header__contact-inner {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-evenly;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: justify;
}

/*.header__contact-phone {
  position: relative;
  padding-left: 42px;
  font-size: 20px;
  font-weight: bold;
}

.header__contact-phone i {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16px;
  background: #c32132;
}*/

/*.header__contact-callback {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
}*/

.header__contact-text {
  font-size: 14px;
  line-height: 24px;
}

.header__contact-link a {
  font-size: 15px;
  color: #c32130;
}

.header__contact-link a:hover {
  color: #f42f2a;
}

.header__contact-item.is-city {
  font-weight: 600;
}

.header__whatsapp {
  white-space: nowrap;
  padding-right: 20px;
}

.header__callback {
  white-space: nowrap;
  padding-right: 40px;
}

.header__callback a {
  padding: 9px 15px;
  line-height: 1em;
}

@media screen and (max-width: 1099px) {
  .header__whatsapp {
    padding-right: 8px;
  }

  .header__callback {
    padding-right: 25px;
  }
}

/* City */
.city-wrap {
  margin-top: 20px;
  padding: 0 10px;
}

.city-list {
  float: left;
  width: 33.3333%;
  padding-right: 5px;
}

.city-muted {
  opacity: .2;
}

/* Compare */
.header__compare {
  padding-right: 20px;
}

.compare-head {
  display: block;
  position: relative;
}

.compare-head i {
  background: #908586;
}

.compare-head__count {
  position: absolute;
  top: -3px;
  right: -6px;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  padding: 0 4px;
  background: #e3e7f1;
  color: #808080;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.compare-head.active i {
  background: #35393e;
}

/* User */
.header__login {
  padding-right: 30px;
}

.user {
  position: relative;
}

.user__link {
  display: block;
  cursor: pointer;
}

.user__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 7px;
  min-width: 100%;
  z-index: 10;
}

.user__menu_active {
  display: block;
}

.user__menu-link {
  position: relative;
  display: block;
  white-space: nowrap;
  background: #2c3138;
  border-top: 1px solid #44484c;
  color: #fff;
  padding: 3px 15px;
  font-size: 14px;
  font-weight: bold;
}

.user__menu-link:first-child {
  border-top: 0;
}

.user__menu-link:hover {
  color: #9faebf;
}

/* Basket */
.header__basket {
  white-space: nowrap;
  font-size: 0;
}

.basket-head {
  position: relative;
  display: block;
  padding: 8px 15px 8px 20px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  background: #292828;
  background: -webkit-linear-gradient(top right, #292828, #632329);
  background: -o-linear-gradient(top right, #292828, #632329);
  background: -moz-linear-gradient(top right, #292828, #632329);
  background: linear-gradient(top right, #292828, #632329);
  color: #fff;
}

.basket-head__count {
  position: absolute;
  top: -3px;
  right: -6px;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  padding: 0 4px;
  background: #e3e7f1;
  color: #808080;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.basket-head__info {
  position: relative;
  font-size: 13px;
  line-height: 16px;
}

.basket-head__info-count {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.basket-head__info-text {
  display: inline-block;
  border-bottom: 1px dashed;
  line-height: 13px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.basket-head__icon {
  position: absolute;
  left: -17px;
  top: 50%;
  margin-top: -16px;
}

.basket-head__icon i {
  background: #c32131;
  font-size: 17px;
}

.basket-head__icon i:before {
  position: relative;
  left: -1px;
}

.basket-head:hover {
  color: #fdd8db;
}

.header__bottom {
  padding-bottom: 20px;
  background: #fff;
}

.header__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header-catalog {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f5861f;
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #f5861f;
  cursor: pointer;
}

.header-catalog:hover {
  color: #fff;
  background-color: #f5861f;
}

.header-catalog svg {
  width: 16px;
  height: 8px;
  margin-left: 10px;
}

.header-catalog svg path {
  stroke: #f5861f;
}

.header-catalog:hover svg path {
  stroke: #fff;
}

.header-search {
  position: relative;
  flex-grow: 1;
}

.header-search__input {
  padding: 10px 55px 10px 15px;
  width: 100%;
  background-color: #f7f7f7;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: none;
}

.header-search__input::-webkit-input-placeholder {
  color: #9b9b9b;
}

.header-search__input::-moz-placeholder {
  color: #9b9b9b;
}

.header-search__input:-moz-placeholder {
  color: #9b9b9b;
}

.header-search__input:-ms-input-placeholder {
  color: #9b9b9b;
}

.header-search__button {
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  color: #cfcfcf;
  background: none;
  border: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.header-search__button:hover {
  color: #282828;
}

.header-cart {
  cursor: pointer;
}

.header-cart__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  background-color: #bcbcbc;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.header-cart:hover .header-cart__inner {
  color: #fff;
  background-color: #f5861f;
}

.header-cart__inner.in-stock {
  font-weight: 600;
  color: #fff;
  background-color: #f5861f;
}

.header-cart:hover .header-cart__inner.in-stock {
  color: #fff;
  background-color: #282828;
}

.header-cart svg {
  position: relative;
  top: -1px;
  width: 20px;
  height: 17px;
}

.header-cart__total {
  color: #fff;
}


.header__cat, .header__nav, .header__search {
  display: table-cell;
  vertical-align: middle;
}

.header__nav {
  width: 100%;
  white-space: nowrap;
}

.header__search {
  min-width: 180px;
}

/* Navbar */
.navbar {
  display: table;
  width: 100%;
}

.navbar__item {
  position: relative;
  display: table-cell;
  vertical-align: top;
  width: 1%;
}

.navbar__link {
  display: block;
  padding: 11px 0;
  color: #ced3d7;
  font-weight: bold;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.navbar__link:hover, .navbar__item:hover .navbar__link, .navbar__item_current .navbar__link {
  background: #e53b38; /*#2c3138*/
  color: #fff;
}

.navbar__item:hover .navbar__link i, .navbar__item.active .navbar__link i {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: .2s ease -webkit-transform;
  transition: .2s ease transform;
}

.navbar__sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 7px;
  min-width: 100%;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .navbar__item:hover .navbar__sub-menu {
    display: block;
    z-index: 15;
  }
}

.navbar__item.active .navbar__sub-menu {
  display: block;
}

.navbar__sub-inner {
  padding: 0 15px;
  background: #e53b38; /*#35393e;*/
}

.navbar__sub-link {
  position: relative;
  display: block;
  color: #fff;
  border-bottom: 1px solid #b73333/*#44484c*/;
  padding: 6px 0;
  font-size: 14px;
  font-weight: bold;
}

.navbar__sub-link:last-child {
  border-bottom: 0;
}

.navbar__sub-link:hover {
  color: #ffd7d7; /*#9faebf;*/
}

/* Head catalog */
.head-catalog {
  position: relative;
  white-space: nowrap;
}

.head-catalog__button {
  position: relative;
  display: block;
  padding: 11px 25px;
  font-size: 13px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: #e53b38; /*#c32130*/
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.head-catalog__button:before {
  content: "\f02e";
  position: absolute;
  font-size: 40px;
  top: 0;
  right: 5px;
  color: rgba(64, 64, 64, 0.16);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  z-index: -1;
}

.head-catalog__button:hover {
  background: #e53b38; /*#2c3138;*/
  color: #fff;
}

.head-catalog__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 7px;
  min-width: 220px;
  z-index: 20;
}

@media screen and (min-width: 1024px) {
  .head-catalog:hover .head-catalog__dropdown {
    display: block;
  }
}

.head-catalog__inner {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  background: #e53b38; /*#35393e;*/
}

.head-catalog__category {
  padding: 0 15px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.head-catalog__banner img {
  display: block;
}

.category__item {
  display: block;
}

.category__link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  white-space: normal;
  border-bottom: 1px solid #b73333; /*1px solid #44484c;*/
}

.category__link:hover, span.category__link {
  color: #ffd7d7; /*#9faebf;*/
}

.category__item:last-child .category__link {
  border-bottom: 0;
}

/* search */
.search {
  position: relative;
}

.search__input {
  overflow: hidden;
}

.search__input .input {
  background: #fff;
  border-width: 0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding-left: 15px;
  padding-right: 40px;
  height: 32px;
  line-height: 32px;
  text-overflow: ellipsis;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  border: 2px solid #dddddd;
}

.search__input ::-webkit-input-placeholder {
  color: #9b9b9b;
}

.search__input ::-moz-placeholder {
  color: #9b9b9b;
}

.search__input :-moz-placeholder {
  color: #9b9b9b;
}

.search__input :-ms-input-placeholder {
  color: #9b9b9b;
}

.search__button {
  position: absolute;
  right: 0;
  z-index: 10;
}

.search__button .button {
  font-size: 19px;
  color: #adadad;
  height: 32px;
  width: 40px;
  padding: 0;
  background: transparent
}

.search__button .button:hover {
  color: #333;
}

.search__button .spinner {
  display: none;
  padding: 6px 0 3px;
  width: 40px;
  text-align: center;
  font-size: 19px;
  color: #333;
  background: transparent
}

.search__button.loading .button {
  display: none;
}

.search__button.loading .spinner {
  display: block;
}

.search__result {
  position: absolute;
  display: none;
  font-size: 14px;
  background: #fff;
  padding: 5px;
  width: 100%;
  max-width: 300px;
  top: 100%;
  right: 0;
  z-index: 77;
  -webkit-box-shadow: 0 1px 9px rgba(0, 0, 0, .175);
  box-shadow: 0 1px 9px rgba(0, 0, 0, .175);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.search__result_show {
  display: block;
}

.search__result-content {
  margin-bottom: 5px;
}

.search__result-item {
  position: relative;
  display: block;
  padding: 2px 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search__result-item:nth-child(2n) {
  background: #f9f9f9;
}

.search__result-item:hover {
  background: #F3F3F3;
}

.search__result .button {
  padding: 0 10px;
  font-weight: normal;
  font-size: 14px;
}

/* ----------- Content ----------- */
.content {
  position: relative;
  padding: 0 0 210px;
  width: 100%;
}

.content-side {
  position: relative;
  float: left;
  width: 240px;
  margin-right: -240px;
  z-index: 10;
}

.content-main {
  display: block;
  float: left;
  position: relative;
  padding-left: 280px;
  width: 100%;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 10px 0;
  font-size: 0;
  background: #f5f5f5;
}

.breadcrumbs__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 10px 0 14px;
}

.breadcrumbs__item:last-child {
  padding-right: 0;
}

.breadcrumbs__item:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
  height: 4px;
  width: 4px;
  background: #9a9da4;
}

.breadcrumbs__link {
  display: block;
  font-size: 14px;
  color: #66686b;
}

/* Link list */
.link-list {
  margin-top: 15px;
  font-size: 0;
}

.link-list_page {
  padding: 25px 0 15px;
}

.link-list__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 7px 7px 0;
  padding: 3px 11px;
  font-size: 14px;
  font-weight: 600;
  color: #282828;
  border: 1px solid #ececec;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.link-list__item:last-child {
  margin-right: 0;
}

.link-list__item.active {
  background: #ececec;
  color: #585858;
  cursor: default;
  border-color: transparent;
}

/* Link nav */
.link-nav__item {
  position: relative;
  display: block;
  margin-bottom: -1px;
  padding: 10px 25px 10px 15px;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #282828;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}

.link-nav__item:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}

.link-nav__item:last-child {
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.link-nav__item:after {
  content: "\f0da";
  position: absolute;
  font-size: 15px;
  top: 50%;
  right: 10px;
  color: #e5e5e5;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
}

.link-nav__item:hover {
  color: #f57f11;
  /*background: #cc1313;
  border-color: transparent;*/
  z-index: 1;
}

.link-nav__item:hover:after {
  color: #f57f11;
}

/* Link page */
.page-nav {
  padding: 10px 15px;
  margin-bottom: 10px;
  border: 2px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.page-nav__item {
  margin-bottom: 20px;
}

.page-nav__item:last-child {
  margin-bottom: 0;
}

.page-nav__link {
  position: relative;
  display: block;
  font-weight: bold;
  color: #282828;
}

.page-nav__link:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: -15px;
  height: 4px;
  width: 5px;
  background: #ececec;
}

.page-nav__sub-menu {
  margin-top: 5px;
}

.page-nav__sub-link {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 16px;
  color: #282828;
  border-bottom: 1px solid #eef0f4;
}

.page-nav__sub-link:last-child {
  border-bottom: 0;
}

.page-nav__sub-link_current, .page-nav__item_current .page-nav__link {
  color: #B00000;
  font-weight: bold;
}

/* Title block */
.title-block {
  margin-top: 20px;
}

.breadcrumbs+.title-block {
  margin-top: 10px;
}

.content-main .title-block {
  margin: 0 0 15px;
}

.title-block__name {
  font-size: 35px;
  line-height: 50px;
  font-weight: normal;
  margin: 0;
}

.title-block__desc {
  font-size: 14px;
  margin-top: 20px;
}

/* Content block */
.content-block {
  padding: 30px 0;
}

.content-block p {
  margin: 10px 0;
}

/* Content typography */
.content-typography img {
  max-width: 100%;
  max-height: 100%;
}

.content-typography p {
  margin: 20px 0;
  line-height: 24px;
}

.content-typography p:first-child {
  margin-top: 0;
}

.content-typography .ul-style, .content-typography .ol-style {
  margin: 10px 0 20px;
}

.content-typography .ul-style li, .content-typography .ol-style li {
  margin-bottom: 14px;
}

.ul-style .ul-style, .ol-style .ol-style, .ul-style .ol-style, .ol-style .ul-style {
  margin-left: 10px;
}

.content-typography h2, .content-typography .h2 {
  margin: 50px 0 25px;
  font-weight: normal;
}

.content-typography h2:first-child, .content-typography .h2:first-child, .title-block+h2, .title-block+.h2 {
  margin: 0 0 25px;
}

.content-typography h3, .content-typography .h3 {
  margin: 40px 0 20px;
  font-size: 20px;
  line-height: 26px;
  font-weight: normal;
  color: #b16f63;
}

.content-typography h3:first-child, .content-typography h4:first-child, .content-typography .h3:first-child, .content-typography .h4:first-child {
  margin: 0 0 20px;
}

.content-typography h4, .content-typography .h4 {
  margin: 40px 0 20px;
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  color: #861717;
}

.content-typography h2+h3, .content-typography .h2+.h3, .content-typography h2+.h3, .content-typography .h2+h3 {
  margin-top: 0;
}

.content-typography .products-slider {
  margin-bottom: 50px;
}

/* Section */
.section {
  position: relative;
  margin: 25px 0;
  padding: 35px 0;
}

.section__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.section__img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4588235294117647);
}

.section__title {
  font-size: 28px;
}

.section__body {
  margin-top: 30px;
}

.section-hit, .section-same {
  background: #f5f5f5;
  margin-bottom: 0;
}

.section-mainslider {
  padding: 0;
  margin: 0;
}

.section-bannerslider {
  margin: 0;
  background: #35393e;
  background: -webkit-linear-gradient(top right, #292828, #48282b);
  background: -o-linear-gradient(top right, #292828, #48282b);
  background: -moz-linear-gradient(top right, #292828, #48282b);
  background: linear-gradient(top right, #292828, #48282b);
}

.section-desc {
  margin: 0;
  font-size: 13px;
  background: #f5f5f5;
}

.section-desc .ul-style li {
  margin-bottom: 5px;
}




/* Section Main Tile */

.section-main-tile {
  position: relative;
  margin: 45px 0 25px;
  z-index: 1;
}

.section-main-tile .layout {
  position: initial;
  display: flex;
}

.section-main-tile__column {
  padding: 70px 20px;
  display: flex;
  align-items: center;
  flex: 0 0 50%;
}

.section-main-tile__column.is-first {
  padding-right: 60px;
  color: #ffffff;
}

.section-main-tile__column.is-second {
  padding-left: 60px;
  color: #333333;
}

.section-main-tile__block {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.section-main-tile__logo {
  margin-bottom: 30px;
  width: 100%;
  max-width: 500px;
}

.section-main-tile__text p:first-child {
  margin-top: 0;
}

.section-main-tile__text p:last-child {
  margin-bottom: 0;
}

.section-main-tile__icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 30px;
}

.section-main-tile__icons-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.section-main-tile__icons-image {
  margin-top: 10px;
  max-width: 40px;
}

.section-main-tile__icons-image img {
  width: 100%;
}

.section-main-tile__icons-text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.section-main-tile__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #dadada;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

.section-main-tile__column.is-first .section-main-tile__bg {
  right: 50%;
  background-color: #2a2a2a;
}

.section-main-tile__column.is-second .section-main-tile__bg {
  left: 50%;
  background-color: #ebebeb;
}

@media screen and (max-width: 991px)
{
  .section-main-tile .layout {
    padding: 0;
    flex-direction: column;
  }

  .section-main-tile__column {
    position: relative;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .section-main-tile__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .section-main-tile__text {
    text-align: center;
  }

  .section-main-tile__column.is-second .section-main-tile__block {
    margin: auto;
    max-width: 600px;
  }

  .section-main-tile__column.is-first .section-main-tile__bg {
    right: 0;
  }

  .section-main-tile__column.is-second .section-main-tile__bg {
    left: 0;
  }
}


/* Advantages InfoBlock */

.advantages-infoblock {
  margin: 70px 0 0;
}

.advantages-infoblock__title {
  margin-bottom: 55px;
  /*font-family: 'Unbounded';*/
  font-size: 36px;
  line-height: 2.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.advantages-infoblock__block {
  display: flex;
  gap: 50px;
  padding: 40px 50px;
  border: 2px solid #df1f2a;
  border-radius: 30px;
}

.advantages-infoblock__subtitle {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 15px;
}

.advantages-infoblock__image {
  display: flex;
  position: relative;
  align-items: center;
  max-width: 500px;
  flex: 0 0 40%;
}

.advantages-infoblock__image img {
  width: 100%;
}

.advantages-infoblock__items {
  display: grid;
  margin-top: 40px;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.advantages-infoblock__item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #282828;
  border-radius: 50px;
}

.advantages-infoblock__item svg {
  margin-right: 10px;
  width: 24px;
}

.advantages-infoblock__item svg path {
  fill: #fff;
}

@media screen and (max-width: 1200px) {
  .advantages-infoblock__block {
    flex-direction: column;
    align-items: center;
  }

  .advantages-infoblock__items {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  }

  .advantages-infoblock__image {
    align-items: center;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1023px) {
  .advantages-infoblock__items {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .advantages-infoblock__title {
    font-size: 30px;
    line-height: 2.2rem;
  }
}


/* Advantages Block */

.advantages-block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.advantages-block__item {
  padding: 25px;
  border: 2px solid #ff952c;
  border-radius: 10px;
  transition: 0.2s ease;
}

.advantages-block__item:hover {
  color: #fff;
  background-color: #282828;
  border-color: transparent;
  cursor: default;
}

.advantages-block__header {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ff8000;
}

.advantages-block__item:hover .advantages-block__header {
  border-color: #df1f2a;
}

.advantages-block__text {
  font-size: 16px;
  line-height: 1.3rem;
}

.advantages-block__icon {
  width: 22px;
  height: 22px;
  margin: 0 8px 0 2px;
}

.advantages-block__icon svg {
  width: 100%;
  height: 100%;
  fill: #ff8000;
}

.advantages-block__item:hover .advantages-block__icon svg {
  fill: #df1f2a;
}

.advantages-block__name {
  /*font-family: 'Unbounded';*/
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}


/* Promo Form */

.promo-form {
  position: relative;
  display: flex;
  gap: 30px;
  margin-top: 50px;
  padding: 50px;
  color: #fff;
  background-color: #282828;
  border-radius: 50px;
}

.promo-form__logo {
  position: absolute;
  top: -35px;
  left: -33px;
  width: 150px;
  height: auto;
}

.promo-form__logo img {
  width: 100%;
  height: 100%;
}

.promo-form__content {
  flex: 0 0 60%;
  margin: 60px 0 20px;
}

.promo-form__title {
  margin-bottom: 20px;
  /*font-family: 'Unbounded';*/
  font-size: 36px;
  line-height: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-form__title span {
  display: block;
  color: #f57f11;
}

.promo-form__form {
  position: relative;
}

.promo-form__form.is-readonly {
  pointer-events: none;
}

.promo-form__form.is-loading {
  opacity: 0.3;
  cursor: wait;
}

.promo-form__form.is-loading * {
  pointer-events: none;
}

.promo-form__input {
  display: block;
  padding: 0px 10px;
  height: 40px;
  width: 100%;
  font-size: 16px;
  line-height: 40px;
  background: transparent;
  border-bottom: 1px solid #ffffff;
  -webkit-appearance: none;
}

.promo-form__form-ceil {
  margin-bottom: 30px;
}

.promo-form__form-ceil_hidden {
  display: none;
}

.promo-form__button {
  margin: 50px 0 20px;
}

.promo-form__button .button {
  display: block;
  padding: 15px 30px;
  width: 100%;
  text-transform: uppercase;
  color: #fff;
  background: #f57f11;
}

.promo-form__button .button:hover {
  color: #222;
  background: #ffffff;
}

.promo-form__notice {
  display: none;
}

.promo-form__notice.is-show {
  display: block;
}

.promo-form__notice.notice_error {
  background: #b52525;
}

.promo-form__notice.notice_success {
  background: #137407;
}

.promo-form__agreement {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  color: #b1b1b1;
}

.promo-form__agreement a {
  color: #dbbea2;
}

.promo-form__agreement a:hover {
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .promo-form {
    flex-direction: column;
  }
  .promo-form__content {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .promo-form__title {
    font-size: 30px;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .promo-form__title {
    font-size: 24px;
    line-height: 1.8rem;
  }
}


/* Promo Guarantee */

.promo-guarantee {
  display: flex;
  gap: 30px;
}

.promo-guarantee__image img {
  object-fit: cover;
  max-width: 100%;
  border-radius: 15px;
}

.promo-guarantee__content {
  width: 550px;
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .promo-guarantee {
    flex-direction: column;
  }
  .promo-guarantee__content {
    width: auto;
    flex: auto;
  }
}


/* List Half Icons */

.list-half-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.list-half-icons__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
  overflow: hidden;
}

.list-half-icons__item img {
  max-width: 70px;
  opacity: 0.8;
}

.list-half-icons__item p {
  margin: 0 15px 0 0;
}


/* Support Files */

.support-files {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.support-file {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 25%;
  padding: 15px;
  text-align: center;
}

.support-file__image {
  max-width: 100%;
  height: auto;
}

.support-file__title {
  flex-grow: 1;
  margin: 10px 0 !important;
}

.support-file__link {
  margin: 0 !important;
  font-size: 17px;
  line-height: 26px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .support-file {
    flex: 0 0 50%;
  }
}

@media (max-width: 599px) {
  .support-file {
    flex: 0 0 100%;
  }
}


/* Promo Reasons */

.promo-reasons {
  width: 100%;
  position: relative;
  padding: 0 50px 50px;
  color: #fff;
  background-color: #282828;
  border-radius: 50px;
}

.promo-reasons__header {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.promo-reasons__header-content {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
  /*font-family: 'Unbounded';*/
  text-transform: uppercase;
  z-index: 1;
}

.promo-reasons__header-number {
  font-size: 100px;
  font-weight: 700;
}

.promo-reasons__header-title {
  margin-left: 20px;
  font-size: 36px;
  font-weight: 800;
  line-height: 2.6rem;
}

.promo-reasons__header-title span {
  display: block;
  color: #f57f11;
}

.promo-reasons__header-corner {
  position: relative;
  top: 0;
  right: -50px;
  padding: 50px 20px 50px 50px;
  width: 370px;
  flex-shrink: 0;
  color: #282828;
  background-color: #fff;
  border-bottom-left-radius: 50px;
  z-index: 0;
}

.promo-reasons__header-corner:before {
  content: '';
  position: absolute;
  left: -100px;
  top: 0;
  width: 100px;
  height: 50px;
  border-top-right-radius: 50px;
  background-color: #282828;
  box-shadow: 50px 0 0 0 #fff;
}

.promo-reasons__header-corner:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 50px;
  height: 100px;
  border-top-right-radius: 50px;
  background-color: #282828;
  box-shadow: 0 -50px 0 0 #fff;
}

.promo-reasons__body {
  position: relative;
  padding-top: 50px;
  display: grid;
  /*grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));*/
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  z-index: 1;
}

.promo-reasons__item {
  display: flex;
}

.promo-reasons__item-number {
  margin-right: 15px;
  padding-top: 10px;
  flex-shrink: 0;
  width: 50px;
  /*font-family: 'Unbounded';*/
  font-size: 46px;
  font-weight: 300;
  text-align: center;
  color: #f07f11;
}

.promo-reasons__item-text {
  font-size: 15px;
}

.promo-reasons__header-number {
  font-size: 75px;
}

.promo-reasons__header-title {
  font-size: 24px;
  line-height: 2rem;
}

@media screen and (min-width: 1024px) {
  .promo-reasons__header-number {
    font-size: calc(75px + (100 - 75) * ((100vw - 1024px) / (1240 - 1024)));
  }
  .promo-reasons__header-title {
    font-size: calc(24px + (36 - 24) * ((100vw - 1024px) / (1240 - 1024)));
    line-height: calc(32px + (42 - 32) * ((100vw - 1024px) / (1240 - 1024)));
  }
}

@media screen and (min-width: 1240px) {
  .promo-reasons__header-number {
    font-size: 100px;
  }
  .promo-reasons__header-title {
    font-size: 36px;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 1023px) {
  .promo-reasons__header {
    flex-direction: column;
  }

  .promo-reasons__header-content {
    padding-top: 50px;
    justify-content: center;
  }

  .promo-reasons__header-number {
    font-size: 80px;
  }

  .promo-reasons__header-title {
    font-size: 30px;
    line-height: 2.2rem;
  }

  .promo-reasons__header-corner {
    margin: 35px 0 0;
    padding: 0;
    right: 0;
    width: auto;
    text-align: center;
    color: #ffbd80;
    background: transparent;
  }

  .promo-reasons__header-corner:before, .promo-reasons__header-corner:after {
    content: none;
  }

  .promo-reasons__body {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .promo-reasons__item {
    align-items: center;
  }

  .promo-reasons__item-number {
    padding-top: 0;
  }

  .promo-reasons__item-text {
    max-width: none !important;
  }
}

@media screen and (max-width: 767px) {
  .promo-reasons__header-number {
    font-size: 70px;
  }
  .promo-reasons__header-title {
    font-size: 24px;
    line-height: 2rem;
  }
}

@media screen and (max-width: 639px) {
  .promo-reasons__header-content {
    flex-direction: column;
  }

  .promo-reasons__header-number {
    font-size: 90px;
    line-height: 4.5rem;
    margin-bottom: 15px;
  }

  .promo-reasons__header-title {
    font-size: 24px;
    line-height: 2rem;
    text-align: center;
    margin: 0;
  }
}


/* Main Characteristics */

.main-characteristics {
  display: flex;
  margin: 80px 0;
}

.main-characteristics__images {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, 200px);
  grid-template-rows: repeat(5, 80px);
  margin-right: 50px;
  align-items: start;
}

.main-characteristics__image {
  height: 100%;
  width: 100%;
}

.main-characteristics__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.main-characteristics__content {
}

.main-characteristics__title {
  margin-top: 0;
  /*font-family: 'Unbounded';*/
  font-size: 36px;
  line-height: 2.5rem;
  text-transform: uppercase;
}

.main-characteristics .main-characteristics__text {
  margin: 30px 0;
}

.main-characteristics__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-characteristics__item {
  display: flex;
  align-items: center;
}

.main-characteristics__item-number {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.main-characteristics__item-number img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .main-characteristics {
    flex-direction: column;
  }

  .main-characteristics__images {
    margin-right: 0;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(1, 2fr);
  }

  .main-characteristics__title {
    margin-top: 50px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .main-characteristics__title {
    font-size: 30px;
    line-height: 2.2rem;
  }
}


/* Advantages Images */

.advantages-images {
  margin: 100px 0 75px;
}

.advantages-images__title {
  margin-bottom: 55px;
  /*font-family: 'Unbounded';*/
  font-size: 36px;
  line-height: 2.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.advantages-images__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.advantages-images__item:hover {
  cursor: pointer;
  opacity: 0.7;
}

.advantages-images__item img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .advantages-images__title {
    font-size: 30px;
    line-height: 2.2rem;
  }
}


/* Form Shipping */

.form-shipping {
  margin: 60px auto;
  display: flex;
  width: 80%;
  align-items: center;
  gap: 60px;
}

.form-shipping__image {
  width: 100%;
}

.form-shipping__content {
  display: flex;
  flex-direction: column;
}

.form-shipping__title {
  /*font-family: 'Unbounded';*/
  font-size: 40px;
  line-height: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-shipping__title span {
  display: block;
  color: #f57f11;
}

.form-shipping__text {
  margin: 15px 0 30px;
}

.form-shipping__button .button {
  display: block;
  padding: 15px 30px;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  color: #fff;
  background: #282828;
}

.form-shipping__button .button:hover {
  background: #f57f11;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .form-shipping {
    flex-direction: column;
    gap: 30px;
  }
  .form-shipping__image {
    width: 70%;
  }
  .form-shipping__content {
    text-align: center;
    align-items: center;
  }
}


/* Brands Grid */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.brands-grid__item {
  display: flex;
  height: 120px;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}

.brands-grid__item img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}


/* Main Device Cabel Slider */

.main-device-cabel-slider {
  overflow: hidden;
}

.main-device-cabel-slider:hover .img-popup {
  opacity: 0.9;
  transition: 0.2s ease;
}

.main-device-cabel-slider .slick-track {
  display: flex;
  max-width: 100%;
}

.main-device-cabel-slider .slick-slide {
  width: 100%;
  flex-shrink: 0;
}


/* Main Project Direction Slider */

.main-project-direction-slider {
  overflow: hidden;
}

.main-project-direction-slider:hover .img-popup {
  opacity: 0.9;
  transition: 0.2s ease;
}

.main-project-direction-slider .slick-track {
  display: flex;
  max-width: 100%;
}

.main-project-direction-slider .slick-slide {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 100%;
}

.main-project-direction-slider .slides-arrows {
  font-size: 54px;
  opacity: 0.7;
}

.main-project-direction-slider .slides-arrows:hover {
  opacity: 1;
}


/* Project Directions */

.project-directions {
  margin: 50px 0;
}

.project-directions__items {
  display: flex;
  overflow: hidden;
}

.project-directions__items.slick-initialized {
  display: block;
}

.project-directions__items .slick-track {
  display: flex;
  max-width: 100%;
}

.project-directions__slide {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 100%;
}

.project-directions__item {
  display: flex;
  gap: 30px;
}

.project-directions__item__image {
  width: 100%;
  flex: 0 0 40%;
}

.project-directions__item__image img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.project-directions__item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.project-directions__item__title {
  text-align: center;
  text-transform: uppercase;
}

.project-directions__item__arrow {
  padding: 10px;
  font-size: 28px;
  color: #f5861f;
  cursor: pointer;
  transition: .2s linear;
}

.project-directions__item__arrow:hover {
  color: #9d9d9d;
}

.project-directions__item__arrow.is-left {
  padding-left: 0;
}

.project-directions__item__arrow.is-right {
  padding-right: 0;
}

.project-directions__item__body p:first-child {
  margin-top: 0;
}

.project-directions__item__body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 991px)
{
  .project-directions__item {
    flex-direction: column;
  }

  .project-directions__item__image {
    flex: 0 0 100%;
  }

  .project-directions__item__image img {
    height: 300px;
  }
}


/* Company List Tags */

.company-list-tags {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.company-list-tags__section {
  display: flex;
  align-items: center;
  column-gap: 30px;
  row-gap: 10px;
}

.company-list-tags__list {
  display: flex;
  align-items: center;
  row-gap: 10px;
}

.company-list-tags__item {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  border-width: 0;
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  border-color: transparent;
}

.company-list-tags__item + .company-list-tags__item {
  margin-left: -1px;
}

.company-list-tags__item.is-main {
  padding: 18px 25px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #333333;
  border-radius: 10px;
}

.company-list-tags__item.is-red {
  border-color: #ef4c4c;
}

.company-list-tags__item.is-orange {
  border-color: #f5861f;
}

.company-list-tags__item.is-black {
  border-color: #5a5a5a;
}

@media screen and (max-width: 1039px)
{
  .company-list-tags__item {
    padding: 12px 15px;
    font-size: 16px;
  }

  .company-list-tags__item.is-main {
    padding: 15px 20px;
    font-size: 18px;
  }
}

@media screen and (max-width: 919px) 
{
  .company-list-tags__section,
  .company-list-tags__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-list-tags__item {
    padding: 3px 15px;
    font-size: 14px;
    border: 0;
    border-left: 2px solid #f5861f;
  }

  .company-list-tags__item.is-main {
    padding: 8px 15px;
    font-size: 20px;
    color: #333333;
    background-color: transparent;
    border: 2px solid #333333;
    border-radius: 5px;
  }

  .company-list-tags__item + .company-list-tags__item {
    margin: 0;
  }
}


/* Video */

.video-adaptive {
  position: relative;
  padding-top: 56.21%;
  width: 100%;
}

.video-adaptive .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* ----------- Products ----------- */
.products_grid {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -1%;
}

.products_grid .product-card {
  display: inline-block;
  vertical-align: top;
  width: 48%;
  margin: 1%;
  border: 1px solid #eee;
  /*border-bottom: 1px solid #eee;*/
}

.products_grid .product-card:hover {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}

/* ----------- Product card ----------- */
.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 15px;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-card__sticker {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.product-card__sticker .sticker {
  margin-bottom: 5px;
}

.product-card__compare {
  position: absolute;
  top: 5px;
  right: 5px;
}

.button-compare {
  line-height: 21px;
  cursor: pointer;
}

.button-compare i {
  vertical-align: top;
  font-size: 21px;
  color: #d4d4d4;
}

.button-compare:hover i, .button-compare_active i {
  color: #35393e;
}

.product-card__cover {
  display: block;
  padding: 20px 15px 0;
  /*float: left;
  width: 35%;
  padding-top: 23px;*/
  /*height: 320px;
  line-height: 320px;*/
  text-align: center;
}

.product-card__cover img {
  display: inline-block !important;
  /*vertical-align: middle;*/
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.product-card__content {
  /*float: right;
  width: 65%;
  height: 100%;*/
  padding: 20px 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

.product-card__name {
  display: block;
  margin-bottom: 10px;
  color: #282828;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  /*flex-grow: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;*/
}

.product-card__name span {
  color: #B00000;
}

.product-card__info {
  margin-top: 5px;
  /*height: 140px;*/
  overflow: hidden;
}

.product-card__properties li {
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  text-overflow: ellipsis;
}

.product-card__properties li span {
  margin-right: 3px;
  font-weight: bold;
  color: #66686b;
}

.properties-strong, .properties-strong span {
  font-weight: bold;
  color: #c32130 !important;
}

.product-card__buy {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f5f5f5;
}

.product-card__buy:before, .product-card__buy:after {
  content: '';
  display: table;
  height: 0;
}

.product-card__buy:after {
  clear: both;
}

.product-card__price {
  position: relative;
  display: block;
  width: 100%;
  height: 43px;
  line-height: 22px;
}

.product-card__price-current, .product-card__price-new {
  display: block;
  font-size: 22px;
  font-weight: bold;
}

.product-card__price-current {
  line-height: 33px;
}

.product-card__price-old {
  text-decoration: line-through;
  font-size: 13px;
}

.product-card__price-new {
  color: #ff0009;
}

.product-card__buttons {
  margin-top: 15px;
}

.product-card__buttons .button {
  margin-bottom: 8px;
}

.product-card__buttons .button_buy {
  padding: 2px 15px;
  font-size: 14px;
  color: #e51d1d;
  border: 2px solid #e51d1d;
  background: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.product-card__buttons .button_buy:hover {
  background: #ff4c4c;
  color: #fff;
  border-color: transparent
}

.product-card__buttons .button_added {
  border-color: transparent;
}

.product-card__buttons .button_gray {
  padding: 2px 15px;
  font-size: 14px;
  color: #695859;
  border: 2px solid #7f696b;
  background: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.product-card__buttons .button_gray:hover {
  background: #7f696b;
  color: #fff;
  border-color: transparent
}

/* Product compare */
.product-card_compare {
  width: 240px;
}

.product-card_compare .product-card__cover {
  width: 100%;
  height: 120px;
  line-height: 120px;
}

.product-card_compare .product-card__content {
  width: 100%;
}

.product-card_compare .product-card__price-current, .product-card_compare .product-card__price-new {
  font-size: 16px;
}

/* Product slider */
.products-same .product-card {
  width: 450px;
  margin-right: 20px;
}

.products-slider .product-card {
  width: 380px; /*450px;*/
  margin-right: 20px;
  border: 1px solid #ececec;
}


/* Product accessories */
.product-accessories {
  margin-bottom: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .product-accessories .slides-arrows {
    font-size: 26px;
    bottom: -35px;
  }
}

.product-accessories__title {
  font-size: 20px;
  margin-bottom: 20px;
}

.product-accessory {
  border: 1px solid #e5e5e5 !important;
  margin-bottom: 7px;
}

.product-accessory__cover {
  display: block;
  float: left;
  width: 35%;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.product-accessory__cover img {
  display: inline-block !important;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 95%;
}

.product-accessory__content {
  float: right;
  width: 65%;
  padding: 15px 10px;
}

.product-accessory__name {
  display: block;
  color: #282828;
  font-size: 16px;
  line-height: 20px;
}

.product-accessory__price {
  margin-top: 10px;
}

.product-accessory__price-current, .product-accessory__price-new {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

.product-accessory__price-old {
  text-decoration: line-through;
  font-size: 13px;
  line-height: 15px;
  color: #9da6b0;
}

.product-accessory__price-new {
  color: #ff0009;
}

/* ----------- Category page ----------- */
.category-nav {
  padding: 3px 15px;
  margin-bottom: 25px;
  background: #ffffff; /*#c32132;*/
  border: 1px solid #f57f11;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.category-nav__link {
  position: relative;
  display: block;
  color: #282828; /*#efd3d6;*/
  font-weight: bold;
  padding: 10px 10px 10px 0;
  font-size: 14px;
  line-height: 16px;
  border-bottom: 1px solid #d9d9d9;
  /*text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;*/
  cursor: pointer;
}

.category-nav__link:after {
  content: "\f0da";
  position: absolute;
  font-size: 13px;
  top: 50%;
  right: 0;
  color: 282828; /*#efd3d6*/;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
}

.category-nav__link:last-child {
  border: 0;
}

span.category-nav__link, span.category-nav__link:after, .category-nav__link:hover, .category-nav__link:hover:after {
  color: #f57f11; /*#fff*/
}

/* Category list */
.category-list {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: 0;
  text-align: center;
  margin: 0 -1%;
}

.category-list__item {
  display: inline-block;
  vertical-align: bottom;
  width: 48%;
  padding: 0 0 20px;
  margin: 1%;
}

.category-list__cover {
  margin: 0 auto 15px;
  height: 270px; /*300px;*/
  line-height: 270px; /*300px;*/
  border: 1px solid #dedede;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-size: cover;
  background-position: 50% 50%;
}

.category-list__cover img {
  display: inline-block;
  vertical-align: middle;
  max-width: 95%;
  max-height: 95%;
}

.category-list__name {
  font-size: 18px;
  color: #38393c;
}

.category-list__item:hover .category-list__name {
  color: #B00000;
}

/* ----------- Filter ----------- */
.filter-search {
  padding: 7px;
  margin-bottom: 10px;
  text-align: center;
  background: #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.filter-search__text {
  padding: 2px 0 7px;
  font-weight: bold;
  color: #a14a27; /*#646877;*/
  font-size: 14px;
}

.filter-block {
  margin-bottom: 30px;
  padding: 0 15px;
  background: #ffffff; /*#262626;*/
  border: 1px solid #bbbbbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}

.filter {
  padding: 15px 0;
  border-bottom: 1px solid #c3c3c3; /*#383838;*/
}

.filter:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.filter .checkbox {
  display: block;
  margin-bottom: 4px;
}

.filter .checkbox:last-child {
  margin-bottom: 0;
}

.filter .checkbox__custom {
  background: #4e4e4e;
  border-color: #4e4e4e;
}

.filter .checkbox__label {
  color: #fff;
}

.filter__name {
  position: relative;
  font-size: 14px;
  font-weight: 500; /*bold;*/
  color: #0e0e0e; /*#fff;*/
  cursor: pointer;
}

.filter__content {
  margin-top: 15px;
  max-height: 250px;
  overflow: auto;
}

.filter__content_column {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.filter-range_inputs {
  font-size: 0;
  margin-bottom: -10px;
}

.filter-range_inputs .input {
  display: inline-block;
  vertical-align: middle;
  width: 46%;
  margin-right: 2%;
  background: transparent;
  border: 1px solid #c5c5c5; /*#424242;*/
  color: #000; /*#fff;*/
}

.filter-range_inputs .input:last-child {
  margin-right: 0;
}

.filter-range_inputs i {
  display: inline-block;
  vertical-align: middle;
  height: 1px;
  width: 4%;
  margin-right: 2%;
  background: #463c3e;
}

.filter-range .irs-slider {
  width: 18px;
  height: 18px;
  top: 18px;
  background: #757575;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: col-resize;
}

.filter-range .irs-slider:hover {
  background-position: inherit;
}

.filter-range .irs {
  height: 40px;
}

.filter-range .irs-line, .filter-range .irs-bar {
  height: 4px;
}

/*  Filter panel */
.filter-panel {
  margin: 15px 0;
  padding: 5px 12px;
  border: 1px solid #ececec;
  border-width: 1px 0;
}

.control-sort {
  font-size: 0;
}

.control-sort__link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px 0 0;
  font-size: 14px;
  color: #282828;
  font-weight: bold;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.control-sort__link:last-child {
  margin-right: 0;
}

.control-sort__link:hover {
  color: #4a4a4a;
}

.control-sort__link_active {
  color: #f57f11; /*#c32132;*/
}

.control-sort__link_active i {
  margin-left: 4px;
}

.control-sort__link_down i {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.control-sort__link_active.control-sort__link_sale:after, .control-sort__link_active.control-sort__link_new:after {
  content: "\f057";
  position: relative;
  right: 0;
  margin-left: 4px;
  font-size: 13px;
  color: #c32132;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
}

.control-sort__link_filter {
  background: #303439;
  padding: 3px 10px;
  color: #fff;
}

.control-sort__link_filter:hover {
  color: #fff;
}

/* Category sort */
.category-sort {
  padding: 3px 15px;
  margin-bottom: 10px;
  border: 2px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.category-sort__link {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 16px;
  color: #282828;
  border-bottom: 1px solid #ececec;
}

.category-sort__link:last-child {
  border: 0;
}

.category-sort__link.active, .category-sort__link.active:hover {
  font-weight: bold;
  color: #3775b5;
}

/* Preloader */
.preloader {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.content-main .preloader {
  left: 280px;
}

/* Paginator */
.paginator {
  padding: 20px 0;
  margin-top: 20px;
  text-align: center;
}

.paginator__link, .paginator__current {
  display: inline-block;
  vertical-align: top;
  margin: 5px;
  padding: 2px 10px;
  font-size: 16px;
  line-height: 24px;
  color: #372727;
  border: 1px solid #ececec;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.paginator__current {
  color: #fff;
  background: #232323;
  border-color: transparent;
}

/* ----------- Main ----------- */
/* Category block */
.section-category {
  margin: 0;
}

.category-block {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: 0;
  margin: 0 -1%;
}

.category-block__item {
  display: inline-block;
  vertical-align: bottom;
  width: 23%;
  margin: 1%;
  text-align: center;
  line-height: 1;
}

.category-block__cover {
  margin: 0 auto 15px;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border: 1px solid #dedede;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  box-shadow: -2px 3px 0 #ffffff, 0 7px 0 rgb(239, 239, 239);
}

.category-block__cover img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

.category-block__title {
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #38393c;
  max-width: 230px;
}

.category-block__item:hover .category-block__title {
  color: #ec3232;
}

.category-block__item:hover .category-block__cover {
  box-shadow: -2px 3px 0 #ffffff, 0 7px 0 rgb(216, 193, 193);
}

/* Advantages */
.section-advantages .section__title {
  text-align: center;
}

.advantages {
  margin: 0 -1%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  counter-reset: heading;
  font-size: 0;
}

.advantages__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 31%;
  padding: 30px;
  margin: 1%;
  border: 1px solid #dedede;
  overflow: hidden;
}

.advantages__icon {
  position: absolute;
  top: 10px;
  left: -15px;
  font-size: 80px;
  color: #f1f1f1;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 rgb(251, 248, 248);
  z-index: -1;
}

.advantages__name {
  font-size: 20px;
  line-height: 24px;
}

.advantages__text {
  margin-top: 15px;
  font-size: 15px;
  line-height: 20px;
  color: #999;
}

/* Question */
.section-question {
  text-align: center;
}

.question-block {
  display: inline-block;
  vertical-align: top;
  padding: 20px;
  background: #fff;
  -webkit-border-radius: 55px;
  -moz-border-radius: 55px;
  border-radius: 55px;
}

.question-block i {
  vertical-align: middle;
  font-size: 56px;
  color: #47505a;
}

.question-block .button {
  vertical-align: middle;
  max-width: 150px;
  line-height: 17px;
}

.question-block__text {
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

/* ----------- Section about ----------- */
.section-about h1 {
  margin: 0 0 25px;
  font-size: 32px;
  line-height: 36px;
  font-weight: normal;
}

.section-about__text-promo {
  margin: 35px 0;
  padding: 15px 0;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  background: #35393E;
}

/* ----------- Product page ----------- */
.section-product-content {
  margin: 0;
}

.section-product-content .section__title {
  font-weight: bold;
}

.product-head {
  margin-bottom: 15px;
}

.title-block_product {
  margin: 10px 0 0;
}

.product-compare {
  position: relative;
  float: right;
  margin-top: 5px;
  font-size: 15px;
  z-index: 4;
}

.product-compare i {
  margin-right: 3px;
}

.product-store {
  position: relative;
  margin-top: 25px;
  border-top: 1px solid #ececec;
  padding: 10px 15px;
  background: #e7eaf6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
}

.product-store:before {
  content: "\f3c5";
  position: absolute;
  font-size: 90px;
  top: 20px;
  right: 15px;
  color: #d4dce6;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  z-index: -1;
}

.product-store__address {
  color: #646877;
}

.product-store__address span {
  font-weight: bold;
}

.product-colors {
  text-align: center;
  margin-top: 10px;
}

.product-colors__text {
  color: #66686b;
  font-size: 14px;
  font-weight: bold;
}

.switch-colors {
  display: inline-block;
  padding: 10px 6px;
  font-size: 0;
  line-height: 1;
  text-align: center;
  border: 2px solid #eee;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.switch-colors__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  width: 13px;
  height: 13px;
  background: #dfe1e7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}

.switch-colors__item:hover {
  opacity: .7;
}

.switch-colors__item.active {
  -webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 4px #dfe1e7;
  -moz-box-shadow: 0 0 0 3px #fff, 0 0 0 4px #dfe1e7;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #dfe1e7;
}

.product-gallery {
  position: relative;
  overflow: hidden;
}

.product-photo {
  position: relative;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.product-photo__item {
  height: 500px;
  line-height: 498px;
  /*border: 1px solid #ececec;*/
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-photo__item:before {
  content: '\f00e';
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 4px;
  font-size: 24px;
  line-height: 1;
  color: rgba(46, 51, 71, 0.5686274509803921);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  z-index: 2;
  -webkit-border-bottom-left-radius: 7px;
  -moz-border-radius-bottomleft: 7px;
  border-bottom-left-radius: 7px;
  font-weight: 900;
}

.product-photo__item:hover:before {
  color: #c32132;
}

.product-photo img {
  display: inline-block !important;
  vertical-align: middle;
  max-width: 100%; /*95%;*/
  max-height: 100%; /*95%;*/
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-photo img:hover {
  opacity: .7;
}

.product-thumb {
  position: relative;
  margin-right: 10px;
  width: 81px;
  float: left;
  z-index: 5;
}

.product-thumb .slick-track {
  margin: 0;
}

.product-thumb .slides-arrows {
  font-size: 26px;
  bottom: -25px;
}

.product-thumb__item {
  margin-bottom: 7px;
}

.product-thumb__item-inner {
  position: relative;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  border: 1px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-thumb__item-inner:hover {
  border-color: #dadde2;
}

.product-thumb .slick-current .product-thumb__item-inner {
  border-color: #a0a3a7;
}

.product-thumb img {
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 60px;
  max-width: 60px;
}

.product-thumb img:hover {
  opacity: .7;
}

.product-sticker {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.product-sticker .sticker {
  margin-bottom: 5px;
}

.product-top {
  margin-bottom: 40px;
}

.product-top__gallery, .product-top__content, .product-desc__content {
  float: left;
}

.product-top__gallery {
  position: relative;
  width: 50%; /*40%;*/
}

.product-top__content {
  width: 50%; /*60%;*/
  padding-left: 3%;
}

.product-desc__content {
  width: 100%; /*65%;*/
  padding-right: 15px;
}

.product-desc__side {
  float: right;
  width: 35%;
  padding-left: 15px;
}

.product-info-retail {
  margin-bottom: 25px;
}

.product-info-retail__block {
  position: relative;
  padding: 15px 20px;
  background: #fff4f4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
}

.product-info-retail__icon {
  position: absolute;
  display: flex;
  align-items: center;
  padding-left: 50px;
  top: 50%;
  right: -70px;
  width: 180px;
  height: 140%;
  font-size: 50px;
  background-color: #ffeded;
  border-radius: 150px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.product-info-retail__icon i {
  font-size: 50px;
  color: #fbd5d5;
}

.product-info-retail__text {
  margin: 5px 0 0 0 !important;
  font-weight: 500;
}

.product-info-retail__text:first-child {
  margin-top: 0 !important;
}

.product-info-retail__text.is-danger {
  color: #ed2626;
}

.product-info-retail__text.is-link a {
  padding-bottom: 2px;
  color: #000;
  border-bottom: 1px dashed #c9c9c9;
}

.product-info-retail__text.is-link a:hover {
  color: #df0000;
  border-color: #f7a0a0;
}

.product-banners .img-border {
  padding: 0;
  border: none;
}

.product-nav {
  display: table;
  width: 100%;
  margin-bottom: 20px;
  z-index: 17;
}

.product-nav__link {
  position: relative;
  display: table-cell;
  vertical-align: top;
  padding: 16px 25px 14px;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  background: #35393e;
  color: #b6bdc3;
  font-weight: bold;
  cursor: pointer;
}

.product-nav__link:hover {
  color: #fff;
  background: #2c3138;
  border-color: #c32132;
}

.product-nav__link.active {
  background: #181c21;
  color: #d0b1b0;
}

.product-nav__link .amount {
  color: #ccdfff;
}

.product-variations .selectize-input {
  width: auto;
  max-width: 500px;
  padding: 4px 20px 4px 0;
  border-width: 0 0 1px 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.product-variations .selectize-input:after {
  right: 8px !important;
}

.product-variations .selectize-input.input-active {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.product-variations .selectize-input.dropdown-active::before {
  content: none;
}

.product-variations .selectize-control .selectize-input {
  padding: 5px 24px 5px 8px;
  background-color: #f5f5f5;
  border: 1px solid #bdbdbd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-variations .selectize-control .selectize-input.input-active {
  /*border-color: #e5e5e5;*/
}

.product-variations .selectize-dropdown {
  margin: 0;
}

.product-variations .selectize-dropdown .option {
  cursor: pointer;
}

.product-order {
  position: relative;
  margin-top: 30px;
}

.product-price {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: #f7f7f7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
}

.product-price:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
  background-image: url('/img/logotype-gray.svg');
  background-repeat: no-repeat;
  opacity: 0.2;
}

.product-price__items {
  overflow: hidden;
}

.product-price__new, .product-price__current {
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  color: #000;
}

.product-price__old {
  text-decoration: line-through;
  font-size: 14px;
  color: #8e8e8e;
}

.product-price__best {
  margin-top: 4px;
  font-size: 13px;
  font-weight: bold;
}

.product-price__best .link {
  color: #cdcdcd;
}

.product-price__best .link:hover {
  color: #ffffff;
}

.product-price__info-retail {
  margin: -3px 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: #ed2626;
}

.product-price__asterisk {
  font-weight: 600;
  color: #ed2626;
}

.product-order .change-count {
  float: left;
  max-width: 50px;
  margin-right: 5px;
}

.product-order .product-buy {
  overflow: hidden;
}

.product-order__action {
  font-size: 0;
}

.product-order__action-item {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  margin-right: 10px;
}

.product-order__action-item:last-child {
  margin-right: 0;
}

.product-order__action-item .button {
  font-size: 16px;
  font-weight: bold;
  padding: 9px 22px;
}


.product-order__action-item_whatsapp {
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  gap: 10px;
}

.product-order__action-item_whatsapp:hover .whatsapp-block__text {
  color: #B00000;
}

.whatsapp-block {
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.whatsapp-block__icon {
  background-color: #3ec252;
  border-radius: 50%;
  overflow: hidden;
}

.whatsapp-block__icon svg {
  padding: 10px;
  fill: #ffffff;
}

.whatsapp-block__img {
  display: block;
  width: 45px;
  height: 45px;
  margin-left: -5px;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.whatsapp-block__text {
  margin-left: 5px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: bold;
  color: #2fa040;
  text-decoration: underline;
}


.product-content__main {
  display: block;
  float: left;
  position: relative;
  padding-right: 320px;
  width: 100%;
}

.product-content__side {
  position: relative;
  float: right;
  width: 280px;
  margin-left: -280px;
  padding-top: 35px;
  z-index: 10;
}

.product-sublink {
  margin-bottom: 20px;
}

.product-banner {
  margin-bottom: 20px;
}

.product-banner img {
  display: block;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* Product properties */
.product-properties {
  margin: 15px 0;
  font-size: 0;
  line-height: 1;
}

.product-properties__name, .product-properties__value {
  display: inline-block;
  vertical-align: bottom;
  margin: 0;
  width: 70%;
  font-size: 16px;
  line-height: 16px;
}

.product-properties__value {
  width: 30%;
  padding-left: 10px;
  font-weight: bold;
}

.product-properties__name {
  position: relative;
}

.product-properties__name span {
  position: relative;
  z-index: 7;
  background: #fff;
  padding-right: 10px;
}

.product-properties__name:after {
  position: absolute;
  content: "";
  border-bottom: 1px dotted #D9D9D9;
  width: 100%;
  bottom: 3px;
  left: 0;
}

.product-properties-all {
  font-size: 14px;
}

.product-properties-head .product-properties {
  margin: 10px 0;
}

.product-properties-head .product-properties__name, .product-properties-head .product-properties__value {
  font-size: 15px;
  width: auto;
}

.product-properties-head .product-properties__value {
  padding-left: 5px;
}

.product-properties-head .product-properties__name span:after {
  content: ':';
}

/* Product reviews */
.button-reviews {
  margin: -2px 0 0 10px;
}

.product-review {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ececec;
}

.product-review:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.product-review__head {
  margin-bottom: 15px;
}

.product-review__head-meta {
  display: inline-block;
  padding: 4px 10px;
  background: #ececec;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-review__rating {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.product-review__rating i {
  position: relative;
  font-size: 21px;
  color: #40c4e0;
  margin-left: 3px;
  top: 1px;
}

.product-review__rating span {
  font-weight: bold;
  font-size: 22px;
  vertical-align: middle;
}

.product-review__body {
  padding: 0 10px;
}

.product-reviews_section .product-review__body {
  padding: 0;
}

.product-review__product {
  font-weight: bold;
}

.product-review__name {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  color: #646877;
}

.product-review__date {
  display: inline-block;
  vertical-align: middle;
  color: #272727;
}

.product-review__title {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 7px;
}

.product-review__answer {
  margin: 15px 20px 0;
  padding: 5px 0 5px 10px;
  border-left: 2px solid #a8c5bc;
}

.product-review__expert {
  display: inline-block;
  padding: 2px 10px;
  background: #3D806D;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-review__content {
  margin-top: 10px;
}

.review-attachment__title {
  font-size: 14px;
  color: #999;
}

.review-attachment__image {
  margin: 10px 10px 0 0;
  margin: auto;
  max-height: 70px;
  max-width: 70px;
  border: 1px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product-comment-form {
  display: none;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 3px solid #eee;
}

.product-comment-form.active {
  display: block;
}

.product-comment-form form {
  max-width: 600px;
}

.rating-list {
  height: 35px;
  padding-top: 4px;
}

.rating-list__star i {
  cursor: pointer;
  font-size: 24px;
  color: #bebcaf;
}

.rating-list__star.active i {
  color: #ffb508;
}

.videos-slider {
  margin-top: 30px;
}

.videos-slider__item {
  margin-right: 20px;
}

/* ----------- Contact Block ----------- */
.contact-block__item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.contact-block__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-block__title {
  position: relative;
  margin-top: 0;
  margin-bottom: 25px;
  padding-left: 40px;
  font-size: 24px;
  line-height: 32px;
  font-weight: normal;
  text-transform: uppercase;
}

.contact-block__title:after {
  content: "\f3c5";
  position: absolute;
  top: -2px;
  left: 0;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  width: 32px;
  height: 32px;
  background: #7c7c7c;
  color: #fff;
  font-weight: 900;
  text-align: center;
  font-size: 16px;
  line-height: 32px !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.contact-block__title span {
  color: #c32132;
}

.contact-block__side {
  float: left;
  width: 35%;
  padding-top: 15px;
}

.contact-block__map {
  float: left;
  width: 65%;
  padding-left: 30px;
}

.contact-block__map iframe {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.contact-block__info-item {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-block__info-item:last-child {
  margin-bottom: 0;
}

.contact-block__info-item strong {
  display: block;
  font-size: 14px;
  color: #66686b;
}

/* ----------- Account ----------- */
.account-block {
  display: inline-block;
  min-width: 400px;
  padding: 20px 25px;
  background: #eceef7;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.account-info {
  margin-bottom: 30px;
}

.account-info__name {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.user-info__field {
  font-size: 0;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #d5d8e0;
}

.user-info__field:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.user-info__field dt, .user-info__field dd {
  display: inline-block;
  vertical-align: bottom;
  margin: 0;
  width: 50%;
  font-size: 14px;
}

.user-info__field dd {
  text-align: right;
}

.user-info__field dt {
  font-weight: bold;
  color: #646877;
}

.orders-table {
  width: 100%;
}

/* ----------- Cart ----------- */
.checkout-steps {
  font-size: 0;
  margin-bottom: 40px;
  counter-reset: section;
}

.checkout-steps__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #646877;
  padding: 10px;
  background: #ececec;
  overflow: hidden;
}

.checkout-steps__item:before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: counters(section, '.');
  counter-increment: section;
  font-size: 70px;
  color: #d3d5de;
}

.checkout-steps__item i {
  vertical-align: middle;
  font-size: 22px;
  margin-right: 7px;
}

.checkout-steps__item_current {
  background: #4a4a4a;
  background: -webkit-linear-gradient(top left, #6a6a6a, #262626);
  background: -o-linear-gradient(top left, #6a6a6a, #262626);
  background: -moz-linear-gradient(top left, #6a6a6a, #262626);
  background: linear-gradient(top left, #6a6a6a, #262626);
  color: #fff;
}

.checkout-steps__item_current i {
  color: #fff;
}

.checkout-steps__item_current:before {
  color: #6e6e6e;
}

.checkout-block__main {
  position: relative;
  display: block;
  float: left;
  padding-right: 400px;
  width: 100%;
}

.checkout-block__side {
  position: relative;
  float: right;
  width: 370px;
  margin-left: -370px;
  z-index: 10;
}

.checkout-subtotal {
  padding: 15px;
  margin-bottom: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #f5861f;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.checkout-info-text {
  margin-top: 4px;
  font-size: 13px;
  color: #9ac5fb;
}

.checkout-promo {
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.checkout-promo .input {
  font-size: 14px;
  color: #303030;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #dadada;
}

.checkout-promo .button {
  color: #333;
  background: #ededed;
}

.checkout-promo .button:hover {
  color: #fff;
  background: #555;
}

.checkout-value {
}

.checkout-value_total {
  margin-bottom: 15px;
  color: #282828;
}

.checkout-value__item {
  margin: 0 0 10px;
}

.checkout-value__item:last-child {
  margin: 0;
}

.checkout-value__value {
  float: right;
  margin: 0;
  padding-left: 10px;
  font-size: 18px;
  font-weight: bold;
}

.checkout-value__name {
  position: relative;
  font-size: 16px;
  overflow: hidden;
  margin: 0;
}

.checkout-value__name span {
  position: relative;
  background: #ffffff;
  padding-right: 10px;
  z-index: 7;
}

.checkout-value__name:after {
  position: absolute;
  content: "";
  border-bottom: 1px dotted #929292;
  width: 100%;
  bottom: 6px;
  left: 0;
}

.checkout-value_total .checkout-value__name span {
  background: #eceef7;
}

.checkout-info {
  margin-top: 25px;
}

.checkout-info__content {
  padding: 10px 15px;
  background: #eceef7;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.checkout-info .block-agreement {
  text-align: center;
}

.basket-list .basket-card {
  margin-bottom: 15px;
}

.basket-list .basket-card:last-child {
  margin: 0;
}

.basket-card {
  position: relative;
  padding: 15px 50px 15px 15px;
  background: #fff;
  border: 1px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.basket-card__delete {
  position: absolute;
  top: 20px;
  right: 15px;
  line-height: 19px;
}

.basket-card__delete i {
  vertical-align: top;
  font-size: 19px;
  color: #9a9da4;
  cursor: pointer;
}

.basket-card__delete i:hover {
  color: #666;
}

.basket-card__cover {
  float: left;
  width: 100%;
  max-width: 70px;
  height: 70px;
  line-height: 68px;
  text-align: center;
  border: 1px solid #ececec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.basket-card__cover img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 68px;
  max-height: 60px;
}

.basket-card__content {
  margin-left: 90px;
  font-size: 0;
}

.basket-card__info, .basket-card__count-price, .basket-card__count, .basket-card__price {
  display: inline-block;
  vertical-align: top;
}

.basket-card__info {
  width: 45%;
  padding-top: 5px;
}

.basket-card__count-price {
  width: 55%;
  padding-left: 7.5%;
}

.basket-card__count {
  width: 80px;
  padding-right: 20px;
}

.basket-card__price-current, .basket-card__price-new {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #80828a;
}

.basket-card__price-old {
  text-decoration: line-through;
  font-size: 13px;
  color: #9da6b0;
  line-height: 1;
}

.basket-card__price-total {
  font-size: 18px;
  font-weight: bold;
  padding: 2px 0 5px;
}

.basket-card__price-total span {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  color: #80828a;
}

.basket-card__price-total i {
  font-style: normal;
}

.basket-card__name {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
}

.basket-card__desc {
  font-size: 14px;
}

.basket-card__data {
  font-size: 0;
  margin: 0 0 10px;
}

.basket-card__data-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 14px;
  line-height: 19px;
}

.basket-card__data-item:last-child {
  margin-right: 0;
}

.basket-card__data-item_brand {
  padding: 0 5px;
  color: #202020;
  background: #ffefd2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.checkout-shipping, .checkout-payment {
  padding: 15px;
  background: #eceef7;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.checkout-payment {
  margin-top: 25px;
}

.checkout-shipping .checkbox, .checkout-payment .checkbox {
  display: block;
  margin: 5px 0;
}

/* ----------- compare ----------- */
.products-compare .slick-track {
  margin: 0;
}

.products-compare .slides-arrows {
  top: 80px;
  z-index: 11;
}

.compare__options {
  float: left;
  width: 240px;
  margin-right: -240px;
  border-right: 1px solid #ececec;
  z-index: 10;
}

.compare__products {
  float: left;
  padding-left: 240px;
  width: 100%;
}

.compare__head {
  position: relative;
  height: 345px;
  border-bottom: 1px solid #ececec;
}

.compare-product {
  max-width: 270px;
  border-right: 1px solid #ececec;
}

.compare-delete {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 0 10px;
  font-size: 14px;
  background: #ececec;
  color: #585858;
  cursor: pointer;
  z-index: 7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.compare-delete:hover {
  background: #FFDEDB;
  color: #CE2323;
}

.compare__options .checkbox {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.compare__item_options {
  font-weight: bold;
  color: #646877;
}

.compare__item {
  padding: 0 15px;
  font-size: 14px;
  line-height: 18px;
}

.compare__item:before, .compare__item:after {
  content: '';
  display: block;
  height: 10px;
}

.compare__item:hover, .compare__item.hover {
  background: #f7f9fd;
}

/* ----------- block articles ----------- */
.section-articles__news, .section-articles__actions {
  float: left;
  width: 45%;
  margin-right: 10%;
}

.section-articles__news {
  margin-right: 0;
}

.article-list {
  font-size: 0;
}

.article-list__item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding-right: 20px;
}

.article-list__cover {
  width: 94px;
  padding: 3px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.article-list__cover img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.article-list__content {
  padding: 5px;
}

.article-list__date {
  font-size: 13px;
  color: #7e818a;
}

.article-list__title {
  display: inline-block;
  font-size: 16px;
  line-height: 18px;
}

/* ----------- articles ----------- */
.articles {
  font-size: 0;
  margin: 0 -15px 35px;
}

.articles .article-card {
  width: 33.3333%;
  padding: 15px;
}

.article-card {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.article-card__cover {
  position: relative;
  display: block;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 180px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.article-card__content {
  padding: 15px 3px 10px;
}

.article-card__info {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1;
}

.article-card__date, .article-card__category {
  display: inline-block;
  vertical-align: top;
  color: #7e818a;
}

.article-card__name {
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
}

.article-card__summary {
  margin-top: 5px;
  font-size: 14px;
  line-height: 18px;
}

.article-card__summary p {
  margin: 0;
}

/* ----------- Footer ----------- */
.footer {
  margin: -210px auto 0;
  height: 210px;
  width: 100%;
  background: #f5f5f5;
}

.footer__top {
  padding: 15px 0;
  background: #35393e;
  font-size: 0;
}

.footer__bottom {
  padding: 25px 0;
}

.footer__content {
  display: block;
  float: right;
  position: relative;
  padding-left: 280px;
  width: 100%;
}

.footer__side {
  position: relative;
  float: left;
  width: 240px;
  margin-right: -240px;
  z-index: 10;
}

.contact-foot {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 25%;
  padding: 0 10px 0 47px;
  line-height: 1;
}

.contact-foot_subscription {
  width: 50%;
  padding-right: 0;
}

.contact-foot i {
  position: absolute;
  top: 50%;
  margin-top: -19px;
  left: 0;
  font-size: 38px;
  color: #505050;
}

.contact-foot__title {
  font-size: 16px;
  font-weight: bold;
  color: #e4e4e4;
}

.contact-foot__title a {
  color: #e4e4e4;
}

.contact-foot__info {
  margin-top: 4px;
  font-size: 12px;
  color: #afafaf;
}

.subscription-form__button {
  float: right;
  line-height: 23px;
}

.subscription-form__input {
  overflow: hidden;
  padding-right: 15px;
}

.subscription-form__input .input {
  background: #1a1e23;
  color: #fff;
}

.footer__col {
  float: left;
  width: 25%;
  padding: 0 3% 0 0;
}

.footer__title {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer__nav-item {
  margin-bottom: 3px;
}

.footer__nav-item:last-child {
  margin-bottom: 0;
}

.footer__nav-link {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: #66686b;
}

.footer__copyright {
  color: #66686b;
  font-size: 13px;
  font-weight: bold;
}

.logo-footer {
  display: block;
  margin-bottom: 15px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  opacity: .3;
}

.social-list {
  margin-top: 20px;
}

.social-list__item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
}

.social-list__item:first-child {
  padding-left: 0;
}

.social-list__item:last-child {
  padding-right: 0;
}

.social-list__item:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: -2px;
  height: 4px;
  width: 4px;
  background: #ccc;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.social-list__item:first-child:before {
  content: none;
}

.social-list__link {
  display: block;
  color: #66686b;
  font-size: 19px;
}

.footer__dev {
  color: #66686b;
  font-size: 13px;
}

.footer__dev a {
  color: #66686b;
  font-weight: bold;
}

.footer__dev a:hover {
  color: #da6666;
}


/* Cookies */

.cookies {
  display: none;
  align-items: center;
  justify-content: space-between;
  row-gap: 25px;
  column-gap: 40px;
  position: fixed;
  z-index: 99999;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 25px;
  width: 90%;
  max-width: 810px;
  background: #202020;
  border-radius: 10px;
}

.cookies.is-active {
  display: flex;
}

.cookies__text {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.cookies__button {
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .cookies {
    left: 15px;
    right: 15px;
    flex-direction: column;
    width: auto;
    max-width: 100%;
    transform: none;
  }
  .cookies__button {
    width: 100%;
  }
}


/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row_margin {
  margin-bottom: 25px;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}

/* ----------- adaptive ----------- */
.m-side__head, .m-filters__head, .m-button-filter, .m-button-side, .m-filters-result {
  display: none;
}

.m-header {
  display: none;
  position: relative;
  height: 60px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(69, 72, 78, 0.33);
  z-index: 12;
}

.m-header__logo, .m-header__search, .m-header__compare, .m-header__basket, .m-header__whatsapp, .m-header__phone, .m-header__bars {
  display: table-cell;
  vertical-align: middle;
  padding-right: 20px;
}

.m-header .header-icon {
  width: 36px;
  height: 36px;
  line-height: 36px !important;
}

.m-header .active .header-icon {
  background: #c32130;
}

.m-header__logo .logo-icon {
  white-space: nowrap;
  height: 40px;
}

.m-header__basket .basket-head {
  padding: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.m-header__basket .basket-head__icon {
  position: relative;
  left: auto;
  top: auto;
  margin-top: 0;
}

.m-header__whatsapp .button_whatsapp {
  padding: 0;
}

.m-header__search {
  padding: 0 20px;
  width: 100%;
}

.m-button-search {
  display: none;
}

.m-header__search .search__button .button {
  height: 36px;
}

.m-header__search .search__input .input {
  height: 36px;
  line-height: 36px;
}

.m-header__search .search__result {
  max-width: none;
}

.m-header__bars {
  padding-right: 0;
}

.m-button-bars, .m-button-search {
  cursor: pointer;
}

.m-button-bars .m-button-bars__close, .m-button-bars.active .m-button-bars__open {
  display: none;
}

.m-button-bars.active .m-button-bars__close {
  display: block;
}

.m-button-side {
  margin-bottom: 10px;
}

.m-button-side i {
  margin-right: 5px;
}

.m-filters__head, .m-side__head {
  margin-bottom: 15px;
}

.m-filters__head-close, .m-side__head-close {
  float: right;
  width: 40px;
  height: 40px;
  padding: 0;
  font-family: Arial;
  font-size: 28px;
  line-height: 40px;
}

.m-filters__head-title, .m-side__head-title {
  font-size: 24px;
  line-height: 40px;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.body-gutter {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}


.d-none {
  display: none;
}

.d-block {
  display: block;
}

.rounded-xl {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.rounded-lg {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.rounded-md {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.rounded-sm {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}


/* Margin */

.m-0 { margin: 0 !important; }

.mb-0   { margin-bottom: 0px   !important; }
.mb-5   { margin-bottom: 5px   !important; }
.mb-10  { margin-bottom: 10px  !important; }
.mb-15  { margin-bottom: 15px  !important; }
.mb-20  { margin-bottom: 20px  !important; }
.mb-25  { margin-bottom: 25px  !important; }
.mb-30  { margin-bottom: 30px  !important; }
.mb-35  { margin-bottom: 35px  !important; }
.mb-40  { margin-bottom: 40px  !important; }
.mb-45  { margin-bottom: 45px  !important; }
.mb-50  { margin-bottom: 50px  !important; }
.mb-55  { margin-bottom: 55px  !important; }
.mb-60  { margin-bottom: 60px  !important; }
.mb-65  { margin-bottom: 65px  !important; }
.mb-70  { margin-bottom: 70px  !important; }
.mb-75  { margin-bottom: 75px  !important; }
.mb-80  { margin-bottom: 80px  !important; }
.mb-85  { margin-bottom: 85px  !important; }
.mb-90  { margin-bottom: 90px  !important; }
.mb-95  { margin-bottom: 95px  !important; }
.mb-100 { margin-bottom: 100px !important; }

.mt-0   { margin-top: 0px   !important; }
.mt-5   { margin-top: 5px   !important; }
.mt-10  { margin-top: 10px  !important; }
.mt-15  { margin-top: 15px  !important; }
.mt-20  { margin-top: 20px  !important; }
.mt-25  { margin-top: 25px  !important; }
.mt-30  { margin-top: 30px  !important; }
.mt-35  { margin-top: 35px  !important; }
.mt-40  { margin-top: 40px  !important; }
.mt-45  { margin-top: 45px  !important; }
.mt-50  { margin-top: 50px  !important; }
.mt-55  { margin-top: 55px  !important; }
.mt-60  { margin-top: 60px  !important; }
.mt-65  { margin-top: 65px  !important; }
.mt-70  { margin-top: 70px  !important; }
.mt-75  { margin-top: 75px  !important; }
.mt-80  { margin-top: 80px  !important; }
.mt-85  { margin-top: 85px  !important; }
.mt-90  { margin-top: 90px  !important; }
.mt-95  { margin-top: 95px  !important; }
.mt-100 { margin-top: 100px !important; }



/* Padding */

.p-0 { padding: 0 !important; }

.pb-0   { padding-bottom: 0px   !important; }
.pb-5   { padding-bottom: 5px   !important; }
.pb-10  { padding-bottom: 10px  !important; }
.pb-15  { padding-bottom: 15px  !important; }
.pb-20  { padding-bottom: 20px  !important; }
.pb-25  { padding-bottom: 25px  !important; }
.pb-30  { padding-bottom: 30px  !important; }
.pb-35  { padding-bottom: 35px  !important; }
.pb-40  { padding-bottom: 40px  !important; }
.pb-45  { padding-bottom: 45px  !important; }
.pb-50  { padding-bottom: 50px  !important; }
.pb-55  { padding-bottom: 55px  !important; }
.pb-60  { padding-bottom: 60px  !important; }
.pb-65  { padding-bottom: 65px  !important; }
.pb-70  { padding-bottom: 70px  !important; }
.pb-75  { padding-bottom: 75px  !important; }
.pb-80  { padding-bottom: 80px  !important; }
.pb-85  { padding-bottom: 85px  !important; }
.pb-90  { padding-bottom: 90px  !important; }
.pb-95  { padding-bottom: 95px  !important; }
.pb-100 { padding-bottom: 100px !important; }


.pt-0   { padding-top: 0px   !important; }
.pt-5   { padding-top: 5px   !important; }
.pt-10  { padding-top: 10px  !important; }
.pt-15  { padding-top: 15px  !important; }
.pt-20  { padding-top: 20px  !important; }
.pt-25  { padding-top: 25px  !important; }
.pt-30  { padding-top: 30px  !important; }
.pt-35  { padding-top: 35px  !important; }
.pt-40  { padding-top: 40px  !important; }
.pt-45  { padding-top: 45px  !important; }
.pt-50  { padding-top: 50px  !important; }
.pt-55  { padding-top: 55px  !important; }
.pt-60  { padding-top: 60px  !important; }
.pt-65  { padding-top: 65px  !important; }
.pt-70  { padding-top: 70px  !important; }
.pt-75  { padding-top: 75px  !important; }
.pt-80  { padding-top: 80px  !important; }
.pt-85  { padding-top: 85px  !important; }
.pt-90  { padding-top: 90px  !important; }
.pt-95  { padding-top: 95px  !important; }
.pt-100 { padding-top: 100px !important; }


/* Adaptive variable for width */

.var-width {
  width: var(--width, 100%) !important;
}

@media screen and (max-width: 767px) {
  .var-width-xs {
    width: var(--width-sm, var(--width, 100%)) !important;
  }
}

@media screen and (min-width: 768px) {
  .var-width-sm {
    width: var(--width-sm, var(--width, 100%)) !important;
  }
}

@media screen and (min-width: 992px) {
  .var-width-md {
    width: var(--width-md, var(--width, 100%)) !important;
  }
}

@media screen and (min-width: 1200px) {
  .var-width-lg {
    width: var(--width-lg, var(--width, 100%)) !important;
  }
}

/* Adaptive variable for height */

.var-height {
  height: var(--height, 100%) !important;
}

@media screen and (max-width: 767px) {
  .var-height-xs {
    height: var(--height-sm, var(--height, 100%)) !important;
  }
}

@media screen and (min-width: 768px) {
  .var-height-sm {
    height: var(--height-sm, var(--height, 100%)) !important;
  }
}

@media screen and (min-width: 992px) {
  .var-height-md {
    height: var(--height-md, var(--height, 100%)) !important;
  }
}

@media screen and (min-width: 1200px) {
  .var-height-lg {
    height: var(--height-lg, var(--height, 100%)) !important;
  }
}
