:root {
  --default-bg-color: #f5f5f7;
  --black: #1d1d1d;
  --black2: #252525;

  --red: #b7182e;
  --white: #ffffff;
  --white2: #f4f5f4;
  --grey: #dadada;

  --d-padding: 20px;
  --m-padding: 16px;
}

/* Begin CSS Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
textarea {
  resize: vertical;
}
/* End CSS Reset */

@keyframes menuShow {
  from {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes menuHide {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}


/*
   ==========================================================================
   Base styles: opinionated defaults
   ==========================================================================
*/
html {
  height: 100%;
}

body {
  height: 100%;
  background-color: var(--default-bg-color);
  color: var(--black2);
  /*font-family: 'Gilroy', sans-serif;*/
  /*font-weight: 400;*/
  /*font-style: normal;*/
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  width: 100%;
}

.content {
  flex: 1 0 auto;
  position: relative;
}

.footer {
  flex: 0 0 auto;
}

.inner {
  position: relative;
  margin: 0 auto;
  padding: 0 var(--m-padding);
  max-width: 1200px;
}
.v-vk-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .inner {
    padding: 0 var(--d-padding);
  }
}

/* fonts */
body {
  font-size: 15px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 1199px) {
  body {
    font-size: 18px;
  }
}

@media (min-width: 1568px) {
  body {
    font-size: 20px;
  }
}

/* */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  padding: 0;
  margin: 0 0 var(--d-padding);
  color: var(--black);
}

h1 {
  font-size: 44px;
  font-weight: 300;
}

@media (min-width: 768px) {
  h1 {
    font-size: 52px;
  }
}

@media (min-width: 1199px) {
  h1 {
    font-size: 56px;
  }
}

h2 {
  font-size: 26px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

@media (min-width: 1199px) {
  h2 {
    font-size: 32px;
  }
}

p {
  font-size: 14px;
}

@media (min-width: 768px) {
  p {
    font-size: 15px;
  }
}

@media (min-width: 1199px) {
  p {
    font-size: 16px;
  }
}

@media (min-width: 1568px) {
  p {
    font-size: 18px;
  }
}

a {
  color: var(--black);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 var(--d-padding);
}

.title-wrapper {
  padding: var(--d-padding);
  text-align: left;
}

.title-wrapper h2,
.title-wrapper h3 {
  margin-bottom: 10px;
  font-weight: 500;
}

.title-wrapper p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .title-wrapper {
    text-align: center;
  }
}

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

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

.text-weight-normal {
  font-weight: normal;
}

.text-white {
  color: var(--white);
}

.d-none {
  display: none;
}

.h100 {
  height: 100%;
}

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

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

.img-right,
.img-right2 {
	object-position: right;
}

.d-mobile-none {
	display: block;
}

.d-mobile {
	display: none;
}

@media only screen and (max-width: 425px) {
	.img-pos-left-m {
		object-position: 18%;
	}

	.d-mobile-none {
		display: none;
	}

	.d-mobile {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.img-wrapper.h100 {
  		height: 420px;
	}

	.img-right2 {
		object-position: 70%;
	}
}

.img-wrapper {
  background: url(../img/bg2.webp) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  border-radius: var(--d-padding);
  text-align: right;
  max-height: 440px;
}

@media only screen and (min-width: 768px) {
  .img-wrapper {
    max-height: 540px;
  }
}

.img-wrapper .img-contain {
  object-position: bottom right;
}

.img-wrapper + .img-wrapper {
  margin-top: var(--d-padding);
}

/* */
.store-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--m-padding);
  padding: var(--m-padding);
}

.store-btns .img-contain {
  height: 42px;
  width: auto;
}

@media only screen and (min-width: 768px) {
  .store-btns {
     min-height: 100px;
  }
  .store-btns .img-contain {
    height: 50px;
  }
}

.btn {
  min-width: 160px;
  height: 44px;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  padding: 0 var(--d-padding);
  color: var(--white);
  background-color: #4C21BC;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .btn {
    min-width: 200px;
    height: 55px;
    font-size: 18px;
  }
}

