.categories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.categories > article {
  border: 1px solid #e3dfe5;    
  transition: all ease 0.3s;
  margin-left: -1px;
  margin-top: -1px;
}

.categories > article:hover {
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.categories-image-anchor {
  overflow: hidden;
  max-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.categories-image {
  display: block;
  transition: all ease 0.3s;
  transform: scale(1.1);
}

.categories-image-anchor:hover .categories-image {
  transform: scale(1.0);
}

.content h2.categories-title {
  display: block;
  padding: 15px 20px 15px 20px;  
  margin: 0;
}

.categories-title-anchor {
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  font-size: 18px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  transition: all ease 0.3s;
}

.categories-title-anchor:hover {
  color: #1d3e93;
}

@media (max-width: 1024px) {
  .categories {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .categories {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .categories {
    grid-template-columns: 1fr;
  }
}
/******************************/

.slideshow {
  width: 100%;
  display: flex;
  align-items: center;
}

.slideshow-slides {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slideshow-slide {
  display: block;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.slideshow-link {
  display: block;
}

.slideshow-image {
  display: block;
  max-width: 100%;
  min-width: 100%;
}

.slideshow-text {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 20%;
  color: #fff;
}

.slideshow-text b {
  display: inline-block;
  color: #fff;
  font-family: 'MuseoSansCyrl-900';
  font-size: 50px;
}

.slideshow-text a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background: #1d3e93;
  font-family: 'MuseoSansCyrl-100';
  font-size: 24px;
}

.slideshow-prev {
  position: absolute;
  left: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-left.png) center center no-repeat;
  background-size: auto 24px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
}

.slideshow-next {
  position: absolute;
  right: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-right.png) center center no-repeat;
  background-size: auto 24px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
}

.slideshow-selector {
  width: 100%;
  z-index: 1;
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.slideshow-selector a {
  display: inline-block;
  margin: 0 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e3dfe5;
  background: #fff;
  transition: all ease 0.3s;
}

.slideshow-selector a.active,
.slideshow-selector a:hover {
  background: #1d3e93;
  border: 2px solid #1d3e93;
}

@media (max-width: 1024px) {
  .slideshow-text b {
    font-size: 30px;
    line-height: 1;
  }
  .slideshow-text a {
    font-size: 18px;
    padding: 5px 10px;
  }
}

@media (max-width: 768px) {
  .slideshow-text {
    left: 10%;
    top: 10%;
    line-height: 1;
  }
  .slideshow-text b {
    font-size: 24px;
  }
  .slideshow-text a {
    font-size: 14px;
  }
  .slideshow-next,
  .slideshow-prev {
    display: none;
  }
  .slideshow-selector {
    display: flex;
  }
}

/******************************/

.perks-wrapper {
  position: relative;
  transform: translateY(-50%);
  padding: 0px 20px;
}

.perks {
  max-width: 1240px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e3dfe5;
  padding: 20px;
  box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.6);
  display: flex;
  z-index: 1;
  position: relative;
}

.perks > div {
  padding-left: 110px;
  padding-right: 30px;
  font-size: 13px;
  color: #808080;
  border-right: 1px solid #e3dfe5;
}

.perks-title {
  font-family: 'MuseoSansCyrl-900';
  color: #0b162b;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.perks > div:nth-child(1) {
  background: url(../img/perks-1.png) 30px 50% no-repeat;
  background-size: 50px auto;
}

.perks > div:nth-child(2) {
  background: url(../img/perks-2.png) 30px 50% no-repeat;
  background-size: 50px auto;
}

.perks > div:nth-child(3) {
  background: url(../img/perks-3.png) 30px 50% no-repeat;
  background-size: 50px auto;
}

.perks > div:nth-child(4) {
  background: url(../img/perks-4.png) 30px 50% no-repeat;
  background-size: 50px auto;
  border-right: none;
}

@media (max-width: 1280px) {
  .perks-wrapper {
    transform: none;
    margin-top: 30px;
  }
  .perks > div {
    padding-left: 70px;
    padding-right: 20px;
    background-size: 30px auto !important;
    background-position: 20px 50% !important;
  }
}

@media (max-width: 1024px) {
  .perks {
    display: none;
  }
}

/******************************/

.index-collections-wrapper {
  padding: 0px 20px;
}

.index-collections-title {
  text-align: center;
  font-size: 16px;
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  text-transform: uppercase;
  margin: 0px auto 30px auto;
}

.index-collections {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.index-collections > div {
  transition: all ease 0.3s;
  border: 1px solid #e3dfe5;
  margin-left: -1px;
  margin-top: -1px;
}

.index-collections-image {
  overflow: hidden;
  max-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-collections-image img {
  display: inline-block;
  object-fit: cover;
}

.index-collections-class {
  color: #1d3e93;
  font-family: 'MuseoSansCyrl-700';
  font-size: 12px;
  text-decoration: none;
  display: block;
  padding: 15px 20px 15px 20px;
  position: relative;
}

.index-collections-class::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  left: calc(100% - 30px);
  top: calc(50% - 10px);
  background: center center no-repeat;
  background-image: url(../img/icon-arrow-right.png);
  background-size: 10px auto;
  opacity: 0;
  transition: all ease 0.3s;
}

.index-collections-name {
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  font-size: 24px;
  line-height: 1.1;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  min-height: 2em;
}

.index-collections > div:nth-child(2) .index-collections-image,
.index-collections > div:nth-child(4) .index-collections-image {
  max-height: 500px;
}

.index-collections > div:nth-child(2) .index-collections-image img,
.index-collections > div:nth-child(4) .index-collections-image img {
}

.index-collections > div:nth-child(2),
.index-collections > div:nth-child(4) {
  grid-row-end: span 2;
}

.index-collections > div:hover {
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.index-collections > div:hover .index-collections-class::before {
  opacity: 1;
}

@media (max-width: 1280px) {
  .index-collections-wrapper {
    margin-top: 40px;
  }
  .index-collections {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .index-collections > div:nth-child(2),
  .index-collections > div:nth-child(4) {
    grid-row-start: auto;
    grid-row-end: auto;
  }
  .index-collections > div:nth-child(2) .index-collections-image,
  .index-collections > div:nth-child(4) .index-collections-image {
    max-height: 200px;
  }
  .index-collections > div:nth-child(2) .index-collections-image img,
  .index-collections > div:nth-child(4) .index-collections-image img {
  }
}

@media (max-width: 1024px) {
  .index-collections {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .index-collections {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .index-collections {
    grid-template-columns: 1fr;
  }
}

/******************************/

.callback-wrapper {
  background: #f8f9fd;
  margin-top: 70px;
}

.callback {
  min-height: 400px;
  background: url(../img/callback.jpg) 0px 100% no-repeat;
  background-size: auto 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 40%;
  padding-top: 60px;
}

.callback-title {
  font-family: 'MuseoSansCyrl-900';
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
}

.callback-text {
  margin-top: 30px;
  font-size: 14px;
}

.callback-phone-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.callback-phone {
  font-size: 18px;
  color: #000;
}

.callback-phone span {
  display: block;
  font-family: 'MuseoSansCyrl-900';
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
}

.callback-button {
  margin-left: 50px;
}

@media (max-width: 1280px) {
  .callback {
    background-position: -100px 100%;
  }
}

@media (max-width: 768px) {
  .callback {
    background: url(../img/callback-phones.jpg) 0px 0px no-repeat;
    background-size: 50% auto;
    padding: 100px 20px 50px 20px;
  }
  .callback-title {
    text-align: center;
    line-height: 1.3;
  }
  .callback-text {
    text-align: center;
  }
  .callback-phone-wrapper {
    flex-direction: column;
  }
  .callback-phone {
    margin-bottom: 30px;
  }
  .callback-button {
    margin: 0;
  }
}

/******************************/

.index-sale-wrapper {
  margin-top: 70px;
}

.index-sale-title {
  display: block;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'MuseoSansCyrl-900';
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.index-sale {
  max-width: 1240px;
  margin: 0 auto;
}

.index-sale .variants {
  display: flex;
  overflow: hidden;
  position: relative;
  border-right: 1px solid #e3dfe5;
}

.index-sale .variants li {
  width: 25%;
  flex-shrink: 0;
  margin-left: 0px;
  margin-top: 0px;
  border-right: none;
}

@media (max-width: 1024px) {
  .index-sale .variants li {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .index-sale .variants li {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .index-sale .variants li {
    width: 100%;
  }
}



/*******************************/

.interiors-wrapper {
  padding: 0 20px;
  margin-top: 70px;
}

.interiors-title {
  text-align: center;
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  text-transform: uppercase;
  color: #000;
  margin: 0px auto 30px auto;
}

.interiors {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}

.interiors > a {
  width: 25%;
  flex-shrink: 0;
  position: relative;
  color: #fff;
}

.interiors > a > img {
  display: block;
}

.interiors > a > div {
  display: block;
  position: absolute;
  bottom: 0;  
  width: 100%;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

.interiors > a > div > span:first-child {
  font-family: 'MuseoSansCyrl-300';
  font-size: 12px;
  display: block;
}

.interiors > a > div > span:last-child {
  font-family: 'MuseoSansCyrl-900';
  font-size: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .interiors > a {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .interiors > a {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .interiors > a {
    width: 100%;
  }
}

/******************************/

.index-comments-wrapper {
  margin-top: 70px;
}

/******************************/

.index-partners-wrapper {
  margin-top: 70px;
}

.partners-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'MuseoSansCyrl-900';
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
}

.partners-wrapper {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.partners {
  display: flex;
  overflow: hidden;
}

.partners > * {
  width: 16.666%;
  padding: 0 15px;
  flex-shrink: 0;
}

.partners-left {
  flex-shrink: 0;
  left: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-left.png) 12px center no-repeat;
  background-size: auto 24px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
  margin-right: 15px;
}

.partners-right {
  flex-shrink: 0;
  left: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-right.png) 15px center no-repeat;
  background-size: auto 24px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
  margin-left: 15px;
}

@media (max-width: 1280px) {
}

@media (max-width: 1024px) {
  .partners > * {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .partners > * {
    width: 33%;
  }
}

@media (max-width: 480px) {
  .partners > * {
    width: 50%;
  }
}

/******************************/

.index-articles-wrapper {
  padding: 0 20px;
  margin-top: 70px;
}

.index-articles-title {
  text-align: center;
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  text-transform: uppercase;
  margin: 0px auto 30px auto;
}

.index-articles-title a {
  display: block;
  text-decoration: none;
  color: #000;
}

.index-articles {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  border: 1px solid #e3dfe5;
  border-right: none;
}

.index-articles > div {
  width: 25%;
  flex-shrink: 0;
  border-right: 1px solid #e3dfe5;
}

.index-articles > div:last-child {
}

.index-articles-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-articles-image img {
  display: block;
  transform: scale(1.1);
  transition: all ease 0.3s;
}

.index-articles-image:hover img {
  transform: scale(1);
}

.index-articles-anchor {
  font-family: 'MuseoSansCyrl-700';
  font-size: 14px;
  display: block;
  color: #000;
  text-decoration: none;
  padding: 15px 20px 10px 20px;
  transition: all ease 0.3s;
}

.index-articles-anchor:hover {
  color: #1d3e93;
}

.index-articles-text {
  font-family: 'MuseoSansCyrl-300';
  font-size: 13px;
  display: block;
  color: #808080;
  text-decoration: none;
  padding: 0px 20px 20px 20px;
}

.index-articles-all {
  color: #1d3e93;
  border: 2px solid #1d3e93;
  padding: 20px 20px;
  width: 220px;
  display: block;
  text-align: center;
  margin: 30px auto 0 auto;
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .index-articles > div {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .index-articles > div {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .index-articles > div {
    width: 100%;
  }
}

/******************************/

.index-news-wrapper {
  padding: 0 20px;
  margin-top: 70px;
}

.index-news-title {
  text-align: center;
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  text-transform: uppercase;
  margin: 0px auto 30px auto;
}

.index-news-title a {
  display: block;
  text-decoration: none;
  color: #000;
}

.index-news {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  border: 1px solid #e3dfe5;
  border-right: none;
}

.index-news > div {
  width: 25%;
  padding: 20px 25px;
  flex-shrink: 0;
  border-right: 1px solid #e3dfe5;
}

.index-news > div:last-child {
}

.index-news-date {
  font-family: 'MuseoSansCyrl-300';
  color: #808080;
  display: block;
  font-size: 12px;
  padding-left: 20px;
  background: url(../img/icon-date.png) left 2px no-repeat;
  background-size: 13px auto;
}

.index-news-anchor {
  font-family: 'MuseoSansCyrl-700';
  font-size: 14px;
  display: block;
  color: #000;
  text-decoration: none;
  margin-top: 10px;
  transition: all ease 0.3s;
}

.index-news-anchor:hover {
  color: #1d3e93;
}

.index-news-all {
  color: #1d3e93;
  border: 2px solid #1d3e93;
  padding: 20px 20px;
  width: 220px;
  display: block;
  text-align: center;
  margin: 30px auto 0 auto;
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .index-news > div {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .index-news > div {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .index-news > div {
    width: 100%;
  }
}

/******************************/

.scroller-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.scroller-controls a {
  display: inline-block;
  margin: 0 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e3dfe5;
  background: #fff;
  transition: all ease 0.3s;
}

.scroller-controls a.scroller-controls-active {
  background: #1d3e93;
  border: 2px solid #1d3e93;
}

/******************************/

@font-face {
  font-family: 'MuseoSansCyrl-100';
  src: url('../fonts/MuseoSansCyrl-100.woff') format('woff'),
       url('../fonts/MuseoSansCyrl-100.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSansCyrl-300';
  src: url('../fonts/MuseoSansCyrl-300.woff') format('woff'),
       url('../fonts/MuseoSansCyrl-300.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSansCyrl-500';
  src: url('../fonts/MuseoSansCyrl-500.woff') format('woff'),
       url('../fonts/MuseoSansCyrl-500.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSansCyrl-700';
  src: url('../fonts/MuseoSansCyrl-700.woff') format('woff'),
       url('../fonts/MuseoSansCyrl-700.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSansCyrl-900';
  src: url('../fonts/MuseoSansCyrl-900.woff') format('woff'),
       url('../fonts/MuseoSansCyrl-900.ttf') format('truetype');
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'MuseoSansCyrl-300', "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #808080;
  padding-top: 140px;
}

.index body {
  padding-top: 110px;
}

img {
  border: none;
  max-width: 100%;
}

/******************************/

.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  transition: all ease 0.4s;
  background: #fff;
  z-index: 3;
  box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.5);
}

.index .header-wrapper {
  box-shadow: none;
}

.header-wrapper-scrolled {
  box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.5) !important;
  padding: 10px 0;
}

.header {
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/******************************/

.header-logo {
  display: block;
  width: 180px;
  height: 65px;
  background: url(../img/header-logo_rus.png) center center no-repeat;
  background-size: 100% auto;
}

.header-phone > a {
  font-size: 20px;
  display: block;
  font-family: 'MuseoSansCyrl-300';
  text-decoration: none;
  color: #000;
}

.header-phone > span {
  display: block;
  font-size: 12px;
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  margin-top: -3px;
  margin-bottom: 5px;
}

.header-phone-email a {
  display: block;
  font-size: 13px;
  font-family: 'MuseoSansCyrl-900';
  color: #1d3e93;
  text-decoration: none;
}

.header-email {
  display: none;
}

.header-email a {
  display: block;
  font-size: 13px;
  font-family: 'MuseoSansCyrl-900';
  color: #1d3e93;
  text-decoration: none;
}

/******************************/

.header-menu-show {
  display: none;
  background: url(../img/icon-menu-show.png) center center no-repeat;
  background-size: 48px auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-right: 10px;
}

.header-menu-hide {
  display: none;
  background: url(../img/icon-menu-hide.png) center center no-repeat;
  background-size: 48px auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
}

/******************************/

.header-menu-phone {
  display: none;
  margin: 25px 0;
}

.header-menu-phone > a {
  font-size: 20px;
  display: block;
  font-family: 'MuseoSansCyrl-300';
  text-decoration: none;
  color: #000;
}

.header-menu-phone > span {
  display: block;
  font-size: 12px;
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  margin-top: -3px;
}

.header-menu-email a {
  display: block;
  font-size: 13px;
  font-family: 'MuseoSansCyrl-900';
  color: #1d3e93;
  text-decoration: none;
  margin-top: 15px;
}

/******************************/

.header-menu > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: 'MuseoSansCyrl-700';
}

.header-menu > ul > li {
  display: inline-block;
}

.header-menu > ul > li > a {
  display: block;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
}

.header-menu > ul > li:first-child > a {
  background: url(../img/menu-arrow.png) right 5px top 19px no-repeat;
  background-size: 9px auto;
}

.header-menu > ul > li:hover > a,
.header-menu > ul > li.header-menu-active > a {
  color: #1d3e93;
}

.header-menu > ul > li > ul {
  position: absolute;
  background-color: #fff;
  border: 1px solid #e3dfe5;
  display: none;
  z-index: 3;
  box-shadow: 0px 0px 10px 0 rgba(50, 50, 50, 0.3);
  font-family: 'MuseoSansCyrl-500';
}

.header-menu > ul > li > ul::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 11px;
  background: url(../img/menu-dropdown.png) no-repeat;
  background-size: 15px auto;
  margin-left: 45px;
  margin-top: -11px;
}

.header-menu > ul > li:hover > ul {
  display: block;
}

.header-menu > ul > li > ul > li {
  display: block;
}

.header-menu > ul > li > ul > li > a {
  display: block;
  padding: 15px 20px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e3dfe5;
  font-size: 12px;
}

.header-menu > ul > li > ul > li:last-child > a {
  border: none;
}

.header-menu > ul > li > ul > li:hover > a {
  color: #1d3e93;
}

@media (max-width: 1280px) {
  .header-menu > ul > li > a {
    padding: 10px 10px;
  }
  .header-menu > ul > li:first-child > a {
    background: url(../img/menu-arrow.png) right 5px top 19px no-repeat;
    background-size: 9px auto;
    padding-right: 20px;
  }
}

@media (max-width: 1024px) {
  .header-menu-show,
  .header-menu-hide,
  .header-menu-phone {
    display: block;
  }
  .header-menu {
    width: 100%;
    left: -100%;
    top: 0;
    position: fixed;
    z-index: 10;
    height: auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0px 0px 10px 0 rgba(50, 50, 50, 0.3);
  }
  .header-menu > ul {
    font-family: 'MuseoSansCyrl-300';
  }
  .header-menu > ul > li {
    display: block;
    width: 100%;
  }
  .header-menu > ul > li > a {
    padding: 10px 0px;
    font-size: 18px;
  }
  .header-menu > ul > li > ul {
    display: block;
    position: relative;
    box-shadow: none;
    border: none;
    font-family: 'MuseoSansCyrl-300';
  }
  .header-menu > ul > li > ul::before {
    display: none;
  }
  .header-menu > ul > li > ul > li > a {
    padding: 5px 0px 5px 30px;
    border: none;
    font-size: 16px;
  }
  .header-menu > ul > li:first-child > a {
    background: none;
  }
  .header-phone-email {
    display: none;
  }
  .header-email {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-logo {
    width: 150px;
  }
  .header-email {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }
}

/******************************/

.header-search-show {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/icon-search.png) center center no-repeat;
  background-size: 30px auto;
}

.header-search-form {
  background: transparent;
}

.header-search-form h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}

.header-search-form input[type="search"],
.header-search-form input[type="search"]:focus,
.header-search-form input[type="search"]:active {
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 24px;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 0 10px;
  outline: none;
}

.header-search-form input[type="submit"] {
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 24px;
  border: 2px solid #fff;
  padding: 0 30px;
  cursor: pointer;
}

/******************************/

.content-wrapper {
}

.content {
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
}

.content h1 {
  font-family: 'MuseoSansCyrl-900';
  font-size: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #000;
}

.content h2 {
  font-family: 'MuseoSansCyrl-900';
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
}

.content h3 {
  font-family: 'MuseoSansCyrl-900';
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #000;
}

.content a {
  color: #000;
}

hr {
  border: none;
  border-bottom: 1px solid #e3dfe5;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  hr {
    margin: 0 20px;
  }
}

.button {
  display: block;
  padding: 10px 30px;
  color: #fff !important;
  background: #1d3e93;
  font-family: 'MuseoSansCyrl-900';
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid #1d3e93;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.3);
}

/******************************/

.footer-top-wrapper {
  margin-top: 70px;
  border-top: 1px solid #ded8e5;
  background: #f2f4fa;
}

.footer-top {
  max-width: 1240px;
  padding: 45px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-top > * {
  width: 25%;
}

.footer-menu {
  font-size: 13px;
}

.footer-menu li {
  display: block;
}

.footer-menu a {
  display: block;
  color: #656565;
  padding: 5px 0;
  font-family: 'MuseoSansCyrl-100';
  text-decoration: none;
}

.footer-menu-title {
  color: #0b162b;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'MuseoSansCyrl-700';
  margin-bottom: 5px;
}

.footer-contacts {
}

.footer-phone {
  font-size: 18px;
  font-family: 'MuseoSansCyrl-900';
  margin-bottom: 20px;
}

.footer-phone a:first-child {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-callback {
  text-transform: uppercase;
  font-size: 13px;
  font-family: 'MuseoSansCyrl-500';
  display: block;
  color: #1d3e93;
  text-decoration: none;
}

.footer-email {
  font-size: 18px;
  font-family: 'MuseoSansCyrl-900';
  margin-bottom: 20px;
}

.footer-email a {
  color: #1d3e93;
  text-decoration: none;
}

.footer-address {
  background: url(../img/icon-footer-address.png) left 6px no-repeat;
  background-size: 12px auto;
  padding-left: 20px;
  font-size: 14px;
  font-family: 'MuseoSansCyrl-100';
}

@media (max-width: 1024px) {
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > .footer-menu {
    width: 33%;
  }
  .footer-top > .footer-contacts {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  .footer-top > .footer-contacts > * {
    width: 33%;
  }
}

@media (max-width: 768px) {
  .footer-top > .footer-menu {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-top > .footer-contacts {
    flex-wrap: wrap;
    margin-top: 0px;
  }
  .footer-top > .footer-contacts > * {
    width: 100%;
  }
}

/******************************/

.footer-bottom-wrapper {
  padding: 25px 0 35px;
}

.footer-bottom {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-bottom > * {
  width: 25%;
}

.footer-logo {
  display: block;
  width: 140px;
  height: 50px;
  background: url(../img/header-logo_rus.png) center center no-repeat;
  background-size: 100% auto;
}

.footer-links {
}

.footer-links a {
  display: block;
  font-size: 12px;
  font-family: 'MuseoSansCyrl-100';
  color: #656565;
  padding: 5px 0;
  text-decoration: none;
}

.footer-payments {
  font-size: 14px;
  font-family: 'MuseoSansCyrl-700';
  color: #000;
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social a {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 30px;
}

.footer-social-vk {
  background: url(../img/icon-social-vk.png) center center no-repeat;
  background-size: 18px auto;
}
.footer-social-ig {
  background: url(../img/icon-social-ig.png) center center no-repeat;
  background-size: 18px auto;
}
.footer-social-yt {
  background: url(../img/icon-social-yt.png) center center no-repeat;
  background-size: 18px auto;
}

@media (max-width: 768px) {
  .footer-bottom-wrapper {
    padding: 0px 0 0px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > * {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-logo {
    display: none;
  }
  .footer-payments {
    display: none;
  }
}

/******************************/

.sitemap li {
  margin-left: 30px;
}
/******************************/

.tabs-toggle {
  padding: 0 0 0 15px;
  margin: 0px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #ccc;
}

.tabs-toggle li {
  display: block;
  position: relative;
  top: 1px;
  margin-left: -1px;
  border: 1px solid #ccc;
  border-radius: 15px 15px 0 0;
  background: #f1f1f1;
  line-height: 1.3;
}

.tabs-toggle li a {
  display: block;
  margin: 0px 15px;
  padding: 5px 15px;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
}

.tabs-toggle li.active,
.tabs-toggle li:hover {
  border-bottom: 1px solid #fff;
  background: #fff;
}

.tabs-toggle li.active a,
.tabs-toggle li:hover a {
}

.tabs-content {
  display: none;
  margin-top: 15px;
}

/******************************/

.comments {
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}

.comments-header {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.comments h5 {
  padding: 30px 30px;
  text-align: center;
}

.comments-add {
  display: block;
  text-align: center;
}

.comments-add span {
  display: inline-block;
  font-family: 'MuseoSansCyrl-700';
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px dotted #000;
}

.comments-add span::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(../img/icon-comment.png) center center no-repeat;
  background-size: 21px 21px;
  margin-left: -30px;
  margin-top: 4px;
}

.comments-left {
  position: absolute;
  left: 0px;
  top: 80px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-left.png) 12px center no-repeat;
  background-size: auto 20px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
}

.comments-right {
  position: absolute;
  right: 0px;
  top: 80px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-right.png) 15px center no-repeat;
  background-size: auto 20px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
}

.comments-scroller {
  display: flex;
  overflow: hidden;
  padding: 30px 0;
}

.comment-wrapper {
  width: 100%;
  flex-shrink: 0;
}

.comment {
  margin: 0 20%;
  padding: 20px;
  border: 1px solid #e3dfe5;
}

.comment-header {
  display: flex;
  margin-bottom: 30px;
}

.comment-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.comment-name {
  font-size: 24px;
  color: #000;
  font-family: 'MuseoSansCyrl-100';
}

.comment-variant {
  font-size: 12px;
  color: #000;
  font-family: 'MuseoSansCyrl-900';
}

.comment-variant span {
  font-size: 12px;
  color: #1d3e93;
}

.comment-text {  
}
/******************************/

.form {
}

.form > label,
.form > div {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 20px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .form > label,
  .form > div {
    grid-template-columns: 1fr;
  }
}

.content input {
  padding: 3px;
  border: 1px solid #ddd;
  font: inherit;
  color: #333;
}

.content input[type="submit"] {
  display: block;
  border: 1px solid #1d3e93;
  padding: 15px 15px;
  color: #fff !important;
  background: #1d3e93;
  font-family: 'MuseoSansCyrl-900';
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.content select {
  padding: 3px;
  border: 1px solid #ddd;
  font: inherit;
  color: #333;
}

.content textarea {
  padding: 3px;
  font: inherit;
  border: 1px solid #ddd;
  color: #333;
}

.content .checkbox label {
  display: flex;
  align-items: center;
}

.content .checkbox label input {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form input[type="password"],
  .form input[type="submit"],
  .form select,
  .form textarea {
    width: 100%;
    max-width: 100%;
  }
}

/************************************/

.popup-form {
}

.popup-form > label, .popup-form > div {
  display: block;
  margin-top: 20px;
}

.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="tel"],
.popup-form input[type="password"],
.popup-form input[type="submit"],
.popup-form select,
.popup-form textarea {
  width: 100%;
  max-width: 100%;
}

.content-ajax .form > label,
.content-ajax .form > div {
  display: block;
}

/************************************/

.error {
  color: #FFF;
  padding: 5px 10px;
  background: #f44336;
  margin: 10px 0px;
}

.success {
  color: #fff;
  padding: 5px 10px;
  background: #43a047;
  margin: 10px 0px;
}

.required {
  color: #f44336;
}

/******************************/

.paginator {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  font-size: 24px;
  font-family: 'MuseoSansCyrl-300';
}

.paginator a,
.paginator span {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  margin: 0 15px;
  color: #000;
}

.paginator a:hover {
  color: #808080;
  border-bottom: 2px solid #1d3e93;
}

.paginator b {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 15px;
  color: #808080;
  font-family: 'MuseoSansCyrl-300';
  border-bottom: 2px solid #1d3e93;
}

@media (max-width: 768px) {
  .paginator a,
  .paginator span,
  .paginator b {
    padding: 3px 5px;
    margin: 0 10px;
  }
}
/******************************/

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about > div:first-child {
  width: 50%;
}

.about > div:last-child {
  width: calc(50% - 80px);
}

@media (max-width: 768px) {
  .about > div:first-child {
    width: 100%;
    margin-bottom: 50px;
  }
  .about > div:last-child {
    width: 100%;
  }
}

/************************/

.events-title {
  text-align: center;
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  text-transform: uppercase;
  margin: 50px auto 30px auto;
  display: block;
  text-decoration: none;
  color: #000;
}

.events {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}

.events > div {
  width: 25%;
  flex-shrink: 0;
}

.events img {
  display: block;
}

.events b {
  font-size: 16px;
  font-family: 'MuseoSansCyrl-900';
  display: block;
  text-decoration: none;
  color: #000;
  text-align: center;
  margin-top: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3dfe5;
}

.events span {
  font-size: 12px;
  font-family: 'MuseoSansCyrl-500';
  display: block;
  text-decoration: none;
  color: #808080;
  text-align: center;
  margin-top: -10px;
  padding-top: 30px;
  background: url(../img/nipple.png) center 0px no-repeat;
  background-size: 20px 20px;
}

.events-arrows {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.events-left {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-left.png) 12px center no-repeat;
  background-size: auto 24px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
  margin-right: 15px;
}

.events-right {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-right.png) 15px center no-repeat;
  background-size: auto 24px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
  margin-left: 15px;
}

@media (max-width: 1024px) {
  .events > div {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .events > div {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .events > div {
    width: 100%;
  }
}

/***********************/

.about-comments-wrapper {
  margin-top: 50px;
  padding: 50px 20px;
  background: #f2f4fa;
}

.about-comments-title {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.about-comments {
  display: flex;
  overflow: hidden;
  margin: 30px auto 0 auto;
  max-width: 1240px;
  border: 1px solid #e3dfe5;
  border-right: none;
}

.about-comment {
  width: 33.333%;
  flex-shrink: 0;
  padding: 20px;
  border-right: 1px solid #e3dfe5;
  background: #fff;
}

.about-comment-header {
  display: flex;
  margin-bottom: 30px;
}

.about-comment-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.about-comment-name {
  font-size: 24px;
  color: #000;
  font-family: 'MuseoSansCyrl-100';
}

.about-comment-variant {
  font-size: 12px;
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  text-decoration: none;
}

.about-comment-variant span {
  font-size: 12px;
  color: #1d3e93;
}

.about-comment-text {
}

@media (max-width: 1024px) {
  .about-comment {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .about-comment {
    width: 100%;
  }
}


/************************/

.numbers {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

.numbers > div {
  width: 25%;
  text-align: center;
  font-family: 'MuseoSansCyrl-300';
}

.numbers > div span {
  font-size: 70px;
  color: #0b162b;
  display: block;
  font-family: 'MuseoSansCyrl-500';
  line-height: 1;
}

@media (max-width: 768px) {
  .numbers > div {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .numbers > div {
    width: 100%;
  }
}
/******************************/

@media print {

  .header, .footer, .sidebar, .menu {
    display: none;
  }

  h1, h2, h3 {
    page-break-before: always;
  }

  ul, ol {
    page-break-inside: avoid;
  }  

  .content a[href]:after {
    content: " (" attr(href) ")";
  }

}

/******************************/

.category-header {
  display: flex;
  align-items: flex-start;
}

.category-header-filter {
  margin-left: auto;
  font-size: 13px;
  color: #1d3e93 !important;
  border: 2px solid #1d3e93;
  text-decoration: none;
  font-family: 'MuseoSansCyrl-900';
  text-transform: uppercase;
  padding: 15px 30px 15px 60px;
  background: url(../img/icon-filter.png) 30px center no-repeat;
  background-size: 20px auto;
  margin-bottom: 20px;
  display: none;
}

.category-wrapper {
  display: flex;
  align-items: flex-start;
}

.category-filter {
  width: 25%;
  padding: 20px;
  border: 1px solid #e3dfe5;
  margin-left: -1px;
  margin-top: -1px;
  flex-shrink: 0;
  background: #fff;
}

.category-goods {
  width: 75%;
  flex-shrink: 0;
}

.collections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.collections > article {
  border: 1px solid #e3dfe5;    
  transition: all ease 0.3s;
  margin-left: -1px;
  margin-top: -1px;
}

.collections > article:hover {
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.collections-image-anchor {
  overflow: hidden;
  max-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collections-image {
  display: block;
  transition: all ease 0.3s;
  transform: scale(1.1);
}

.collections-image-anchor:hover .collections-image {
  transform: scale(1.0);
}

.content h2.collections-title {
  display: block;
  padding: 15px 20px 15px 20px;  
  margin: 0;
}

.collections-anchor {
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  font-size: 18px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  transition: all ease 0.3s;
}

.collections-anchor:hover {
  color: #1d3e93;
}

@media (max-width: 1024px) {
  .collections {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .category-header-filter {
    display: inline-block;
  }
  .category-filter {
    width: 300px;
    position: absolute;
    z-index: 2;
    right: 20px;
    margin-top: -20px;
    display: none;
  }
  .category-goods {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .collections {
    grid-template-columns: 1fr 1fr;
  }
  .category-header-filter {    
    width: 20px;
    padding: 10px 20px;
    background-position: center center;
    text-indent: 100px;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .collections {
    grid-template-columns: 1fr;
  }
}

.tags {
  position: absolute;
  display: flex;
  align-items: flex-start;
}

.tags > span {
  margin-bottom: 5px;
  border-bottom-right-radius: 15px;
  color: #fff;
  background: #00cfa9;
  font-family: 'MuseoSansCyrl-900';
  font-size: 14px;
  padding: 2px 10px;
}

.tags-new {  
}

/******************************/

/*! nouislider - 14.0.2 - 6/28/2019 */
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;left:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-connect{height:100%;width:100%}.noUi-origin{height:10%;width:10%}html:not([dir=rtl]) .noUi-horizontal .noUi-origin{left:auto;right:0}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}html:not([dir=rtl]) .noUi-horizontal .noUi-handle{right:-17px;left:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}

.noUi-connects {
  border-radius: 0px;
}

.noUi-connect {
  background: #1d3e93;  
  border: 1px solid #1d3e93;  
  box-shadow: none;
}

.noUi-target {
  background: #cccccc;
  box-shadow: none;
  border-radius: 5px;
  border: none;
}

.noUi-horizontal {
  height: 10px;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ded8e6;
  background: #fff;
  box-shadow: none;  
  position: relative;
  margin-left: -5px;
  margin-top: 1px;
  box-shadow: 0px 3px 6px 0 rgba(50, 50, 50, 0.5);
}

.noUi-handle::after, .noUi-handle::before {
  display: none;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 0px;  
}

.noUi-pips {
  display: none;
}
/******************************/

.qo-wrapper {
  display: flex;
}

.qo-image {
  width: 120px;
  margin-right: 30px;
  flex-shrink: 0;
}

.qo-title {
  width: 100%;
}

.qo-title h2 {
  font-size: 20px;
}

.qo-quantity {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.qo-price-input {
  display: flex;
  align-items: center;
  width: 120px;
  margin-right: 30px;
  flex-shrink: 0;
}

.qo-price-input-minus {
  width: 20px;
  height: 20px;
  background: url(../img/cart-minus.png) no-repeat;
  background-size: 20px auto;
}

.qo-price-input-plus {
  width: 20px;
  height: 20px;
  background: url(../img/cart-plus.png) no-repeat;
  background-size: 20px auto;
}

.qo-price-input-quantity {
  width: 50px !important;
  text-align: center;
}

.qo-price-total {
  width: 100%;
  font-size: 18px;
  margin-bottom: 20px;
}

.qo-total-price {
  font-size: 24px;
}
/******************************/

.contacts-wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contacts {
  width: calc(50% - 35px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contacts > div {
  width: calc(50% - 25px);
  padding-left: 30px;
  margin-bottom: 30px;
}

.contacts-phone {
  background: url(../img/icon-phone.png) left 5px no-repeat;
  background-size: 10px auto;
  font-size: 18px;
  font-family: 'MuseoSansCyrl-900';
  color: #0b162b;
}
.contacts-phone span {
  font-size: 12px;
  font-family: 'MuseoSansCyrl-300';
  color: #000;
}

.contacts-address {
  background: url(../img/icon-address.png) left 5px no-repeat;
  background-size: 12px auto;
  font-size: 14px;
  font-family: 'MuseoSansCyrl-300';
  color: #000;
}

.contacts-email {
  background: url(../img/icon-email.png) left 5px no-repeat;
  background-size: 16px auto;
}
.contacts-email a {
  color: #1d3e93;
  font-size: 13px;
  font-family: 'MuseoSansCyrl-900';
  text-decoration: none;
}

.contacts-workhours {
  background: url(../img/icon-workhours.png) left 5px no-repeat;
  background-size: 15px auto;
  font-size: 14px;
  font-family: 'MuseoSansCyrl-900';
  color: #000;
}

.feedback {
  width: calc(50% - 35px);
}

.feedback-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feedback-fields-contacts {
  width: calc(50% - 25px);
}

.feedback-fields-contacts > div:not(:last-child) {  
  margin-bottom: 25px;
}

.feedback-fields-contacts input {
  width: 100%;
}

.feedback-fields-message {
  width: calc(50% - 35px);
  flex-shrink: 0;
  min-height: 150px;
}

.feedback-submit {
  color: #1d3e93;
  text-transform: uppercase;
  padding: 15px 50px;
  font-size: 13px;
  font-family: 'MuseoSansCyrl-900';
  border: 2px solid #1d3e93;
  background: #fff;
  display: inline-block;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .contacts-wrapper > div {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contacts > div {
    width: 100%;
  }
  .feedback-fields-contacts {
    width: 100%;
    margin-bottom: 30px;
  }
  .feedback-fields-message {
    width: 100%;
  }
}
/******************************/

.filter {
}

.filter form {
  padding: 10px;
}

.filter-section {
  border-bottom: 1px solid #e3dfe5;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.filter-section-title {
  display: block;
  margin-bottom: 10px;
  font-family: 'MuseoSansCyrl-700';
  color: #000;
}

.filter-price-range {
  margin: 20px 10px 10px 10px;
}

.filter-price-input {
  display: flex;
  justify-content: space-between;
}

.filter-price-input label {
  display: inline-block;
}

.filter-price-input input {
  width: 75px;
  padding: 2px;
  margin-left: 5px;
}

.filter-checkboxes {
  display: flex;
  flex-wrap: wrap;
}

.filter-checkboxes label {
  width: 50%;
  margin-bottom: 10px;
}

.filter-checkboxes input[type="checkbox"] {
  display: none;
}

.filter-checkboxes input[type="checkbox"] + span {  
  padding: 5px 30px 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
}

.filter-checkboxes input[type="checkbox"]:checked + span {  
  color: #fff;
  background: #000 url(../img/icon-close-white.png) right 5px center no-repeat;
  background-size: 20px 20px;
}

.filter-found {
  position: absolute;
  background: #fff;
  z-index: 3;
  box-shadow: 0px 3px 6px 0 rgba(50, 50, 50, 0.3);
  top: calc(50% - 40px);
  left: 100%;
  padding: 10px 20px;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid #e3dfe5;
}

.filter-found span {
  font-family: 'MuseoSansCyrl-900';
}

.filter-found button {
  display: block;
  border: none;
  margin-top: 5px;
  padding: 3px 0px;
  color: #1d3e93;
  background: #fff;
  font-family: 'MuseoSansCyrl-900';  
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}

.filter-controls {
  display: flex;  
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}

.filter-controls input[type="submit"] {
  border: 2px solid #1d3e93;
  background: #fff;
  color: #1d3e93 !important;
  padding: 10px 10px;
  font-weight: normal;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: none;
  font-family: 'MuseoSansCyrl-900';
  margin-top: 10px;
}

.filter-controls .filter-reset {
  padding: 2px;
  display: inline-block;
  color: #808080;
  border-bottom: 1px dotted #808080;
  text-decoration: none;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'MuseoSansCyrl-900';
  margin-top: 20px;
}
/******************************/

.bbcode-align-left {
  float: left;
  margin-right: 30px;
}

.bbcode-align-center {
  display: block;
  margin: 0px auto;
  text-align: center;
}

.bbcode-align-right {
  float: right;
  margin-left: 30px;
}

/******************************/

.bbcode-table {
  border-collapse: collapse;
}

.bbcode-table th {
  font-weight: normal;
  border: 1px solid #40745e;
  background: #40745e;
  color: #fff;
  padding: 5px 15px;
}

.bbcode-table td {
  padding: 5px 15px;
  border: 1px solid #40745e;
}

/******************************/

.bbcode-ol, .bbcode-ul {
  padding-left: 30px;
}

/******************************/

.bbcode-slider-wrapper {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.bbcode-slider-left {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #325a49 url(../img/icon-arrow-left.png) center center no-repeat;
  background-size: auto 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.bbcode-slider-left:hover {
  background-color: #40745e;
  background-size: auto 30px;
}

.bbcode-slider-right {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #325a49 url(../img/icon-arrow-right.png) center center no-repeat;
  background-size: auto 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.bbcode-slider-right:hover {
  background-color: #40745e;
  background-size: auto 30px;
}

.bbcode-slider-disabled {
  opacity: 0.3;
  cursor: default;
}

.bbcode-slider-disabled:hover {
  background-color: #325a49;
  background-size: auto 20px;
}

.bbcode-slider {
  display: flex;
  overflow: hidden; 
  margin: 0 10px;
}

.bbcode-slider > a {
  width: 25%;
  display: inline-block;
  flex-shrink: 0;
  padding: 0 10px;
}

.bbcode-slider > a img {
  display: block;
  width: 100%;
}

.bbcode-slider > img {
  width: 50%;
  height: 100%;
  display: inline-block;
  flex-shrink: 0;
  padding: 10px;
}

/******************************/

.bbcode-img {
}

.bbcode-tn {
}

.bbcode-file {
}

/******************************/

.collection-title {
  display: flex;
  align-items: flex-end;
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  margin-bottom: 30px;
  line-height: 1;
}

.collection-title h1 {
  margin: 0;
}

.collection-title span {
  margin-left: 10px;
  margin-bottom: 1px;
  font-size: 12px;
}

.collection-header {
  display: flex;
}

.collection-image {
  width: 40%;
  margin-right: 50px;
  flex-shrink: 0;
}

.collection-info {  
}

.collection-description {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e3dfe5;
}

.collection-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
}

.collection-specs > div {
  width: 48%;
  margin-bottom: 10px;
}

.specs-title {
  color: #000;
  font-family: 'MuseoSansCyrl-700';
  display: inline;
}

.specs-value {
  margin-left: 5px;
  display: inline;
}

/**********************************/

.collection-variants-wrapper {
  margin-top: 50px;
  display: flex;
}

.collection-variants-sidebar {
  margin-top: 50px;
  width: 25%;
  flex-shrink: 0;
  margin-right: 20px;
}

/*************************************/

.banners {
  display: flex;
  flex-direction: column;
}

.banners > a {
  display: block;
  margin-bottom: 20px;
}

.banners > a > img {
  display: block;
}

/*************************************/

.collection-variants-sertificates-title {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 50px;
}

.collection-variants-sertificates {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.collection-variants-sertificates a {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}

.collection-variants-sertificates a img {
  display: block;
}

/*************************************/

.collection-variants-title {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  height: 50px;
  text-transform: uppercase;
}

.variants {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.variants > li {
  display: block;
  border: 1px solid #e3dfe5;
  margin-left: -1px;
  margin-top: -1px;
  transition: all ease 0.3s;
}

.variants > li:hover {
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.variants-details {
  padding: 20px;
}

.variants-image {
  display: block;
}

.variants-image img {
  display: block;
}

.variants-collection-title {
  font-family: 'MuseoSansCyrl-700';
  color: #1d3e93;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  display: block;
}

.variants-title {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.variants-price-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 15px;
}

.variants-type {
  font-family: 'MuseoSansCyrl-300';
  color: #000;
  font-size: 12px;
  padding: 15px 15px;
  border: 1px solid #e5e1e7;
}

.variants-price {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  font-size: 24px;
}

.variants-buy {
  margin-top: 15px;
  display: block;
  padding: 15px 15px;
  color: #fff !important;
  background: #1d3e93;
  font-family: 'MuseoSansCyrl-900';
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.variants-sale {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/*************************/

.collection-related-title {
  margin-top: 50px;
  padding-top: 30px;
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  border-top: 1px solid #e3dfe5;
  text-transform: uppercase;
}

.collection-related {
  margin-top: 30px;
}

.collection-related .collections {
  display: flex; 
  overflow: hidden;
  position: relative;
  border-right: 1px solid #e3dfe5;
}

.collection-related .collections > article {
  width: 25%;
  flex-shrink: 0;
  margin-left: 0px;
  margin-top: 0px;
  border-right: none;
}

/*************************/

@media (max-width: 1024px) {
  .variants {
    grid-template-columns: 1fr 1fr;
  }
  .variants-sale {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .collection-related .collections > article {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .collection-header {
    flex-wrap: wrap;
  }
  .collection-image {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .collection-variants-wrapper {
    flex-wrap: wrap;
  }
  .collection-variants {
    width: 100%;
    order: 1;
  }
  .collection-variants-sidebar {
    order: 2;
    width: 100%;
    margin-top: 50px;
  }
  .banners {
    display: none;
  }
  .variants-sale {
    grid-template-columns: 1fr 1fr;
  }
  .collection-related .collections > article {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .collection-specs > div {
    width: 100%;
  }  
  .variants {
    grid-template-columns: 1fr;
  }
  .variants-sale {
    grid-template-columns: 1fr;
  }
  .collection-related .collections > article {
    width: 100%;
  }
}
/******************************/

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 12px;
  font-family: 'MuseoSansCyrl-500';
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs a {
  text-decoration: none;
  color: #000;
}

.breadcrumbs li:last-child a {
  color: #808080;
  text-decoration: none;
}

/******************************/

.news-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.news-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e3dfe5;
  margin-left: -1px;
  margin-top: -1px;
}

.news-item-image-anchor {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 200px;
}

.news-item-image {
  display: block;
  max-width: none;
  max-height: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
  transform: scale(1.1);
}

.news-item-image-anchor:hover .news-item-image {
  transform: scale(1.0);
}

.news-item-text {
  padding: 20px 20px;
  height: 100%;
}

.news-item-title {
}

.news-item-title-anchor {
  display: block;
  color: #000;
  font-family: 'MuseoSansCyrl-700';
  font-size: 14px;
  text-decoration: none;
  transition: all ease 0.3s;
}

.news-item-title-anchor:hover {
  color: #1d3e93;
}

.news-item-date {
  font-family: 'MuseoSansCyrl-300';
  font-size: 13px;
  color: #000;
  display: flex;
  align-items: center;
  height: 20px;
  background: url(../img/icon-date.png) left center no-repeat;
  background-size: auto 20px;
  padding: 0 0 0 25px;
}

@media (max-width: 1024px) {
  .news-item {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .news-item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .news-item {
    width: 100%;
  }
}

.news {
  display: flex;
}

.news-image {
  width: 40%;
  margin-right: 50px;
  flex-shrink: 0;
}

.news-text {
}

@media (max-width: 768px) {
  .news {
    flex-wrap: wrap;
  }
  .news-image {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
/******************************/

.body-ajax {
  padding: 20px;
}

.content-ajax {
  width: 100%;
  background: #fff;
  padding: 0px !important;
}

.body-ajax .content h1 {
  margin-bottom: 0px;
}
/******************************/

.variant-wrapper {
  display: flex;
}

.variant-heading a {
  color: #999;
  text-decoration: none;
}

.variant-heading a:hover {
  color: #1d3e93;
  text-decoration: underline;
}

.variant-image {
  width: 40%;
  margin-right: 50px;
  flex-shrink: 0;
}

.variant-interior {
  text-align: center;
  display: block;
  margin-top: 10px;
}

.variant-interior span {
  display: inline-block;
  font-family: 'MuseoSansCyrl-700';
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px dotted #000;
}

.variant-interior span::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(../img/icon-interior.png) center center no-repeat;
  background-size: 21px 21px;
  margin-left: -30px;
  margin-top: 4px;
}

.variants-code {
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  font-size: 14px;
  margin-bottom: 15px;
}

.variant-price {
  color: #000;
  font-family: 'MuseoSansCyrl-900';
  font-size: 40px;
  margin-bottom: 15px;
}

.variant-widths {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}

.variant-widths a {
  padding: 10px 25px;
  border: 1px solid #e3dfe5;
  font-family: 'MuseoSansCyrl-300';
  font-size: 16px;
  text-decoration: none;
  color: #000;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all ease 0.3s;
}

.variant-widths a.variant-widths-active,
.variant-widths a:hover {
  color: #fff;
  background: #1d3e93;
  border: 1px solid #1d3e93;
}

.variant-disclaimer {
}

.variant-buttons {
  margin-top: 15px;
  display: flex;
}

.variant-buy {
  display: inline-block;
  padding: 15px 50px;
  color: #fff !important;
  background: #1d3e93;
  font-family: 'MuseoSansCyrl-900';
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.variant-request {  
  margin-left: 50px;
  display: inline-block;
  padding: 13px 30px;
  color: #000 !important;
  background: #fff;
  border: 2px solid #1d3e93;
  font-family: 'MuseoSansCyrl-900';
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

/*************************/

.variant-specs-wrapper {
  background: #f2f4fa;
  margin-top: 50px;
}

.variant-specs-inner {
  max-width: 1240px;
  padding: 40px 20px;
  margin: 0 auto;
}

.variant-specs-title {
  font-family: 'MuseoSansCyrl-900';
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
}

.variant-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  overflow: hidden;
  margin-top: 40px;
  max-height: 200px;
  transition: all ease 0.6s;
}

.variant-specs > div {
  width: 48%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.variant-spec-title {
  color: #000;  
  font-family: 'MuseoSansCyrl-700';
  width: 48%;
}

.variant-spec-value {
  width: 48%;
}

.variant-specs-more {  
  margin-top: 30px;
  text-align: center;
}

.variant-specs-more a {
  font-family: 'MuseoSansCyrl-700';
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  display: inline-block;
  border-bottom: 1px dotted #000;
  text-decoration: none;
  line-height: 1;
}

/***************************/

.variant-designs-title {
  font-family: 'MuseoSansCyrl-900';
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  margin-top: 50px;  
}

.variant-designs-scroller {
  position: relative;
}

.variant-designs-left {
  position: absolute;
  left: 0px;
  top: 120px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-left.png) 12px center no-repeat;
  background-size: auto 20px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
}

.variant-designs-right {
  position: absolute;
  right: 0px;
  top: 120px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url(../img/icon-arrow-right.png) 15px center no-repeat;
  background-size: auto 20px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0 rgba(50, 50, 50, 0.5);
}

.variant-designs {
  display: flex;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid #e3dfe5;
  border-right: none;
}

.variant-designs > li {
  display: block;  
  flex-shrink: 0;
  width: 25%;
  border-right: 1px solid #e3dfe5;
}

.variant-designs-details {
  padding: 20px;
}

.variant-designs-image {
  display: block;
}

.variant-designs-image img {
  display: block;
}

.variant-designs-title {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}

.variant-designs-price-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 15px;
}

.variant-designs-type {
  font-family: 'MuseoSansCyrl-300';
  color: #000;
  font-size: 12px;
  padding: 15px 15px;
  border: 1px solid #e5e1e7;
}

.variant-designs-price {
  font-family: 'MuseoSansCyrl-900';
  color: #000;
  font-size: 24px;
}

@media (max-width: 1024px) {
  .variant-designs > li {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .variant-wrapper {
    flex-wrap: wrap;
  }
  .variant-image {
    width: 100%;
    margin: 0px 0 50px 0;
  }
  .variant-disclaimer {
    display: none;
  }
  .variant-buttons {
    flex-wrap: wrap;
  }
  .variant-buy {
    width: 100%;
  }
  .variant-request {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .variant-specs > div {
    width: 100%;
  }
  .variant-designs > li {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .variant-designs > li {
    width: 100%;
  }
}
/******************************/

.search-form {
  display: flex;
  margin-bottom: 30px;
}

.search-form input[type="search"] {
  display: inline-block;
  padding: 3px 10px;
  min-width: 0;
  border: 1px solid #325a49;
  font: inherit;
  outline: none;
  border-radius: 15px 0 0 15px;
}

.search-form input[type="submit"] {
  display: inline-block;
  padding: 3px 15px;
  border: none;
  background: #325a49;
  color: #fff;
  font: inherit;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 0 15px 15px 0;
}

.search-found {
  position: absolute;
  background: #fff;
  overflow-y: scroll;
  max-height: 300px;
  z-index: 3;
  font-size: 14px;  
  box-shadow: 0px 3px 6px 0 rgba(50, 50, 50, 0.3);
}

.search-found a {
  display: flex;
  width: 100%;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.search-found a:hover {
  background: #f1f1f1;
}

.search-found-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.search-found-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.search-found-title {
  margin-right: 15px;
}

.search-found-price {
  font-weight: bold;
  margin-left: auto;
}

.search-found-more {
  width: 100%;
  display: flex;  
  justify-content: center;
  padding: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: #40745e;
}

.search-found-more:hover {
  background: #325a49;
}
/******************************/

