/* SET LESS */
/*
  SET LESS CONTENT: universal styles, classes and functions

  VALUES - статические переменные проекта
  UNIVERSAL .CLASS STYLES - статические CSS классы
  DYNAMIC .CLASS STYLES - динамические CSS классы (LESS - функции)
  FLEXIBLE LAYOUT - сборка всех синтаксисов для display: flex
  PAGE ELEMENT SETTINGS - Пресеты для отдельных элементов
*/
/* VALUES ----------------------------------------------------------------------------------------------------------- */
/* size preset */
/* MEDIA GRID SYSTEM (BOOTSTRAP) */
/* add points */
/* common colors preset */
/* background colors preset */
/* border colors preset */
/* gradients */
/* FONTS */
/* UNIVERSAL .CLASS STYLES ------------------------------------------------------------------------------------------ */
/**@Universal templates begin**/
* {
  outline: none!important;
}
html * {
  max-height: 999999px;
}
a {
  transition: all 0.2s ease;
  color: #333333;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}
a:hover {
  color: #764098;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
ul.with-squad li {
  padding-left: 20px;
}
ul.with-squad li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #666666;
}
form {
  margin-bottom: 0;
}
.wrapper {
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  z-index: 2;
}
.wrapper-min {
  min-width: 320px;
}
.wrapper-max {
  max-width: 1920px;
}
.wrapper-width {
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
}
.half {
  width: 50%;
}
/* footer size preset */
footer {
  position: relative;
  height: 430px;
  margin-top: -430px;
  z-index: 3;
}
div.wrapper-empty {
  height: 430px;
}
/* add */
.clear,
.clearfix {
  clear: both;
}
.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.text-in-line {
  white-space: nowrap;
  word-wrap: normal;
}
.reset-list {
  padding: 0;
  margin: 0;
}
.reset-list li {
  list-style: none;
}
.blocks-justify {
  text-align: justify;
}
.blocks-justify:after {
  content: "";
  display: inline-block;
  width: 100%;
  text-align: justify;
}
.bg-purple {
  background: #764098;
}
/**@Universal templates end**/
/* SVG TEMPLATES */
.svg-white {
  fill: #fff;
  fill-rule: evenodd;
  transition: fill .2s ease;
}
.svg-transparent {
  fill: transparent;
  fill-rule: evenodd;
  transition: fill .2s ease;
}
.svg-so-white {
  fill: #f6f6f6;
  fill-rule: evenodd;
  transition: fill .2s ease;
}
/* Text preset */
.text-uppercase {
  text-transform: uppercase;
}
.text-uppercase-none {
  text-transform: none;
}
.text-underline {
  text-decoration: underline;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-light {
  font-weight: 300;
}
.text-reg {
  font-weight: 400;
}
.text-semiBold {
  font-weight: 600;
}
.text-bold {
  font-weight: 700;
}
.text-purple {
  color: #764098;
}
.text-red {
  color: #e40303;
}
.text-light {
  color: inherit!important;
}
/* CSS transition preset */
.anim-std {
  transition: all 0.2s ease;
}
.anim-std-3 {
  transition: all 0.3s ease;
}
.anim-std-4 {
  transition: all 0.4s ease;
}
.anim-test-1000 {
  transition: all 1s ease;
}
.anim-test-2000 {
  transition: all 2s ease;
}
.anim-std-3-2 {
  transition: all 0.3s ease 0.2s;
}
.anim-std-3-3 {
  transition: all 0.3s ease 0.4s;
}
.anim-std-3-4 {
  transition: all 0.3s ease 0.4s;
}
/* Position preset */
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.abs-top {
  position: absolute;
  top: 0;
}
.abs-left {
  position: absolute;
  left: 0;
}
.abs-right {
  position: absolute;
  right: 0;
}
.abs-bottom {
  position: absolute;
  bottom: 0;
}
.abs-top-left {
  position: absolute;
  top: 0;
  left: 0;
}
.abs-top-right {
  position: absolute;
  top: 0;
  right: 0;
}
.abs-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.abs-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.abs-full-size {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* manual set position */
/* FLEXIBLE LAYOUT -------------------------------------------------------------------------------------------------- */
/* old syntax preset */
.old-flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
}
.old-inline-flex {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
}
.old-justify-start {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
}
.old-justify-end {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
}
.old-justify-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
}
.old-justify-around {
  -ms-flex-pack: distribute;
}
.old-justify-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
}
.old-align-center {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
}
.old-flex-row {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
}
.old-flex-column {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.old-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-box-lines: multiple;
}
.old-flex-grow {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
}
.old-flex-shrink {
  -ms-flex-negative: 0;
}
/* main syntax preset */
.flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
}
.inline-flex {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  display: -webkit-inline-flex;
}
.justify-start {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.justify-end {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.justify-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.justify-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.align-start {
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.align-end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.align-center {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
}
.align-baseline {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: baseline;
  -webkit-align-items: baseline;
}
.flex-row {
  flex-direction: row;
  -webkit-flex-direction: row;
}
.flex-column {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-box-lines: multiple;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.flex-grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.flex-shrink {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
/* Flex pos preset */
.flex-full-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
}
.flex-start-center {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
}
.flex-end-center {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 991px) {
  .flex-column-mobile {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
}
/* PAGE ELEMENTS SETTINGS ---------------------------------------------------------------------------------------------------- */
/* Input, textarea & placeholder preset */
input,
textarea {
  width: auto;
  height: 42px;
  font-size: 16px;
  font-weight: normal;
  color: #1c1c1c;
  background: transparent;
  border-radius: 0;
  border: 1px solid #c5c5c5;
  padding-left: 15px;
  outline: none;
}
input.error,
textarea.error {
  border: 1px solid red;
}
input.valid,
textarea.valid {
  border: 1px solid green;
}
textarea {
  padding-top: 10px;
  padding-bottom: 5px;
  resize: none;
}
input.error {
  border: 1px solid #e40303 !important;
}
textarea.error {
  border: 1px solid #e40303 !important;
}
::-webkit-input-placeholder {
  color: initial;
  opacity: 0.7;
}
::-moz-placeholder {
  color: initial;
  opacity: 0.7;
}
/* Firefox 19+ */
:-moz-placeholder {
  color: initial;
  opacity: 0.7;
}
/* Firefox 18- */
:-ms-input-placeholder {
  color: initial;
  opacity: 0.7;
}
input[placeholder] {
  text-overflow: ellipsis;
}
input::-moz-placeholder {
  text-overflow: ellipsis;
}
input:-moz-placeholder {
  text-overflow: ellipsis;
}
input:-ms-input-placeholder {
  text-overflow: ellipsis;
}
input[type="checkbox"][disabled] {
  cursor: default;
}
/* buttons preset */
.btn {
  transition: all 0.2s ease;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  text-transform: uppercase;
  width: auto;
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  font-weight: normal;
  color: #000000;
  border-radius: 0;
  padding: 0;
  min-width: 180px;
}
.btn:hover {
  color: #ffffff;
}
.btn.btn-red {
  background: #e40303;
  color: white;
}
.btn.btn-border-red {
  background: white;
  border: 2px solid #e40303;
  color: black;
}
.btn.btn-border-red:hover {
  color: #e40303;
}
.btn.btn-phone img {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .btn {
    height: 32px;
    line-height: 32px;
    font-size: 12px;
  }
}
/* DYNAMIC .CLASS STYLES */
/* custom functions for std page elements */
/* functions for gradient */
/* functions for button */
/* functions for input */
/* functions for fonts */
.header-text-decorator {
  font-size: 36px;
}
.header-text-decorator.with-line {
  padding: 0 15px;
  border-bottom: 1px solid #eaeced;
}
.header-text-decorator.with-line .header-text-style {
  display: inline-block;
  border-bottom: 3px solid #e40303;
}
@media (max-width: 1449px) {
  .header-text-decorator {
    font-size: 30px;
  }
}
.header-text-style.fs--small {
  font-size: .8em;
}
.header-text-style.fs--medium {
  font-size: 1em;
}
.header-text-style.fs--big {
  font-size: 1.1em;
}
/* TITLES TEXT STYLE PRESET */
.title-text-decorator {
  font-size: 22px;
}
/* CONTENT TEXT STYLE PRESET */
.content-text-decorator {
  font-size: 16px;
}
@media (max-width: 1449px) {
  .content-text-decorator {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .content-text-decorator {
    font-size: 13px;
  }
}
.content-text-style.fs--very-small {
  font-size: .75em;
}
.content-text-style.fs--small {
  font-size: .875em;
}
.content-text-style.fs--medium {
  font-size: 1em;
}
.content-text-style.fs--big {
  font-size: 1.125em;
}
.content-text-style.fs--very-big {
  font-size: 1.25em;
}
/* price block preset */
.price-block.product-card--price-preset {
  position: relative;
  text-align: left;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 767px) {
  .price-block.product-card--price-preset {
    font-size: 20px;
  }
}
/* status stock preset */
.status-stock {
  font-size: 16px;
}
@media (max-width: 1449px) {
  .status-stock {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .status-stock {
    font-size: 13px;
  }
}
.status-stock .in-stock {
  font-size: 1em;
  padding-left: 18px;
  background: url(/var/themes/default/skin/images/icon-in-stock.png) no-repeat left center;
}
.status-stock .out-of-stock {
  font-size: 1em;
  padding-left: 18px;
  background: url(/var/themes/default/skin/images/icon-out-stock.png) no-repeat left center;
}
.products-list {
  margin: 0 -5px;
}
.products-list.in-search {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 10px;
}
/*
//  product block - основной контейрнер для автоматического подгона размеров
//  helper - дополнительный контейнер для изменения размеров при ховере без влияний на соседние элементы
*/
.product-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  border-bottom: 1px solid #eaeced;
}
.product-block .helper {
  width: 100%;
  padding: 30px 0;
}
.product-block .helper .visible-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.product-block .helper .visible-content .image a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  width: 310px;
  height: 200px;
  padding: 30px;
}
.product-block .helper .visible-content .image a img {
  max-width: 100%;
}
.product-block .helper .visible-content .description {
  width: 50%;
  padding: 0 5%;
}
.product-block .helper .visible-content .description .title-text-decorator {
  margin-bottom: 30px;
}
.product-block .helper .visible-content .btn {
  text-transform: uppercase;
  width: 250px;
  height: 45px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .product-block {
    max-width: 250px;
    margin: 0 auto 35px;
  }
}
/* BREADCRUMBS */
.breadcrumbs {
  padding-left: 300px;
}
.breadcrumbs .breadcrumb {
  padding: 8px 0;
  border-top: 1px solid #eaeced;
  border-bottom: 1px solid #eaeced;
  background: white;
}
@media (max-width: 991px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ul {
  display: inline-block;
  width: 100%;
}
.breadcrumbs ul li {
  float: left;
  margin-right: 5px;
}
.breadcrumbs ul li a {
  transition: all 0.2s ease;
  font-weight: 700;
  position: relative;
  color: #e40303;
}
.breadcrumbs ul li a:hover {
  color: #1c1c1c;
}
.breadcrumbs ul li span {
  font-weight: 700;
  color: #1c1c1c;
}
.breadcrumbs ul li.separator {
  text-align: center;
  width: 30px;
}
.breadcrumbs ul li.separator:before {
  content: "/";
  color: #eaeced;
}
/* MAIN LESS */
/* ADAPTIVE TEMPLATE */
/* /var/themes/default/skin/less/
    MAIN LESS CONTENT: custom styles for each project

  MAIN STYLES - common unusual styles for main HTML-tags and classes of project
  CUSTOM CONTENT - styles for custom blocks (p, ul, ol, a etc) that is managed from CMS
  HEADER STYLES - PRESETS & STRUCTURE OF HEADER
  HEADER STRUCTURE LVL - styles for each header lvl which used in HEADER, unused elem could been commented

*/
/* MAIN STYLES ------------------------------------------------------------------------------------------------------ */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Open Sans", sans-serif;
}
/* CUSTOM CONTENT --------------------------------------------------------------------------------------------------- */
/* HEADRER ---------------------------------------------------------------------------------------------------------- */
header {
  position: relative;
  z-index: 2;
}
header .desc .top-content {
  background: black;
}
header .desc .top-content .header-structure-menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
header .desc .top-content .header-structure-menu .lang-wrapper .lang {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  font-size: 16px;
}
@media (max-width: 1449px) {
  header .desc .top-content .header-structure-menu .lang-wrapper .lang {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .top-content .header-structure-menu .lang-wrapper .lang {
    font-size: 13px;
  }
}
header .desc .top-content .header-structure-menu .lang-wrapper .lang a {
  text-transform: uppercase;
  font-size: 1.125em;
  padding: 20px;
  border-left: 1px solid #1c1c1c;
  color: white;
}
header .desc .top-content .header-structure-menu .lang-wrapper .lang a.active {
  color: #e40303;
}
header .desc .top-content .header-structure-menu .info-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-weight: 700;
  font-size: 16px;
  padding-left: 30px;
  border-left: 1px solid #1c1c1c;
}
@media (max-width: 1449px) {
  header .desc .top-content .header-structure-menu .info-wrapper {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .top-content .header-structure-menu .info-wrapper {
    font-size: 13px;
  }
}
header .desc .top-content .header-structure-menu .info-wrapper .phones {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  font-size: 1em;
  padding-left: 30px;
  background: url(/var/themes/default/skin/images/icon-phones-header.png) no-repeat left center;
}
header .desc .top-content .header-structure-menu .info-wrapper .phones a {
  margin-right: 10px;
  color: white;
}
header .desc .top-content .header-structure-menu .info-wrapper .email {
  font-size: 1em;
  padding-left: 30px;
  padding-right: 15%;
  background: url(/var/themes/default/skin/images/icon-email-header.png) no-repeat left center;
}
header .desc .top-content .header-structure-menu .info-wrapper .email a {
  color: #cccdcd;
}
@media (max-width: 1250px) {
  header .desc .top-content .header-structure-menu .info-wrapper {
    align-items: flex-start;
    -webkit-align-items: flex-start;
  }
}
header .desc .top-content .header-structure-menu nav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
}
header .desc .top-content .header-structure-menu nav ul li {
  position: relative;
  font-size: 16px;
  padding: 20px;
  border-right: 1px solid #1c1c1c;
}
@media (max-width: 1449px) {
  header .desc .top-content .header-structure-menu nav ul li {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .top-content .header-structure-menu nav ul li {
    font-size: 13px;
  }
}
header .desc .top-content .header-structure-menu nav ul li a {
  font-size: 1.125em;
  text-transform: uppercase;
  color: white;
}
header .desc .top-content .header-structure-menu nav ul li a:hover {
  color: #e40303;
}
header .desc .top-content .header-structure-menu nav ul li:hover ul {
  display: block;
}
header .desc .top-content .header-structure-menu nav ul li ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 230px;
  display: none;
  border-bottom: 2px solid #e40303;
  padding: 15px 18px 40px;
  background: black;
}
header .desc .top-content .header-structure-menu nav ul li ul li {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.2;
  padding: 0 12px;
  border-right: 0;
  background: url(/var/themes/default/skin/images/icon-categories-arrow-reg.png) no-repeat left top 7px;
}
@media (max-width: 1449px) {
  header .desc .top-content .header-structure-menu nav ul li ul li {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .top-content .header-structure-menu nav ul li ul li {
    font-size: 13px;
  }
}
header .desc .top-content .header-structure-menu nav ul li ul li a {
  text-transform: uppercase;
  font-size: .75em;
  color: white;
}
header .desc .top-content .header-structure-menu nav ul li ul li a:hover {
  text-decoration: underline;
  color: #e40303;
}
header .desc .middle-content {
  height: 110px;
  padding: 0 15px;
}
header .desc .middle-content .logo {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  font-size: 16px;
  padding-top: 20px;
}
@media (max-width: 1449px) {
  header .desc .middle-content .logo {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .middle-content .logo {
    font-size: 13px;
  }
}
header .desc .middle-content .logo a {
  margin-right: 12px;
}
header .desc .middle-content .logo a img {
  max-width: 480px;
  max-height: 45px;
}
header .desc .middle-content .logo span {
  font-weight: 300;
  color: inherit!important;
  font-size: 1.25em;
  max-width: 300px;
}
@media (max-width: 1250px) {
  header .desc .middle-content .logo {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    padding-top: 0;
  }
  header .desc .middle-content .logo a {
    margin-bottom: 5px;
  }
  header .desc .middle-content .logo a img {
    max-height: 30px;
  }
  header .desc .middle-content .logo span {
    max-width: initial;
  }
}
header .desc .middle-content .search-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
  padding: 15px 2% 0 5%;
}
header .desc .middle-content .search-wrapper form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
header .desc .middle-content .search-wrapper form input {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 70px;
  background: white;
  color: white;
  border: 2px solid #e40303;
}
header .desc .middle-content .search-wrapper form button {
  height: 70px;
}
header .desc .bottom-content {
  height: 0;
  background: #b6b4b4;
}
header .desc .bottom-content .main-categories-menu {
  height: 0;
}
header .desc .bottom-content .categories {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  width: 300px;
  height: 70px;
  background: #444444;
}
header .desc .bottom-content .categories .categories-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  font-size: 16px;
}
@media (max-width: 1449px) {
  header .desc .bottom-content .categories .categories-title {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .bottom-content .categories .categories-title {
    font-size: 13px;
  }
}
header .desc .bottom-content .categories .categories-title img {
  margin-right: 15px;
}
header .desc .bottom-content .categories .categories-title span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125em;
  color: white;
}
header .desc .bottom-content .categories .categories-menu {
  position: absolute;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  top: 100%;
  width: 100%;
  height: 630px;
  background: white;
  border-top: 3px solid #e40303;
  border-right: 2px solid #eaeced;
  border-bottom: 2px solid #eaeced;
}
header .desc .bottom-content .categories .categories-menu > ul > li {
  position: relative;
  height: 50px;
  background: url(/var/themes/default/skin/images/icon-categories-arrow-grey.png) no-repeat right 10px center;
}
header .desc .bottom-content .categories .categories-menu > ul > li > a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
  padding-left: 20px;
  color: #333333;
  background-position: center right 10px;
}
header .desc .bottom-content .categories .categories-menu > ul > li > a i {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
header .desc .bottom-content .categories .categories-menu > ul > li > a i img {
  max-width: 100%;
  max-height: 100%;
}
header .desc .bottom-content .categories .categories-menu > ul > li > a:hover {
  color: white;
  background: url(/var/themes/default/skin/images/icon-categories-arrow-white.png) no-repeat right 10px center #e40303;
}
header .desc .bottom-content .categories .categories-menu > ul > li:hover ul {
  display: block;
}
header .desc .bottom-content .categories .categories-menu > ul > li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 230px;
  display: none;
  border-bottom: 2px solid #e40303;
  padding: 15px 18px 40px;
  background: white;
}
header .desc .bottom-content .categories .categories-menu > ul > li ul li {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.2;
  padding: 0 12px;
  background: url(/var/themes/default/skin/images/icon-categories-arrow-reg.png) no-repeat left top 7px;
}
@media (max-width: 1449px) {
  header .desc .bottom-content .categories .categories-menu > ul > li ul li {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .bottom-content .categories .categories-menu > ul > li ul li {
    font-size: 13px;
  }
}
header .desc .bottom-content .categories .categories-menu > ul > li ul li a {
  text-transform: uppercase;
  font-size: .75em;
  color: #666666;
}
header .desc .bottom-content .categories .categories-menu > ul > li ul li a:hover {
  text-decoration: underline;
  color: #e40303;
}
header .desc .bottom-content .categories .categories-menu .more {
  font-size: 16px;
  border-top: 2px solid #eaeced;
  padding: 15px 0;
}
@media (max-width: 1449px) {
  header .desc .bottom-content .categories .categories-menu .more {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  header .desc .bottom-content .categories .categories-menu .more {
    font-size: 13px;
  }
}
header .desc .bottom-content .categories .categories-menu .more a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  font-size: 1.125em;
  margin-left: 25px;
  padding-left: 25px;
  color: #666666;
  background: url(/var/themes/default/skin/images/icon-categories-more.png) no-repeat left center;
}
/* FOOTER ----------------------------------------------------------------------------------------------------------- */
footer {
  font-size: 16px;
  background: black;
  color: white;
}
@media (max-width: 1449px) {
  footer {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  footer {
    font-size: 13px;
  }
}
footer .desc {
  height: 370px;
  padding-left: 15px;
}
footer .item {
  height: 100%;
  padding: 45px 7% 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
footer .item nav ul li {
  margin-bottom: 10px;
}
footer .item nav ul li a {
  text-transform: uppercase;
}
footer .item a {
  color: white;
}
footer .item a:hover {
  color: #e40303;
}
footer .item.info {
  color: #b6b4b4;
}
footer .item.info .block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  margin-bottom: 12px;
}
footer .item.info .block .image {
  text-align: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 18px;
}
footer .item.info .block .image img {
  max-width: 100%;
  max-height: 100%;
}
footer .item.form {
  /* Firefox 19+ */
  /* Firefox 18- */
}
footer .item.form textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid white;
}
footer .item.form ::-webkit-input-placeholder {
  color: white;
  opacity: 0.5;
}
footer .item.form ::-moz-placeholder {
  color: white;
  opacity: 0.5;
}
footer .item.form :-moz-placeholder {
  color: white;
  opacity: 0.5;
}
footer .item.form :-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}
footer .item .title-text-decorator {
  margin-bottom: 20px;
  color: white!important;
}
footer .item .phones a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  color: #b6b4b4;
}
@media (max-width: 1250px) {
  footer .item {
    padding-left: 0;
  }
}
footer .copyright {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  text-align: center;
  font-size: 16px;
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1449px) {
  footer .copyright {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  footer .copyright {
    font-size: 13px;
  }
}
footer .copyright span {
  font-size: .75em;
}
/* CONTENT STYLES --------------------------------------------------------------------------------------------------- */
.wrapper .wrapper-content .page {
  min-height: 700px;
}
.wrapper .wrapper-content .page section .swiper-container {
  height: auto;
}
.wrapper .wrapper-content .page section .swiper-container .swiper-wrapper {
  height: auto;
}
.wrapper .wrapper-content .page section .swiper-container .swiper-wrapper .swiper-slide {
  height: auto;
}
.wrapper .wrapper-content .page section .swiper-button-prev {
  left: -20px;
  display: block;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: url(../../images/swiper-left.png) no-repeat center;
}
.wrapper .wrapper-content .page section .swiper-button-next {
  right: -20px;
  display: block;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: url(../../images/swiper-right.png) no-repeat center;
}
.wrapper .wrapper-content .page section .swiper-pagination {
  bottom: 35px;
}
.wrapper .wrapper-content .page section .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 1;
  margin: 0 10px;
}
.wrapper .wrapper-content .page section .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border-radius: 50%;
  border: 2px solid white;
}
.wrapper .wrapper-content .page section .swiper-pagination .swiper-pagination-bullet-active {
  background: white;
}
.wrapper .wrapper-content .page section.home {
  height: 700px;
  padding-left: 300px;
}
.wrapper .wrapper-content .page.main-page section.std {
  background: white;
}
.wrapper .wrapper-content .page.main-page section.std .map {
  height: 375px;
  padding-top: 2px;
  background: #b6b4b4;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container {
  height: 570px!important;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container .swiper-wrapper .swiper-slide .image {
  height: 100%;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container .swiper-wrapper .swiper-slide .image img {
  width:100%;
  height:570px;
  object-fit: cover;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container .swiper-wrapper .swiper-slide .content {
  position: absolute;
  bottom: 90px;
  left: 10%;
  right: 10%;
  display: none;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container .swiper-wrapper .swiper-slide .content .helper {
  width: 100%;
  max-width: 1000px;
  height: 300px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 40px;
}
.wrapper .wrapper-content .page.main-page section.home .swiper-container .swiper-wrapper .swiper-slide .content .helper .header-text-decorator {
  margin-bottom: 15px;
}
.wrapper .wrapper-content .page.main-page section.home .features {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  height: 130px;
  padding: 15px 0;
  background: #eaeced;
}
.wrapper .wrapper-content .page.main-page section.home .features .item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  position: relative;
  width: 50%;
  max-width: 700px;
  padding-left: 0;
  padding-right: 50px;
  z-index: 1;
}
.wrapper .wrapper-content .page.main-page section.home .features .item .image {
  position: relative;
  margin-top: 10px;
  padding: 0 50px;
  min-width: 180px;
  height: 60px;
  border-left: 1px solid #e40303;
}
.wrapper .wrapper-content .page.main-page section.home .features .item .image img {
  max-width: 100%;
}
.wrapper .wrapper-content .page.main-page section.home .features .item .title-text-decorator {
  margin-bottom: 5px;
  color: #e40303;
}
.wrapper .wrapper-content .page.main-page section.home .features .item .content-text-decorator {
  font-weight: 300;
  color: inherit!important;
}
.wrapper .wrapper-content .page.main-page section.home .features .item:first-child .image {
  border-left: 0;
}
@media (max-width: 1250px) {
  .wrapper .wrapper-content .page.main-page section.home .features .item {
    -ms-flex-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-align-items: center;
    cursor: pointer;
  }
  .wrapper .wrapper-content .page.main-page section.home .features .item .image {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    display: -webkit-flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-align-items: center;
    margin-top: 0;
    min-width: 120px;
    max-width: 120px;
    padding: 0 30px;
  }
  .wrapper .wrapper-content .page.main-page section.home .features .item .content-text-decorator {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    padding: 0 15px 15px 120px;
    background: #eaeced;
    z-index: -1;
  }
  .wrapper .wrapper-content .page.main-page section.home .features .item:hover .content-text-decorator {
    display: block;
  }
}
.wrapper .wrapper-content .page.main-page section.brands {
  padding-top: 50px;
}
.wrapper .wrapper-content .page.main-page section.brands .header-text-decorator {
  color: #e40303;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 30px;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-container {
  border-top: 1px solid #eaeced;
  padding: 10px 0;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-container .swiper-wrapper .swiper-slide .image {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  max-width: 280px;
  height: 200px;
  padding: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-container .swiper-wrapper .swiper-slide .image:hover {
  border: 1px solid #e40303;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-container .swiper-wrapper .swiper-slide .image img {
  max-width: 100%;
  max-height: 100%;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-button-prev,
.wrapper .wrapper-content .page.main-page section.brands .swiper-button-next {
  position: absolute;
  bottom: 0;
  width: 33px;
  height: 45px;
  margin-top: -22px;
  border: 1px solid #eaeced;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-button-prev:hover,
.wrapper .wrapper-content .page.main-page section.brands .swiper-button-next:hover {
  background: #e40303;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-button-prev {
  left: auto;
  right: 50px;
}
.wrapper .wrapper-content .page.main-page section.brands .swiper-button-next {
  right: 0;
}
.wrapper .wrapper-content .page.main-page section.reviews {
  padding: 30px 0;
}
.wrapper .wrapper-content .page.main-page section.reviews .image {
  text-align: center;
}
.wrapper .wrapper-content .page.main-page section.reviews .image img {
  max-width: 100%;
  max-height: 237px;
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .title-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  font-size: 16px;
  padding: 15px 10%;
  background: black;
}
@media (max-width: 1449px) {
  .wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .title-block {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .title-block {
    font-size: 13px;
  }
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .title-block .name {
  font-weight: 600;
  font-size: 1.125em;
  color: white;
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .title-block .prod {
  font-weight: 700;
  font-size: 1em;
  color: #e40303;
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  font-size: 16px;
  padding: 30px 10%;
  height: 180px;
  background: #eaeced;
  color: #444444;
}
@media (max-width: 1449px) {
  .wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .content {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .content {
    font-size: 13px;
  }
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .content .avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e40303;
  padding: 3px;
  margin-right: 40px;
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .content .avatar img {
  max-width: 100%;
  max-height: 100%;
}
.wrapper .wrapper-content .page.main-page section.reviews .swiper-container .swiper-wrapper .swiper-slide .content .text {
  font-size: 1em;
  max-height: 133px;
  overflow: hidden;
}
.wrapper .wrapper-content .page.catalog-page {
  padding-left: 300px;
}
.wrapper .wrapper-content .page.catalog-page .products-list .notice {
  font-weight: 500;
  margin: -40px 0 40px;
  color: #bbb;
}
.wrapper .wrapper-content .page.product-card {
  padding-left: 300px;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top {
  width: 100%;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #eaeced;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top:before,
.wrapper .wrapper-content .page.product-card .gallery .gallery-top:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: white;
  z-index: 2;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top:before {
  left: 0;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top:after {
  right: 0;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top .swiper-wrapper {
  height: auto;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top .swiper-slide {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top .swiper-slide img {
  max-width: 100%;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-top .swiper-button-prev,
.wrapper .wrapper-content .page.product-card .gallery .gallery-top .swiper-button-next {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  display: none;
  background: none;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-thumbs {
  display: none;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-thumbs .swiper-slide {
  width: 33%;
  height: auto;
  cursor: pointer;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-thumbs .swiper-slide img {
  width: 100%;
  max-width: 100%;
}
.wrapper .wrapper-content .page.product-card .gallery .gallery-thumbs .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.wrapper .wrapper-content .page.product-card .gallery .notice {
  margin-top: 50px;
  font-weight: 500;
  color: #bbb;
}
.wrapper .wrapper-content .page.product-card .status-stock {
  margin: 20px 0;
}
.wrapper .wrapper-content .page.product-card .buttons .btn {
  width: 250px;
  height: 45px;
  margin-bottom: 10px;
}
.wrapper .wrapper-content .page.product-card .buttons .btn.btn-red {
  color: white!important;
}
.wrapper .wrapper-content .page.regular-page {
  padding: 0 15px 0 315px;
}
.wrapper .wrapper-content .page.regular-page.about-page section .about-us {
  padding-bottom: 50px;
}
.wrapper .wrapper-content .page.regular-page.about-page section .about-us i {
  margin: 0 15px;
}
.wrapper .wrapper-content .page.regular-page.technical-page {
  padding-bottom: 50px;
}
.wrapper .wrapper-content .page.regular-page.technical-page h3 {
  margin: 40px 0;
}
.wrapper .wrapper-content .page.regular-page.technical-page ul.disc {
  display: block;
  list-style-type: disc;
  padding-left: 40px;
  color: #5f5f5f;
}
.wrapper .wrapper-content .page.regular-page.technical-page ul.disc li {
  list-style: disc;
}
.wrapper .wrapper-content .page.regular-page.warranty-page .wrapper-psd {
  margin: 75px 100px;
  height: 1000px;
  background: #666666;
}
.wrapper .wrapper-content .page.regular-page.warranty-page .content-text-decorator {
  margin: 0 100px;
}
.wrapper .wrapper-content .page.regular-page.certificate-page .header-text-decorator {
  margin-bottom: 30px;
}
.wrapper .wrapper-content .page.regular-page.certificate-page .certificate-item {
  text-align: center;
  margin-bottom: 50px;
  cursor: pointer;
}
.wrapper .wrapper-content .page.regular-page.certificate-page .certificate-item .image {
  position: relative;
  padding-bottom: 150%;
  margin-bottom: 25px;
}
.wrapper .wrapper-content .page.regular-page.certificate-page .certificate-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}
.wrapper .wrapper-content .page.regular-page.certificate-page .certificate-item .content-text-decorator p {
  font-size: 1em;
  margin: 0 auto;
  max-width: 300px;
}
.wrapper .wrapper-content .page.contacts-page .header-text-decorator {
  padding: 0;
  margin-bottom: 30px;
}
.wrapper .wrapper-content .page.contacts-page .header-text-decorator h1 {
  margin-bottom: 0;
}
.wrapper .wrapper-content .page.contacts-page .map {
  position: relative;
}
.wrapper .wrapper-content .page.contacts-page .map img {
  max-width: 100%;
}
.wrapper .wrapper-content .page.contacts-page .map .map-canvas {
  height: 300px;
  margin-bottom: 50px;
}
.wrapper .wrapper-content .page.contacts-page .departments {
  color: black;
}
.wrapper .wrapper-content .page.contacts-page .departments .block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 12px;
}
.wrapper .wrapper-content .page.contacts-page .departments .block .image {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-align-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 18px;
}
.wrapper .wrapper-content .page.contacts-page .departments .block .image img {
  max-width: 100%;
  max-height: 100%;
}
.wrapper .wrapper-content .page.contacts-page .departments .block a {
  display: block;
}
.wrapper .wrapper-content .page.contacts-page .form {
  position: relative;
}
.wrapper .wrapper-content .page.contacts-page .form form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.wrapper .wrapper-content .page.contacts-page .form form input,
.wrapper .wrapper-content .page.contacts-page .form form textarea {
  width: 100%;
  max-width: 500px;
  background: white;
  margin-bottom: 10px;
}
.wrapper .wrapper-content .page.contacts-page .form form textarea {
  max-width: 100%;
  margin: 30px 0;
  height: 200px;
}
.wrapper .wrapper-content .page.contacts-page .form form button {
  max-width: 150px;
}
.wrapper .wrapper-content .page.contacts-page .form .contact-info {
  position: absolute;
  top: 40px;
  right: -175px;
  bottom: 40px;
  width: 350px;
  height: auto;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 50px 25px 25px;
}
.wrapper .wrapper-content .page.contacts-page .form .contact-info .title-text-decorator {
  margin-bottom: 40px;
  line-height: 1.3;
}
.wrapper .wrapper-content .page.contacts-page .form .contact-info .btn {
  margin-top: 20px;
  margin-bottom: 50px;
}
.wrapper .wrapper-content .page.contacts-page .form .contact-info .content-text-decorator a {
  text-decoration: underline;
  color: #666666;
}
.wrapper.without-categories header .bottom-content {
  display: none;
}
.wrapper.without-categories .breadcrumbs {
  padding-left: 0;
}
.fancybox-skin {
  border-radius: 0;
}
.installer-popup {
  display: none;
  width: 350px;
  padding: 20px 30px;
}
.installer-popup form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  margin-top: 40px;
  max-width: 280px;
}
.installer-popup form input,
.installer-popup form textarea {
  width: 100%;
  max-width: 280px;
  background: white;
  color: #b6b4b4;
  margin-bottom: 10px;
  border: 2px solid #764098;
  border-radius: 0;
}
.installer-popup form textarea {
  max-width: 100%;
  margin: 30px 0;
  height: 200px;
}
.installer-popup form button {
  max-width: 150px;
  margin: auto;
}