/* */
.goToTop {
  display: inline-block;
  z-index: 100;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  border: none;
  outline: none;
  text-align: center;
  background-color: rgba(182, 24, 45, 0.3);
  width: 40px;
  height: 40px;
  bottom: 25px;
  right: 25px;
}

.goToTop.show {
  opacity: 1;
  visibility: visible;
}

.goToTop:hover, .goToTop:active {
  cursor: pointer;
  background-color: rgba(182, 24, 45, 0.7);
}

@media only screen and (min-width: 768px) {
  .goToTop {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
  }
}

.goToTop:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/arrow-2px.svg) no-repeat center center;
  background-size: 20px 12px;
}

@media only screen and (min-width: 768px) {
  .goToTop:after {
    background-size: 38px 20px;
  }
}

/* */
.logo {
  height: 32px;
}

.logo .logo__icon {
  fill: var(--red);
}

.logo .logo__title {
  fill: var(--black);
}

/* */
.hero {
	height: 630px;
	padding-top: 80px;
	background: url(../img/hero_m.webp) no-repeat center center;
	background-size: cover;
}

@media only screen and (min-width: 768px) {
  .hero {
    height: 74vh;
	min-height: 500px;
	padding-top: 100px;
    background: url(../img/hero_d1_2.webp) no-repeat center center;
    background-size: cover;
  }
}

@media (min-width: 1199px) {
  .hero {
	min-height: 640px;
  }
}

.hero__inner {
  padding-top: 20vh;
}

.hero h1 {
  color: var(--white);
}

@media only screen and (min-width: 768px) { 
	.hero .text-center {
  		text-align: left;
		max-width: 50%;
	}
}

/* */
.header {
	padding: var(--d-padding);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header .inner {
  padding: var(--m-padding);
  background-color: var(--white);
  border-radius: 5px;
}

.header .header__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--d-padding);
  position: relative;
}

.header .logo {
  width: auto;
  height: 25px;
}

.header .logo .logo__title {
  display: none;
}

.header .header-toggler {
  display: flex;
  cursor: pointer;
}

.header .header-menu ul > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--m-padding);
}

.header .header-menu ul > li:before {
  content: '';
  display: inline-flex;
  width: 8px;
  height: 8px;
  background-color: var(--red);
  transform: rotate(45deg);
}

.header .header-menu a {
  font-weight: 500;
  text-decoration: none;
}

.header .header-menu a:hover {
  color: #c7c7c7;
}

.header-menu__contacts {
  display: none;
}

.header-menu__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .icon-close {
    cursor: pointer;
  }

  .header-menu {
    padding: var(--m-padding);
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #E8E8E8;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    animation: menuHide 0.5s cubic-bezier(0.16, 1, 0.3, 1), fadeOut 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    opacity: 0;
  }

  .header-menu.open-state {
    animation: menuShow 1s cubic-bezier(0.16, 1, 0.3, 1), fadeIn 0.1s linear;
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column-reverse;
  }

  input[type="checkbox"].m-checkbox:checked ~ .header-menu {
    animation: menuShow 1s cubic-bezier(0.16, 1, 0.3, 1), fadeIn 0.1s linear;
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column-reverse;
  }

  .header-menu__contacts {
    margin-top: auto;
    display: inline-flex;
    padding: var(--d-padding);
    font-size: 12px;
  }

  .header-menu__wrapper {
    background-color: var(--white);
    padding: var(--m-padding);
    border-radius: var(--m-padding);
    flex-direction: column-reverse;
    position: relative;
  }

  .header-menu__wrapper ul {
    padding-top: 5px;
  }
  .header-menu__wrapper ul li {
    border-top: 1px solid #F6F6F6;
    padding: var(--m-padding);
  }

  .header-menu__wrapper .icon-close {
    display: block;
    position: absolute;
    top: var(--m-padding);
    right: var(--m-padding);
  }
}

