@charset "UTF-8";
.btn {
  -webkit-appearance: none;
  height: 56px;
  padding: 0 24px;
  border-radius: 2px;
  line-height: 56px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  vertical-align: middle;
  border: 1px solid #191919;
  color: #fff;
  background: #191919;
  user-select: none;
  text-transform: uppercase;
}
.btn:hover {
  color: #FFDB3D;
}
.btn-block {
  width: 100%;
  display: block;
}
.btn-outline {
  border: 1px solid #191919;
  color: #191919;
  background: transparent;
}
.btn-outline:hover {
  background: #191919;
  color: #fff;
}
.btn-more {
  color: #191919;
  background: #fff;
  border-color: #fff;
}
.btn-more:hover {
  color: #0968CC;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

form.disabled
.btn {
  background: #9a9a9a;
  border: 1px solid #9a9a9a;
}
form.disabled
.btn:hover {
  color: #fff;
}

body {
  display: block;
  min-width: 375px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: #F7F7F7;
  color: #191919;
  font-size: 16px;
  line-height: 1.2;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 1228px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 979px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.row > * {
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 979px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .row > * {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.col-1 {
  width: 8.33333%;
}

.col-2 {
  width: 16.66666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66666%;
}

.col-12 {
  width: 100%;
}

.col-offset-1 {
  margin-left: 8.33333%;
}

.col-offset-2 {
  margin-left: 16.66666%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-offset-4 {
  margin-left: 33.33333%;
}

.col-offset-5 {
  margin-left: 41.66666%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-offset-7 {
  margin-left: 58.33333%;
}

.col-offset-8 {
  margin-left: 66.66666%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-offset-10 {
  margin-left: 83.33333%;
}

.col-offset-11 {
  margin-left: 91.66666%;
}

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

.flex-v-start {
  align-items: flex-start;
}

.flex-v-end {
  align-items: flex-end;
}

.flex-v-center {
  align-items: center;
}

.flex-h-start {
  justify-content: flex-start;
}

.flex-h-end {
  justify-content: flex-end;
}

.flex-h-center {
  justify-content: center;
}

.flex-h-between {
  justify-content: space-between;
}

.flex-h-around {
  justify-content: space-around;
}

.u {
  text-decoration: none !important;
  border-bottom: 1px solid;
  opacity: 1;
}

.u:hover {
  border-bottom-color: transparent;
}

.u-hover {
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
}

.u-hover:hover {
  border-bottom-color: inherit;
}

.u-dotted {
  border-bottom-style: dotted;
}

.u-dashed {
  border-bottom-style: dashed;
}

.b,
.strong {
  font-weight: 700;
}

.modal-open {
  overflow-y: hidden;
}

.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.22857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto;
  pointer-events: none;
}

.tooltip.in {
  filter: alpha(opacity=7.5);
  opacity: 0.85 !important;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.has-scroll {
  overflow: auto;
}

.has-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.has-scroll::-webkit-scrollbar-thumb {
  background: #EBEBEB;
  border-radius: 2px;
}

.has-scroll::-webkit-scrollbar-thumb:hover {
  background: #EBEBEB;
}

.has-scroll::-webkit-scrollbar-track {
  width: 4px;
  background: #fff;
  opacity: 0;
}

.has-scroll {
  scrollbar-width: thin;
  scrollbar-color: #EBEBEB;
}

.invis-scroll {
  overflow: auto;
}

.invis-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.invis-scroll::-webkit-scrollbar-thumb {
  background: transparent;
}

.invis-scroll::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.invis-scroll::-webkit-scrollbar-track {
  width: 4px;
  background: #fff;
  opacity: 0;
}

.invis-scroll {
  scrollbar-width: thin;
  scrollbar-color: transparent;
}

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

.tab-content > .tab-pane {
  display: none;
}

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

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.in {
  opacity: 1;
}

.header {
  padding: 24px 0;
  position: relative;
  z-index: 3;
  background: #fff;
}
.header--inverse {
  background: #1B2D40;
  color: #fff;
}
.header-in {
  display: flex;
  align-items: flex-start;
}
.header-main {
  display: flex;
  align-items: center;
}
.header-additional {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-additional-line {
  display: flex;
  align-items: center;
}
.header-info {
  margin-right: 100px;
  font-size: 12px;
}
.header-info-link {
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  user-select: none;
}
.header-info-link svg {
  margin-left: 2px;
  transition: all 0.2s ease;
}
.header-info-link:hover {
  opacity: 0.75;
  cursor: pointer;
}
.header-info-link.is-active svg {
  transform: rotate(180deg);
}
.header-info-content {
  opacity: 0.4;
  line-height: 1.3;
}
.header-phone {
  margin-left: auto;
  margin-right: 55px;
  font-size: 24px;
}
.header-phone a:hover {
  opacity: 0.75;
}
.header-phone--mobile {
  display: none;
}
.header-cart {
  position: relative;
  transition: all 0.2s ease;
}
.header-cart-count {
  position: absolute;
  background: #191919;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 10px;
  right: -10px;
  top: -10px;
}
.header-cart:hover {
  opacity: 0.75;
}
.header-cart svg {
  width: 27px;
  height: 27px;
}
.header-search {
  position: relative;
  width: 380px;
  margin-top: 16px;
}
.header-search--mobile {
  display: none;
}
.header-search-button {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.header-search-button:hover {
  cursor: pointer;
  opacity: 0.5;
}
.header-search-button svg {
  width: 22px;
}
.header-search .close-search {
  position: absolute;
  bottom: 16px;
  right: 16px;
  height: 48px;
  width: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.header-search .input-search {
  background-color: #f7f7f7;
}
.header--inverse .header-search .input-search {
  background-color: rgba(255, 255, 255, 0.13);
  border: 0;
}
.header--inverse .header-cart-count {
  background: #fff;
  color: #191919;
}
.header-menu {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  width: 360px;
}
.header-menu li {
  width: 140px;
  padding: 4px 0;
}
.header-menu li:nth-child(2n) {
  margin-left: 80px;
}
.header-menu a {
  border-bottom: 1px solid transparent;
}
.header-menu a.active,
.header-menu a:hover {
  border-color: inherit;
}
.header .logo {
  width: 80px;
  display: block;
  margin-right: 30px;
}
.header .logo svg {
  display: block;
  width: 100%;
}
.header .logo-mobile {
  display: none;
}
.header .burger {
  align-content: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  transition: color 150ms;
  flex-shrink: 0;
  cursor: pointer;
  background: #191919;
  color: #fff;
  display: none;
}
.header--inverse .burger {
  background: #fff;
  color: #191919;
}
.header .burger-icon {
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header .burger-icon-line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.header .burger-icon-line--top {
  stroke-dasharray: 40 121;
}
.header .burger-icon-line--middle {
  stroke-dasharray: 40 121;
}
.header .burger-icon-line--bottom {
  stroke-dasharray: 40 121;
}
.header .burger.is-active .burger-icon {
  transform: rotate(45deg);
}
.header .burger.is-active .burger-icon-line--top,
.header .burger.is-active .burger-icon-line--bottom {
  stroke-dashoffset: -68px;
}
@media (max-width: 1228px) {
  .header-menu {
    width: 310px;
  }
  .header-menu li:nth-child(2n) {
    margin-left: 30px;
  }
  .header-phone {
    margin-right: 36px;
  }
  .header-info {
    margin-right: 65px;
  }
  .header-search {
    width: 280px;
  }
}
@media (max-width: 979px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 8;
  }
  .header .burger {
    display: flex;
  }
  .header.spy {
    transform: translate3d(0, -150%, 0);
  }
  .header-info, .header-menu, .header-phone,
  .header .logo {
    display: none;
  }
  .header .container {
    height: 100%;
  }
  .header-in {
    height: 100%;
    align-items: center;
  }
  .header-phone--mobile {
    margin-left: auto;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-search--mobile {
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-search {
    display: none;
  }
  .header-search.is-active {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 0 16px;
    height: 80px;
    top: 0;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: center;
  }
  .header-search .header-search-button {
    display: none;
  }
  .header-search .close-search {
    display: flex;
  }
  .header--inverse .header-search.is-active {
    background: #1B2D40;
  }

  .header-cart svg {
    width: 32px;
    height: 32px;
  }
  .header .logo-mobile {
    display: block;
    margin-left: 11px;
  }

  .scroll-desktop {
    overflow: visible;
  }
}

.mobile-info {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  transform: translateY(100%);
  height: calc(100% - 80px);
  background: #fff;
  z-index: 20;
  min-width: 375px;
  opacity: 0;
  visibility: hidden;
  display: none;
  overflow: hidden;
}
.mobile-info.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.mobile-info .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  overflow: auto;
  padding-top: 32px;
  padding-bottom: 42px !important;
}
@media (max-width: 979px) {
  .mobile-info {
    display: block;
  }
}
.mobile-info .mobile-menu {
  font-size: 32px;
}
.mobile-info .mobile-menu-title {
  font-weight: 700;
  font-size: 20px;
}
.mobile-info .mobile-menu > li + li {
  margin-top: 20px;
}
.mobile-info .mobile-menu-title + li {
  margin-top: 10px !important;
}
.mobile-info .mobile-menu-delimeter {
  margin-top: 42px !important;
}
.mobile-info .mobile-menu a {
  border-bottom: 1px solid transparent;
}
.mobile-info .mobile-menu a.active,
.mobile-info .mobile-menu a:hover {
  border-color: inherit;
}
.mobile-info .mobile-menu-bottom {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  border-top: 3px solid;
  margin-top: 40px;
  padding-top: 28px;
}
.mobile-info .mobile-menu-bottom li {
  width: 50%;
  padding: 12px 0;
}
.mobile-info .mobile-menu-bottom a {
  border-bottom: 1px solid transparent;
}
.mobile-info .mobile-menu-bottom a.active,
.mobile-info .mobile-menu-bottom a:hover {
  border-color: inherit;
}

.mobile-phone-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 19;
  min-width: 375px;
  opacity: 0;
  visibility: hidden;
  display: none;
}
@media (max-width: 979px) {
  .mobile-phone-overlay {
    display: block;
  }
}
.mobile-phone-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.mobile-phone {
  padding: 32px 24px 40px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  background: #fff;
  z-index: 20;
  min-width: 375px;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3s ease;
}
@media (max-width: 979px) {
  .mobile-phone {
    display: block;
  }
}
.mobile-phone.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-phone .footer-phone {
  color: inherit;
}
.mobile-phone .p-1 {
  margin-top: 16px;
  font-size: 14px;
}
.mobile-phone .worktime {
  font-size: 14px;
  margin-top: 18px;
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-top: 16px;
}
.mobile-phone .worktime-title {
  font-weight: 700;
  font-size: 14px;
}
.mobile-phone .worktime-title + div {
  margin-top: 16px;
}
.mobile-phone .worktime > div {
  display: flex;
}
.mobile-phone .worktime > div + div {
  margin-top: 12px;
}
.mobile-phone .worktime > div > div:first-child {
  width: 200px;
}

.main-menu {
  background-color: #fff;
  padding: 24px 0;
  position: absolute;
  top: 100%;
  margin-top: 1px;
  left: 0;
  width: 100%;
  color: #191919;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
.main-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}
@media (max-width: 979px) {
  .main-menu {
    display: none;
  }
}
.main-menu .container {
  display: flex;
}
.main-menu-content {
  display: flex;
  padding: 4px 0;
  flex-shrink: 0;
  padding-right: 25px;
}
.main-menu-content a {
  border-bottom: 1px solid transparent;
}
.main-menu-content a:hover {
  color: #0968CC;
  border-bottom-color: inherit;
}
.main-menu-content a.active,
.main-menu-content a.is-active {
  color: #0968CC;
}
.main-menu-beds {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main-menu-beds-title {
  font-weight: 700;
  font-size: 14px;
}
.main-menu-beds a {
  font-size: 24px;
  margin-top: 12px;
}
.main-menu-other {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  margin-left: 80px;
}
.main-menu-other a + a {
  margin-top: 18px;
}
.main-menu-info {
  padding-left: 24px;
  margin-left: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 8px;
  padding-bottom: 8px;
}
.main-menu-info-text {
  margin-top: 16px;
}
.main-menu-info-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #0968CC;
}
.main-menu-info a {
  border-bottom: 1px solid transparent;
}
.main-menu-info a:hover {
  border-bottom-color: inherit;
}
.main-menu-info a + a {
  margin-top: 12px;
}

.header--inverse .main-menu {
  background: #13202E;
  color: #fff;
}
.header--inverse .main-menu a.active,
.header--inverse .main-menu a.is-active,
.header--inverse .main-menu a:hover {
  color: #FFDB3D;
}
.header--inverse .main-menu-info-links {
  color: #FFDB3D;
}

.footer {
  background: #13202E;
  color: #57718C;
}
.footer-bottom {
  border-top: 1px solid #20354D;
  padding: 30px 0;
  font-size: 14px;
}
.footer-bottom-text {
  font-size: 12px;
  line-height: 1.5;
}
.footer-bottom-text a {
  color: #FFDB3D;
}
.footer-bottom-info {
  display: flex;
  align-items: center;
  color: #fff;
}
.footer-bottom-info-news {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.footer-bottom-info-news a {
  margin-right: 8px;
}
.footer-bottom-info-news a svg {
  width: 32px;
  height: 32px;
}
.footer-bottom-info-news a span {
  display: none;
}
.footer-bottom-info-news a:hover {
  opacity: 0.75;
}
.footer-bottom-info-email {
  display: flex;
  align-items: center;
}
.footer-bottom-info-email svg {
  margin-right: 8px;
}
.footer-bottom-info-email a {
  color: #FFDB3D;
}
.footer-main {
  padding: 56px 0 115px;
}
.footer-links {
  color: #FFDB3D;
  font-size: 14px;
}
.footer-links-title {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.footer-links li + li {
  margin-top: 8px;
}
.footer-links li + .footer-links-all {
  margin-top: 20px;
}
.footer-links a {
  border-bottom: 1px solid transparent;
}
.footer-links a.active,
.footer-links a:hover {
  border-color: inherit;
}
.footer-phone {
  display: flex;
  align-items: center;
  color: #fff;
}
.footer-phone a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.footer-phone a svg {
  width: 48px;
  height: 48px;
}
.footer-phone a span {
  display: none;
  font-size: 18px;
  margin-left: 8px;
}
.footer-phone a:hover {
  opacity: 0.75;
}
.footer-phone a:not(:last-child) {
  margin-right: 12px;
}
.footer-phone-link {
  font-size: 48px;
}
.footer .p-1 {
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 1228px) {
  .footer .p-1 br {
    display: none;
  }
}
.footer .worktime {
  font-size: 14px;
  margin-top: 18px;
}
.footer .worktime > div {
  display: flex;
}
.footer .worktime > div + div {
  margin-top: 12px;
}
.footer .worktime > div > div:first-child {
  width: 200px;
}
@media (max-width: 979px) {
  .footer .col-8 {
    width: 100%;
  }
  .footer .col-2 {
    width: 50%;
  }
  .footer .p-1 {
    margin-top: 16px;
    font-size: 14px;
  }
  .footer .worktime {
    margin-top: 24px;
    border-bottom: 1px solid #20354D;
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
  .footer-phone {
    flex-wrap: wrap;
  }
  .footer-phone a span {
    display: block;
  }
  .footer-phone a:not(:last-child) {
    margin-right: 16px;
  }
  .footer-phone a svg {
    width: 32px;
    height: 32px;
  }
  .footer-phone-link {
    margin-right: 0 !important;
    margin-bottom: 16px;
    width: 100%;
    font-size: 36px;
  }
  .footer-links li + li {
    margin-top: 20px;
  }
  .footer-links-title {
    margin-bottom: 20px;
  }
  .footer-main {
    padding: 48px 0 32px;
  }
  .footer-bottom {
    padding: 32px 0 48px;
  }
  .footer-bottom-info {
    border-bottom: 1px solid #20354D;
    padding-bottom: 32px;
    margin-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-info-news {
    flex-wrap: wrap;
  }
  .footer-bottom-info-news-title {
    width: 100%;
    order: -1;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .footer-bottom-info-news a {
    display: flex;
    align-items: center;
    margin-right: 0;
  }
  .footer-bottom-info-news a:first-child {
    margin-right: 25px;
  }
  .footer-bottom-info-news a span {
    display: block;
    margin-left: 8px;
    line-height: 1.4;
  }
  .footer-bottom-info-news a svg {
    width: 48px;
    height: 48px;
  }
  .footer-bottom-info-email {
    flex-direction: column;
    margin-top: 32px;
    align-items: flex-start;
  }
  .footer-bottom-info-email svg {
    margin-bottom: 12px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

.super-h {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

h1, .h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 72px;
  line-height: 0.88;
  font-weight: 700;
}

h2, .h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
}

h3, .h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

h4, .h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

h5, .h5 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.p-1 {
  font-size: 18px;
  line-height: 1.333;
  font-weight: 400;
}

.p-2 {
  font-size: 14px;
  line-height: 1.428;
  font-weight: 400;
}

.p-2-w {
  font-size: 14px;
  line-height: 1.714;
  font-weight: 400;
}

.p-lid {
  font-size: 24px;
  line-height: 1.333;
  font-weight: 400;
}

.subtitle-1 {
  font-size: 18px;
  line-height: 1.333;
  font-weight: 600;
}

.subtitle-2 {
  font-size: 14px;
  line-height: 1.428;
  font-weight: 700;
}

.p-small {
  font-size: 12px;
  line-height: 1.333;
  font-weight: 400;
}

@media (max-width: 979px) {
  .super-h {
    font-size: 36px;
  }

  h1, .h1 {
    font-size: 36px;
    line-height: 1;
  }

  h2, .h2 {
    font-size: 32px;
  }

  h3, .h3 {
    font-size: 24px;
  }

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

  .p-lid {
    font-size: 18px;
  }
}
.text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.text a:not([class]) {
  color: #0968CC;
  border-bottom: 1px solid transparent;
}

.text a:not([class]):hover,
.text a:not([class]):active {
  color: #0968CC;
  border-color: inherit;
}

.text ul li,
.text ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.4;
}

.text li + li {
  margin-top: 10px;
}

.text ul li:after {
  content: "";
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: block;
  background: #191919;
  position: absolute;
  left: 8px;
  top: 9px;
}

.text ol {
  counter-reset: ol;
}

.text ol li {
  padding-left: 30px;
}

.text ol li::before {
  counter-increment: ol;
  content: "0" counter(ol) ".";
  position: absolute;
  font-weight: 600;
  left: 0;
  top: 0;
  font-size: 14px;
}

.text ol li:nth-child(9) ~ li::before {
  counter-increment: ol;
  content: counter(ol) ".";
}

.text > * + *,
blockquote > * + * {
  margin-top: 1.5em;
}

.text .h5 + *,
.text .h6 + *,
.text h5 + *,
.text h6 + * {
  margin-top: 0.5em;
}

.text table {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
}
.text table th {
  text-align: left;
  border-bottom: 3px solid;
  padding: 16px 0;
  font-weight: 700;
}
.text table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 24px 0;
}
.text table tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 979px) {
  .text .table {
    overflow-x: auto;
    margin-left: -48px;
    margin-right: -48px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .text .table table td {
    white-space: nowrap;
  }
}
@media (max-width: 979px) {
  .text .table {
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.modal input::-webkit-input-placeholder,
.modal textarea::-webkit-input-placeholder {
  color: #999999;
  transition: all 0.2s ease;
}

.modal input:-moz-placeholder,
.modal textarea:-moz-placeholder {
  color: #999999;
  transition: all 0.2s ease;
}

.modal input:focus::-webkit-input-placeholder,
.modal textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.modal input:focus:-moz-placeholder,
.modal textarea:focus:-moz-placeholder {
  color: transparent;
}

.form-group {
  position: relative;
  margin-bottom: 16px;
}
.form-group-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-group.error .form-group-title {
  color: #FF0000;
}

.form-control {
  border: 1px solid #fff;
  font-size: 14px;
  background: #fff;
  color: inherit;
  padding: 0 16px;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 400;
  text-align: left;
  height: 48px;
  resize: none;
  border-radius: 0;
}
.form-control:focus {
  border-color: #0968CC;
}

textarea.form-control {
  min-height: 132px;
  line-height: 1.35;
  padding-top: 10px;
  padding-bottom: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkbox {
  padding-left: 32px;
  position: relative;
  display: block;
  line-height: 1.2;
  user-select: none;
  font-size: 14px;
  padding-top: 4px;
  user-select: none;
}
.checkbox input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.checkbox > span {
  cursor: pointer;
}
.checkbox > span::after {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #191919;
}
.checkbox > span::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../svg/checkbox.svg) no-repeat center center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.checkbox input:checked + span::after {
  background: #191919 !important;
}
.checkbox:hover > span::after {
  background: #DCDCDC;
}

.radio {
  padding-left: 32px;
  position: relative;
  display: block;
  line-height: 1.2;
  user-select: none;
  font-size: 14px;
  padding-top: 4px;
  cursor: pointer;
}
.radio input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.radio > span::after {
  content: "";
  width: 24px;
  height: 24px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #191919;
  left: 0;
  top: 0;
}
.radio > span::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #191919;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 6px;
  opacity: 0;
  z-index: 2;
}
.radio input:checked + span::before {
  background: #191919 !important;
  opacity: 1;
}
.radio:hover > span::before {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.form-group-content {
  display: flex;
  flex-wrap: wrap;
}
.form-group-content > *:not(:last-child) {
  margin-right: 16px;
}

.form-group-content > * {
  margin-bottom: 16px;
}

.forgot-link {
  color: #0968CC;
  margin-top: 8px;
}

.form-buttons {
  display: flex;
  align-items: center;
}
.form-buttons .btn {
  flex-shrink: 0;
}
.form-buttons-info {
  margin-left: 16px;
  width: 100%;
  color: #999999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-buttons-info .form-register-link {
  position: relative;
}
.form-buttons-info .form-register-link > a {
  color: #0968CC;
  font-weight: 700;
}

.form-agree {
  width: 100%;
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.45;
}
.form-agree a {
  color: #0968CC;
}

.page-404 {
  background-color: #13202E;
  color: #fff;
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 100vh;
}
.page-404-logo {
  margin: 37px 0 0 32px;
  position: absolute;
  left: 0;
  top: 0;
}
.page-404-container {
  width: 520px;
  padding-top: 130px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-404-title {
  font-size: 96px;
}
.page-404-text {
  margin-top: 2px;
}
.page-404-subtitle {
  margin-bottom: 12px;
  margin-left: 44%;
}
.page-404 img {
  margin: 40px 0 5px;
}
.page-404-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFDB3D;
  margin-left: 44%;
}
.page-404-menu a {
  margin-bottom: 12px;
}
@media (max-width: 599px) {
  .page-404-container {
    width: 370px;
    padding-top: 115px;
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-404-logo {
    width: 48px;
    margin: 24px;
  }
  .page-404-logo svg {
    width: 48px;
    height: 48px;
  }
}

.content {
  padding: 62px 0 96px;
}
@media (max-width: 1228px) {
  .content {
    padding: 40px 0 72px;
  }
}

@media (max-width: 979px) {
  body {
    padding-top: 80px;
  }
}
.main-title {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 4px solid #191919;
}
.main-title-subtitle {
  margin-top: 32px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.main-title--center {
  text-align: center;
}
.main-title--center > * {
  justify-content: center;
}
@media (max-width: 1228px) {
  .main-title--center {
    text-align: left;
  }
  .main-title--center > * {
    justify-content: flex-start;
  }
}
.main-title--article {
  border-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 599px) {
  .main-title {
    margin-bottom: 42px;
  }
}

.specials > div {
  margin-bottom: 24px;
}
.specials-item {
  background-color: #13202E;
  color: #fff;
  padding: 32px 26px 32px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.specials-item .p-2 {
  margin-top: 8px;
}
.specials-item .p-2 + .p-2 {
  margin-top: 24px;
}
.specials-item-links {
  color: #FFDB3D;
  display: flex;
}
.specials-item-links a + a {
  margin-left: auto;
}
.specials-item-info {
  margin-top: auto;
}
.specials-item-title {
  margin-bottom: 60px;
}
.specials-item-title span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #3A618A;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 1228px) {
  .specials > div {
    width: 50%;
  }
  .specials .p-lid {
    font-size: 18px;
  }
}
@media (max-width: 1228px) {
  .specials > div {
    width: 100%;
  }
  .specials-item {
    padding: 24px;
  }
}

.modal {
  width: 100%;
  max-width: 560px;
  height: 100%;
  display: block;
  z-index: 10001;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  overflow-y: auto;
  background-color: #fff;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.modal.modal-center {
  width: 100%;
  z-index: 10001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
  transform: translateX(0);
  display: block !important;
}
.modal.is-active-center {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
  display: block !important;
}
.modal-close {
  position: absolute;
  background: url(../svg/close.svg) no-repeat center center;
  filter: grayscale(1);
  transition: all 0.2s ease;
  right: 16px;
  top: 16px;
  width: 48px;
  height: 48px;
}
@media (max-width: 1228px) {
  .modal-close {
    right: 5px;
    top: 5px;
  }
}
.modal-close:hover {
  cursor: pointer;
  filter: grayscale(0);
}
.modal-content {
  padding: 32px 48px;
}
@media (max-width: 1228px) {
  .modal-content {
    padding: 32px 24px;
  }
}

.special-info-title {
  border-bottom: 2px solid;
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.special-info-title .p-lid {
  margin-top: 16px;
}
.special-info-content .p-1 {
  margin-bottom: 16px;
}
.special-info-content .subtitle-1 {
  margin-bottom: 8px;
}
.special-info .text + * {
  margin-top: 40px;
}
.special-info .text > * + * {
  margin-top: 16px;
}

.article-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  height: 100%;
  padding: 24px;
}
.article-social:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.article-social--vk {
  background: #0077FF;
}
.article-social--tg {
  background: #2798CF;
}
.article-social-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  width: 100%;
}
.article-social-text svg {
  width: 32px;
}
.article-social > svg {
  margin-top: auto;
  margin-bottom: auto;
}

.article-item {
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.article-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.article-item-image {
  width: 100%;
  height: 100%;
}
.article-item-image img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.article-item-info {
  padding: 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.article-item-info-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 8px;
}
.article-item-info-title {
  font-size: 18px;
  line-height: 1.33;
  margin-bottom: 24px;
}
.article-item-info-title:hover {
  color: #0968CC;
}
.article-item-info-text {
  color: #666666;
  font-size: 14px;
  line-height: 1.42;
  padding-top: 12px;
  border-top: 1px solid #000;
}

.swiper-slide:nth-child(odd) .article-item-info-title {
  margin-bottom: 0;
}
.swiper-slide:nth-child(odd) .article-item-info-text {
  display: none;
}

.swiper-slide:nth-child(even) .article-item-image {
  display: none;
}

.articles > div {
  width: 33.333%;
  margin-bottom: 24px;
}
@media (max-width: 979px) {
  .articles > div {
    width: 50% !important;
  }
}
@media (max-width: 599px) {
  .articles > div {
    width: 100% !important;
  }
}
.articles > div:nth-child(1), .articles > div:nth-child(11) {
  width: 100%;
}
@media (min-width: 980px) {
  .articles > div:nth-child(1) .article-item, .articles > div:nth-child(11) .article-item {
    flex-direction: row;
  }
  .articles > div:nth-child(1) .article-item-image, .articles > div:nth-child(11) .article-item-image {
    width: 66.666%;
  }
  .articles > div:nth-child(1) .article-item-info, .articles > div:nth-child(11) .article-item-info {
    width: 33.333%;
  }
  .articles > div:nth-child(1) .article-item-info-title, .articles > div:nth-child(11) .article-item-info-title {
    font-size: 24px;
    line-height: 1.16;
  }
  .articles > div:nth-child(1) .article-item-info-text, .articles > div:nth-child(11) .article-item-info-text {
    border: 0;
    padding-top: 0;
  }
}
.articles > div:nth-child(1) .article-item-info-text, .articles > div:nth-child(11) .article-item-info-text {
  border: 0;
  padding-top: 0;
}
.articles > div:nth-child(2) .article-item-info-title, .articles > div:nth-child(4) .article-item-info-title, .articles > div:nth-child(9) .article-item-info-title, .articles > div:nth-child(13) .article-item-info-title {
  margin-bottom: 0;
}
.articles > div:nth-child(2) .article-item-info-text, .articles > div:nth-child(4) .article-item-info-text, .articles > div:nth-child(9) .article-item-info-text, .articles > div:nth-child(13) .article-item-info-text {
  display: none;
}
.articles > div:nth-child(3) .article-item-image, .articles > div:nth-child(5) .article-item-image, .articles > div:nth-child(6) .article-item-image, .articles > div:nth-child(10) .article-item-image, .articles > div:nth-child(12) .article-item-image, .articles > div:nth-child(14) .article-item-image {
  display: none;
}

@media (max-width: 1228px) {
  .articles-layout > .col-3 {
    width: 100%;
    margin-bottom: 32px;
  }
  .articles-layout > .col-9 {
    width: 100%;
  }

  .faq-layout {
    flex-direction: column;
  }
  .faq-layout > .col-3 {
    width: 100%;
    margin-top: 32px;
    order: 2;
  }
  .faq-layout > .col-9 {
    width: 100%;
  }

  .article-social {
    min-height: 256px !important;
  }
}
.rubricks li {
  display: flex;
  justify-content: flex-start;
}
.rubricks li a {
  font-size: 14px;
}
.rubricks li a span {
  font-size: 12px;
  opacity: 0.34;
  font-weight: 400;
  margin-left: 5px;
  vertical-align: text-top;
}
.rubricks li a:hover {
  color: #0968CC;
}
.rubricks li.is-active a {
  color: inherit !important;
  font-weight: 600;
  font-size: 20px;
}
.rubricks li + li {
  margin-top: 12px;
}
.rubricks--mobile {
  display: none;
}
@media (max-width: 1228px) {
  .rubricks {
    display: none;
  }
}
.rubricks--mobile {
  display: none;
  justify-content: flex-start;
  position: relative;
  user-select: none;
  pointer-events: none;
  margin-top: -20px;
}
@media (max-width: 1228px) {
  .rubricks--mobile {
    display: flex;
  }
}
.rubricks--mobile > * {
  pointer-events: auto;
}
.rubricks--mobile.is-active .rubricks-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rubricks--mobile.is-active .rubricks-current svg {
  transform: rotate(180deg);
}
.rubricks-current {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  cursor: pointer;
}
.rubricks-current-title {
  font-size: 14px;
}
.rubricks-current-count {
  color: #999999;
  margin-left: 6px;
}
.rubricks-current svg {
  margin-left: 5px;
}
.rubricks-popup {
  padding: 18px 24px;
  background: #fff;
  width: 100%;
  max-width: 375px;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(30px);
}
@media (max-width: 1228px) {
  .rubricks-popup {
    width: calc(100% + 36px);
    max-width: calc(100% + 36px);
    left: -18px;
  }
}
.rubricks-popup-title {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 18px;
}
.rubricks-popup ul {
  padding: 10px 0;
}
.rubricks-popup ul li {
  position: relative;
  display: flex;
  align-items: center;
}
.rubricks-popup ul li a {
  padding: 12px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  width: 100%;
}
.rubricks-popup ul li a:hover {
  color: #0968CC;
}
.rubricks-popup ul li a span {
  color: #999999;
  margin-left: 6px;
}
.rubricks-popup ul li.is-active a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../svg/check.svg) no-repeat center center;
  margin-left: auto;
}

@media (max-width: 1228px) {
  .main-title--articles .row > * {
    width: 100%;
  }
}
.breadcrumbs {
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
  color: #999999;
}
.breadcrumbs li {
  display: inline;
  position: relative;
}
.breadcrumbs li:not(:last-child)::after {
  content: "—";
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 8px;
}
.breadcrumbs li a:hover {
  color: #0968CC;
}

.article-content {
  background: #fff;
  padding: 38px 48px 60px;
  position: relative;
  margin-left: 108px;
  margin-right: 108px;
}
@media (max-width: 1228px) {
  .article-content {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (max-width: 979px) {
  .article-content {
    margin-top: 0 !important;
    padding: 32px 18px !important;
    margin-left: -18px;
    margin-right: -18px;
  }
}
.article-image {
  width: 100%;
}
.article-image + .article-content {
  margin-top: -96px;
}
.article img {
  width: 100%;
  display: block;
}

.article-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 40px 48px;
  background-color: #fff;
  display: flex;
  align-items: center;
  margin-left: 108px;
  margin-right: 108px;
}
@media (max-width: 1228px) {
  .article-bottom {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (max-width: 979px) {
  .article-bottom {
    padding: 32px 18px !important;
    margin-left: -18px;
    margin-right: -18px;
  }
}
.article-bottom-content {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}
.article-bottom-content .p-2 {
  color: #666666;
  margin-top: 4px;
}
@media (max-width: 979px) {
  .article-bottom-content .p-2 {
    font-size: 11px;
  }
}
@media (max-width: 979px) {
  .article-bottom-content .subtitle-1 {
    font-size: 16px;
  }
}
.article-bottom-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.article-bottom-links a svg {
  width: 64px;
}
@media (max-width: 979px) {
  .article-bottom-links a svg {
    width: 48px;
  }
}
.article-bottom-links a:hover {
  opacity: 0.75;
}
.article-bottom-links a + a {
  margin-left: 8px;
}

.f-carousel__thumbs {
  --f-thumb-border-radius: 0;
  --f-thumb-width: 72px;
  --f-thumb-height: 72px;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-clip-width: 72px;
}

.f-thumbs__slide {
  border: 4px solid transparent;
}

.f-thumbs__slide.is-selected {
  border: 4px solid #000;
}

.f-thumbs__slide.is-selected,
.f-thumbs__slide {
  --shift: 0!important;
}

.text .f-thumbs {
  margin-top: 2px !important;
}

.fancybox__toolbar__column.is-right .f-button:not(:last-child) {
  display: none !important;
}

.slide-btns {
  display: flex;
}

.slide-btn {
  color: #191919;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  position: relative;
  transition: all 0.3s ease;
  user-select: none;
}
.slide-btn:hover {
  color: #0968CC;
  cursor: pointer;
}
.slide-btn + .slide-btn {
  margin-left: 1px;
}
.slide-btn + .slide-btn::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #F2F2F2;
}
.slide-btn.swiper-button-disabled {
  opacity: 0.1;
  pointer-events: none;
}

.bottom-page-slider {
  background: #1B2D40;
  padding: 44px 0 96px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 979px) {
  .bottom-page-slider {
    padding: 44px 0 48px;
  }
}
.bottom-page-slider-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 66px;
  color: #fff;
  user-select: none;
}
@media (max-width: 979px) {
  .bottom-page-slider-title {
    margin-bottom: 32px;
  }
}
.bottom-page-slider .swiper-container {
  overflow: visible;
}
@media (max-width: 979px) {
  .bottom-page-slider .container {
    padding-right: 60px;
  }
  .bottom-page-slider .slide-btns {
    display: none;
  }
}

.sidebar-text {
  margin-bottom: 24px;
}

.sidebar-phone {
  color: inherit;
  flex-wrap: wrap;
}
.sidebar-phone .footer-phone-link {
  font-size: 24px;
}
.sidebar-phone a {
  margin-bottom: 12px;
}
.sidebar-phone a svg {
  width: 32px;
  height: 32px;
}
.sidebar-phone a span {
  display: block;
}

.sidebar-phone-time {
  font-size: 12px;
  color: #666666;
}

.faq-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid;
}
.faq-item-title {
  width: 300px;
  margin-right: 24px;
}
.faq-item-answer {
  width: calc(100% - 324px);
}
@media (max-width: 599px) {
  .faq-item {
    flex-direction: column;
    padding: 0;
    margin: 0;
    position: relative;
  }
  .faq-item-title {
    width: 100%;
    margin-right: 0;
    padding-right: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .faq-item-title::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../svg/faq.svg) no-repeat center center;
    position: absolute;
    right: 0;
    top: 20px;
  }
  .faq-item-answer {
    width: 100%;
    display: none;
  }
  .faq-item-answer > *:last-child {
    margin-bottom: 32px !important;
  }
  .faq-item.is-active .faq-item-title::after {
    transform: rotate(180deg);
  }
  .faq-item.is-active .faq-item-answer {
    display: block;
  }
}

.sidebar-sticky {
  position: sticky;
  top: 20px;
}

.del-s + .del-s {
  margin-top: 64px;
}
@media (max-width: 979px) {
  .del-s + .del-s {
    margin-top: 48px;
  }
}

.del-s-t2 {
  margin-top: 0 !important;
}

hr {
  height: 4px;
  border: 0;
  background: currentColor;
  margin-top: 40px !important;
  margin-bottom: 24px;
}
@media (max-width: 979px) {
  hr {
    margin-top: 24px !important;
  }
}

.del-s > * + * {
  margin-top: 1em;
}

.delivery-sidebar {
  font-size: 20px;
}
.delivery-sidebar a:hover {
  color: #0968CC;
}
.delivery-sidebar li + li {
  margin-top: 20px;
}
@media (max-width: 1228px) {
  .delivery-sidebar {
    display: flex;
    font-size: 16px;
  }
  .delivery-sidebar li {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .delivery-sidebar li + li {
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .delivery-sidebar {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.contacts-phone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contacts-phone a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.contacts-phone a svg {
  width: 36px;
  height: 36px;
}
.contacts-phone a span {
  display: none;
  font-size: 14px;
  margin-left: 8px;
}
.contacts-phone a:hover {
  opacity: 0.75;
}
.contacts-phone a:not(:last-child) {
  margin-right: 12px;
}
.contacts-phone-link {
  font-size: 36px;
}
.contacts-phone-text {
  width: 100%;
  font-size: 14px;
}
.contacts-phone + .contacts-phone {
  margin-top: 16px;
}

.contacts-info .p-lid {
  display: none;
  margin-top: 24px;
}
.contacts-info .worktime-title {
  margin-top: 40px;
  margin-bottom: 8px;
}
.contacts-info .contacts-email {
  margin-top: 100px;
}
.contacts-info .contacts-email a:hover {
  color: #0968CC;
}
.contacts-info .worktime {
  font-size: 14px;
}
.contacts-info .worktime > div {
  display: flex;
}
.contacts-info .worktime > div + div {
  margin-top: 12px;
}
.contacts-info .worktime > div > div:first-child {
  width: 200px;
}

.contacts-text {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.write-btn {
  width: 168px;
  height: 168px;
  background: #13202E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.write-btn:hover {
  cursor: pointer;
  color: #FFDB3D;

}
.write-btn span {
  display: none;
}

@media (max-width: 1228px) {
  .contacts-layout > .col-5 {
    width: 100%;
    order: 2;
  }
  .contacts-layout > .col-5 .p-lid {
    display: none;
  }
  .contacts-layout > .col-6 {
    width: 100%;
    margin-left: 0;
  }
  .contacts-layout > .col-6 .p-lid {
    display: block;
    font-size: 14px;
  }
  .contacts-layout .worktime-title {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid;
  }
  .contacts-layout .contacts-email {
    margin-top: 32px;
  }

  .write-btn {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-top: 32px;
    justify-content: flex-start;
    line-height: 1.2;
    color: #0968CC;
    flex-wrap: wrap;
  }
  .write-btn br {
    display: none;
  }
  .write-btn span {
    display: block;
    color: #666666;
    text-transform: none;
    width: 100%;
    font-weight: 400;
    display: block;
    font-size: 12px;
  }

  .contacts-phone a:not([class]) {
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .contacts-phone:first-child .contacts-phone-text {
    margin-top: 12px;
  }

  .contacts-phone-link {
    width: 100%;
  }
}
.contacts-bottom .text a {
  font-size: 18px;
}
.contacts-bottom {
  background-color: #fff;
  padding: 50px 0;
  margin-bottom: -96px;
  margin-top: 48px;
}
@media (max-width: 979px) {
  .contacts-bottom {
    padding-bottom: 0;
  }
}
.contacts-bottom .col-6 {
  display: flex;
  flex-direction: column;
}
@media (max-width: 979px) {
  .contacts-bottom .col-6 {
    width: 100%;
  }
}
@media (max-width: 1228px) {
  .contacts-bottom {
    margin-bottom: -72px;
  }
}
.contacts-bottom .contacts-divo {
  color: #FFDB3D;
  font-weight: 700;
  font-size: 120px;
  text-transform: uppercase;
  line-height: 0.8;
}
@media (max-width: 1228px) {
  .contacts-bottom .contacts-divo {
    font-size: 96px;
  }
}
@media (max-width: 979px) {
  .contacts-bottom .contacts-divo {
    display: none;
  }
}
.contacts-bottom .cb-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 979px) {
  .contacts-bottom .cb-flex {
    flex-direction: column;
  }
}
.contacts-bottom .cb-flex + .cb-flex {
  margin-top: auto;
}
.contacts-bottom .cb-flex .subtitle-2 {
  margin-bottom: 8px;
}
@media (max-width: 979px) {
  .contacts-bottom .cb-flex .subtitle-2 {
    margin-top: 24px;
  }
}

.contacts-map {
  width: 100%;
  height: 384px;
  margin-top: 48px;
}
@media (max-width: 979px) {
  .contacts-map {
    margin-top: 16px;
    margin-left: -18px;
    width: calc(100% + 36px);
  }
}

[class*=ymaps-2][class*=-ground-pane] {
  -webkit-filter: grayscale(70%);
}

[class*=gototech],
[class*=gototaxi],
[class*=gotoymaps],
[class*=copyright__content],
[class*=map-copyrights-promo] {
  display: none !important;
}

.modal-overlay {
  z-index: 10000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.modal-overlay.is-active {
  display: block;
}

.modal-overlay-center {
  z-index: 10000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.modal-overlay-center.is-active {
  display: block;
}

#form {
  background: #F7F7F7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thx {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}
.thx.is-active {
  display: block;
}
.thx svg {
  margin-bottom: 48px;
}
.thx .h3 {
  margin-bottom: 16px;
}

.categories > div {
  margin-bottom: 24px;
}
@media (max-width: 599px) {
  .categories > div {
    width: 100%;
  }
}
.categories-item {
  display: flex;
  height: 100%;
}
.categories-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.categories-item-info {
  background: #fff;
  width: 216px;
  flex-shrink: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.categories-item-title {
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #1B2D40;
}
.categories-item-count {
  font-size: 12px;
  margin-bottom: 8px;
}
.categories-item-description {
  margin-top: auto;
  color: #666666;
  font-size: 12px;
  line-height: 16px;
}
.categories-item img {
  width: calc(100% - 216px);
  object-fit: cover;
}
@media (max-width: 1228px) {
  .categories-item {
    flex-direction: column;
    background-color: #fff;
  }
  .categories-item img {
    width: 100%;
    object-fit: initial;
    height: auto;
  }
  .categories-item-info {
    width: 100%;
  }
  .categories-item-title br,
.categories-item-title span {
    display: none;
  }
}

.products > div {
  margin-bottom: 24px;
}
@media (max-width: 979px) {
  .products > div {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .products > div {
    width: 100%;
  }
}
.products-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background-color: #fff;
}
.products-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.products-item-info {
  background: #fff;
  width: 100%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}
.products-item-info-line {
  display: flex;
  align-items: flex-end;
}
.products-item-info-line + .products-item-info-line {
  border-top: 1px solid;
  padding-top: 16px;
  margin-top: 16px;
}
.products-item img {
  display: block;
  height: auto;
}
.products-item .title {
  font-size: 14px;
  line-height: 1.33;
  margin-right: 20px;
}
.products-item .price {
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 28px;
  font-weight: 700;
  position: relative;
}
.products-item .price .from {
  font-weight: 500;
  font-size: 12px;
}
.products-item .price--new {
  color: #EB372D;
}
.products-item .price--old {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  top: -18px;
  right: 0;
}
.products-item .price--old::after {
  content: "";
  height: 2px;
  background: #EB372D;
  width: calc(100% + 15px);
  position: absolute;
  top: 50%;
  transform: rotate(-6deg);
  right: -7px;
}
.products-item .sizes {
  color: #333333;
  font-size: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.products-item .sizes .colors {
  margin-right: 8px;
  display: flex;
  align-items: center;
  position: relative;
}
.products-item .sizes .colors span {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.products-item .sizes .colors span + span {
  margin-left: -4px;
}
.products-item .sizes .colors > span::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #191919;
  left: -2px;
  top: -2px;
  transition: all 0.2s ease;
}
.products-item .attr {
  color: #999999;
  font-size: 12px;
  margin-left: auto;
  text-align: right;
}
.products-item .label {
  position: absolute;
  z-index: 1;
  left: 8px;
  top: 8px;
  height: 28px;
  padding: 0 8px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  background: #fff;
  line-height: 28px;
}

.filters-line {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 44px;
  margin-top: -20px;
}
@media (max-width: 1228px) {
  .filters-line {
    margin-bottom: 32px;
    margin-top: -32px;
  }
}
.filters-line .products-links {
  display: flex;
  align-items: center;
}
@media (max-width: 979px) {
  .filters-line .products-links {
    display: none;
  }
}
.filters-line .products-links a:hover {
  color: #0968CC;
}
.filters-line .products-links .active,
.filters-line .products-links .is-active {
  font-weight: 700;
  color: inherit !important;
  cursor: default;
}
.filters-line .products-links a {
  margin-right: 30px;
}
.filters-line .products-links--mobile {
  display: none;
}
@media (max-width: 979px) {
  .filters-line .products-links--mobile {
    display: block;
  }
}
.filters-line .products-sort {
  margin-left: auto;
}

.select-1 {
  position: relative;
  z-index: 3;
  user-select: none;
  cursor: pointer;
  line-height: 1;
}
.select-1.is-active {
  z-index: 8;
}
.select-1-current {
  height: 48px;
  white-space: nowrap;
  padding: 0 42px 0 12px;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.select-1-current:hover {
  background: #fff;
}
.select-1-current::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 12px;
  width: 16px;
  height: 16px;
  background: url(../svg/select.svg) no-repeat center center;
}
.select-1-current i {
  margin-left: auto;
  font-size: 12px;
  font-style: normal;
}
.select-1.is-active .select-1-current {
  background-color: #fff;
}
.select-1.is-active .select-1-current::after {
  opacity: 0;
}
.select-1-popup {
  padding: 0;
  background: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 205px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.select-1-popup--right {
  right: 0;
  left: auto;
}
.select-1-popup--scroll-y {
  height: calc(50px * 9);
  overflow-y: auto;
}
.select-1-popup .title {
  height: 48px;
  white-space: nowrap;
  padding: 0 12px;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.select-1-popup a {
  height: 48px;
  white-space: nowrap;
  padding: 0 42px 0 12px;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.select-1-popup a.is-active::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 12px;
  width: 16px;
  height: 16px;
  background: url(../svg/check.svg) no-repeat center center;
  color: inherit !important;
  cursor: default;
}
.select-1-popup a:hover {
  color: #0968CC;
}
.select-1-popup a i {
  margin-left: auto;
  font-size: 12px;
  font-style: normal;
}
.select-1-popup li + li {
  border-top: 1px solid #F7F7F7;
}
.select-1-popup li.title + li {
  border-top: 2px solid;
}
.select-1.is-active .select-1-popup {
  opacity: 1;
  visibility: visible;
}

.select-1-current.disabled::after {
  display: none;
}

@media (max-width: 1228px) {
  .products .specials-item-title {
    font-size: 24px;
  }
  .products .specials-item .p-lid {
    font-size: 18px;
  }
}
.filter-icon {
  display: block;
  margin-right: 12px;
  background: url(../svg/filter.svg) no-repeat center center;
  width: 48px;
  height: 48px;
  transition: all 0.2s ease;
}
.filter-icon:hover {
  opacity: 0.75;
  cursor: pointer;
}
.filter-icon span {
  display: none;
}
@media (max-width: 979px) {
  .filter-icon {
    padding-left: 48px;
    width: auto;
    display: flex;
    align-items: center;
    background-position: left center;
  }
  .filter-icon span {
    display: block;
  }
}

.flter-values {
  display: flex;
  flex-wrap: wrap;
}
.flter-values span {
  font-weight: 700;
}
.flter-values > div {
  margin-right: 12px;
}
@media (max-width: 979px) {
  .flter-values {
    display: none;
  }
}

.filter-section > * {
  margin-bottom: 12px;
}
.filter-section > *:last-child {
  margin-bottom: 0;
}
.filter-section + .filter-section {
  margin-top: 32px;
}
.filter-section .select-1 .select-1-current {
  background: #fff;
  font-weight: 700;
}
.filter-section .select-1 .select-1-current span {
  font-weight: 400;
  margin-left: 5px;
  width: 100%;
  display: flex;
  align-items: center;
}

.filter-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 32px 24px;
}

#filter {
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
}

.reset-filter {
  margin-top: 24px;
}
.reset-filter:hover {
  color: #0968CC;
  cursor: pointer;
}

.radio-box {
  height: 48px;
  white-space: nowrap;
  padding: 1px 12px 0 36px;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.2;
  user-select: none;
  cursor: pointer;
  background-color: #fff;
}
.radio-box input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.radio-box > span::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.2);
  left: 12px;
  top: calc(50% - 8px);
}
.radio-box > span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #191919;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  top: calc(50% - 4px);
  opacity: 0;
  z-index: 2;
}
.radio-box input:checked + span::after {
  border-color: rgba(0, 0, 0, 0.2) !important;
}
.radio-box input:checked + span::before {
  opacity: 1;
}
.radio-box i {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
}
.radio-box:hover > span::after {
  border-color: #191919;
}
.radio-box + .radio-box {
  margin-top: 1px;
}

.checkbox-box {
  height: 48px;
  white-space: nowrap;
  padding: 1px 12px 0 36px;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.2;
  user-select: none;
  cursor: pointer;
  background-color: #fff;
}
.checkbox-box input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.checkbox-box > span::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../svg/check.svg) no-repeat center center;
  background-size: 22px;
  position: absolute;
  left: 12px;
  top: calc(50% - 8px);
  opacity: 0;
}
.checkbox-box input:checked + span::before {
  opacity: 1;
}
.checkbox-box i {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
}
.checkbox-box:hover > span::after {
  border-color: #191919;
}
.checkbox-box + .checkbox-box {
  margin-top: 1px;
}

.is-diff {
  display: none;
}

.cart-row {
  display: flex;
  align-items: flex-start;
}

.cart-summary {
  width: 300px;
  position: sticky;
  top: 20px;
}

.cart-content {
  width: calc(100% - 324px);
  margin-right: 24px;
}

.cart-products {
  padding-bottom: 80px;
  border-bottom: 1px solid;
  margin-bottom: 32px;
}
.cart-products > * + * {
  margin-top: 16px;
}

.cart-product-restore {
  background: #fff;
  display: flex;
  align-items: center;
  height: 72px;
}
.cart-product-restore-image {
  width: 92px;
  height: 100%;
}
.cart-product-restore-image img {
  display: block;
  object-fit: cover;
  height: 100%;
}
.cart-product-restore-title {
  margin-left: 16px;
  margin-right: 16px;
}
.cart-product-restore-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  padding: 0 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  margin-left: auto;
  transition: all 0.2s ease;
}
.cart-product-restore-btn:hover {
  color: #0968CC;
}
.cart-product-restore-btn svg {
  margin-left: 8px;
}

.cart-product {
  display: flex;
  background-color: #fff;
}
.cart-product-image {
  width: 256px;
}
.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-product-info {
  width: calc(100% - 256px);
  padding: 20px 24px 16px 24px;
  display: flex;
  flex-wrap: wrap;
}
.cart-product-info-attributes {
  width: 100%;
  font-size: 12px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cart-product-info-attributes > div {
  display: flex;
}
.cart-product-info-attributes > div + div {
  margin-top: 6px;
}
.cart-product-info-attributes > div:nth-child(3) ~ div {
  display: none;
}
.cart-product-info-attributes.is-active > div:nth-child(3) ~ div {
  display: flex;
}
.cart-product-info-attributes-title {
  color: #999999;
}
.cart-product-info-attributes-content {
  margin-left: 4px;
}
.cart-product-info-attributes .show-all-attribs {
  color: #0968CC;
  display: block !important;
}
.cart-product-info-quantity {
  margin-top: 14px;
  display: flex;
  align-items: center;
  user-select: none;
}
.cart-product-info-quantity input {
  border: 0;
  font-size: 16px;
  text-align: center;
  width: 32px;
  margin: 0 4px;
}
.cart-product-info-quantity .plus,
.cart-product-info-quantity .minus {
  width: 20px;
  height: 20px;
  background-color: #191919;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease;
}
.cart-product-info-quantity .plus:hover,
.cart-product-info-quantity .minus:hover {
  opacity: 0.75;
  cursor: pointer;
}
.cart-product-info-quantity .plus {
  background-image: url(../svg/plus.svg);
}
.cart-product-info-quantity .minus {
  background-image: url(../svg/minus.svg);
}
.cart-product-info-price {
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.cart-product-info-price--old {
  font-size: 14px;
  font-weight: 400;
  margin-right: 8px;
  position: relative;
}
.cart-product-info-price--old::after {
  content: "";
  height: 2px;
  background: #EB372D;
  width: calc(100% + 15px);
  position: absolute;
  top: 50%;
  transform: rotate(-6deg);
  right: -7px;
}
.cart-product-title {
  margin-bottom: 12px;
  margin-right: 20px;
}

.select-1-current-w {
  background-color: #fff;
}

.delivery-content {
  margin-top: 16px;
}
.delivery-content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.delivery-content-row input {
  width: calc(50% - 4px);
  margin-top: 8px;
}

.cart-error {
  color: #EB372D;
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.2;
}

.cart-block {
  display: flex;
  padding-bottom: 60px;
  border-bottom: 1px solid;
  margin-bottom: 32px;
  align-items: flex-start;
}
.cart-block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cart-block-title {
  width: 320px;
  padding-right: 24px;
  margin-bottom: 24px;
}
.cart-block-content {
  width: calc(100% - 320px);
  padding-right: 100px;
}

.form-help {
  font-size: 12px;
  line-height: 1.333;
  margin-top: 4px;
  color: #666666;
}
.form-help--main {
  color: #191919;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.45;
}
.form-help a {
  color: #0968CC;
}

.radio-content {
  min-height: 24px;
}
.radio-content textarea {
  margin-top: 16px;
  margin-left: 32px;
  width: calc(100% - 32px);
}

.radio-content + .radio-content {
  margin-top: 16px;
}

.p-quantity {
  display: flex;
  margin-top: 8px;
  margin-left: 32px;
}
.p-quantity-e {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.p-quantity .plus,
.p-quantity .minus {
  width: 48px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease;
}
.p-quantity .plus:hover,
.p-quantity .minus:hover {
  opacity: 0.75;
  cursor: pointer;
}
.p-quantity input {
  width: 40px;
  padding: 0;
}
.p-quantity .plus {
  background-image: url(../svg/plus-b.svg);
}
.p-quantity .minus {
  background-image: url(../svg/minus-b.svg);
}

.cart-user {
  display: flex;
  flex-direction: column;
}
.cart-user * + input {
  margin-top: 1px;
}
.cart-user .form-help {
  margin-top: 8px;
}

.del-d {
  display: none;
  margin-top: 8px;
}
.del-d.is-active {
  display: block;
}

.form-help + .radio-content {
  margin-top: 16px;
}

.radio-content input[type=text] {
  margin-top: 12px;
  margin-left: 32px;
  width: calc(100% - 32px);
}

.cart-summary-main {
  padding: 24px;
  background: #fff;
}
.cart-summary-main .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
}
.cart-summary-main .summary-row + .summary-row {
  margin-top: 8px;
}
.cart-summary-main .summary-row + .summary-row--main {
  margin-top: 24px;
  border-top: 3px solid;
  padding-top: 16px;
  line-height: 1;
}
.cart-summary-main .summary-row--main {
  font-weight: 700;
  flex-direction: column;
}
.cart-summary-main .summary-row--main div:first-child {
  margin-bottom: 5px;
}
.cart-summary-main .summary-row--main div + div {
  font-size: 36px;
}

.cart-summary-promo {
  padding: 16px 24px 24px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.cart-summary-promo .form-control {
  border: 1px solid #191919;
}
.cart-summary-promo .promo-info {
  font-size: 12px;
  margin-top: 12px;
}
.cart-summary-promo .promo-error {
  color: #EB372D;
}
.cart-summary-promo .promo-gray {
  color: #666666;
}
.cart-summary-promo.is-success {
  position: relative;
}
.cart-summary-promo.is-success::after {
  content: "";
  position: absolute;
  background: url(../svg/check.svg) no-repeat center center;
  width: 24px;
  height: 24px;
  right: 32px;
  top: 28px;
}
.cart-summary-promo.is-success .form-control {
  border: 1px solid #F7F7F7;
  background: #F7F7F7;
}

.cart-summary-info {
  margin-top: 16px;
  color: #666666;
  font-size: 12px;
  line-height: 1.33;
}
.cart-summary-info div + div {
  margin-top: 8px;
}
.cart-summary-info a {
  color: #0968CC;
}

.cart-summary-success {
}
.cart-summary-success-top {
  background-color: #FFDB3D;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 24px 35px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
}
.cart-summary-success-top svg {
  margin-bottom: 28px;
}
.cart-summary-success-info {
  background-color: #fff;
  padding: 24px;
}
.cart-summary-success-info div + div {
  font-size: 12px;
  color: #666666;
  line-height: 1.33;
  margin-top: 8px;
}
.cart-summary-success-btn {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.cart-summary-success-btn:hover {
  color: #0968CC;
}

.cart-empty {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 120px 0;
}
.cart-empty svg {
  margin-bottom: 32px;
  width: 138px;
}
.cart-empty .p-lid {
  margin-bottom: 48px;
}
@media (max-width: 979px) {
  .cart-empty {
    padding: 80px 0;
  }
  .cart-empty svg {
    width: 128px;
  }
  .cart-summary-main .summary-row--main {
    flex-direction: row;
  }
}

.attr-m {
  display: none;
}

@media (max-width: 1228px) {
  .cart-summary {
    width: 220px;
  }

  .cart-content {
    width: calc(100% - 244px);
  }

  .cart-summary-main {
    padding: 16px;
  }

  .cart-summary-main .summary-row {
    font-size: 12px;
  }

  .cart-summary-main .summary-row--main div + div {
    font-size: 24px;
  }

  .cart-summary-promo {
    padding: 16px 16px 16px;
  }

  .cart-product-info {
    padding: 16px;
  }

  .cart-product-info-title {
    font-size: 14px;
  }

  .cart-product-info-price {
    font-size: 16px;
  }

  .cart-block {
    flex-direction: column;
  }

  .cart-block-title {
    width: 100%;
    padding-right: 0;
  }

  .cart-block-content {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 979px) {
  .cart-row {
    flex-direction: column;
  }

  .cart-content {
    width: 100%;
    margin-right: 0;
  }

  .cart-summary {
    width: calc(100% + 36px);
    position: relative;
    margin-top: 60px;
    margin-left: -18px;
    margin-right: -18px;
  }
  .cart-summary .btn {
    margin-left: 18px;
    margin-right: 18px;
    width: calc(100% - 36px);
  }

  .cart-summary-main,
.cart-summary-promo {
    padding: 18px;
  }

  .cart-summary-info {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cart-product-restore-btn span {
    display: none;
  }
  .cart-product-restore-btn svg {
    margin-left: 0;
  }

  .cart-block {
    padding-bottom: 48px;
  }

  .cart-product-info-attributes > div {
    display: none;
  }
  .cart-product-info-attributes.is-active > div {
    display: flex;
  }

  .attr-m {
    display: inline;
  }

  .attr-d {
    display: none;
  }

  .cart-product-info-title {
    width: 100%;
    margin-right: 0;
    order: -2;
  }

  .cart-product-info-price {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }

  .cart-product-image {
    width: 200px;
    flex-shrink: 0;
    height: 150px;
  }

  .cart-product-info {
    width: 100%;
  }

  .cart-product-info-attributes {
    order: -1;
    margin-top: 8px;
  }

  .cart-product-info-attributes.is-active > div {
    flex-direction: column;
  }

  .cart-product-info-attributes-content {
    margin-left: 0;
  }
}
@media (max-width: 599px) {
  .cart-product {
    flex-direction: column;
  }

  .cart-product-image {
    height: auto;
    width: 100%;
  }

  .cart-product-info {
    width: 100%;
    position: relative;
  }

  .cart-product-info-price {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin-left: auto;
    padding-top: 16px;
    justify-content: flex-end;
    display: flex;
  }

  .cart-product-info-quantity {
    position: absolute;
    bottom: 16px;
    z-index: 2;
  }

  .show-all-attribs {
    margin-top: 0;
  }

  .cart-product-info-attributes.is-active .show-all-attribs {
    margin-top: 8px;
  }

  .cart-product-info-attributes.is-active > div:first-child {
    margin-top: 8px;
  }

  .cart-product-info-attributes {
    margin-top: 0;
  }
}
.hslide {
  height: 100%;
  background-color: #FFDB3D;
  overflow: hidden;
  position: relative;
}
.hslide-container {
  position: relative;
  padding-top: 30px;
  height: 100%;
}
.hslide-image {
  margin: 0 auto;
  pointer-events: none;
  object-fit: contain;
  height: 65%;
}
.hslide.hslide-2 .hslide-image {
  margin-top: -100px;
}
.hslide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hslide-link {
  position: absolute;
  right: 0;
  top: 30px;
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
.hslide-link-arrow {
  width: 64px;
  height: 64px;
  background: url(../svg/hslide-arrow.svg) no-repeat center center;
  margin-top: 16px;
}
.hslide-link-arrow:hover {
  opacity: 0.5;
}
.hslide-link .p-2 {
  margin-top: 4px;
}
.hslide-link-bg {
  padding: 32px 24px;
  background-color: #1B2D40;
  max-width: 516px;
}
.hslide-link-bg .h2 {
  color: #FFDB3D;
}
.hslide-link-bg .p-1 {
  border-top: 1px solid #263F59;
  padding-top: 24px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  margin-top: 24px;
}
.hslide-link-bg .p-1 svg {
  flex-shrink: 0;
}

@media (max-width: 1228px) {
  .hslide-image {
    height: 55%;
  }
}
@media (max-width: 780px) {
  .hslide-image {
    height: 52%;
  }
}


.home-slide {
  height: 800px;
}
.home-slide .container,
.home-slide .tab-content,
.home-slide .tab-pane {
  height: 100%;
}

.slide-tabs-container {
  position: relative;
}
.slide-tabs-container .slide-tabs {
  position: absolute;
  left: 0;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  bottom: 48px;
}
.slide-tabs-container .slide-tabs li + li {
  margin-left: 8px;
}
.slide-tabs-container .slide-tabs li a {
  padding: 8px;
  line-height: 1;
  display: inline-block;
}
.slide-tabs-container .slide-tabs li a:hover {
  background-color: #fff;
}
.slide-tabs-container .slide-tabs li.active a {
  background-color: #fff;
}

.social-section {
  padding: 48px 0;
  background-color: #1B2D40;
  color: #fff;
  margin-bottom: 80px;
}
.social-section .social-info {
  padding: 32px;
}
.social-section .social-info-item {
  padding: 16px 56px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.social-section .social-info-item-title svg {
  color: #3A618A;
  width: 40px;
  transition: all 0.2s ease;
  position: absolute;
  right: 0;
  top: 16px;
}
.social-section .social-info-item-title:hover svg {
  color: #fff;
}
.social-section .social-info-item-link {
  color: #FFDB3D;
  margin-top: 4px;
}
.social-section .social-info .social-info-item + .social-info-item {
  border-top: 1px solid #263F59;
}



.widget-vk {
  width: 100%;
  background-color: #13202E;
}
.widget-vk__head {
  padding: 32px 32px 0 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.widget-vk__body {
  padding: 0px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.widget-vk__body img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  margin-right: 8px;
  margin-bottom: 16px;
}
.widget-vk__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}
.widget-vk__subtitle {
  font-size: 12px;
  color: #778EA6;
}
.widget-vk__link {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 24px 0px;
  text-align: center;
  display: block;
}
.widget-vk__logo {
  width: 64px;
  height: 64px;
  margin-right: 16px;
}

@media (max-width: 1400px) {
  .widget-vk__body img:nth-last-child(-n+3) {
    display: none;
  }
}
@media (max-width: 1287px) {
  .widget-vk__body img:nth-last-child(-n+6) {
    display: none;
  }
}
@media (max-width: 1111px) {
  .widget-vk__body img:nth-last-child(-n+9) {
    display: none;
  }
}
@media (max-width: 999px) {
  .widget-vk__body img:nth-last-child(-n+12) {
    display: none;
  }
}
@media (max-width: 979px) {
  .widget-vk__body img:nth-last-child(-n+12) {
    display: block;
  }
}
@media (max-width: 659px) {
  .widget-vk__body img:nth-last-child(-n+3) {
    display: none;
  }
}
@media (max-width: 603px) {
  .widget-vk__body img:nth-last-child(-n+6) {
    display: none;
  }
}
@media (max-width: 547px) {
  .widget-vk__body img:nth-last-child(-n+9) {
    display: none;
  }
}
@media (max-width: 491px) {
  .widget-vk__body img:nth-last-child(-n+12) {
    display: none;
  }
}
@media (max-width: 435px) {
  .widget-vk__body img:nth-last-child(-n+15) {
    display: none;
  }
}
@media (max-width: 379px) {
  .widget-vk__body {
    padding: 0px 28px;
  }
  .widget-vk__body img:nth-last-child(-n+20) {
    display: none;
  }
}

.home-shopping-slider .bottom-page-slider-title {
  color: #191919;
}

.home-shopping-slider {
  padding: 0 0 96px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 979px) {
  .home-shopping-slider {
    padding: 0 0 48px;
  }
}
.home-shopping-slider-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  user-select: none;
}
@media (max-width: 979px) {
  .home-shopping-slider-title {
    margin-bottom: 32px;
  }
}
.home-shopping-slider .swiper-container {
  overflow: visible;
}
@media (max-width: 979px) {
  .home-shopping-slider .container {
    padding-right: 60px;
  }
  .home-shopping-slider .slide-btns {
    display: none;
  }
}
.home-shopping-slider .slide-btns {
  margin-left: 24px;
}

.all-slider-link {
  color: #0968CC;
  margin-left: auto;
  margin-bottom: 17px;
}

.home-menu {
  line-height: 1;
}
.home-menu-item {
  background-color: #fff;
}
.home-menu-item-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: #1B2D40;
}
.home-menu-item-link:hover {
  color: #0968CC;
}
.home-menu-item-image {
  width: 112px;
  margin-right: 24px;
}
.home-menu-item-content {
  display: flex;
  align-items: center;
  width: calc(100% - 136px);
}
.home-menu-item-title {
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
}
.home-menu-item-quantity {
  font-size: 64px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.home-menu-item-quantity span {
  font-size: 14px;
  font-weight: 400;
}
.home-menu-item svg {
  width: 42px;
  margin-left: 64px;
  fill: currentColor;
}

.home-menu-item + .home-menu-item .home-menu-item-link {
  border-top: 1px solid #CCCCCC;
}

.home-blog {
  margin-bottom: 166px;
}
.home-blog-subtitle {
  border-bottom: 2px solid;
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.home-blog-rubricks {
  display: flex;
  flex-wrap: wrap;
}
.home-blog-rubricks li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
  margin-right: 12px;
}
.home-blog-rubricks li a {
  font-size: 14px;
}
.home-blog-rubricks li a span {
  font-size: 12px;
  opacity: 0.34;
  font-weight: 400;
  margin-left: 5px;
  vertical-align: text-top;
}
.home-blog-rubricks li a:hover {
  color: #0968CC;
}
.home-blog .article-item {
  height: auto;
  position: relative;
}
.home-blog .article-item:hover {
  box-shadow: none;
}
.home-blog .article-item + .article-item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.home-blog .col-4:first-child .article-item {
  height: 100%;
}
.home-blog .article-item-info-title {
  margin-bottom: 0;
}
.home-blog .articles-bg {
  background-color: #fff;
  height: 100%;
}

.home-view {
  height: 768px;
  position: relative;
  background-color: #FFDB3D;
  padding-top: 48px;
  overflow: hidden;
}
.home-view-title {
  max-width: 624px;
}
.home-view-link {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
}
.home-view .home-view-beds {
  position: absolute;
  left: 50%;
  bottom: 22px;
  margin-left: -1485px;
  z-index: 1;
  width: 2970px;
  max-width: 10000px;
}
.home-view .home-view-couple {
  position: absolute;
  right: 50px;
  bottom: -50px;
}
.home-view .container {
  z-index: 2;
  position: relative;
  height: 100%;
}

.home-divo {
  color: #778EA6;
  background: #1B2D40;
  padding: 117px 0 130px;
  overflow: hidden;
}
.home-divo-title {
  width: calc(100% + 40px);
  max-width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 32px;
}
.home-divo-title--mobile {
  display: none;
}
.home-divo .p-lid {
  color: #fff;
  margin-bottom: 80px;
}
.home-divo .divo-text .col-6 {
  margin-bottom: 24px;
}

.review {
  border-top: 3px solid;
  padding-top: 24px;
  padding-bottom: 24px;
}
.review-photos {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.review a {
  margin-bottom: 8px;
  margin-right: 8px;
}
.review a img {
  display: block;
  height: 104px;
  width: auto;
}
.review a:hover {
  opacity: 0.75;
}
.review-image {
  display: block;
  margin-bottom: 12px;
}
.review-image-preview {
  width: 104px;
  height: 104px;
  margin-bottom: 8px;
  margin-right: 8px;
  display: block;
  position: relative;
}
.review-image-preview img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.review-image-preview .review-image-remove {
  position: absolute;
  right: 3px;
  top: 3px;
  cursor: pointer;
  line-height: 1;
}
.review-product {
  color: #0968CC;
}
.review-name {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}
.review-name span {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
}
.review-stars {
  margin-bottom: 12px;
  margin-right: 12px;
}
.review-stars-row {
  display: flex;
  flex-wrap: wrap;
}
.review-stars-title {
  margin-bottom: 6px;
}
.review-stars .stars {
  display: flex;
}
.review-stars .stars > div {
  width: 16px;
  height: 16px;
  background: url(../svg/star.svg) no-repeat center center;
}
.review-stars .stars > div.active {
  background: url(../svg/star-active.svg) no-repeat center center;
}
.review-answer {
  display: none;
}
.review-answer-title {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
}
.review-answer-title .js-answer-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
.review-answer-title .js-answer-title:hover {
  color: #0968CC;
}
.review-answer-title .js-answer-title svg {
  margin-left: 6px;
}
.review-answer-title .js-answer-title.is-active svg {
  transform: rotate(180deg);
}

.fancybox__footer {
  display: none;
}

.home-reviews {
  padding: 48px 0 42px;
  background-color: #fff;
}
.home-reviews .review-name {
  margin-bottom: 12px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.home-collection-slider {
  padding: 96px 0 100px;
  background: #1B2D40;
  margin-bottom: 96px;
  overflow: hidden;
}
.home-collection-slider .h2 {
  color: #fff;
  margin-bottom: 18px;
}
.home-collection-slider .swiper-container {
  overflow: visible;
}

.home-collection-slide {
  margin-bottom: 9px;
}
.collections-title {
  color: #3A618A;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 38px;
  width: 50px;
}
.collections-title .swiper-slide {
  cursor: pointer;
  width: auto;
}
.collections-title .swiper-slide-thumb-active {
  color: #fff;
}

.collections-slide {
  width: 1056px;
  user-select: none;
  position: relative;
}
.collections-slide .next {
  background: rgba(19, 32, 46, 0.8);
  position: absolute;
  left: calc(100% + 24px);
  width: 1500px;
  cursor: pointer;
  z-index: 3;
  height: 100%;
}
.collections-slide .next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.collections-slide .next svg {
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
  left: 64px;
}
.collections-slide .prev {
  background: rgba(19, 32, 46, 0.8);
  position: absolute;
  right: calc(100% + 24px);
  width: 1500px;
  cursor: pointer;
  z-index: 3;
  height: 100%;
}
.collections-slide .prev.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.collections-slide .prev svg {
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
  right: 64px;
}
.collections-slide .collection-main {
  width: calc(100% - 328px);
  position: relative;
  margin-right: 8px;
}
.collections-slide .collection-main img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.collections-slide .collection-main .info {
  background-color: #13202E;
  padding: 24px 16px;
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
}
.collections-slide .collection-main .info .title {
  font-size: 14px;
  margin-top: 12px;
}
.collections-slide .collection-main .info .price {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.collections-slide .collection-main .info .price .from {
  color: #778EA6;
  font-size: 14px;
  font-weight: 500;
}
.collections-slide .collection-other {
  width: 320px;
  display: flex;
  flex-direction: column;
}
.collections-slide .collection-other > a {
  display: flex;
}
.collections-slide .collection-other > a + a {
  margin-top: 8px;
}
.collections-slide .collection-other img {
  width: 144px;
  height: 108px;
  object-fit: cover;
  flex-shrink: 0;
}
.collections-slide .collection-other .info {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: calc(100% - 144px);
  padding: 12px 12px 16px;
  color: #fff;
  justify-content: space-between;
  background-color: #13202E;
}
.collections-slide .collection-other .info .title {
  font-size: 12px;
  margin-top: 12px;
}
.collections-slide .collection-other .info .price {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.collections-slide .collection-other .info .price .from {
  color: #778EA6;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.collections-slide .collection-content {
  display: flex;
}

@media (max-width: 1228px) {
  .home-slide {
    height: 700px;
  }

  .social-section .social-info {
    padding: 0;
  }

  .home-shopping-slider .p-lid {
    font-size: 18px;
  }

  .home-menu-item-title {
    font-size: 60px;
  }

  .collections-slide {
    width: 90%;
  }
  .collections-slide .collection-main {
    height: 572px;
  }

  .home-blog .col-3 {
    display: none;
  }

  .home-blog .col-9 {
    width: 100%;
  }

  .home-blog-subtitle {
    display: none;
  }
}
@media (max-width: 979px) {
  .hslide-title br {
    display: none;
  }

  .hslide-link {
    position: static;
    margin-top: 20px;
  }

  .home-slide {
    height: 600px;
  }

  .hslide-image {
    margin-top: 0;
  }

  .hslide.hslide-2 .hslide-image {
    margin-top: -50px;
  }

  .social-section {
    padding: 24px 0;
    margin-bottom: 56px;
  }
  .social-section .col-6 {
    width: 100%;
  }
  .social-section .col-6 + .col-6 {
    margin-top: 24px;
  }
  .social-section .col-4 {
    width: 100%;
  }
  .social-section .col-4 + .col-4 {
    margin-top: 24px;
  }

  .widget-vk {
    min-height: 240px;
  }

  .all-slider-link {
    margin-bottom: 0;
  }

  .home-shopping-slider .specials-item .p-lid + .p-2 {
    display: none;
  }

  .home-menu-item-title {
    font-size: 32px;
  }

  .home-menu-item-quantity {
    font-size: 32px;
  }

  .home-menu-item svg {
    margin-left: 32px;
  }

  .home-collection-slider {
    display: none;
  }

  .home-blog {
    margin-bottom: 52px;
  }
  .home-blog .all-slider-link {
    display: none;
  }
  .home-blog .col-4 {
    width: 100%;
    margin-bottom: 12px;
  }

  .review-photos {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -18px;
  }
  .review-photos > * {
    flex-shrink: 0;
  }

  .home-view-link {
    position: static;
  }

  .home-view {
    height: 540px;
  }
  .home-view .home-view-title {
    margin-bottom: 24px;
  }
  .home-view .home-view-couple {
    display: none;
  }
  .home-view .home-view-beds {
    margin-left: -1000px;
    width: 2000px;
  }

  .home-divo {
    padding: 48px 0;
  }
  .home-divo .col-6 {
    width: 100%;
  }
  .home-divo br {
    display: none;
  }
  .home-divo-title {
    display: none;
  }
  .home-divo-title--mobile {
    display: block;
    margin-left: 18px;
    margin-bottom: 32px;
  }
  .home-divo .p-lid {
    margin-bottom: 24px;
  }
}
.hslide-link-bg .p-1 svg {
  margin-left: auto;
}

.slide-mobile-controls {
  display: none;
}

.home-collection-slider-mobile {
  display: none;
}

@media (max-width: 599px) {
  .slide-tabs-container .slide-tabs {
    width: calc(100% + 18px);
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .slide-tabs-container .slide-tabs a {
    display: block;
  }

  .home-slide {
    overflow: hidden;
  }

  .hslide.hslide-2 .hslide-image {
    margin-top: 0;
  }

  .all-slider-link {
    display: none;
  }

  .home-menu-item-image {
    width: 92px;
    margin-right: 18px;
  }

  .home-menu-item-content {
    width: calc(100% - 110px);
    flex-direction: column;
    padding-right: 48px;
    position: relative;
    align-items: flex-start;
  }
  .home-menu-item-content svg {
    width: 18px;
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
  }

  .home-menu-item-quantity {
    font-size: 14px;
    font-weight: 400;
    flex-direction: row;
    margin-left: 0;
    margin-top: 4px;
  }

  .home-menu-item-quantity span {
    margin-left: 5px;
  }

  .home-menu-item-title {
    font-size: 24px;
  }

  .review .col-3 {
    width: 100%;
    margin-bottom: 24px;
  }
  .review .col-9 {
    width: 100%;
  }
  .review .review-stars {
    width: 50%;
    margin-right: 0;
  }
  .review .review-stars .subtitle-2 {
    font-size: 12px;
  }
  .review .home-reviews {
    padding: 48px 0 18px;
  }

  .slide-mobile-controls {
    display: block;
    margin-top: 16px;
  }
  .slide-mobile-controls .slide-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + 42px);
    margin-left: 0;
    margin-right: -42px;
  }
  .slide-mobile-controls .mob-slider-link {
    margin-left: auto;
    margin-right: auto;
    color: #0968CC;
    display: block;
    text-align: center;
  }

  .home-blog .slide-mobile-controls {
    margin-top: 0;
  }
  .home-blog .mob-slider-link {
    height: 52px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .home-collection-slider-mobile {
    padding: 46px 0 34px;
    background: #1B2D40;
    margin-bottom: 64px;
    overflow: hidden;
    display: block;
  }
  .home-collection-slider-mobile .h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 28px;
  }
  .home-collection-slider-mobile .collections-title {
    display: flex;
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px;
    margin-top: 32px;
    margin-bottom: 0;
    overflow-x: auto;
  }
  .home-collection-slider-mobile .collections-title li + li {
    margin-left: 18px;
  }
  .home-collection-slider-mobile .collections-title .active a {
    color: #fff;
  }
  .home-collection-slider-mobile .collections-tabs a {
    display: block;
  }
  .home-collection-slider-mobile .collections-tabs a img {
    display: block;
  }
  .home-collection-slider-mobile .collections-tabs a .info {
    display: flex;
    align-items: center;
    padding: 24px 16px;
    color: #fff;
    background: #13202E;
    justify-content: space-between;
  }
  .home-collection-slider-mobile .collections-tabs a .info .title {
    order: -1;
    font-size: 14px;
    line-height: 16px;
    margin-right: 20px;
  }
  .home-collection-slider-mobile .collections-tabs a .info .price {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 700;
  }
  .home-collection-slider-mobile .collections-tabs a .info .price .from {
    font-size: 12px;
    font-weight: 500;
  }
  .home-collection-slider-mobile .m-slide {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
    display: flex;
    flex-wrap: nowrap;
  }
  .home-collection-slider-mobile .m-slide a {
    width: 300px;
    flex-shrink: 0;
  }
  .home-collection-slider-mobile .m-slide a + a {
    margin-left: 12px;
  }
  .home-collection-slider-mobile .m-slide .m-next {
    width: 200px;
    background-color: #13202E;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.product-actions {
  position: sticky;
  top: 20px;
}

.product-images {
  position: relative;
  margin-bottom: 48px;
}
.product-images-main a {
  display: block;
}
.product-images-main img {
  width: 100%;
}
.product-images-mini {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}
.product-images-mini .swiper-slide {
  height: 72px;
  width: 72px;
  border: 3px solid transparent;
  transition: all 0.2s ease;
}
.product-images-mini .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-images-mini .swiper-slide.swiper-slide-thumb-active {
  border-color: inherit;
}
.product-images .label {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  height: 32px;
  padding: 0 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  line-height: 32px;
}

.product-intro {
  margin-bottom: 48px;
}

.product-info .col-6 {
  margin-bottom: 48px;
}
.product-info img {
  width: 100%;
  display: block;
}
.product-info .subtitle-1 {
  margin-top: 16px;
}
.product-info .p-2 {
  margin-top: 8px;
}
.product-info-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
.product-info-tabs li {
  margin-right: 4px;
  margin-bottom: 4px;
}
.product-info-tabs li a {
  height: 32px;
  padding: 0 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  display: flex;
}
.product-info-tabs li.active a {
  background: #fff;
}

.product-faq .h3 {
  padding-bottom: 24px;
  border-bottom: 1px solid;
  margin-bottom: 24px;
}
.product-faq .faq-item:last-child {
  border-bottom: 0;
}
.product-actions-mobile .product-price {
  position: fixed;
}
.product-actions-mobile .product-cart {
  position: fixed;
}

.reviews {
  margin-bottom: 68px;
}
.reviews .h3 {
  margin-bottom: 32px;
}
.reviews .subtitle-2 {
  margin-bottom: 12px;
}
.reviews .reviews-photo {
  position: relative;
  user-select: none;
  margin-bottom: 56px;
}
.reviews .reviews-photo .swiper-slide {
  height: 104px;
  width: auto;
}
.reviews .reviews-photo .swiper-slide a {
  display: block;
  height: 100%;
}
.reviews .reviews-photo .swiper-slide a:hover {
  opacity: 0.75;
}
.reviews .reviews-photo .swiper-slide img {
  display: block;
  height: 100%;
  width: auto;
}
.reviews .reviews-photo .next,
.reviews .reviews-photo .prev {
  display: flex;
  height: 100%;
  width: 64px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  z-index: 2;
}
.reviews .reviews-photo .next:hover,
.reviews .reviews-photo .prev:hover {
  cursor: pointer;
  color: #0968CC;
}
.reviews .reviews-photo .next.swiper-button-disabled,
.reviews .reviews-photo .prev.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.reviews .reviews-photo .next {
  right: 0;
}
.reviews .reviews-photo .prev {
  left: 0;
}
.more-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 56px;
  height: 56px;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.more-reviews:hover {
  color: #0968CC;
  cursor: pointer;
}

.product-attributes {
  background-color: #fff;
  padding: 42px 32px 38px;
  margin-bottom: 32px;
}
.product-attributes .h3 {
  margin-bottom: 32px;
}
.product-attributes-table {
  display: flex;
  flex-wrap: wrap;
}
.product-attributes .pa-table {
  width: calc(100% - 228px);
}
.product-attributes .pa-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-attributes .pa-table table th {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 10px 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.product-attributes .pa-table table td {
  padding: 4px 10px 4px 0;
}
.product-attributes .pa-table table tr:first-child td {
  padding-top: 12px;
}
.product-attributes .pa-table table .table-subtitle td {
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 8px;
}
.product-attributes .pa-main {
  width: 196px;
  margin-left: 32px;
}
.product-attributes .pa-main-item {
  line-height: 1;
  font-size: 48px;
  font-weight: 700;
}
.product-attributes .pa-main-item div {
  font-size: 18px;
  line-height: 1.333;
  margin-top: 4px;
  font-weight: 400;
}
.product-attributes .pa-main-item img {
  display: block;
}
.product-attributes .pa-main .pa-main-item + .pa-main-item {
  margin-top: 42px;
}

.q {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url(../svg/q.svg) no-repeat center center, #191919;
  cursor: help;
  transition: all 0.2s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}
.q:hover {
  background: url(../svg/q.svg) no-repeat center center, #0968CC;
}

.modal-help {
  background: #191919;
  color: #fff;
}
.modal-help hr {
  height: 1px;
}
.modal-help p {
  opacity: 0.75;
}

.product-docs {
  margin-bottom: 58px;
}
.product-docs-item {
  margin-bottom: 24px;
  background: url(../svg/pdf.svg) no-repeat left center;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  line-height: 1.42;
  padding-left: 56px;
}
.product-docs-item span {
  color: #666666;
  font-size: 12px;
  line-height: 1.33;
}
.product-docs-item:hover {
  color: #0968CC;
}

.product-map {
  margin-bottom: 80px;
}
.product-map .h3 {
  margin-bottom: 32px;
}
.product-map .p-map {
  position: relative;
  height: 432px;
  width: 100%;
}
.product-map .p-map.is-active {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 9;
}
.product-map #pmap {
  height: 100%;
  width: calc(100% - 360px);
  margin-left: auto;
}
.product-map .js-map {
  position: absolute;
  top: 16px;
  right: 16px;
  transition: all 0.2s ease;
  z-index: 3;
}
.product-map .js-map:hover {
  cursor: pointer;
  color: #0968CC;
}
.product-map .js-map.is-active {
  display: none;
}
.product-map .js-map-close {
  position: absolute;
  top: 16px;
  right: 24px;
  transition: all 0.2s ease;
  z-index: 3;
  display: none;
}
.product-map .js-map-close:hover {
  cursor: pointer;
  color: #EB372D;
}
.product-map .js-map-close.is-active {
  display: block;
}
.product-map .pmap-content {
  height: 100%;
  width: 360px;
  position: absolute;
  left: 0;
  top: 0;
}
.product-map .pmap-content-in {
  background: #fff;
  padding: 24px;
  max-height: 100%;
}
.product-map .p-map.is-active .pmap-content {
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

[class*=-controls__control] {
  position: absolute !important;
  top: 200px !important;
}

.p-addr {
  padding-bottom: 24px;
  border-bottom: 1px solid;
  margin-bottom: 24px;
}
.p-addr-addr {
  margin-top: 6px;
}
.p-addr-sub {
  margin-top: 16px;
}
.p-addr-phone {
  margin-top: 6px;
}
.p-addr .worktime {
  font-size: 14px;
  margin-top: 6px;
}
.p-addr .worktime > div {
  display: flex;
}
.p-addr .worktime > div + div {
  margin-top: 6px;
}
.p-addr .worktime > div > div:first-child {
  width: 200px;
}

.p-product .products-item {
  box-shadow: none !important;
}
.p-product .products-item-info {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.p-product .product-item + .product-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.product-actions {
  display: flex;
  flex-direction: column;
}
.product-actions .btn-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-actions .product-price {
  margin-bottom: 16px;
}
.product-actions .product-price .price {
  white-space: nowrap;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.product-actions .product-price .price--new {
  color: #EB372D;
}
.product-actions .product-price .price--old {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  margin-left: 18px;
  margin-bottom: 4px;
}
.product-actions .product-price .price--old::after {
  content: "";
  height: 2px;
  background: #EB372D;
  width: calc(100% + 15px);
  position: absolute;
  top: 50%;
  transform: rotate(-6deg);
  right: -7px;
}
.product-actions .product-config {
  margin-bottom: 24px;
}
.product-actions .product-config > * + * {
  margin-top: 4px;
}
.product-actions .product-config .select-1 .select-1-current {
  font-weight: 700;
}
.product-actions .product-config .select-1 .select-1-current span {
  font-weight: 400;
  margin-left: 4px;
}
.product-actions .product-config-colors {
  display: flex;
  flex-wrap: wrap;
  padding: 14px 16px 1px;
  background-color: #fff;
  margin-bottom: 8px;
}
.product-actions .product-config-colors .radio-color {
  margin: 0 13px 13px 0;
  position: relative;
  display: block;
  user-select: none;
  cursor: pointer;
}
.product-actions .product-config-colors .radio-color input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.product-actions .product-config-colors .radio-color > span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
}
.product-actions .product-config-colors .radio-color > span::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #fff;
  left: -4px;
  top: -4px;
  transition: all 0.2s ease;
}
.product-actions .product-config-colors .radio-color:hover > span::after {
  border-color: rgba(0, 0, 0, 0.15);
}
.product-actions .product-config-colors .radio-color input:checked + span::after {
  border-color: #191919;
}
.product-actions .product-config-colors .radio-color input.checked-color + span::after {
  border-color: #191919;
}

.product-actions-desktop {
  display: flex;
}
.product-actions-mobile {
  display: none;
  position: relative;
}

.product-actions .product-config-colors--mobile .radio-color > .color,
.product-actions .product-config-colors--mobile .select-1-current .color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
}
.product-actions .product-config-colors--mobile .select-1-current .color {
  margin-top: 0px;
}
.product-actions .product-config-colors--mobile .radio-color input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.product-actions .product-config-colors--mobile .option {
  justify-content: space-between;
}
.product-actions .product-config-colors .radio-color input.checked-color + span::after {
  border-color: #191919;
}
.product-actions .product-config-colors--mobile .select-1-current > span{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1228px) {
  .product-row > .col-3 {
    width: 312px;
  }
  .product-row > .col-9 {
    width: calc(100% - 312px);
  }

  .product-attributes .h3 {
    margin-bottom: 12px;
  }
  .product-attributes .pa-table {
    width: 100%;
  }
  .product-attributes .pa-main {
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
  }
  .product-attributes .pa-main .pa-main-item + .pa-main-item {
    margin-top: 0;
  }
  .product-attributes .pa-main .pa-main-item {
    width: 50%;
    font-size: 24px;
    margin-bottom: 24px;
  }
  .product-attributes .pa-main .pa-main-item div {
    font-size: 15px;
  }

  .product-docs .col-4 {
    width: 100%;
  }
}
.product-config-create svg,
.product-config-create br {
  display: none;
}

@media (max-width: 979px) {
  .product-row > .col-3 {
    width: 0;
  }
  .product-row > .col-9 {
    width: 100%;
  }

  .product-actions {
    z-index: 7;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    top: auto;
    flex-direction: row;
    background-color: #fff;
  }
  .product-actions-mobile {
    display: flex;
  }
  .product-actions-desktop {
    display: none;
  }
  .products-fixed-info {
    position: fixed;
    z-index: 7;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    top: auto;
    flex-direction: row;
    background-color: #fff;
    height: 56px;
  }

  .product-actions .btn-cart {
    border-radius: 0;
    flex-shrink: 0;
    width: 50%;
  }
  .product-actions .btn-cart span span {
    display: none;
  }
  .product-actions .btn-cart svg {
    margin-left: 12px;
  }
  .product-actions .product-config {
    order: -1;
    /* width: 100%; */
    display: flex;
    margin: 0;
    padding: 10px 0px;
  }
  .product-actions .product-config > * {
    margin: 0;
    position: relative;
  }
  .product-actions .product-config > .product-config-create {
    width: 230px;
  }
  .product-actions .product-config > *:not(:last-child) {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
  }
  .product-actions .product-config-create {
    order: -2;
  }
  .product-actions .product-config-create .btn {
    border: 0;
    display: flex;
    align-items: center;
    line-height: 1.3;
    text-align: left;
  }
  .product-actions .product-config-create .btn:hover {
    color: #191919;
    background-color: #fff;
  }
  .product-actions .product-config-create svg {
    display: block;
    margin-right: 8px;
  }
  .product-actions .product-config-create br {
    display: inline;
  }
  .product-actions .product-config-colors {
    padding: 0 16px;
    background-color: #fff;
    margin-bottom: 0;
    flex-wrap: nowrap;
    height: 100%;
    align-items: center;
  }
  .product-actions .product-config-colors .radio-color {
    margin-bottom: 0;
  }
  .product-actions .product-config-colors .radio-color:last-child {
    margin-right: 0;
  }
  .product-actions .product-config .select-1 {
    height: 100%;
  }
  .product-actions .product-config .select-1 .select-1-current {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .product-actions .product-config .select-1 .select-1-current span {
    margin-left: 0;
    margin-top: 4px;
  }
  .product-actions .product-config-colors--mobile .select-1 .select-1-current .color {
    margin-top: 0px;
  }
  .product-actions .product-config .select-1 .select-1-popup {
    top: -15px;
  }
  .product-actions .product-price {
    height: 56px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    background-color: #F7F7F7;
  }
  .product-actions .product-price .price {
    font-size: 24px;
  }
  .product-actions .product-price .price--old {
    font-size: 14px;
  }
    
  .product-actions-mobile  .product-price {
    position: relative;
  }
  .product-actions-mobile .btn-cart {
    position: relative;
  }
  .product-actions-mobile .product-config {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .product-actions-mobile .product-config > * {
    width: 50%;
    padding-top: 5px;
  }
  .product-actions-mobile .product-config > .product-config-colors--mobile {
    padding-top: 0px;
    border-left: 0;
  }
  .product-actions-mobile .product-config > .product-config-create {
    width: 50%;
  }

  .product-actions-mobile .product-config .product-config-create {
    order: 1;
  }
  .product-actions-mobile .product-config .product-config-size {
    order: 2;
  }
  .product-actions-mobile .product-config .product-config-colors--mobile {
    order: 3;
  }
  .product-actions-mobile .product-config .product-config-material {
    order: 4;
  }
  
  .product-actions-not-furniture {
    width: 50%;
  }
  .product-actions-not-furniture .product-config {
    width: 100%;
  }
  .product-actions-not-furniture .product-config .product-config-size {
    width: 100%;
  }

  .product-actions-mobile .product-config .product-config-colors {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 10px 0 16px;
  }
  /* .color-accordion .product-config-colors .radio-color {
    margin: 0 13px 13px 0;
  } */

  .product-actions-mobile .product-config-create .btn {
    align-items: flex-start;
  }
  

  .main-title--product {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 24px;
  }

  .product-images-mini {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 12px;
  }

  .product-info .col-6 {
    width: 100%;
  }

  .product-attributes {
    margin-left: -18px;
    margin-right: -18px;
    padding: 32px 18px;
  }
  .product-attributes .pa-table {
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    width: calc(100% + 36px);
  }
  .product-attributes .pa-table table {
    width: auto;
  }
  .product-attributes .pa-table * {
    white-space: nowrap;
  }

  .pa-main {
    flex-direction: column !important;
  }

  .product-docs {
    margin-bottom: 24px;
  }

  .product-map {
    margin-bottom: 42px;
  }

  .reviews .review .col-3 {
    width: 100%;
  }
  .reviews .review .col-9 {
    width: 100%;
  }

  .product-info-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
    border-bottom: 0;
  }
  .product-info-tabs + .subtitle-1 {
    border-top: 1px solid;
    margin-top: 0;
    padding-top: 16px;
  }
  .product-info-tabs > * {
    flex-shrink: 0;
  }

  .product-map .js-map {
    display: none;
  }
  .product-map #pmap {
    display: none !important;
  }
  .product-map .p-map {
    height: auto;
  }
  .product-map .pmap-content {
    height: auto;
    width: 100%;
    position: relative;
  }

  .reviews-photo {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }
  .reviews-photo .swiper-container {
    overflow: visible;
  }

  .reviews-photo .prev,
.reviews-photo .next {
    display: none !important;
  }

  .product-faq .h3 {
    margin-bottom: 0;
  }

  .product-actions .btn-cart {
    width: 220px;
  }

  .product-actions .product-price {
    width: calc(100% - 220px);
    align-items: flex-start;
    padding: 0 18px;
  }

  .product-actions .product-price .price {
    font-size: 24px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .product-actions .product-price .price--old {
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 0;
  }
  .product-actions .product-price .price--old::after {
    height: 1px;
  }
}

@media (max-width: 500px) {
  .product-actions-mobile .select-1-popup {
    min-width: 100px;
  }
  .product-actions-mobile .product-config > .product-config-colors--mobile {
    margin-bottom: 0px;
  }
  .product-actions-mobile .product-config > .product-config-material {
    margin-bottom: 0px;
  }
  .product-actions-mobile .product-config > * {
    margin-bottom: 21px;
    font-size: 12px;
  }
  .product-actions-mobile .product-config-create .btn {
    height: auto;
    font-size: 9px;
    align-items: center;
    padding: 0px;
    padding-left: 14px;
  }
  .product-actions .product-config-create svg {
    width: 22px;
  }
  .product-actions .product-config-colors--mobile .option {
    padding: 0 22px 0 12px;
  }
  .product-actions .product-config-colors--mobile .select-1-popup a.is-active::after {
    right: 3px;
  }

  .product-actions-not-furniture .product-config > * {
    margin-bottom: 0px;
  }
}

.order-main-text {
  margin-bottom: 46px;
}

.order-title {
  margin-bottom: 12px;
  padding-bottom: 27px;
  border-bottom: 1px solid;
}

.order-mini-summary {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  margin-bottom: 15px;
}
.order-mini-summary div {
  margin-bottom: 12px;
}
.order-mini-summary div + div {
  margin-left: auto;
  font-size: 20px;
  font-weight: 700;
}

.cart-product-info-q {
  font-size: 16px;
}

.order-summary {
  margin-bottom: 160px;
}
.order-summary-item {
  border-top: 1px solid;
  padding-top: 12px;
  margin-top: 48px;
  display: flex;
}
.order-summary-item-info {
  width: 30%;
  line-height: 1.7;
}
.order-summary-item-title {
  width: 40%;
}
.order-summary-item-value {
  margin-left: auto;
  font-size: 20px;
  font-weight: 700;
}
.order-summary-item-value--lg {
  font-size: 36px;
}

.order-products {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.order-user-title {
  border-bottom: 1px solid;
  padding-bottom: 27px;
  margin-bottom: 32px;
}
.order-user-item {
  display: flex;
}
.order-user-item-title {
  width: 30%;
}
.order-user-item-info {
  width: 70%;
}
.order-user-item-info > div + div {
  margin-top: 16px;
}
.order-user-item + .order-user-item {
  margin-top: 16px;
}

.order-statuses {
  padding: 24px;
  background: #fff;
}
.order-statuses-item {
  font-size: 14px;
}
.order-statuses-item--active {
  font-weight: 700;
  font-size: 20px;
}
.order-statuses-item span {
  font-size: 12px;
  color: #999999;
  display: block;
  margin-top: 4px;
  font-weight: 400;
}
.order-statuses-item + .order-statuses-item {
  margin-top: 12px;
}

.order-review {
  padding: 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-top: 0 !important;
}
.order-review .has-review {
  display: flex;
  align-items: center;
}
.order-review .has-review-title {
  font-size: 16px;
  line-height: 1.25;
  padding-right: 25px;
}
.order-review .has-review-toggle {
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.order-review .has-review-toggle:hover {
  color: #0968CC;
}
.order-review .has-review-toggle svg {
  margin-left: 4px;
  transition: all 0.2s ease;
  margin-top: -2px;
}
.order-review .has-review-toggle.is-active svg {
  transform: rotate(180deg);
  margin-top: 0;
}
.order-review-content {
  display: none;
}
.order-review-content.is-active {
  display: block;
}
.order-review-content .review {
  border-top: 0;
  margin-top: 0;
}

.order-form-text .form-control {
  border: 1px solid;
  width: 100%;
  min-height: 136px;
  text-align: left;
}
.order-form-text .subtitle-1 {
  margin-bottom: 12px;
}

.order-form-full {
  padding-top: 16px;
  display: none;
}
.order-form-full.is-active {
  display: block;
}
.order-form-full .order-form-images {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}
.order-form-full .order-form-images .order-form-image {
  display: block;
  height: 104px;
  position: relative;
  margin-right: 8px;
  margin-bottom: 8px;
}
.order-form-full .order-form-images .order-form-image img {
  display: block;
  height: 100%;
  width: auto;
}
.order-form-full .order-form-images .order-form-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../svg/del.svg) no-repeat center center, rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: all 0.2s ease;
}
.order-form-full .order-form-images .order-form-image:hover {
  cursor: pointer;
}
.order-form-full .order-form-images .order-form-image:hover::after {
  opacity: 1;
}

.review-file {
  width: 104px;
  height: 104px;
  margin-bottom: 8px;
  display: block;
  background: url(../svg/file.svg) no-repeat center center, #F7F7F7;
}
.review-file input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  overflow: hideen;
  width: 0;
}
.review-file:hover {
  cursor: pointer;
  opacity: 0.8;
}

.order-form-stars {
  margin-bottom: 36px;
}
.order-form-stars-row {
  display: flex;
  align-items: center;
}
.order-form-stars-row + .order-form-stars-row {
  margin-top: 16px;
}
.order-form-stars .subtitle-2 {
  width: 200px;
}

.form_rating {
  display: flex;
  flex-direction: row-reverse;
}
.form_rating input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.form_rating label {
  background: url(../svg/star-form.svg);
  width: 20px;
  height: 20px;
  margin-right: 4px;
  cursor: pointer;
}
.form_rating label:hover, .form_rating label:hover ~ label {
  background: url(../svg/star-active-form.svg);
}
.form_rating input:checked ~ label {
  background: url(../svg/star-active-form.svg);
}

.mobile-order-summary {
  display: none;
}

@media (max-width: 979px) {
  .cart-order-summary {
    display: none;
  }

  .mobile-order-summary {
    display: block;
    margin-bottom: 24px;
  }

  .order-main-text {
    margin-bottom: 24px;
  }

  .order-summary {
    margin-bottom: 80px;
  }
}
@media (max-width: 599px) {
  .order-review {
    padding: 16px;
    border-top: 1px solid;
  }
  .order-review .has-review-toggle {
    margin-left: 0;
    margin-top: 16px;
    color: #0968CC;
    font-size: 14px;
  }
  .order-review .has-review {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-product-info-q {
    margin-top: -18px;
  }

  .review-photos {
    margin-right: -16px;
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .order-summary-item {
    flex-wrap: wrap;
  }

  .order-summary-item-title {
    width: 60%;
  }

  .order-summary-item-info {
    width: 100%;
    order: 3;
  }

  .order-summary-item-value {
    width: 40%;
    text-align: right;
  }

  .order-summary-item-title.h4 {
    width: auto;
    margin-bottom: 10px;
  }

  .order-summary-item-value--lg {
    width: auto;
  }

  .order-summary-item:last-child {
    align-items: flex-end;
  }

  .order-user-item {
    flex-direction: column;
  }
  .order-user-item > * {
    width: 100% !important;
  }

  .order-user-item-info > div + div {
    margin-top: 6px;
  }

  .order-user-item-title {
    margin-bottom: 12px;
  }
}
.page-lego {
  display: flex;
  height: 100vh;
  justify-content: flex-end;
}
.page-lego-view {
  width: calc(100% - 408px);
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.page-lego-view-top a {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.page-lego-view-top a svg {
  margin-right: 8px;
}
.page-lego-view-top a svg > * {
  transition: all 0.2s ease;
}
.page-lego-view-top a svg .g {
  fill: #fff;
}
.page-lego-view-top a svg .g-line {
  stroke: #E6E6E6;
}
.page-lego-view-top a svg .g-icon {
  fill: #191919;
}
.page-lego-view-top a:hover svg .g-line {
  stroke: #E6E6E6;
}
.page-lego-view-top a:hover svg .g {
  fill: currentColor;
}
.page-lego-view-top a:hover svg .g-icon {
  fill: #fff;
}
.page-lego-view-image {
  margin-bottom: 24px;
  margin-top: 24px;
  max-height: calc(100% - 250px);
  position: relative;
}
.page-lego-view-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}
.page-lego-view-image-zoom {
  position: absolute;
  right: 120px;
  bottom: 150px;
  z-index: 3;
}
.page-lego-view-image-zoom:hover {
  cursor: pointer;
  opacity: 0.7;
}
.page-lego-view-info {
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
.page-lego-view-info span {
  font-weight: 700;
  font-size: 36px;
}
.page-lego-panel {
  width: 408px;
  background-color: #F7F7F7;
  padding: 28px 24px 100px 24px;
  height: 100%;
}
.page-lego-panel .h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-lego-panel .radio-color {
  margin: 0 12px 12px 0;
  position: relative;
  display: block;
  user-select: none;
  cursor: pointer;
}
.page-lego-panel .radio-color input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.page-lego-panel .radio-color > span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
}
.page-lego-panel .radio-color > span > span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  transition: all 0.2s ease;
  transform-origin: center center;
}
.page-lego-panel .radio-color > span::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.2s ease;
  opacity: 0;
  border: 1px solid #191919;
}
.page-lego-panel .radio-color:hover > span::after {
  opacity: 1;
}
.page-lego-panel .radio-color input:checked + span > span {
  transform: scale(0.5);
}
.page-lego-panel .radio-color input:checked + span::after {
  opacity: 1;
}
.page-lego-panel .product-config-colors {
  padding: 16px 4px 4px 16px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}

.filter-section > .filter-help {
  margin-bottom: 20px;
}

.filter-help {
  color: #666666;
  font-size: 12px;
  line-height: 16px;
  margin-top: -8px;
}

.filter-delimeter {
  background: rgba(0, 0, 0, 0.15);
  margin: 32px -24px;
  height: 1px;
  width: calc(100% + 48px);
}

.bed-v {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.2;
  padding-top: 12px;
}
.bed-v span {
  font-size: 48px;
  font-weight: 700;
}
.bed-v-help {
  color: #0968CC;
  font-size: 14px;
  margin-top: 8px;
  cursor: pointer;
}

.is-legg {
  display: none;
}

.furn {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 24px !important;
}
.furn-item {
  padding-left: 8px;
  padding-right: 8px;
  width: 50%;
}
.furn-label {
  position: relative;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.furn-label img {
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.furn-label i {
  font-size: 12px;
  font-style: normal;
  margin-top: 4px;
}
.furn-label input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.furn-label > span {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  width: 16px;
  height: 16px;
}
.furn-label > span::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.2);
  left: 0;
  top: calc(50% - 8px);
}
.furn-label > span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #191919;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: calc(50% - 4px);
  opacity: 0;
  z-index: 2;
}
.furn-label input:checked + span::after {
  border-color: rgba(0, 0, 0, 0.2) !important;
}
.furn-label input:checked + span::before {
  opacity: 1;
}

.btn-lego {
  height: 72px;
  line-height: 72px;
  position: fixed;
  right: 0;
  width: 408px;
  bottom: 0;
  z-index: 6;
  display: block;
}

@media (max-width: 979px) {
  .page-lego {
    height: auto;
    flex-direction: column;
  }
  .page-lego-view {
    height: auto;
    position: relative;
    width: 100%;
    padding: 16px 24px;
    margin-bottom: 24px;
  }
  .page-lego-view-image {
    max-height: 10000px !important;
  }
  .page-lego-view-image-main {
    max-height: 10000px !important;
    width: 100% !important;
  }
  .page-lego-panel {
    width: 100%;
    height: auto;
  }

  .btn-lego {
    width: 100%;
    border-radius: 0;
    position: absolute;
  }

  .furn-item {
    width: 33.333%;
  }

  .page-lego-view-image-zoom {
    right: 24px;
    bottom: 16px;
  }

  .page-lego.is-mini .page-lego-view {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    z-index: 8;
    height: 80px;
    padding: 0 24px;
    align-items: center;
    justify-content: flex-start;
  }
  .page-lego.is-mini .page-lego-view-top a span {
    display: none;
  }
  .page-lego.is-mini .page-lego-view-top a svg {
    margin-right: 0;
  }
  .page-lego.is-mini .page-lego-view-image {
    margin: 0 8px 0 16px;
  }
  .page-lego.is-mini .page-lego-view-image-main {
    height: 48px !important;
    width: auto !important;
  }
  .page-lego.is-mini .page-lego-view-info {
    font-size: 12px;
  }
  .page-lego.is-mini .page-lego-view-info span {
    font-size: 20px;
  }
  .page-lego.is-mini .page-lego-view-top a svg .g-line {
    stroke: none !important;
  }
  .page-lego.is-mini .page-lego-view-image-zoom {
    position: static;
    order: 4;
    margin-left: auto;
    width: 48px;
    height: 48px;
  }
  .page-lego.is-mini .page-lego-view-image-zoom svg {
    width: 100% !important;
    height: 100% !important;
  }
}
@media (max-width: 599px) {
  .furn-item {
    width: 50%;
  }
}
.map-tab {
  display: none;
}
.map-tab.active {
  display: block;
}

.main-view {
  display: flex;
  align-items: flex-start;
}
.main-view-info {
  width: 408px;
  height: 100vh;
  overflow: auto;
  background: #fff;
  padding: 24px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.main-view-info-text {
  margin-bottom: 32px;
}
.main-view-info-text .h3 {
  margin-bottom: 16px;
}
.main-view-info .p-product {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 24px;
}
.main-view-info .products-item-info-line + .products-item-info-line {
  border-top: 0;
  padding-top: 0;
}
.main-view-map {
  height: 100vh;
  top: 0;
  width: calc(100% - 408px);
}
.main-view-map #pmap {
  width: 100%;
  height: 100%;
}

@media (max-width: 979px) {
  .main-view {
    display: flex;
    flex-direction: column;
  }
  .main-view-map {
    order: -1;
    height: 400px;
    width: 100%;
    position: relative;
  }
  .main-view-info {
    width: 100%;
    height: auto;
    overflow: visible;
  }
}
.home-collection-slider .collections-title {
  width: 100% !important;
}
.home-collection-slider .collections-title .swiper-container {
  width: 100% !important;
}
.home-collection-slider .collections-title .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden !important;
  transform: none !important;
}

/*# sourceMappingURL=style.css.map */

.products-props-line {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.products-props-line > span {
  margin: 0px !important;
  margin-top: 3px !important;
  width: 49%;
}

.btn.disabled {
  border: 1px solid #626262;
  background: #626262;
}
.btn.disabled:hover {
  color: #fff;
  cursor: default;
}

@media (max-width: 599px) {
  .categories > div {
    width: 50%;
    margin-bottom: 16px;
  }

  .categories-item-description {
    display: none;
  }

  .categories-item-title {
    font-size: 13px;
  }

  .products > div {
    width: 50%;
    margin-bottom: 16px;
  }

  .products > .col-products-special,
.products > .col-products-article {
    width: 100%;
  }

  .products-item .label {
    left: 6px;
    top: 6px;
    height: 22px;
    padding: 0 4px;
    font-size: 8px;
    line-height: 22px;
  }

  .products-item-info {
    padding: 16px 10px;
  }

  .products-item-info-line {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .products-item .price {
    font-size: 15px;
    margin-left: 0;
    margin-top: 4px;
  }

  .products-item .price--old {
    font-size: 12px;
    top: auto;
    right: auto;
    left: 100%;
    margin-left: 6px;
    bottom: 1px;
  }

  .products-item .price--old::after {
    height: 1px;
    width: calc(100% + 8px);
    top: 50%;
    right: -4px;
  }

  .products-item-info-line + .products-item-info-line {
    padding-top: 10px;
    margin-top: 10px;
  }

  .products-item .sizes {
    margin-right: 0;
    margin-bottom: 4px;
  }

  .products-item .attr {
    text-align: left;
    margin-left: 0;
    margin-top: 7px !important;
  }

  .bottom-page-slider .container {
    padding-right: 115px;
  }

  .bottom-page-slider-title {
    margin-right: -60px;
  }
}

.another-color-text {
  display: none;
}

.promocode-group {
  display: block;
  position: relative;
}
.promocode-group img {
  position: absolute;
  height: 18px;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}




.filter-group {
  padding: 0.5rem 0;
  border-bottom: 1px solid #E9E9E9;
}
.filter-group.-close- .filter-group__header  {
  font-weight: 700;
}
.filter-group__header {
  cursor: pointer;
  height: 48px;
  font-weight: 400;
  font-size: 16px;
  stroke: rgba(17, 17, 17, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.filter-group__header::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 12px;
  width: 16px;
  height: 16px;
  background: url(../svg/select.svg) no-repeat center center;
}
.filter-group__arrow {
  font-size: 0;
  line-height: 0;
  height: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
}

.filter-group__body {
  padding-bottom: 1rem;
}

.filter-group__range {
  padding-bottom: 0.375rem;
}

.filter-group__grid {
  display: -ms-grid;
  display: grid;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.filter-group__list {
  display: -ms-grid;
  display: grid;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.filter-group__item {
  font-size: 0;
  line-height: 0;
}

.filter-group.-close- .filter-group__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
}

.filter-group {
  padding: 0;
  background: #fff;
  border-bottom: none;
  border-radius: 20px;
}
.filter-group:not(:last-child) {
  margin-bottom: 0.625rem;
}
.filter-group__header {
  padding: 1.5rem 1.25rem;
}
.filter-group__body {
  padding: 0 1.25rem 1.625rem 1.25rem;
}
.filter-group__range {
  padding-bottom: 0.5rem;
}

.range__values {
  margin-bottom: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.range__value {
  width: calc(50% - 6px);
  display: block;
  font-weight: 400;
  position: relative;
  border-radius: 6px;
  background: transparent;
}

.range__value input[type=text], .range__value input[type=email], .range__value input[type=password], .range__value input[type=number], .range__value textarea, .range__value select {
  margin: 0;
  width: 100%;
  color: #111;
  outline: none;
  height: 2.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 7px;
  padding: 0.5rem 0.625rem;
  border: 0.125rem solid #111;
  background: transparent;
  display: block;
  vertical-align: mathematical;
}

.range__value input[type=text]::-moz-placeholder, .range__value input[type=email]::-moz-placeholder, .range__value input[type=password]::-moz-placeholder, .range__value input[type=number]::-moz-placeholder, .range__value textarea::-moz-placeholder, .range__value select::-moz-placeholder {
  color: #111;
  opacity: 1;
}

.range__value input[type=text]:-ms-input-placeholder, .range__value input[type=email]:-ms-input-placeholder, .range__value input[type=password]:-ms-input-placeholder, .range__value input[type=number]:-ms-input-placeholder, .range__value textarea:-ms-input-placeholder, .range__value select:-ms-input-placeholder {
  color: #111;
}

.range__value input[type=text]::-webkit-input-placeholder, .range__value input[type=email]::-webkit-input-placeholder, .range__value input[type=password]::-webkit-input-placeholder, .range__value input[type=number]::-webkit-input-placeholder, .range__value textarea::-webkit-input-placeholder, .range__value select::-webkit-input-placeholder {
  color: #111;
}

.range__value input[type=text]::-ms-input-placeholder, .range__value input[type=email]::-ms-input-placeholder, .range__value input[type=password]::-ms-input-placeholder, .range__value input[type=number]::-ms-input-placeholder, .range__value textarea::-ms-input-placeholder, .range__value select::-ms-input-placeholder {
  color: #111;
}

.range__value input[type=text]::placeholder, .range__value input[type=email]::placeholder, .range__value input[type=password]::placeholder, .range__value input[type=number]::placeholder, .range__value textarea::placeholder, .range__value select::placeholder {
  color: #111;
}

.range__value input[type=text]::-ms-clear, .range__value input[type=email]::-ms-clear, .range__value input[type=password]::-ms-clear, .range__value input[type=number]::-ms-clear, .range__value textarea::-ms-clear, .range__value select::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.range__value input[type=text]:focus, .range__value input[type=text]:active, .range__value input[type=email]:focus, .range__value input[type=email]:active, .range__value input[type=password]:focus, .range__value input[type=password]:active, .range__value input[type=number]:focus, .range__value input[type=number]:active, .range__value textarea:focus, .range__value textarea:active, .range__value select:focus, .range__value select:active {
  outline: none;
}

.range__value input[type=text]:focus::-moz-placeholder, .range__value input[type=text]:active::-moz-placeholder, .range__value input[type=email]:focus::-moz-placeholder, .range__value input[type=email]:active::-moz-placeholder, .range__value input[type=password]:focus::-moz-placeholder, .range__value input[type=password]:active::-moz-placeholder, .range__value input[type=number]:focus::-moz-placeholder, .range__value input[type=number]:active::-moz-placeholder, .range__value textarea:focus::-moz-placeholder, .range__value textarea:active::-moz-placeholder, .range__value select:focus::-moz-placeholder, .range__value select:active::-moz-placeholder {
  color: transparent;
  opacity: 1;
}

.range__value input[type=text]:focus:-ms-input-placeholder, .range__value input[type=text]:active:-ms-input-placeholder, .range__value input[type=email]:focus:-ms-input-placeholder, .range__value input[type=email]:active:-ms-input-placeholder, .range__value input[type=password]:focus:-ms-input-placeholder, .range__value input[type=password]:active:-ms-input-placeholder, .range__value input[type=number]:focus:-ms-input-placeholder, .range__value input[type=number]:active:-ms-input-placeholder, .range__value textarea:focus:-ms-input-placeholder, .range__value textarea:active:-ms-input-placeholder, .range__value select:focus:-ms-input-placeholder, .range__value select:active:-ms-input-placeholder {
  color: transparent;
}

.range__value input[type=text]:focus::-webkit-input-placeholder, .range__value input[type=text]:active::-webkit-input-placeholder, .range__value input[type=email]:focus::-webkit-input-placeholder, .range__value input[type=email]:active::-webkit-input-placeholder, .range__value input[type=password]:focus::-webkit-input-placeholder, .range__value input[type=password]:active::-webkit-input-placeholder, .range__value input[type=number]:focus::-webkit-input-placeholder, .range__value input[type=number]:active::-webkit-input-placeholder, .range__value textarea:focus::-webkit-input-placeholder, .range__value textarea:active::-webkit-input-placeholder, .range__value select:focus::-webkit-input-placeholder, .range__value select:active::-webkit-input-placeholder {
  color: transparent;
}

.range__value input[type=text]:focus::-ms-input-placeholder, .range__value input[type=text]:active::-ms-input-placeholder, .range__value input[type=email]:focus::-ms-input-placeholder, .range__value input[type=email]:active::-ms-input-placeholder, .range__value input[type=password]:focus::-ms-input-placeholder, .range__value input[type=password]:active::-ms-input-placeholder, .range__value input[type=number]:focus::-ms-input-placeholder, .range__value input[type=number]:active::-ms-input-placeholder, .range__value textarea:focus::-ms-input-placeholder, .range__value textarea:active::-ms-input-placeholder, .range__value select:focus::-ms-input-placeholder, .range__value select:active::-ms-input-placeholder {
  color: transparent;
}

.range__value input[type=text]:focus::placeholder, .range__value input[type=text]:active::placeholder, .range__value input[type=email]:focus::placeholder, .range__value input[type=email]:active::placeholder, .range__value input[type=password]:focus::placeholder, .range__value input[type=password]:active::placeholder, .range__value input[type=number]:focus::placeholder, .range__value input[type=number]:active::placeholder, .range__value textarea:focus::placeholder, .range__value textarea:active::placeholder, .range__value select:focus::placeholder, .range__value select:active::placeholder {
  color: transparent;
}

@media (min-width: 1024px) {
  .range__value input[type=text], .range__value input[type=email], .range__value input[type=password], .range__value input[type=number], .range__value textarea, .range__value select {
    height: 3.125rem;
    font-size: 0.9375rem;
    line-height: 1.375rem;
    padding: 0.75rem 0.625rem;
  }
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
 .noUi-target,
 .noUi-target * {
   -webkit-touch-callout: none;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
   -webkit-user-select: none;
   -ms-touch-action: none;
   touch-action: none;
   -ms-user-select: none;
   -moz-user-select: none;
   user-select: none;
   -webkit-box-sizing: border-box;
           box-sizing: border-box;
 }
 
 .noUi-target {
   position: relative;
 }
 
 .noUi-base,
 .noUi-connects {
   width: 100%;
   height: 100%;
   position: relative;
   z-index: 1;
 }
 
 /* Wrapper for all connect elements.
  */
 .noUi-connects {
   overflow: hidden;
   z-index: 0;
 }

 .noUi-connect,
 .noUi-origin {
   will-change: transform;
   position: absolute;
   z-index: 1;
   top: 0;
   right: 0;
   height: 100%;
   width: 100%;
   -ms-transform-origin: 0 0;
   -webkit-transform-origin: 0 0;
   -webkit-transform-style: preserve-3d;
   transform-origin: 0 0;
   -webkit-transform-style: flat;
           transform-style: flat;
 }
 
 /* Offset direction
  */
 .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
   left: 0;
   right: auto;
 }
 
 /* Give origins 0 height/width so they don't interfere with clicking the
  * connect elements.
  */
 .noUi-vertical .noUi-origin {
   top: -100%;
   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: -webkit-transform 0.3s;
   transition: -webkit-transform 0.3s;
   -o-transition: transform 0.3s;
   transition: transform 0.3s;
   transition: transform 0.3s, -webkit-transform 0.3s;
 }
 
 .noUi-state-drag * {
   cursor: inherit !important;
 }
 
 /* Slider size and handle placement;
  */
 .noUi-horizontal {
   height: 2px;
 }
 
 .noUi-horizontal .noUi-handle {
   width: 14px;
   height: 14px;
   right: -6px;
   top: -6px;
 }
 
 .noUi-vertical {
   width: 18px;
 }
 
 .noUi-vertical .noUi-handle {
   width: 28px;
   height: 34px;
   right: -6px;
   bottom: -17px;
 }
 
 .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
   left: -17px;
   right: auto;
 }
 
 /* Styling;
  * Giving the connect element a border radius causes issues with using transform: scale
  */
 .noUi-target {
   background: rgba(17, 17, 17, 0.3);
 }
 
 .noUi-connects {
   border-radius: 3px;
 }
 
 .noUi-connect {
   background: #111;
 }
 
 /* Handles and cursors;
  */
 .noUi-draggable {
   cursor: ew-resize;
 }
 
 .noUi-vertical .noUi-draggable {
   cursor: ns-resize;
 }
 
 .noUi-handle {
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: #111;
   cursor: pointer;
 }
 
 .noUi-active {
   -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
           box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
 }
 
 /* Disabled state;
  */
 [disabled] .noUi-connect {
   background: #b8b8b8;
 }
 
 [disabled].noUi-target,
 [disabled].noUi-handle,
 [disabled] .noUi-handle {
   cursor: not-allowed;
 }
 
 /* Base;
  *
  */
 .noUi-pips,
 .noUi-pips * {
   -webkit-box-sizing: border-box;
           box-sizing: border-box;
 }
 
 .noUi-pips {
   position: absolute;
   color: #999;
 }
 
 /* Values;
  *
  */
 .noUi-value {
   position: absolute;
   white-space: nowrap;
   text-align: center;
 }
 
 .noUi-value-sub {
   color: #ccc;
   font-size: 10px;
 }
 
 /* Markings;
  *
  */
 .noUi-marker {
   position: absolute;
   background: #ccc;
 }
 
 .noUi-marker-sub {
   background: #aaa;
 }
 
 .noUi-marker-large {
   background: #aaa;
 }
 
 /* Horizontal layout;
  *
  */
 .noUi-pips-horizontal {
   padding: 10px 0;
   height: 80px;
   top: 100%;
   left: 0;
   width: 100%;
 }
 
 .noUi-value-horizontal {
   -webkit-transform: translate(-50%, 50%);
       -ms-transform: translate(-50%, 50%);
           transform: translate(-50%, 50%);
 }
 
 .noUi-rtl .noUi-value-horizontal {
   -webkit-transform: translate(50%, 50%);
       -ms-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;
 }
 
 /* Vertical layout;
  *
  */
 .noUi-pips-vertical {
   padding: 0 10px;
   height: 100%;
   top: 0;
   left: 100%;
 }
 
 .noUi-value-vertical {
   -webkit-transform: translate(0, -50%);
       -ms-transform: translate(0, -50%);
           transform: translate(0, -50%);
   padding-left: 25px;
 }
 
 .noUi-rtl .noUi-value-vertical {
   -webkit-transform: translate(0, 50%);
       -ms-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);
       -ms-transform: translate(-50%, 0);
           transform: translate(-50%, 0);
   left: 50%;
   bottom: 120%;
 }
 
 .noUi-vertical .noUi-tooltip {
   -webkit-transform: translate(0, -50%);
       -ms-transform: translate(0, -50%);
           transform: translate(0, -50%);
   top: 50%;
   right: 120%;
 }
 
 .noUi-horizontal .noUi-origin > .noUi-tooltip {
   -webkit-transform: translate(50%, 0);
       -ms-transform: translate(50%, 0);
           transform: translate(50%, 0);
   left: auto;
   bottom: 10px;
 }
 
 .noUi-vertical .noUi-origin > .noUi-tooltip {
   -webkit-transform: translate(0, -18px);
       -ms-transform: translate(0, -18px);
           transform: translate(0, -18px);
   top: auto;
   right: 28px;
 }

.delivery-moskov {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.delivery-moskov div {
  margin-right: 13px;
}
@media (max-width: 580px)
{
  .delivery-moskov {
    flex-direction: column;
    align-items: flex-start;
  }
  .delivery-moskov div {
    margin-bottom: 8px;
  }
}

.js-products-links-slider {
  width: 75%;
}
.js-products-links-slider a {
  width: fit-content;
  margin-right: 0px;
}


.products-props-line .hardness-top,
.products-props-line .hardness-bottom {
  position: relative;
  margin: 0px !important;
  margin-left: 16px !important;
  width: auto;
}

.hardness-top::before {
  content: '\2191';
  position: absolute;
  left: -14px;
}
.hardness-bottom::before {
  content: '\2193';
  position: absolute;
  left: -14px;
}
.products-item
.mattresses-attr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.make-order-text {
  line-height: 1.2;
}

.filter-group__header_empty-arrow::after {
  display: none;
}

@media (max-width: 599px) {
  .products-item
  .mattresses-attr {
    justify-content: flex-start;
    width: 100%;
  }
}

.show-all {
  display: none;
  margin-top: 15px;
  cursor: pointer;
  border-bottom: 1px solid rgb(25, 25, 25);
  width: fit-content;
}

#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #F7F7F7;
  left: 0px;
  top: 0px;
  z-index: 999;
}

[data-no-ui-slider-inputs] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
[data-no-ui-slider-inputs] input {
  width: 43% !important;
}

.product-images {
  height: 700px;
}
@media (max-width: 1050px) {
  .product-images {
    height: 500px;
  }
}
@media (max-width: 750px) {
  .product-images {
    height: 400px;
  }
}

.smart-captcha.error {
  border: 1px solid #FF0000;
  border-radius: 11px;
}