/*
tinc project builder
styleFile create on 10.06.2020 09:14:37 ---
*/
header {
  position: relative;
  background-color: white;
  border-bottom: 1px solid #E0E0E0;
  z-index: 12; }
  header .wrapper {
    display: flex;
    justify-content: space-between; }
  header .logoWrapper {
    align-self: center; }
  header .headWrapper {
    padding-top: 13px;
    width: calc(100% - 128px); }

.siteLogo {
  width: 88px;
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  .siteLogo > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap; }
  .siteLogo img {
    width: 100%;
    height: auto; }
  .siteLogo:hover {
    opacity: 0.7; }
  .siteLogo .slogan {
    display: none; }
    @media (max-width: 1199px) {
      .siteLogo .slogan {
        position: absolute;
        bottom: 50%;
        margin-bottom: -7px;
        left: calc(100% + 5px);
        display: block;
        font-size: 14px;
        line-height: 14px;
        color: #C42128;
        white-space: nowrap; } }
    @media (max-width: 767px) {
      .siteLogo .slogan {
        font-size: 12px; } }
    @media (max-width: 350px) {
      .siteLogo .slogan {
        font-size: 10px; } }

.headInfo {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .headInfo + .headMenu {
    margin-top: 27px; }

.headMenu {
  display: flex;
  justify-content: space-between; }
  .headMenu .openMenuBtn {
    display: none;
    padding: 5px;
    width: 35px;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer; }
    .headMenu .openMenuBtn span {
      display: block;
      height: 3px;
      background-color: #1A1A1A; }
      .headMenu .openMenuBtn span + span {
        margin-top: 5px; }
    .headMenu .openMenuBtn:hover {
      opacity: 0.7; }
  .headMenu .closeMenuBtn {
    display: none;
    padding: 5px;
    font-size: 20px;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer; }
    .headMenu .closeMenuBtn::before {
      color: #1A1A1A; }
    .headMenu .closeMenuBtn:hover {
      opacity: 0.7; }

.headInfoNav {
  display: flex; }
  .headInfoNav li a {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #828282;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .headInfoNav li + li {
    margin-left: 19px; }

.headContacts {
  display: flex;
  align-items: center; }
  .headContacts .headContactsList + .orderCallBtn {
    margin-left: 30px; }

.headContactsList {
  display: flex; }
  .headContactsList li {
    font-size: 14px;
    line-height: 16px;
    color: #828282; }
    .headContactsList li a {
      display: block;
      color: #828282;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .headContactsList li a span {
        font-size: 16px;
        color: #333333;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
      .headContactsList li a:hover {
        color: #bd2127; }
        .headContactsList li a:hover span {
          color: #bd2127; }
    .headContactsList li span {
      font-size: 16px;
      color: #333333; }
    .headContactsList li + li {
      margin-left: 15px; }

.orderCallBtn {
  display: table; }
  .orderCallBtn [class*="icon"] {
    display: none;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #1A1A1A;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }
    .orderCallBtn [class*="icon"]::before {
      color: #1A1A1A; }
    .orderCallBtn [class*="icon"]:hover {
      opacity: 0.7; }
  .orderCallBtn .text {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .orderCallBtn .text:hover {
      color: #bd2127; }

.mobileInfoNav {
  display: none; }

.menuList {
  padding-top: 5px;
  display: flex; }
  .menuList > li {
    position: relative; }
    .menuList > li > .in > a {
      position: relative;
      display: block;
      padding-bottom: 32px;
      font-size: 16px;
      line-height: 18px;
      color: #333333;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      cursor: pointer; }
      .menuList > li > .in > a::before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        bottom: -1px;
        left: 0px;
        background-color: #C42128;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      .menuList > li > .in > a:hover {
        color: #333333 !important; }
        .menuList > li > .in > a:hover::before {
          opacity: 1; }
    .menuList > li > .in > .smMenu {
      display: none; }
    .menuList > li.active > .in > a::before {
      opacity: 1; }
    .menuList > li + li {
      margin-left: 30px; }
  .menuList .dropdownMenu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0px;
    background-color: white; }
    .menuList .dropdownMenu.first {
      padding-right: 0px; }
    .menuList .dropdownMenu.inner {
      position: absolute;
      left: 100%;
      top: 0px;
      width: auto;
      min-width: 219px;
      min-height: 100%;
      background-color: white;
      border-left: 1px solid #BDBDBD; }
    .menuList .dropdownMenu .img {
      padding: 20px; }
    .menuList .dropdownMenu .dropdownMenuInner {
      position: relative;
      min-width: 156px;
      min-height: auto;
      display: flex;
      justify-content: space-between;
      background-color: white;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      box-shadow: 0.4em 0.4em 5px rgba(122,122,122,0.5);}
      .menuList .dropdownMenu .dropdownMenuInner ul {
        flex-shrink: 0;
        box-shadow: none;}
      .menuList .dropdownMenu .dropdownMenuInner .img {
        flex-shrink: 0;
        box-shadow: none;}
    .menuList .dropdownMenu ul {
      position: relative;
      min-width: 156px;
      padding-top: 10px;
      padding-bottom: 10px;
      background-color: white; }
      .menuList .dropdownMenu ul li {
        padding-left: 10px;
        padding-right: 10px;
        background-color: transparent;
        -webkit-transition: background-color 0.3s;
        -moz-transition: background-color 0.3s;
        -o-transition: background-color 0.3s;
        transition: background-color 0.3s;
        cursor: pointer; }
        .menuList .dropdownMenu ul li .in {
          height: 38px;
          display: flex;
          justify-content: space-between;
          align-items: center; }
        .menuList .dropdownMenu ul li a {
          padding-left: 10px;
          padding-right: 10px;
          flex-grow: 1;
          display: flex;
          align-items: center;
          height: 100%;
          font-size: 16px;
          line-height: 18px;
          color: #1A1A1A; }
          .menuList .dropdownMenu ul li a:hover {
            color: #1A1A1A !important; }
        .menuList .dropdownMenu ul li [class*="icon"] {
          padding-right: 15px;
          font-size: 9px;
          line-height: 18px;
          color: #1A1A1A;
          font-weight: bold; }
        .menuList .dropdownMenu ul li:hover, .menuList .dropdownMenu ul li.active {
          background-color: #F2F2F2; }
        .menuList .dropdownMenu ul li.additional a {
          color: #C40E16; }
          .menuList .dropdownMenu ul li.additional a:hover {
            color: #C40E16 !important; }
        .menuList .dropdownMenu ul li:not(.additional) + li.additional .in {
          border-top: 1px solid #1A1A1A; }
.columnMenu{
  box-shadow: 0.4em 0.4em 5px rgba(122,122,122,0.5);
}
.columnMenu ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(10, 1fr);
  grid-auto-columns: auto;
  box-shadow: none; }
  .columnMenu ul li {
    min-width: 220px;
    box-shadow: none;}

[class*="btnFill"] {
  display: table;
  padding: 0px 50px;
  height: 50px;
  font-family: "Ubuntu";
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  border: none !important;
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer; }
  [class*="btnFill"][class*="Type1"] {
    color: #1A1A1A;
    background-color: white; }
    [class*="btnFill"][class*="Type1"]:hover {
      color: #1A1A1A !important;
      background-color: #F2F2F2; }
  [class*="btnFill"][class*="Type2"] {
    color: white;
    background-color: #C42128; }
    [class*="btnFill"][class*="Type2"]:hover {
      color: white !important;
      background-color: #C40E16; }
  [class*="btnFill"].full {
    width: 100%; }
  @media (max-width: 991px) {
    [class*="btnFill"] {
      height: 40px;
      line-height: 40px; } }

[class*="btnBorder"] {
  display: table;
  padding: 0px 50px;
  height: 50px;
  font-family: "Ubuntu";
  font-size: 16px;
  line-height: 46px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  background-color: transparent;
  border-color: white !important;
  opacity: 1;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -moz-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer; }
  [class*="btnBorder"][class*="Type1"] {
    color: white;
    border: 2px solid white !important; }
    [class*="btnBorder"][class*="Type1"]:hover {
      color: #1A1A1A !important;
      background-color: #F2F2F2;
      border: 2px solid #F2F2F2;
      border-color: #F2F2F2 !important; }
  [class*="btnBorder"][class*="Type2"] {
    color: #1A1A1A;
    border: 2px solid #1A1A1A !important; }
    [class*="btnBorder"][class*="Type2"]:hover {
      color: white !important;
      background-color: #1A1A1A;
      border: 2px solid #1A1A1A;
      border-color: #1A1A1A !important; }
  [class*="btnBorder"].center {
    margin-left: auto;
    margin-right: auto; }
  @media (max-width: 991px) {
    [class*="btnBorder"] {
      height: 40px;
      line-height: 40px; } }

.btnIcon {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #F2F2F2;
  border: 1px solid #BDBDBD;
  -webkit-transition: background-color 0.3s, border 0.3s;
  -moz-transition: background-color 0.3s, border 0.3s;
  -o-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s; }
  .btnIcon [class*="icon"] {
    position: static;
    font-size: 20px;
    color: #1A1A1A; }
  .btnIcon:hover {
    background-color: white;
    border: 1px solid #1A1A1A; }

.btnFillIcon {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 159px;
  height: 50px;
  font-family: "Ubuntu";
  font-size: 16px;
  line-height: 18px;
  color: white;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  background-color: #C42128;
  border: none;
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer; }
  .btnFillIcon span + span {
    margin-left: 10px; }
  .btnFillIcon:hover {
    color: white !important;
    background-color: #C40E16; }

.searchBlock .openSearchBtn,
.searchBlock .closeSearchBtn {
  display: none;
  padding: 5px;
  font-size: 20px;
  color: #1A1A1A;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer; }
  .searchBlock .openSearchBtn::before,
  .searchBlock .closeSearchBtn::before {
    width: auto;
    line-height: 30px; }
  .searchBlock .openSearchBtn:hover,
  .searchBlock .closeSearchBtn:hover {
    opacity: 0.7; }
.searchBlock .closeSearchBtn {
  font-size: 15px; }
  .searchBlock .closeSearchBtn::before {
    line-height: 15px;
    color: #1A1A1A; }
.searchBlock .inner {
  position: relative;
  display: flex; }
.searchBlock .selectric-open .selectric {
  background-color: white;
  border: 1px solid #1A1A1A; }
  .searchBlock .selectric-open .selectric .label {
    color: #1A1A1A; }
  .searchBlock .selectric-open .selectric .button::before {
    color: #1A1A1A;
    -moz-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    -webkit-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, -1); }
.searchBlock .selectric {
  padding-left: 16px;
  padding-right: 16px;
  background-color: #F2F2F2;
  border: 1px solid #BDBDBD;
  -webkit-transition: background-color 0.3s, border 0.3s;
  -moz-transition: background-color 0.3s, border 0.3s;
  -o-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s; }
  .searchBlock .selectric .label {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    color: #828282;
    font-weight: normal;
    text-align: left;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .searchBlock .selectric .button {
    background-color: transparent; }
    .searchBlock .selectric .button::before {
      content: '\e908';
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      margin: auto;
      font-family: "icomoon";
      font-size: 10px;
      font-weight: bold;
      color: #828282;
      -webkit-transition: color 0.3s, transform 0.3s;
      -moz-transition: color 0.3s, transform 0.3s;
      -o-transition: color 0.3s, transform 0.3s;
      transition: color 0.3s, transform 0.3s; }
    .searchBlock .selectric .button::after {
      display: none; }
.searchBlock .selectric-items {
  background-color: white;
  border: none;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04); }
  .searchBlock .selectric-items li {
    font-size: 16px;
    line-height: 18px;
    color: #1A1A1A;
    font-weight: normal;
    text-align: left;
    background-color: transparent;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s; }
    .searchBlock .selectric-items li:hover {
      background-color: rgba(0, 0, 0, 0.1); }
.searchBlock .searchField {
  display: flex; }
  .searchBlock .searchField .fieldWrap {
    position: relative; }
  .searchBlock .searchField input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    font-family: "Ubuntu";
    font-size: 16px;
    color: #1A1A1A;
    font-weight: normal;
    background-color: #F2F2F2;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
    -webkit-transition: background-color 0.3s, border-top 0.3s, border-bottom 0.3s, border-left 0.3s;
    -moz-transition: background-color 0.3s, border-top 0.3s, border-bottom 0.3s, border-left 0.3s;
    -o-transition: background-color 0.3s, border-top 0.3s, border-bottom 0.3s, border-left 0.3s;
    transition: background-color 0.3s, border-top 0.3s, border-bottom 0.3s, border-left 0.3s; }
    .searchBlock .searchField input:focus {
      background-color: white;
      border-left: 0px solid transparent;
      border-right: 0px solid transparent;
      border-top: 1px solid #1A1A1A;
      border-bottom: 1px solid #1A1A1A;
      border-color: #1A1A1A !important; }
    .searchBlock .searchField input::placeholder {
      color: #828282;
      opacity: 1; }
    .searchBlock .searchField input:-ms-input-placeholder {
      color: #828282;
      opacity: 1; }
    .searchBlock .searchField input::-ms-input-placeholder {
      color: #828282;
      opacity: 1; }
    .searchBlock .searchField input::-webkit-input-placeholder {
      color: #828282;
      opacity: 1; }
    .searchBlock .searchField input:-moz-placeholder {
      color: #828282;
      opacity: 1; }
    .searchBlock .searchField input::-moz-placeholder {
      color: #828282;
      opacity: 1; }
.searchBlock.active .searchFilter .selectric {
  background-color: white;
  border: 1px solid #1A1A1A; }
.searchBlock.active .searchField input {
  background-color: white;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A; }
.searchBlock.active .searchField .btnIcon {
  background-color: white;
  border: 1px solid #1A1A1A; }

.mainSearch {
  width: 520px; }
  .mainSearch .searchFilter {
    width: 138px; }
  .mainSearch .selectric {
    height: 40px; }
    .mainSearch .selectric .label {
      line-height: 38px; }
    .mainSearch .selectric .button {
      width: 25px;
      height: 38px;
      right: 12px; }
  .mainSearch .selectric-items li {
    padding: 11px 16px; }
  .mainSearch .searchField {
    width: calc(100% - 138px); }
    .mainSearch .searchField .fieldWrap {
      width: 342px;
      height: 40px; }
    .mainSearch .searchField input {
      height: 40px;
      line-height: 38px; }

.addressSearch {
  width: 628px; }
  .addressSearch .searchFilter {
    width: 126px; }
  .addressSearch .selectric-open .selectric {
    border: 1px solid #BDBDBD;
    border-right: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A; }
  .addressSearch .selectric {
    height: 50px; }
    .addressSearch .selectric .label {
      line-height: 48px; }
    .addressSearch .selectric .button {
      width: 48px;
      height: 48px; }
  .addressSearch .selectric-items li {
    padding: 16px; }
  .addressSearch .searchField {
    width: calc(100% - 126px); }
    .addressSearch .searchField .fieldWrap {
      width: 343px;
      height: 50px; }
    .addressSearch .searchField input {
      height: 50px;
      line-height: 48px; }
      .addressSearch .searchField input:focus {
        border-top: 1px solid #BDBDBD;
        border-bottom: 1px solid #BDBDBD;
        border-color: #BDBDBD !important; }
  .addressSearch.active .searchFilter .selectric {
    border: 1px solid #BDBDBD;
    border-right: 1px solid #1A1A1A; }
  .addressSearch.active .searchField input {
    border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
    border-color: #BDBDBD !important; }

.searchResult {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0px;
  background-color: white;
  border: 1px solid #1A1A1A;
  border-top: none;
  z-index: 2; }
  .searchResult.catalog {
    height: 315px; }
  .searchResult.simple {
    height: 217px;
    padding-top: 16px;
    padding-bottom: 16px; }
  .searchResult.addresses {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 126px;
    border: none;
    border-top: 1px solid #1A1A1A;
    -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04); }

.searchCatalogItem {
  display: flex;
  position: relative;
  z-index: 1; }
  .searchCatalogItem > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap; }
  .searchCatalogItem .image {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .searchCatalogItem .image img {
      width: 100%;
      height: auto; }
  .searchCatalogItem .content {
    flex-grow: 1;
    padding: 16px;
    background-color: transparent;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s; }
    .searchCatalogItem .content .title {
      display: block;
      font-size: 18px;
      line-height: 21px;
      color: #1A1A1A;
      font-weight: 500; }
      .searchCatalogItem .content .title + .subtitle {
        margin-top: 2px; }
    .searchCatalogItem .content .subtitle {
      display: block;
      font-size: 14px;
      line-height: 16px;
      color: #5F5F5F; }
      .searchCatalogItem .content .subtitle + .price {
        margin-top: 9px; }
    .searchCatalogItem .content .price {
      display: flex;
      align-items: center; }
      .searchCatalogItem .content .price .current {
        font-size: 20px;
        line-height: 23px;
        color: #1A1A1A;
        font-weight: bold; }
        .searchCatalogItem .content .price .current + .old {
          margin-left: 16px; }
      .searchCatalogItem .content .price .old {
        font-size: 12px;
        line-height: 25px;
        color: #828282;
        text-decoration: line-through; }
  .searchCatalogItem:hover .content {
    background-color: #F2F2F2; }

.scrollBlock .jspPane {
  width: 100% !important; }
.scrollBlock .jspVerticalBar {
  right: 16px;
  margin-top: 16px;
  height: calc(100% - 16px - 16px);
  overflow: hidden;
  z-index: 5; }
.scrollBlock .jspTrack {
  margin-left: 1px;
  background-color: #BDBDBD; }
.scrollBlock .jspDrag {
  background-color: #828282; }

.searchSimpleItem {
  padding: 8px 0px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  .searchSimpleItem > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap; }
  .searchSimpleItem .section {
    display: block;
    width: 140px;
    padding: 0px 16px;
    font-size: 14px;
    line-height: 16px;
    color: #5F5F5F; }
  .searchSimpleItem .title {
    display: block;
    flex-grow: 1;
    padding: 0px 16px;
    font-size: 18px;
    line-height: 21px;
    color: #BDBDBD;
    font-weight: 500; }
    .searchSimpleItem .title b {
      font-weight: 500;
      color: #1A1A1A; }
  .searchSimpleItem:hover {
    background-color: #F2F2F2; }

.searchAddressItem {
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  .searchAddressItem span {
    display: block;
    padding: 11px 16px;
    font-size: 16px;
    line-height: 18px;
    color: #BDBDBD;
    font-weight: normal;
    cursor: pointer; }
    .searchAddressItem span b {
      color: #1A1A1A; }
  .searchAddressItem:hover {
    background-color: #F2F2F2; }

[class*="inBlock"][class*="Type1"] input {
  width: 100%;
  padding: 0px 16px;
  height: 50px;
  font-family: "Ubuntu";
  font-size: 16px;
  line-height: 48px;
  color: #BDBDBD;
  background-color: #333333;
  border: 1px solid #828282; }
  [class*="inBlock"][class*="Type1"] input::placeholder {
    color: #BDBDBD;
    opacity: 1; }
  [class*="inBlock"][class*="Type1"] input:-ms-input-placeholder {
    color: #BDBDBD;
    opacity: 1; }
  [class*="inBlock"][class*="Type1"] input::-ms-input-placeholder {
    color: #BDBDBD;
    opacity: 1; }
  [class*="inBlock"][class*="Type1"] input::-webkit-input-placeholder {
    color: #BDBDBD;
    opacity: 1; }
  [class*="inBlock"][class*="Type1"] input:-moz-placeholder {
    color: #BDBDBD;
    opacity: 1; }
  [class*="inBlock"][class*="Type1"] input::-moz-placeholder {
    color: #BDBDBD;
    opacity: 1; }

.mainPageWrapper .bodyWrap {
  overflow: hidden; }

.sliderBlock .owl-nav .owl-prev,
.sliderBlock .owl-nav .owl-next {
  width: 50px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer; }
  .sliderBlock .owl-nav .owl-prev [class*="icon"],
  .sliderBlock .owl-nav .owl-next [class*="icon"] {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #1A1A1A; }
    .sliderBlock .owl-nav .owl-prev [class*="icon"]:hover,
    .sliderBlock .owl-nav .owl-next [class*="icon"]:hover {
      color: #1A1A1A; }
  .sliderBlock .owl-nav .owl-prev:hover,
  .sliderBlock .owl-nav .owl-next:hover {
    background-color: #F2F2F2; }
.sliderBlock .owl-dots .owl-dot {
  margin: 0px;
  width: 10px;
  height: 10px;
  background-color: white;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  .sliderBlock .owl-dots .owl-dot span {
    display: none; }
  .sliderBlock .owl-dots .owl-dot:hover, .sliderBlock .owl-dots .owl-dot.active {
    background-color: #C42128; }
  .sliderBlock .owl-dots .owl-dot + .owl-dot {
    margin-left: 20px; }

.bannerSlider .item {
  height: 600px; }
  .bannerSlider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
.bannerSlider .owl-nav .owl-prev,
.bannerSlider .owl-nav .owl-next {
  margin-top: -50px; }
.bannerSlider .owl-dots {
  bottom: 27px; }

.popularSection {
  padding-top: 88px;
  padding-bottom: 68px; }
  .popularSection .captionBlock {
    text-align: center; }
    .popularSection .captionBlock + .contentBlock {
      margin-top: 38px; }

.productSlider .sliderBlock {
  padding-left: 100px;
  padding-right: 110px; }
.productSlider .owl-item {
  height: 372px; }
  .productSlider .owl-item .item {
    margin-left: auto;
    margin-right: auto; }
.productSlider .owl-nav .owl-prev,
.productSlider .owl-nav .owl-next {
  margin-top: -80px;
  border: 1px solid #E0E0E0; }
.productSlider .owl-dots {
  bottom: -20px; }
  .productSlider .owl-dots .owl-dot {
    background-color: #E0E0E0; }

.productsList .item {
  width: 250px; }
  .productsList .item .in {
    position: relative;
    padding-bottom: 0px; }
  .productsList .item .badge {
    position: absolute !important;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    background-color: #BF4E46;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    z-index: 7 !important; }
    .productsList .item .badge span {
      font-size: 12px;
      line-height: 14px;
      color: white;
      font-weight: normal;
      text-transform: uppercase; }
  .productsList .item .image ul li {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .productsList .item .inner {
    padding: 16px 20px 20px; }
  .productsList .item .cap {
    line-height: 21px;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .productsList .item .cap + .at {
      margin-top: 4px; }
  .productsList .item .at {
    line-height: 16px; }
    .productsList .item .at a {
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
    .productsList .item .at + .price_sku {
      margin-top: 8px; }
  .productsList .item .price_sku .active {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
  .productsList .item .price_sku .cost {
    margin-top: 0px;
    line-height: 23px; }
  .productsList .item .price_sku .old {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #828282;
    text-decoration: line-through; }
  .productsList .item .actButt {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid #d8d8d8;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .productsList .item .actButt:hover {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
      border: 1px solid #1A1A1A; }

.sliderTemplate {
  width: 844px; }
  .sliderTemplate .owl-stage-outer {
    overflow: unset;
    height: auto !important; }
  .sliderTemplate .owl-item {
    -webkit-transition: filter 0.3s, opacity 0.3s;
    -moz-transition: filter 0.3s, opacity 0.3s;
    -o-transition: filter 0.3s, opacity 0.3s;
    transition: filter 0.3s, opacity 0.3s; }
    .sliderTemplate .owl-item:not(.active) {
      -webkit-filter: grayscale(100%);
      -moz-filter: grayscale(100%);
      -ms-filter: grayscale(100%);
      -o-filter: grayscale(100%);
      opacity: 0.25; }
      .sliderTemplate .owl-item:not(.active) .item .content {
        opacity: 0; }
    .sliderTemplate .owl-item.active {
      z-index: 5; }
  .sliderTemplate .item {
    position: relative;
    height: 480px; }
    .sliderTemplate .item img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .sliderTemplate .item .content {
      padding: 48px;
      position: absolute;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      width: 470px;
      height: calc(100% - 90px);
      top: 45px;
      opacity: 1;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .sliderTemplate .item .content .subtitle + .title {
        margin-top: 10px; }
      .sliderTemplate .item .content .title + [class*="btn"] {
        margin-top: 40px; }
      .sliderTemplate .item .content::before, .sliderTemplate .item .content::after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        height: 5px; }
      .sliderTemplate .item .content::before {
        width: 100%; }
      .sliderTemplate .item .content::after {
        width: 111px; }
  .sliderTemplate .owl-nav {
    position: absolute;
    display: flex;
    top: 50%;
    margin-top: -35px; }
    .sliderTemplate .owl-nav .owl-prev,
    .sliderTemplate .owl-nav .owl-next {
      position: relative;
      flex-shrink: 0; }
    .sliderTemplate .owl-nav .owl-next {
      border-left: 1px solid #E0E0E0; }
  .sliderTemplate .owl-dots {
    bottom: 30px; }
  .sliderTemplate.right {
    margin-left: auto; }
    .sliderTemplate.right .item .content {
      padding-right: 58px;
      right: calc(100% - 38px); }
    .sliderTemplate.right .owl-nav {
      left: -12px; }
  .sliderTemplate.left {
    margin-right: auto; }
    .sliderTemplate.left .item .content {
      padding-left: 68px;
      left: calc(100% - 38px); }
    .sliderTemplate.left .owl-nav {
      right: -12px; }

.collectionsSlider .sliderBlock .item .content {
  background-color: #C42128; }
  .collectionsSlider .sliderBlock .item .content .subtitle {
    display: block;
    font-size: 16px;
    line-height: 18px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5; }
  .collectionsSlider .sliderBlock .item .content .title {
    display: block;
    font-size: 64px;
    line-height: 74px;
    color: white;
    font-weight: bold; }
  .collectionsSlider .sliderBlock .item .content::before {
    background-color: white;
    opacity: 0.5; }
  .collectionsSlider .sliderBlock .item .content::after {
    background-color: #1A1A1A; }

.blogSlider .sliderBlock .item .content {
  background-color: #1A1A1A; }
  .blogSlider .sliderBlock .item .content .subtitle {
    display: block;
    font-size: 16px;
    line-height: 18px;
    color: #828282;
    font-weight: 500;
    text-transform: uppercase; }
  .blogSlider .sliderBlock .item .content .title {
    display: block;
    font-size: 32px;
    line-height: 37px;
    color: white;
    font-weight: bold; }
  .blogSlider .sliderBlock .item .content::before {
    background-color: white;
    opacity: 0.3; }
  .blogSlider .sliderBlock .item .content::after {
    background-color: #C42128; }

.addressesSection {
  padding-top: 88px;
  padding-bottom: 88px; }
  .addressesSection .mapInfo {
    position: relative;
    z-index: 1; }
  .addressesSection .mapBlock {
    margin-top: -98px; }

.mapInfo {
  padding: 48px;
  max-width: 844px;
  margin-left: auto;
  margin-right: auto;
  background-color: #1A1A1A; }
  .mapInfo .info {
    max-width: 628px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; }
    .mapInfo .info .title {
      display: block;
      font-size: 46px;
      line-height: 53px;
      color: white;
      font-weight: bold; }
      .mapInfo .info .title + p {
        margin-top: 16px; }
    .mapInfo .info p {
      font-size: 16px;
      line-height: 18px;
      color: #E0E0E0;
      font-weight: normal; }
    .mapInfo .info + .search {
      margin-top: 32px; }
  .mapInfo .search {
    margin-left: auto;
    margin-right: auto; }

.mapBlock {
  position: relative;
  height: 500px; }
  .mapBlock iframe {
    position: absolute;
    width: 100%;
    height: 100%; }

.aboutSection {
  padding-top: 88px;
  padding-bottom: 88px; }
  .aboutSection .wrapper {
    max-width: 628px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; }
  .aboutSection .title {
    display: block;
    font-size: 46px;
    line-height: 53px;
    color: #C42128;
    font-weight: bold;
    text-transform: uppercase; }
    .aboutSection .title + .info {
      margin-top: 24px; }
  .aboutSection .info {
    font-size: 16px;
    line-height: 140%;
    color: #4F4F4F; }
    .aboutSection .info + [class*="btn"] {
      margin-top: 40px; }

.sectionCaption {
  display: block;
  font-size: 46px;
  line-height: 53px;
  color: #1A1A1A;
  font-weight: bold;
  letter-spacing: bold; }
  @media (max-width: 991px) {
    .sectionCaption {
      font-size: 40px;
      line-height: 47px; } }
  @media (max-width: 767px) {
    .sectionCaption {
      font-size: 30px;
      line-height: 37px; } }

footer {
  padding-top: 64px;
  padding-bottom: 59px;
  background-color: #1A1A1A; }
  footer .footMenu + .footInfo {
    margin-top: 18px; }

.footMenu {
  display: flex;
  justify-content: space-between; }
  .footMenu .col {
    width: 25%; }
  .footMenu .footMenuList + .footMenuList {
    margin-top: 40px; }

.footMenuList .title {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #9D9D9D;
  text-transform: uppercase; }
  .footMenuList .title + ul {
    margin-top: 14px; }
.footMenuList ul li {
  line-height: 15px; }
  .footMenuList ul li a {
    display: inline-block;
    font-size: 13px;
    line-height: 15px;
    color: white;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }
    .footMenuList ul li a:hover {
      color: white !important;
      opacity: 0.7; }
  .footMenuList ul li + li {
    margin-top: 11px; }

.subscribeForm {
  max-width: 304px;
  margin-left: auto; }
  .subscribeForm .title {
    display: block;
    font-size: 20px;
    line-height: 23px;
    color: white;
    font-weight: bold; }
    .subscribeForm .title + .formWrap {
      margin-top: 32px; }
  .subscribeForm [class*="inBlock"] + [class*="btn"] {
    margin-top: 16px; }

.copyright {
  padding-bottom: 5px; }
  .copyright p {
    font-size: 13px;
    line-height: 15px;
    color: white; }
    .copyright p a {
      color: #C42128;
      opacity: 1;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .copyright p a:hover {
        color: #C42128 !important;
        opacity: 0.7; }

.footInfo {
  display: flex;
  justify-content: space-between; }
  .footInfo .copyright {
    align-self: flex-end; }
  .footInfo .footContacts {
    padding-left: 125px; }
  .footInfo .socList + .dev {
    margin-top: 48px; }
  .footInfo .dev {
    display: block;
    font-size: 11px;
    line-height: 13px;
    color: #9D9D9D;
    text-align: right; }

.footContacts {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .footContacts .title {
    display: block;
    font-size: 13px;
    line-height: 15px;
    color: #9D9D9D; }
    .footContacts .title + ul {
      margin-top: 8px; }
  .footContacts ul li a {
    font-size: 16px;
    line-height: 18px;
    color: white;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }
    .footContacts ul li a:hover {
      color: white !important;
      opacity: 0.7; }
  .footContacts ul + .callLink {
    margin-top: 5px; }
  .footContacts .callLink {
    display: table;
    padding-bottom: 4px;
    font-size: 13px;
    line-height: 15px;
    color: #C42128;
    border-bottom: 1px solid #C42128;
    -webkit-transition: border-bottom 0.3s;
    -moz-transition: border-bottom 0.3s;
    -o-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s; }
    .footContacts .callLink:hover {
      color: #C42128 !important;
      border-bottom: 1px solid transparent !important; }

.socList {
  display: flex;
  align-items: center; }
  .socList .title {
    display: block;
    font-size: 11px;
    line-height: 13px;
    color: #9D9D9D; }
    .socList .title + ul {
      margin-left: 18px; }
  .socList ul {
    display: flex; }
    .socList ul li {
      font-size: 29px;
      position: relative;
      z-index: 1;
      opacity: 1;
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .socList ul li > a {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 7;
        overflow: hidden;
        text-indent: 200%;
        white-space: nowrap; }
      .socList ul li [class*="icon"] {
        position: relative; }
        .socList ul li [class*="icon"] .path2 {
          display: block;
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%; }
          .socList ul li [class*="icon"] .path2::before {
            margin: 0px; }
      .socList ul li:hover {
        opacity: 0.7; }
      .socList ul li + li {
        margin-left: 12px; }

@media (max-width: 1329px) {
  .mainPageWrapper .container {
    width: 1200px; }

  header .headWrapper {
    width: calc(100% - 105px); }

  .headContacts .headContactsList + .orderCallBtn {
    margin-left: 15px; }

  .productSlider .sliderBlock {
    padding-left: 50px;
    padding-right: 50px; }

  .sliderTemplate {
    width: 768px; }
    .sliderTemplate .item {
      height: 454px; }
      .sliderTemplate .item .content {
        padding: 35px;
        width: 475px; }
    .sliderTemplate.right .item .content {
      padding-right: 90px; }
    .sliderTemplate.left .item .content {
      padding-left: 90px; }

  .footMenu .col {
    width: auto; }

  .footInfo .footContacts {
    padding-left: 80px; } }
@media (min-width: 1200px) {
  .headMenu .menuListWrapper {
    display: block !important; }

  .mainSearch .searchWrapper {
    display: block !important; } }
@media (max-width: 1199px) {
  .mainPageWrapper .container {
    width: 970px; }

  header {
    padding: 10px 0px; }
    header .headWrapper {
      width: auto;
      padding-top: 0px;
      margin-right: -5px;
      display: flex;
      justify-content: flex-end; }

  .siteLogo {
    width: 68px; }

  .headInfo + .headMenu {
    margin-top: 0px;
    margin-left: 15px; }

  .headInfoNav {
    display: none; }

  .headContacts .headContactsList + .orderCallBtn {
    margin-left: 0px; }

  .headContactsList {
    display: none; }

  .orderCallBtn [class*="icon"] {
    display: block; }
  .orderCallBtn .text {
    display: none; }

  .headMenu {
    flex-direction: row-reverse;
    align-items: center; }
    .headMenu .openMenuBtn {
      display: block;
      margin-left: 15px; }
    .headMenu .closeMenuBtn {
      display: block;
      position: absolute;
      top: -50px;
      right: 0px; }
    .headMenu .menuListWrapper {
      display: none;
      position: fixed;
      padding: 70px 15px;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100vh;
      background-color: white;
      z-index: 15;
      overflow: scroll; }

  .mobileInfoNav {
    display: block;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px; }
    .mobileInfoNav li a {
      display: block;
      padding-left: 10px;
      font-size: 14px;
      line-height: 28px;
      color: #C42128; }

  .menuList {
    position: relative;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    display: block; }
    .menuList > li {
      background-color: transparent;
      -webkit-transition: background-color 0.3s;
      -moz-transition: background-color 0.3s;
      -o-transition: background-color 0.3s;
      transition: background-color 0.3s; }
      .menuList > li > .in {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        .menuList > li > .in > a {
          flex-grow: 1;
          padding-bottom: 0px;
          padding-left: 10px;
          line-height: 38px; }
          .menuList > li > .in > a::before {
            display: none; }
        .menuList > li > .in > .smMenu {
          padding: 10px;
          display: block;
          font-weight: bold;
          -moz-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          -webkit-transform: rotate(90deg);
          -o-transform: rotate(90deg);
          transform: rotate(90deg);
          opacity: 1;
          -webkit-transition: opacity 0.3s, transform 0.3s;
          -moz-transition: opacity 0.3s, transform 0.3s;
          -o-transition: opacity 0.3s, transform 0.3s;
          transition: opacity 0.3s, transform 0.3s;
          cursor: pointer; }
      .menuList > li:hover, .menuList > li.active {
        background-color: #F2F2F2; }
      .menuList > li:hover > .in > .smMenu {
        opacity: 0.7; }
      .menuList > li.active > .in > .smMenu {
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg); }
      .menuList > li + li {
        margin-top: 15px;
        margin-left: 0px; }
    .menuList .dropdownMenu {
      position: static;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 10px;
      padding-right: 10px;
      background-color: white; }
      .menuList .dropdownMenu .img {
        display: none; }
      .menuList .dropdownMenu .dropdownMenuInner {
        min-width: auto;
        min-height: auto;
        display: block; }
      .menuList .dropdownMenu ul {
        min-width: auto;
        padding-top: 0px;
        padding-bottom: 0px;
        background-color: transparent; }
        .menuList .dropdownMenu ul li {
          padding-left: 0px;
          padding-right: 0px; }
          .menuList .dropdownMenu ul li [class*="icon"] {
            padding: 15px;
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform: rotate(90deg);
            opacity: 1;
            -webkit-transition: opacity 0.3s, transform 0.3s;
            -moz-transition: opacity 0.3s, transform 0.3s;
            -o-transition: opacity 0.3s, transform 0.3s;
            transition: opacity 0.3s, transform 0.3s;
            cursor: pointer; }
          .menuList .dropdownMenu ul li:hover > .in > .smMenu {
            opacity: 0.7; }
          .menuList .dropdownMenu ul li.active > .in > .smMenu {
            -moz-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
            -webkit-transform: rotate(270deg);
            -o-transform: rotate(270deg);
            transform: rotate(270deg); }
      .menuList .dropdownMenu.first {
        padding-right: 10px; }
      .menuList .dropdownMenu.inner {
        position: static;
        border-left: none; }
  .columnMenu{
    box-shadow: none;
  }
  .columnMenu ul {
    display: block;  }
  .columnMenu ul li {
    min-width: 220px; }

  .mainSearch {
    width: auto; }
    .mainSearch .openSearchBtn {
      display: block;
      position: static; }
    .mainSearch .searchWrapper {
      display: none;
      position: fixed;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100vh;
      background-color: rgba(255, 255, 255, 0.8);
      z-index: 7;
      overflow: scroll; }
      .mainSearch .searchWrapper .wrap {
        padding: 100px 15px;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center; }
      .mainSearch .searchWrapper .inner {
        position: relative;
        width: 100%;
        padding: 30px;
        background-color: white; }
      .mainSearch .searchWrapper .closeSearchBtn {
        display: block;
        position: absolute;
        bottom: 100%;
        left: 100%; }
    .mainSearch .searchResult {
      width: calc(100% - 60px) !important;
      top: calc(100% - 30px);
      left: 0px;
      right: 0px;
      margin: 0px auto; }

  .searchResult .jspContainer {
    width: 100% !important;
    overflow: scroll; }

  .bannerSlider .item {
    height: 450px; }

  .popularSection {
    padding-top: 50px;
    padding-bottom: 50px; }

  .productSlider .owl-item {
    height: 342px; }

  .sliderTemplate {
    width: 620px; }
    .sliderTemplate .owl-nav .owl-prev,
    .sliderTemplate .owl-nav .owl-next {
      width: 40px;
      height: 80px; }
    .sliderTemplate .owl-dots {
      bottom: 20px; }
    .sliderTemplate .item {
      height: 270px; }
      .sliderTemplate .item .content {
        padding: 20px;
        width: 355px;
        height: calc(100% - 40px);
        top: 20px; }
        .sliderTemplate .item .content br {
          display: none; }
    .sliderTemplate.right .owl-nav {
      left: -2px; }
    .sliderTemplate.right .item .content {
      padding-right: 60px; }
    .sliderTemplate.left .owl-nav {
      right: -2px; }
    .sliderTemplate.left .item .content {
      padding-left: 60px; }

  .collectionsSlider .sliderBlock .item .content .subtitle {
    font-size: 14px; }
    .collectionsSlider .sliderBlock .item .content .subtitle + .title {
      margin-top: 10px; }
  .collectionsSlider .sliderBlock .item .content .title {
    font-size: 40px;
    line-height: 42px; }
    .collectionsSlider .sliderBlock .item .content .title + [class*="btn"] {
      margin-top: 27px; }

  .blogSlider .sliderBlock .item .content {
    padding-top: 20px; }
    .blogSlider .sliderBlock .item .content .subtitle {
      font-size: 14px; }
      .blogSlider .sliderBlock .item .content .subtitle + .title {
        margin-top: 10px; }
    .blogSlider .sliderBlock .item .content .title {
      font-size: 26px;
      line-height: 28px; }
      .blogSlider .sliderBlock .item .content .title + [class*="btn"] {
        margin-top: 27px; }

  .addressesSection {
    padding-top: 50px;
    padding-bottom: 50px; }
    .addressesSection .mapBlock {
      margin-top: -60px; }

  .mapInfo {
    padding: 35px; }

  .mapBlock {
    height: 450px; }

  .aboutSection {
    padding-top: 50px;
    padding-bottom: 50px; }

  footer {
    padding-top: 40px;
    padding-bottom: 40px; }

  .footMenu {
    flex-wrap: wrap; }
    .footMenu .col {
      flex-grow: 1; }
      .footMenu .col:last-child {
        width: 100%;
        margin-top: 30px; }

  .subscribeForm {
    margin-left: 0px; } }
@media (max-width: 991px) {
  .mainPageWrapper .container {
    width: 750px; }

  .bannerSlider .item {
    height: 350px; }

  .popularSection {
    padding-top: 30px;
    padding-bottom: 30px; }

  .productSlider .owl-item {
    height: 333px; }

  .sliderTemplate {
    width: 100%; }
    .sliderTemplate .owl-item:not(.active) .item .content {
      opacity: 1; }
    .sliderTemplate .owl-nav .owl-prev {
      left: 0px;
      margin-top: 0px; }
    .sliderTemplate .owl-nav .owl-next {
      right: 0px;
      margin-top: 0px; }
    .sliderTemplate .item {
      display: flex;
      height: 253px; }
      .sliderTemplate .item img {
        width: 453px;
        height: auto; }
      .sliderTemplate .item .content {
        position: relative;
        padding: 15px;
        width: calc(100% - 453px);
        height: 100%; }
    .sliderTemplate.right .owl-nav {
      left: 226px; }
    .sliderTemplate.right .owl-dots {
      padding-left: 267px; }
    .sliderTemplate.right .item {
      flex-direction: row-reverse; }
      .sliderTemplate.right .item .content {
        padding-right: 50px;
        top: 0px;
        right: 0px;
        left: 0px;
        bottom: 0px; }
    .sliderTemplate.left .owl-nav {
      right: 226px; }
    .sliderTemplate.left .owl-dots {
      padding-right: 267px; }
    .sliderTemplate.left .item .content {
      padding-left: 55px;
      padding-top: 15px;
      top: 0px;
      right: 0px;
      left: 0px;
      bottom: 0px; }

  .collectionsSlider .sliderBlock .item .content .title {
    font-size: 35px;
    line-height: 37px; }
    .collectionsSlider .sliderBlock .item .content .title + [class*="btn"] {
      margin-top: 20px; }

  .addressesSection {
    padding-top: 30px;
    padding-bottom: 30px; }
    .addressesSection .mapBlock {
      margin-top: 15px; }

  .mapInfo {
    padding: 25px; }

  .mapBlock {
    height: 350px; }

  .blogSlider .sliderBlock .item .content .title {
    font-size: 22px;
    line-height: 24px; }
    .blogSlider .sliderBlock .item .content .title + [class*="btn"] {
      margin-top: 20px; }

  .aboutSection {
    padding-top: 30px;
    padding-bottom: 30px; }
    .aboutSection .title {
      font-size: 40px;
      line-height: 47px; }
      .aboutSection .title + .info {
        margin-top: 15px; }
    .aboutSection .info + [class*="btn"] {
      margin-top: 20px; }

  .footMenu .col:not(:last-child) {
    width: 33.3333%;
    flex-shrink: 0; }

  .footInfo {
    align-items: flex-end; }
    .footInfo .footContacts {
      padding-left: 0px; }
    .footInfo .socList + .dev {
      margin-top: 28px; }

  .socList {
    display: block; }
    .socList .title {
      text-align: right; }
      .socList .title + ul {
        margin-top: 10px;
        margin-left: 0px; }
    .socList ul {
      justify-content: flex-end; } }
@media (min-width: 768px) {
  .footMenuList ul {
    display: block !important; } }
@media (max-width: 767px) {
  .mainPageWrapper .container {
    max-width: 400px;
    width: 100%; }

  .siteLogo {
    width: 45px; }

  .headInfo + .headMenu {
    margin-left: 0px; }

  .headMenu .openMenuBtn {
    margin-left: 0px; }

  .mobileInfoNav,
  .menuList {
    max-width: 400px; }

  .searchBlock .inner {
    flex-direction: column; }
    .searchBlock .inner .searchFilter {
      width: 100%; }
    .searchBlock .inner .searchField {
      width: 100%; }
      .searchBlock .inner .searchField [class*="btn"] {
        width: 40px;
        flex-shrink: 0; }
        .searchBlock .inner .searchField [class*="btn"] .text {
          display: none; }

  .mainSearch .searchWrapper .wrap {
    max-width: 400px; }
  .mainSearch .searchWrapper .inner {
    padding: 15px; }
  .mainSearch .searchWrapper .closeSearchBtn {
    left: auto;
    right: 0px; }
  .mainSearch .searchFilter .selectric {
    border-bottom: none !important; }
  .mainSearch .searchFilter .selectric-items {
    border-top: 1px solid #1A1A1A; }
  .mainSearch .searchField input {
    border-left: 1px solid #BDBDBD; }
    .mainSearch .searchField input::focus {
      border-left: 1px solid #1A1A1A; }
  .mainSearch.active .searchField input {
    border-left: 1px solid #1A1A1A; }
  .mainSearch .searchResult {
    width: calc(100% - 30px) !important;
    top: calc(100% - 15px); }

  .searchResult.catalog {
    height: 280px; }
  .searchResult.simple {
    padding: 5px;
    height: auto; }
  .searchResult.addresses {
    padding: 0px; }

  .searchCatalogItem .image {
    display: none; }
  .searchCatalogItem .content {
    padding: 10px; }

  .searchSimpleItem .section {
    width: auto;
    padding: 0px 5px; }
  .searchSimpleItem .title {
    padding: 0px 5px; }

  .sliderBlock .owl-nav .owl-prev,
  .sliderBlock .owl-nav .owl-next {
    width: 40px;
    height: 80px; }

  .bannerSlider .item {
    height: 270px; }
  .bannerSlider .owl-nav {
    display: none; }
    .bannerSlider .owl-nav .owl-prev,
    .bannerSlider .owl-nav .owl-next {
      margin-top: -40px; }
  .bannerSlider .owl-dots {
    bottom: 15px; }

  .productSlider .sliderBlock {
    padding-left: 20px;
    padding-right: 20px; }
    .productSlider .sliderBlock .owl-dots {
      display: none !important; }

  .productsList {
    padding-bottom: 0px; }
    .productsList .item .image {
      height: 160px;
      position: relative;
      z-index: 1; }
      .productsList .item .image > a {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 7;
        overflow: hidden;
        text-indent: 200%;
        white-space: nowrap; }

  .sliderTemplate .owl-nav {
    display: none;
    top: auto;
    margin-top: 0px;
    bottom: 170px; }
    .sliderTemplate .owl-nav .owl-prev,
    .sliderTemplate .owl-nav .owl-next {
      width: 30px;
      height: 60px; }
  .sliderTemplate .item {
    height: auto;
    flex-direction: column-reverse !important; }
    .sliderTemplate .item img {
      width: 100%;
      height: 200px; }
    .sliderTemplate .item .content {
      width: 100%;
      padding: 20px !important; }
  .sliderTemplate.right .owl-nav {
    left: auto;
    right: -1px; }
  .sliderTemplate.right .owl-dots {
    padding-left: 0px; }
  .sliderTemplate.left .owl-nav {
    right: -1px; }
  .sliderTemplate.left .owl-dots {
    padding-right: 0px; }

  .mapInfo {
    padding: 15px; }
    .mapInfo .info .title {
      font-size: 30px;
      line-height: 37px; }
    .mapInfo .info p {
      font-size: 14px;
      line-height: 16px; }
    .mapInfo .info + .search {
      margin-top: 15px; }

  .addressSearch {
    width: 100%; }
    .addressSearch .searchFilter .selectric {
      border-bottom: none !important; }
    .addressSearch .searchFilter .selectric-items {
      border-top: 1px solid #1A1A1A; }
    .addressSearch .selectric-open .selectric {
      border-right: 1px solid #BDBDBD; }
    .addressSearch.active .searchFilter .selectric {
      border-right: 1px solid #BDBDBD; }

  .mapBlock {
    height: 270px; }

  .aboutSection .title {
    font-size: 30px;
    line-height: 37px; }
  .aboutSection .info {
    font-size: 14px;
    line-height: 16px; }

  footer {
    padding: 30px 0px; }
    footer .footMenu + .footInfo {
      margin-top: 30px; }

  .footMenu {
    flex-direction: column;
    align-items: center; }
    .footMenu .footMenuList + .footMenuList {
      margin-top: 20px; }
    .footMenu .col {
      width: auto !important; }
      .footMenu .col + .col {
        margin-top: 20px; }
      .footMenu .col:last-child {
        margin-top: 30px; }

  .footMenuList {
    text-align: center; }
    .footMenuList .title {
      text-decoration: underline;
      text-decoration-color: #9D9D9D;
      cursor: pointer; }
      .footMenuList .title:hover, .footMenuList .title.active {
        text-decoration-color: transparent; }
      .footMenuList .title + ul {
        margin-top: 0px;
        padding-top: 14px; }
    .footMenuList ul {
      display: none; }

  .subscribeForm .title {
    text-align: center; }
    .subscribeForm .title br {
      display: none; }
    .subscribeForm .title + .formWrap {
      margin-top: 15px; }

  .footInfo {
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .footInfo .copyright {
      align-self: center; }
      .footInfo .copyright + .footContacts {
        margin-top: 15px; }
    .footInfo .footContacts + .footLinks {
      margin-top: 15px; }

  .footLinks .socList .title {
    text-align: center; }
  .footLinks .socList ul {
    justify-content: center; }
  .footLinks .socList + .dev {
    margin-top: 15px; }
  .footLinks .dev {
    text-align: center; } }
@media (max-width: 451px) {
  .productSlider .owl-item {
    height: auto; } }

/*# sourceMappingURL=style.css.map */