@media only screen and (min-width: 768px) {
  .header .inner {
    border-radius: 10px;
    padding: var(--d-padding);
  }

  .header .logo {
    height: 35px;
  }

  .header .logo .logo__title {
    display: inline-flex;
  }

  .header .header-toggler {
    display: none;
  }

  .header .header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: var(--d-padding);
  }

  .header .header-menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--d-padding);
  }

  .header .header-menu ul > li {
    padding: 0 0 0 var(--d-padding);
  }

  .header .header-menu ul > li:nth-child(3) {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .header .header-menu ul > li:nth-child(3) {
    display: inline-flex;
  }
}

.footer {
  padding: 30px 0 20px;
  color: var(--black);
}

.footer * {
  font-family: 'Montserrat', sans-serif !important;
}

.footer a {
  color: var(--black);
}

.footer .footer__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--d-padding);
}

.footer .footer__row .footer__item {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: var(--d-padding);
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }

  .footer .footer__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .footer .footer__row .footer__item:nth-child(2) {
    width: 60%;
  }

  .footer .phone-btn {
    margin-left: auto;
  }
}

.footer__menu {
  display: flex;
  flex-direction: column-reverse;
}

.footer__menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__menu li {
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .footer__menu {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
  }

  .footer__menu ul {
    flex-direction: column;
    align-items: flex-end;
  }

  .footer__menu li {
    margin: 5px 0;
  }
}

.content {
  padding-top: var(--d-padding);
  padding-bottom: var(--d-padding);
}

.phone-btn {
  background-color: transparent;
  border-radius: 5px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
}
.phone-btn svg {
  fill: var(--red);
}
.phone-btn span {
  color: var(--black);
  white-space: nowrap;
}
.phone-btn * {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
}

@media (min-width: 768px) {
  .footer .phone-btn {
    font-size: 20px;
  }

  .footer .phone-btn svg {
    fill: var(--black);
  }
}

/* */
.content-row {
  display: flex;
  flex-direction: column;
  gap: var(--d-padding);
  margin-bottom: var(--d-padding);
}

.content-row > div {
  position: relative;
  border-radius: var(--d-padding);
  overflow: hidden;
}

.content-row__main {
  background-color: var(--white);
}

.content-row__main.bg-violet {
  background: url(../img/bg.webp) no-repeat center center;
  background-size: cover;
}

.content-row__second {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .content-row {
    flex-direction: row;
    align-items: stretch;
  }

  .content-row.content-row__reverse {
    flex-direction: row-reverse;
  }

  .content-row__main {
    width: calc(100% - 360px);
  }

  .content-row__second {
    width: 360px;
  }
}

.content-row-slider,
.v-vk-video{
  position: relative;
  overflow: hidden;
  border-radius: var(--d-padding);
  margin-bottom: var(--d-padding);
}

.content-row-video {
	display: none;
}

@media (min-width: 768px) {
	.content-row-video {
		display: grid;
		grid-column-gap: var(--d-padding);
		grid-template-columns: repeat(3, 1fr);
  }
}

.content-row-video > .vi-video-api-wrapper {
  overflow: hidden;
  border-radius: var(--d-padding);
  margin-bottom: var(--d-padding);
  height: 340px;
}

.vi-video-api-wrapper {
  position: relative;
}

.vi-video-api-wrapper .vi-img-block {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  cursor: pointer;
}

.vi-video-api-wrapper .vi-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vi-video-api-wrapper .title-wrapper {
  position: absolute;
  top: var(--d-padding);
  padding: 0 var(--d-padding);
  width: 100%;
  text-align: left;
}

.vi-video-api-wrapper .title-wrapper * {
  color: var(--white);
}

.vi-video-api-wrapper .video-play-btn {
  width: 63px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.vi-video-api-wrapper .player {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.vi-video-api-wrapper .player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
    object-fit: cover;
}

/****/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  width: auto;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--white);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.single-slide,
.v-vk-video{
  height: 440px;
}

.single-slide .swiper-pagination {
  bottom: 30px;
}

.single-slide .title-wrapper {
  position: absolute;
  width: 100%;
  text-align: center;
}

.single-slide .title-wrapper * {
  color: var(--white);
}

@media (min-width: 768px) {
  .single-slide,
  .v-vk-video {
    height: 540px;
  }

  .single-slide .title-wrapper {
    left: 50px;
    top: 40%;
    text-align: left;
  }
}

/* */
.multi-slide {
  padding: 0 var(--d-padding) 50px;
  height: 320px;
}

.multi-slide.square {
  height: 280px;
}

.multi-slide .swiper-pagination {
  bottom: 20px;
}

.multi-slide.options .swiper-pagination-bullet {
  background-color: #CDCBCB;
}

@media (min-width: 768px) {
  .multi-slide {
    padding: 0 var(--d-padding) 70px;
    height: 420px;
  }

  .multi-slide .swiper-pagination {
    bottom: 35px;
  }

  .multi-slide.square {
    height: 380px;
  }

  .multi-slide.square .swiper-pagination {
    bottom: 25px;
  }
}

.m-feature {
  width: 200px;
  height: 100%;
  border-radius: 6px;
  background-color: var(--white);
  padding: var(--d-padding);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--m-padding);
  position: relative;
}

.multi-slide.square .m-feature {
  width: 250px;
}

.multi-slide.options .m-feature {
  border: 1px solid rgba(0, 0, 0, 0.3);
  justify-content: flex-end;
}

.m-feature.f1 {
  background: var(--white) url(../img/f1.png) no-repeat right bottom;
  background-size: cover;
}

.m-feature.f2 {
  background: var(--white) url(../img/f2.png) no-repeat right bottom;
  background-size: cover;
}

.m-feature.f3 {
  background: var(--white) url(../img/f3.png) no-repeat right bottom;
  background-size: cover;
}

.m-feature.f4 {
  background: var(--white) url(../img/f4.png) no-repeat right bottom;
  background-size: cover;
}

.m-feature.f5 {
  background: var(--white) url(../img/f5.png) no-repeat right bottom;
  background-size: cover;
}

.m-feature.f6 {
  background: var(--white) url(../img/f6.png) no-repeat right bottom;
  background-size: cover;
}

.m-feature.f750o1 {
  background: var(--white) url(../img/750o1.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f750o2 {
  background: var(--white) url(../img/750o2.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f750o3 {
  background: var(--white) url(../img/750o3.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f750o4 {
  background: var(--white) url(../img/750o4.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f750o5 {
  background: var(--white) url(../img/750o5.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f750o6 {
  background: var(--white) url(../img/750o6.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f750o7 {
  background: var(--white) url(../img/750o7.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o1 {
  background: var(--white) url(../img/690o1.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o2 {
  background: var(--white) url(../img/690o2.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o3 {
  background: var(--white) url(../img/690o3.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o4 {
  background: var(--white) url(../img/690o4.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o5 {
  background: var(--white) url(../img/690o5.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o6 {
  background: var(--white) url(../img/690o6.png) no-repeat center top;
  background-size: cover;
}

.m-feature.f690o7 {
  background: var(--white) url(../img/690o7.png) no-repeat center top;
  background-size: cover;
}

.m-feature .m-feature__icon {
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.m-feature .m-feature__icon svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.m-feature .m-feature__title {
  /*font-weight: 500;*/
}

.m-feature .m-feature__title b {
  font-weight: 500;
}

.m-feature .m-feature__hint {
  position: absolute;
  left: var(--m-padding);
  bottom: var(--m-padding);
}

@media (min-width: 768px) {
  .m-feature {
    width: 270px;
    border-radius: 10px;
  }

  .m-feature .m-feature__icon {
    height: 40px;
  }

  .m-feature .m-feature__title + p {
    padding-top: var(--d-padding);
  }

  .multi-slide.square .m-feature {
    width: 320px;
  }
}

/***/
.product-item {
  position: relative;
  padding: var(--d-padding);
  border-radius: var(--d-padding);
  border: 1px solid var(--white);
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255,255,255,1) 49%, rgba(229,229,229,1) 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

.product-item h2 {
  margin-bottom: 0;
}

.product-item .product-item__img {
  height: 320px;
}

.product-item .product-item__colors {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.product-item .product-item__colors > div {
  border-radius: 100px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(46, 49, 56, 0.2);
}

.product-item .product-item__colors .col750_1 { background-color: #004AA8; }
.product-item .product-item__colors .col750_2 { background-color: #AA0003; }
.product-item .product-item__colors .col750_3 { background-color: #939396; }
.product-item .product-item__colors .col750_4 { background-color: #000000; }
.product-item .product-item__colors .col750_5 { background-color: #ffffff; }
.product-item .product-item__colors .col690_1 { background-color: #54A4AE; }
.product-item .product-item__colors .col690_2 { background-color: #939396; }
.product-item .product-item__colors .col690_3 { background-color: #000000; }
.product-item .product-item__colors .col690_4 { background-color: #ffffff; }

.product-item p {
  color: #7A7A7A;
  font-size: 14px;
  font-weight: 600;
}

.product-item.no-bg {
  background: none;
  border: 0;
}

.product-item.no-bg .product-item__img {
  height: 220px;
}

@media (min-width: 768px) {
  .product-item.no-bg .product-item__img {
    height: 280px;
  }
}

/* */
.content-row-compare .compare-link {
  display: block;
  padding: var(--d-padding) 0;
}

.content-row-compare .compare-link h3 {
  text-decoration: underline;
  cursor: pointer;
}

.content-row-compare .compare-table {
  position: relative;
  background-color: var(--white);
  border-radius: var(--d-padding);
  padding: var(--d-padding);
  margin-bottom: var(--d-padding);
}

.compare-row {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--d-padding);
}

.compare-row .btn {
  width: 100%;
  max-width: 320px;
}

.compare-section {
  max-width: 850px;
  margin: var(--d-padding) auto;
}

.compare-section .compare-section__title {
  padding: 10px 0;
  border-bottom: 1px solid rgba(223, 226, 233, 1);
  margin: 0 5px var(--m-padding);
}

.compare-section .compare-row > div {
  padding: 5px;
}

.compare-section .compare-row .compare-row__label {
  color: #ACACAC;
  font-size: 10px;
}

.compare-section .compare-row .compare-row__value {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .compare-section .compare-section__title {
    margin: 0 10px var(--m-padding);
  }

  .compare-section .compare-row:hover {
    background-color: rgba(240, 240, 240, 1);
    border-radius: 5px;
  }

  .compare-section .compare-row > div {
    padding: 10px;
  }

  .compare-section .compare-row .compare-row__label {
    font-size: 12px;
  }

  .compare-section .compare-row .compare-row__value {
    font-size: 24px;
  }
}


/* анимация цвета */
.product-item-new .loading {
  position: relative;
  z-index: 1;
  display: table;
  width: 100%;
  height: 100%;
}
.product-item-new .img-contain.select {
  z-index: 2;
  display: block !important;
  /*opacity: 1;*/
}
.product-item-new .img-contain {
  display: none;
  position: relative;
  z-index: 0;
  left: 0;
  top: 0;
  background-size: contain;
  /*opacity: 0;*/
  mix-blend-mode: multiply;
}
.product-item-new .product-item-color{
  cursor: pointer;
}
:root{

}

.content-violet .content-row__main, .content-violet .content-row__main.bg-violet{
  background: #ffffff;
  background: url(../img/bg.webp) no-repeat center center;
}
.content-violet .swiper-pagination-bullet,.content-violet .multi-slide.options .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius:
          10px;
  background-color: var(--white);
  opacity: 0.3;
}
.content-violet .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

