body {
  overflow-x: hidden;

  color: var(--text-color-base);
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  line-height: var(--font-line-height-base);
  background-color: var(--background-base);
}
body.popup-open {
  overflow-y: scroll;
  position: fixed;
  width: 100%;
  top: calc(-1 * var(--scroll-position, 0));
}

a, .link {
  color: var(--link-color, var(--primary-accent));
}
a:hover, .link:hover {
  --link-color: var(--primary-hover);
}
a.link--accent {
  color: var(--link-color, var(--primary-hover));
}
a.link--accent:hover {
  --link-color: var(--primary-accent);
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #FFF;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fancybox-slide--video .fancybox-content {
  overflow: hidden;
  width: auto !important;
  border-radius: 40px;
}
.fancybox-video {
  width: max-content;
}

.container {
  margin: 0 auto;
  width: var(--container-width);
  max-width: calc(100% - 40px);
}
.container .container {
  width: 100%;
  max-width: 100%;
}

.bg-element {
  width: 300px;
  height: 300px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.bg-element--red {
  /* background-color: rgba(141, 53, 177, 0.7); */
  /* box-shadow: 0 0 400px 400px rgba(141, 53, 177, 0.7); */

  /* background: radial-gradient(circle, rgba(141, 53, 177, 0.7) 0%, rgba(141, 53, 177, 0.1) 100%); */

  /* background: rgba(141, 53, 177, 0.7); */
  /* filter: blur(300px); */
}
.bg-element--blue {
  /* background-color: rgba(79, 66, 234, 0.7); */
  /* box-shadow: 0 0 400px 400px rgba(79, 66, 234, 0.7); */

  /* background: radial-gradient(circle, rgba(79, 66, 234, 0.7) 0%, rgba(79, 66, 234, 0.1) 100%); */

  /* background: rgba(79, 66, 234, 0.7); */
  /* filter: blur(300px); */
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .3s, background-color .3s;

  padding: 0 var(--button-padding);
  width: var(--button-width, 100%);
  height: var(--button-height, 40px);
  border-radius: var(--button-radius, 6px);
  background-color: var(--button-background);
  border: 2px solid var(--button-background);

  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--button-text-color);
}
.button:hover {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-background);
}
.button--opacity {
  color: var(--button-opacity-text-color);
  background-color: var(--button-opacity-background);
}
.button--opacity:hover {
  color: var(--button-text-color);
  background-color: var(--button-background);
}

.icon {
  display: block;
}
.icon--play {
  transition: scale .2s;
  transform-origin: left center;
}
.icon--play:hover {
  scale: 1.1;
}
.icon--play path {
  fill: var(--icon-play-fill);
}

.text ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  row-gap: 12px;
  flex-direction: column;
}
.text ul:not(:first-child) {
  margin-top: 32px;
}
.text ul li {
  list-style: none;
  position: relative;
  padding-left: 62px;
  min-height: 32px;
}
.text ul li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-other);
  background-image: url(/wp-content/themes/auroralabs/assets/images/check.svg);
}
.text ul li ul {
  padding-left: 0;
  row-gap: 0px;
  margin-top: 24px;
}
.text ul li ul li {
  padding-left: 12px;
}
.text ul li ul li::before {
  content: none;
}
.text ul li ul li::after {
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
}
.text a, .text .link {
  --link-color: var(--primary-hover);
}
.text a:hover, .text .link:hover {
  --link-color: var(--primary-accent);
}

.text-gradient {
  color: transparent !important;    
	-webkit-background-clip: text;
	background-clip: text;
  background-image: linear-gradient(87.35deg, #4F42EA -5.99%, #8D35B1 54.75%, #D43959 105.81%);
}

.f-size-m {
  font-size: var(--font-size-middle);
}

/* RATING */
.rating-stars {
  display: flex;
  column-gap: 4px;
  align-items: center;
}
.rating-star {
  width: 22px;
  height: 22px;
}

/* SOCIALS */
.socials {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.socials__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: .3s;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--socials-icon-fill, var(--primary-other));
}
.socials__item:hover {
  box-shadow: 0 0 12px 0px var(--socials-icon-fill, var(--primary-other));
}
.socials__item a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.socials__item .icon {
  width: 24px;
  height: 24px;
}
.socials__item path {
  fill: var(--socials-icon-fill, var(--primary-other));
}

/* POPUP */
.popup {
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.popup--hide {
  display: none;
}
.popup__background {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--popup-background);
  opacity: 1;
  transition: opacity .3s;
}
.popup--close .popup__background {
  opacity: 0;
}
.popup__container {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  pointer-events: none;
}
.popup__body {
  position: relative;
  margin: 90px auto;
  border-radius: 26px;
  width: var(--popup-body-width);
  background-color: var(--popup-body-background, transparent);
  
  opacity: 1;
  transition: transform .3s, opacity .3s;
  transform: translateY(0px);
}
.popup--close .popup__body {
  opacity: 0;
  transform: translateY(50px);
}
.popup--loading .popup__body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__close {
  z-index: 1;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: .3s;
  pointer-events: all;
}
.popup__close:hover {
  scale: 1.05;
}
.popup__html {
  pointer-events: all;
}
.popup--loading .popup__html {
  display: none;
}
.popup__loader {
  display: none;
  position: relative;
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(45deg);
  overflow: hidden;
}
.popup--loading .popup__loader {
  display: block;
}
.popup__loader:after{
  content: '';
  position: absolute;
  inset: 8px;
  margin: auto;
  background: var(--background-base);
}
.popup__loader:before{
  content: '';
  position: absolute;
  inset: -15px;
  margin: auto;
  background: var(--popup-loader);
  animation: diamondLoader 2s linear infinite;
}
@keyframes diamondLoader {
  0%  ,10% {
    transform: translate(-64px , -64px) rotate(-45deg)
  }
  90% , 100% {
    transform: translate(0px , 0px) rotate(-45deg)
  }
}

:is(#popup-order, #popup-preorder, #popup-custom, #popup-contacts) {
  z-index: 10;
}
:is(#popup-order, #popup-preorder, #popup-custom, #popup-contacts) .popup__body {
  --popup-body-background: var(--background-base);
  --popup-body-width: clamp(680px, calc(100vw - var(--container-offset)), 320px);
}
:is(#popup-order, #popup-preorder, #popup-custom) .popup__html {
  padding: 60px 30px;
}

#popup-contacts .popup__html {
  padding: 60px 80px 70px;
}
#popup-contacts .popup-contacts {
  display: flex;
  row-gap: 24px;
  flex-direction: column;
  margin-top: calc(var(--block-inner-rows-gap) + 10px);
  color: var(--primary-accent);

  padding: 50px 66px;
  border-radius: 16px;
  background-color: var(--popup-contacts-background);
}
#popup-contacts .popup-contacts__item {
  display: flex;
  column-gap: 40px;
  align-items: center;
}
#popup-contacts .popup-contacts :is(.icon, img) {
  width: 35px;
  height: 35px;
}
#popup-contacts .popup-contacts :is(a, span) {
  font-size: 24px;
  font-weight: 400;
}


/* HEADER */
header {
  z-index: 5;
  transition: .3s;
  background-color: rgba(0, 0, 0, .99);
  padding: var(--block-inner-rows-gap) 0 calc(var(--block-inner-rows-gap) / 2);
}
header::before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  pointer-events: none;
  transform: translateY(99%);
  background: linear-gradient(180deg, #000 2%, rgba(0, 0, 0, 0) 100%);
}
body.scroll header {
  padding: calc(var(--block-inner-rows-gap) / 2) 0 calc(var(--block-inner-rows-gap) / 3);
}
body.home header {
  position: fixed;
}
body:not(.home) header {
  top: 0;
  position: sticky;
}
.header-columns {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.header-logo {
  width: 120px;
  height: 46px;
}
.header-menu {
  margin-left: auto;
}
.header-menu__links {
  display: flex;
  column-gap: 30px;
  align-content: center;
}
.header-menu__link {
  --link-color: var(--primary-accent);
  font-weight: 400;
  font-size: 14px;
}
.header-phone {
  --link-color: var(--primary-accent);
  font-weight: 400;
  font-size: 24px;
}
header .socials__item {
  width: 30px;
  height: 30px;
}
header .socials .icon {
  width: 18px;
  height: 18px;
}

/* BREADCRUMBS */
.breadcrumbs {
  margin-top: 40px;
}
.breadcrumbs__list {
  display: flex;
  column-gap: 6px;
  align-items: center;
}
.breadcrumbs__item {
  display: flex;
  column-gap: 6px;
  align-items: center;
}
.breadcrumbs__link {
  --link-color: var(--primary-accent);
  font-size: 16px;
  font-weight: 400;
}
.breadcrumbs__active {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-accent);
}


/* BLOCKS */
body.home section.block:not(:first-child), body:not(.home) section.block {
  margin-top: var(--block-offset-top, 60px);
}
.block-separator {
  margin: 60px auto 0;
  width: calc(var(--container-width) - 40%);
}

/* BLOCK TITLE */
.block-title__text {
  text-transform: uppercase;
}
.block-title__text * {
  margin: 0;
  padding: 0;
  font-size: var(--block-title-size);
  font-weight: var(--block-title-weight);
}
.block-title__caption {
  margin: 0;
  padding: 0;
  max-width: 700px;
  font-size: var(--block-subtitle-size);
  font-weight: var(--block-subtitle-weight);
}
.block-title__caption:not(:first-child) {
  margin-top: var(--block-subtitle-top, 32px);
}


/* BLOCK FORM */
.form {
  --form-text-color: var(--primary-accent);
}
.form:not(:first-child) {
  margin-top: calc(var(--block-inner-rows-gap) + 10px);
}
.form__body {
  display: flex;
  row-gap: 24px;
  flex-direction: column;
}
.form__title {
  margin-bottom: 16px;
  /* margin-bottom: calc(var(--block-inner-rows-gap) + 10px); */
}
.form--success .form__body {
  display: none;
}
.form__fields {
  display: flex;
  row-gap: 24px;
  flex-direction: column;
}
.form__submit {
  --button-radius: 16px;
  --button-height: 60px;
  --button-font-size: 28px;
}

.form--send .form__submit .button {
  text-indent: -9999px;
  pointer-events: none;
}
.form--send .form__submit .button::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #FFF;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form__agree {
  display: flex;
  column-gap: 22px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form__agree .form__control {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-image: linear-gradient(45.52deg, #4F42EA -3.85%, #8D35B1 51.58%, #D43959 101.35%);
  border-image-slice: 1;
}
.form__agree .form__control .icon {
  width: 12px;
  height: 12px;
}
.form__agree input[type="checkbox"] {
  display: none;
}
.form__agree input[type="checkbox"]:not(:checked) ~ .form__control .icon {
  display: none;
}
.form__agree span {
  font-size: 20px;
  font-weight: 400;
  color: var(--form-text-color);
}
.form__errors {
  display: flex;
  row-gap: 6px;
  flex-direction: column;
  border-radius: 6px;
  padding: 12px 16px;
  border: 2px solid var(--form-error-border);
  background-color: var(--form-error-background);
}
.form__errors span {
  font-size: 16px;
  font-weight: 400;
  color: var(--form-error-color);
}

.form__success {
  display: flex;
  row-gap: 24px;
  align-items: center;
  flex-direction: column;
  padding: var(--block-inner-rows-gap) 0;
}
.form:not(.form--success) .form__success {
  display: none;
}
.form__success-icon {
  width: 60px;
  height: 60px;
}
.form__success-text {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-accent);
}
.form .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
}
.form--success .checkmark__circle {
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.form .checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
}
.form--success .checkmark {
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.form .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.form--success .checkmark__check {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

.field {
  --field-height: 60px;
  --field-padding: 22px;

  z-index: 0;
  position: relative;
}
.field input[type="text"] {
  width: 100%;
  height: var(--field-height);
  padding: 0 var(--field-padding);
  border-radius: 16px;
  font-size: 24px;
  font-weight: 400;
  color: var(--form-field-color);
  border: 2px solid var(--form-field-background);
  background-color: var(--form-field-background);
}
.field--error input[type="text"] {
  --form-placeholder-color: var(--form-error-color);
  --form-field-background: var(--form-error-background);
  border-color: var(--form-error-border);
}
.field textarea {
  width: 100%;
  height: 160px;
  padding: calc(var(--field-padding) - 5px) var(--field-padding);
  border-radius: 16px;
  font-size: 24px;
  font-weight: 400;
  color: var(--form-field-color);
  border: 2px solid var(--form-field-background);
  background-color: var(--form-field-background);
}
.field--error textarea {
  --form-placeholder-color: var(--form-error-color);
  --form-field-background: var(--form-error-background);
  border-color: var(--form-error-border);
}
.field input[type="checkbox"] {
  display: none;
}
.field__error {
  max-width: 50%;
  height: calc(var(--field-height) - 8px);
  z-index: 1;
  position: absolute;
  top: 4px;
  right: 8px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: end;
}
.field__error-text {
  height: auto;
  min-height: calc(var(--field-height) / 2);
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  color: var(--form-error-color);
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: var(--form-field-background);
}


/* BLOCK BANNER */
.block-banner {
  
}
.banner {
  z-index: 2;
  position: relative;
  background-color: var(--background-base);
  height: 100vh;
  max-height: 730px;
}
.banner::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.banner__background, .banner__video {
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
}
.banner__background img, .banner__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__contents-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 170px;
  bottom: 70px;
}
.banner .container {
  height: 100%;
}
.banner__contents {
  height: auto;
  min-height: 100%;
  display: flex;
  row-gap: 32px;
  flex-direction: column;
}
.banner__title {
  max-width: 600px;
}
.banner__title * {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-accent);
}
.banner__description {
  margin-top: auto;
}
.banner__buttons {
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.banner__description ~ .banner__buttons {
  margin-top: 0;
}
.banner__button {
  --button-height: 44px;
  --button-padding: 40px;
  --button-font-weight: 700;

  width: max-content;
}
.banner__arrow {
  width: 90px;
  z-index: 2;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}
.banner__description > ul {
  display: flex;
  row-gap: 6px;
  flex-direction: column;
}
.banner__description > ul > li {
  padding-left: 25px;
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-accent);
}
.banner__description > ul > li::before {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #4F42EA;
  background-image: none;
}
.banner__description > ul > li:nth-child(2n):before {
  background-color: #8D35B1;
}
.banner__description > ul > li:nth-child(3n):before {
  background-color: #D43959 !important;
}
.banner__description > ul > li:nth-child(3n + 1):before {
  background-color: #4F42EA;
}
.banner__description > ul > li:nth-child(3n + 2):before {
  background-color: #8D35B1;
}


/* BLOCK HTML */
.block-html {
  display: flex;
  row-gap: var(--block-inner-rows-gap);
  flex-direction: column;
}
.block-html__contain {
  font-size: var(--block-html-text-size);
  font-weight: var(--block-html-text-weight);
}


/* BLOCK LIST */
.block-list {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) + 10px);
  flex-direction: column;
}
.block > .block-list .block-list__items {
  padding: 0 100px;
}
.block-list__contain {
  
}
.block-list__items {
  display: flex;
  row-gap: 30px;
  flex-direction: column;
}
.block-list__item {
  display: flex;
  column-gap: 20px;
  align-items: start;
}
.block-list__icon {
  width: 60px;
  height: 60px;
}
.block-list__text {
  min-height: 60px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  color: var(--primary-accent);
}
.block-list__caption {
  text-align: center;
  margin-top: 60px;
}


/* BLOCK GAME FPS */
.block-gamefps {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) + 10px);
  flex-direction: column;
}
.block-gamefps:not(:first-child) {
  margin-top: 60px;
}
.gamefps {
  --gamefps-sidebar-size: 250px;

  display: flex;
  row-gap: 24px;
  flex-direction: column;
}
.gamefps__windows {
  display: flex;
  column-gap: 30px;
  align-items: center;
  justify-content: center;
  padding-left: calc(var(--gamefps-sidebar-size) + 24px);
}
.gamefps__window {
  display: flex;
  column-gap: 8px;
  align-items: center;
}
.gamefps__window span {
  font-size: 16px;
  font-weight: 400;
  column-gap: var(--primary-accent);
}
.gamefps__window span[data-window-value] {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
}
.gamefps__window span[data-window-value="fhd"] {
  background-color: #4F42EA;
}
.gamefps__window span[data-window-value="qhd"] {
  background-color: #8D35B1;
}
.gamefps__window span[data-window-value="4k"] {
  background-color: #D43959;
}
.gamefps__games {
  display: flex;
  row-gap: 24px;
  flex-direction: column;
  z-index: 1;
  position: relative;
  padding-bottom: 60px;
  padding-right: 15px;
}
.gamefps__item {
  display: flex;
  column-gap: 24px;
  align-items: start;
}
.gamefps__game {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-accent);
  width: var(--gamefps-sidebar-size);
  min-width: var(--gamefps-sidebar-size);
  text-align: right;
}
.gamefps__list {
  display: flex;
  row-gap: 3px;
  flex-direction: column;
  width: calc(100% - 30px);
}
.gamefps__value {
  width: 100%;
  height: 10px;
  position: relative;
  display: flex;
  column-gap: 8px;
  align-items: center;
}
.gamefps__value span[data-window-value] {
  width: 100%;
  height: 100%;
  display: block;
}
.gamefps__value span[data-window-value="fhd"] {
  background-color: #4F42EA;
}
.gamefps__value span[data-window-value="qhd"] {
  background-color: #8D35B1;
}
.gamefps__value span[data-window-value="4k"] {
  background-color: #D43959;
}
.gamefps__value span:not([data-window-value]) {
  font-size: 13px;
  font-weight: 400;
  color: var(--primary-other);
}
.gamefps__divided {
  z-index: -1;
  position: absolute;
  left: calc(var(--gamefps-sidebar-size) + 24px);
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(100% - (var(--gamefps-sidebar-size) + 24px) + 15px);
  transform: translateX(-15px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.gamefps__divide {
  width: 30px;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-accent);
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
}
.gamefps__divide::before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 30px;
  width: 1px;
  opacity: 0.3;
  transform: translateX(-50%);
  background-color: var(--primary-other);
}
/* .gamefps__divided::after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  height: 1px;
  background-color: var(--primary-other);
} */


/* BLOCK ATTRIBUTES */
.block-attributes {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) + 10px);
  flex-direction: column;
}
.block-attributes:not(:first-child) {
  margin-top: 60px;
}
.attributes__container {

}
.attributes__list {
  display: flex;
  row-gap: 0;
  flex-direction: column;
}
.attributes__item {
  min-height: 20px;
  display: flex;
  column-gap: 16px;
  align-items: start;
  padding: 16px 12px;
}
.attributes__item:not(:last-child) {
  border-bottom: 1px solid var(--attributes-item-border);
}
.attributes__icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.attributes__icon svg {
  fill: var(--attributes-item-icon);
}
.attributes__name {
  width: 220px;
  min-width: 220px;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-accent);
  opacity: 0.6;
}
.attributes__value {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-accent);
}


/* BLOCK CATALOG */
.block-catalog {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) * 2);
  flex-direction: column;
}
.block-catalog__contain {
  
}
.block-catalog__list {
  display: grid;
  row-gap: 30px;
  column-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  @media screen and (max-width: 1200px) {
    column-gap: 32px;
    row-gap: 24px;
  }
}

/* PRODUCT */
.product {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) * 2);
  flex-direction: column;
}
.product > .container {
  padding: 60px 30px;
  border-radius: 26px;
  background-color: var(--product-background);
}
.product__body {
  display: flex;
  column-gap: 24px;
  align-items: start;
}
.product__gallery {
  width: calc(55% - 24px);
  display: flex;
  row-gap: 12px;
  flex-direction: column;
}
.product__gallery img {
  width: 100%;
  display: block;
  cursor: pointer;
}
.product__images {
  width: calc(1 * 100%);
  overflow: hidden;
  border-radius: 16px;
}
.product__images a {
  width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.43 / 1;
}
.product__images img {
  border-radius: 16px;
  object-fit: cover;
}
.product__thumbs {
  border-radius: 8px;
}
.product__thumbs span {
  overflow: hidden;
  aspect-ratio: 1.43 / 1;
}
.product__thumbs img {
  border-radius: 8px;
  object-fit: cover;
}
.product__thumbs .swiper-slide:not(.swiper-slide-thumb-active) img {
  opacity: .6;
  transition: .3s;
}
.product__thumbs .swiper-slide:hover img {
  opacity: 1;
}
.product__info {
  width: 45%;
  min-width: 45%;
  display: flex;
  row-gap: 24px;
  flex-direction: column;
}
.product__name {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-accent);
}
.product__prices {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.product__price {
  font-size: 32px;
  font-weight: 400;
  color: var(--primary-other);
}
.product__oldprice {
  font-size: 20px;
  font-weight: 400;
  opacity: .6;
  text-decoration: line-through;
  color: var(--primary-accent);
  transform: translateY(5px);
}
.product__prices-info {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-accent);
  margin-top: 4px;
}
.product-stock {
  font-size: var(--product-stock-size);
  font-weight: 400;
}
.product-stock--Y {
  color: var(--product-stock-y);
}
.product-stock--N {
  color: var(--product-stock-n);
}
.product__buttons {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.product__buttons .button {
  --button-width: auto;
  --button-height: 44px;
  text-transform: uppercase;
}
.product__tabs {
  margin-top: 20px;
}
.product__tabs .configuration-list {
  list-style: none;
  padding: 0;
  row-gap: 8px;
}
.product__tabs .configuration-list li {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-accent);
  min-height: auto;
  display: flex;
  column-gap: 6px;
  align-items: start;
}
.product__tabs .configuration-list li::before {
  content: none;
}
.product__tabs .configuration-list li span.configuration-list__item-name {
  white-space: nowrap;
}
.product__tabs .block-tabs__description {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-accent);
}
.product__detail-link {
  margin-top: 40px;
  font-size: 18px;
  display: flex;
  column-gap: 4px;
  align-items: center;
}
.product__detail-link .icon {
  width: 20px;
  height: 20px;
  transition: .3s;
  transform: translate(0, 2px);
}
.product__detail-link:hover .icon {
  transform: translate(4px, 2px);
}
.product__detail-link .icon svg {
  transition: .3s;
  /* transform: rotate(0); */
}
.product__detail-link:hover .icon svg {
  /* transform: rotate(42deg); */
}

#popup-product {
  z-index: 9;
}
#popup-product .popup__body {
  min-height: 500px;
}

/* PRODUCT ITEM */
.product-item {
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
  width: clamp(240px, 100%, 320px);
  padding: 2px;
  position: relative;
  background: transparent;
}
.product-item::before {
  content: '';
  z-index: -1;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: var(--product-item-border);
}
.product-item::after {
}
.product-item__container {
  height: 100%;
  display: flex;
  row-gap: 0;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  padding-bottom: 24px;
  background: var(--product-item-background);
}
.product-item__container::before {
  content: '';
  z-index: -1;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: var(--background-base);
}
.product-item__image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.21 / 1;
}
.product-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-item__info {
  display: flex;
  row-gap: 0;
  flex-direction: column;
  padding: 8px 35px 0;
  text-align: center;
}
.product-item__name {
  font-weight: 700;
  font-size: var(--product-item-name-size);
  color: var(--product-item-name-color);
  height: calc(var(--product-item-name-size) * var(--font-line-height-base) * 2);
}
.product-item__name a::before {
  content: '';
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.product-item__stock {
  --product-stock-size: 13px;

  margin-top: 14px;
}
.product-item__attributes {
  margin-top: 8px;
  margin-bottom: 14px;
  display: grid;
  row-gap: 10px;
  grid-template-columns: repeat(auto-fit, calc(100% / 2));
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column dense;
}
.product-item__attribute {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}
.product-item__order {
  margin-top: auto;
  padding: 0 35px;
  z-index: 1;
  position: relative;
}


/* BLOCK RATINGS */
.block-ratings {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) + 10px);
  flex-direction: column;
}
.block-ratings__contain {
  
}
.block-ratings__list {
  display: grid;
  row-gap: 24px;
  column-gap: 24px;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, clamp(240px, 100%, 380px));
}

/* RATING ITEM */
.rating-item {
  width: 100%;
  display: flex;
  row-gap: 10px;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  background-color: var(--rating-item-background);
}
.rating-item__logo {
  width: 60px;
  height: 60px;
}
.rating-item__rating {
  display: flex;
  column-gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.rating-item__rating span {
  color: var(--rating-item-color);
  font-size: var(--rating-item-total-size);
  font-weight: 700;
}
.rating-item__rating .icon {
  width: 23px;
  height: 23px;
}
.rating-item__count {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
.rating-item__count span {
  color: var(--rating-item-color2);
  font-size: var(--rating-item-count-size);
  font-weight: 400;
}
.rating-item__count strong {
  color: var(--rating-item-color);
  font-size: var(--rating-item-count-size);
  font-weight: 400;
}
.rating-item__button {
  max-width: 280px;
  margin-top: 20px;
}


/* BLOCK TABS */
.block-tabs {
  display: flex;
  row-gap: var(--block-inner-rows-gap);
  flex-direction: column;
}
.block-tabs__wrap {
  display: flex;
  row-gap: 0;
  flex-direction: column;
}
.block-tabs__nav {
  display: flex;
  column-gap: 30px;
  align-items: center;
  justify-content: start;
  z-index: 0;
  position: relative;
}
.block-tabs--designed .block-tabs__nav {
  column-gap: 0;
  justify-content: center;
}
.block-tabs__label {
  cursor: pointer;
  color: var(--tabs-nav-color);
}
.block-tabs--default .block-tabs__label {
  opacity: 0.6;
  transition: .3s;
  position: relative;
}
.block-tabs--default .block-tabs__label:hover {
  opacity: 1;
}
.block-tabs--default .block-tabs__label::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transition: .3s;
  border-radius: 2px;
  background-color: transparent;
}
.block-tabs--designed .block-tabs__label {
  padding: 16px 18px;
}
[data-tabs-label-active="Y"] {
  opacity: 1 !important;
  pointer-events: none;
  color: var(--tabs-nav-active-color);
}
.block-tabs--default [data-tabs-label-active="Y"] {
  color: var(--tabs-nav-color);
}
.block-tabs--default [data-tabs-label-active="Y"]::before {
  background-color: var(--tabs-nav-active-color);
}
.block-tabs__nav-background {
  z-index: -1;
  position: absolute;
  left: 12px;
  top: 2px;
  height: 52px;
  min-width: 160px;
  transition: left .3s, width .3s;
}
.block-tabs__nav-background::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 130px);
  height: 100%;
  transform: translateX(-50%);
  background-color: var(--tabs-nav-background);
}
.icon--tabs-nav-background {
  width: 72px;
  height: 100%;
  position: absolute;
  top: 0;
}
.icon--tabs-nav-background path {
  fill: var(--tabs-nav-background);
}
.block-tabs__nav-background__left {
  left: 0;
}
.block-tabs__nav-background__right {
  right: 0;
  transform: scale(-1, 1);
}
.block-tabs__contents {

}
.block-tabs__content {
  display: none;
  padding: 0;
  border-radius: 26px;

  color: var(--tabs-content-text-color);
  font-size: var(--tabs-content-text-size);
}
.block-tabs--designed .block-tabs__content {
  padding: 54px 64px;
  background-color: var(--tabs-content-background);
}
[data-tabs-content-active="Y"] {
  display: flex;
  column-gap: 90px;
  align-items: start;
}
.block-tabs__description {
  width: 100%;
  padding-top: 24px;
}
.block-tabs--designed .block-tabs__description {
  padding-top: 40px;
}
.block-tabs__slider {
  width: 256px;
  min-width: 256px;
  margin: calc(-1 * var(--tabs-slide-padding)) 0;
}
.block-tabs__slider .swiper {
  --swiper-pagination-bottom: 0px;
  --swiper-pagination-color: var(--primary-other);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: var(--primary-accent);

  padding-bottom: 12px;
  /* overflow: initial; */
}
.block-tabs__slide {
  height: 330px;
  z-index: 0;
  position: relative;
  border-radius: var(--tabs-slide-radius);
  background: transparent;
  overflow: hidden;
  padding: var(--tabs-slide-padding);
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-tabs__slide::before {
  content: '';
  z-index: -2;
  position: absolute;
  pointer-events: none;
  left: var(--tabs-slide-padding);
  top: var(--tabs-slide-padding);
  right: var(--tabs-slide-padding);
  bottom: var(--tabs-slide-padding);
  display: block;
  border-radius: var(--tabs-slide-radius);
  background: var(--tabs-slide-border);
}
.block-tabs__slide::after {
  content: '';
  z-index: -1;
  position: absolute;
  pointer-events: none;
  left: calc(var(--tabs-slide-padding) + var(--tabs-slide-border-size));
  top: calc(var(--tabs-slide-padding) + var(--tabs-slide-border-size));
  right: calc(var(--tabs-slide-padding) + var(--tabs-slide-border-size));
  bottom: calc(var(--tabs-slide-padding) + var(--tabs-slide-border-size));
  display: block;
  border-radius: var(--tabs-slide-radius);
  background: var(--tabs-slide-background);
}
.block-tabs__slide-hover {
  z-index: -3;
  position: absolute;
  pointer-events: none;
  left: calc(var(--tabs-slide-padding) * 2);
  top: calc(var(--tabs-slide-padding) * 2);
  right: calc(var(--tabs-slide-padding) * 2);
  bottom: calc(var(--tabs-slide-padding) * 2);
  filter: blur(14px);
  border-radius: var(--tabs-slide-radius);
  background: var(--tabs-slide-border);
}
.block-tabs__slide-image {
  overflow: hidden;
  border-radius: var(--tabs-slide-radius);
  width: calc(100% - var(--tabs-slide-border-size) * 2);
  height: calc(100% - var(--tabs-slide-border-size) * 2);
}
.block-tabs__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* BLOCK REVIEWS */
.block-reviews {
  display: flex;
  row-gap: var(--block-inner-rows-gap);
  flex-direction: column;
}
.block-reviews .swiper {
  overflow: initial;
}
.block-reviews .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.block-reviews .swiper-slide {
  height: auto;
}

/* REVIEWS ITEM */
.reviews-item {
  display: flex;
  row-gap: 14px;
  flex-direction: column;
  border-radius: 16px;
  padding: 32px 20px;
  min-width: 280px;
  background-color: var(--reviews-item-background);
}
.swiper-slide .reviews-item {
  height: 100%;
}
.reviews-item__rating {
  display: flex;
  column-gap: 4px;
  align-items: center;
}
.reviews-item__message {
  margin-bottom: 60px;
}
.reviews-item__message-text {
  font-weight: var(--reviews-item-message-weight);
  font-size: var(--reviews-item-message-size);
  color: var(--reviews-item-message-color);

  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reviews-item__more {
  cursor: pointer;
  margin-top: 14px;
  font-weight: var(--reviews-item-more-weight);
  font-size: var(--reviews-item-more-size);
  color: var(--reviews-item-more-color);
}
.reviews-item__end {
  margin-top: auto;
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.reviews-item__photo {
  width: 50px;
  min-width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--reviews-item-photo-border);
  background-color: var(--reviews-item-photo-background);
}
.reviews-item__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.reviews-item__info {
  width: 100%;
  display: flex;
  column-gap: 0;
  row-gap: 4px;
  flex-wrap: wrap;
  align-items: start;
}
.reviews-item__name {
  width: 100%;
  font-weight: var(--reviews-item-name-weight);
  font-size: var(--reviews-item-name-size);
  color: var(--reviews-item-name-color);
}
.reviews-item__provider {
  font-weight: var(--reviews-item-provider-weight);
  font-size: var(--reviews-item-provider-size);
  color: var(--reviews-item-provider-color);
}
.reviews-item__date {
  font-weight: var(--reviews-item-date-weight);
  font-size: var(--reviews-item-date-size);
  color: var(--reviews-item-date-color);
}


/* BLOCK CAROUSEL */
.block-carousel {
  display: flex;
  row-gap: calc(var(--block-inner-rows-gap) + 10px);
  flex-direction: column;
}
.block-carousel .swiper {
  overflow: initial;
}
.block-carousel .swiper-wrapper {
  align-items: stretch;
}
.block-carousel .swiper-slide {
  height: auto;
}
.carousel-item {
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 40px;
  background-color: var(--carousel-item-background);
}
.carousel-item .icon--play {
  position: absolute;
  width: 63px;
  height: 63px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.carousel-item-iframe {
  padding: 0;
  overflow: hidden;
  border-radius: 40px;
  background-color: transparent;
  /* aspect-ratio: 1/1; */
}
.carousel-item-iframe iframe {
  width: 400px;
  height: 795px;
}


/* FOOTER */
footer {
  margin-top: calc(var(--block-inner-rows-gap) * 2);
  margin-bottom: 20px;
}

/* FOOTER FORM */
.block-form {
  display: flex;
  row-gap: var(--block-inner-rows-gap);
  flex-direction: column;
}
.footer-form {
  display: flex;
  column-gap: 45px;
  align-items: start;
  padding: 0 50px;
}
.footer-form__wrap {
  width: 100%;
}
.footer-form__contacts {
  --link-color: var(--primary-accent);

  display: flex;
  row-gap: 38px;
  flex-direction: column;
  min-width: 460px;
}
.footer-form__contacts span {
  font-weight: 700;
  font-size: 30px;
  color: var(--primary-accent);
}
.footer-form__contacts p {
  font-weight: 400;
  font-size: 18px;
  color: var(--primary-accent);
}
.footer-form__contacts a {
  font-weight: 400;
  font-size: 18px;
}
.footer-form .socials {
  margin-top: 24px;
}

/* FOOTER END */
.footer-columns {
  --link-color: var(--primary-accent);

  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(var(--block-inner-rows-gap) * 3);
}
.footer-logo {
  width: 120px;
  height: 46px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-copyright {
  font-weight: 400;
  font-size: 14px;
  color: var(--primary-accent);
}
.footer-links a {
  font-weight: 400;
  font-size: 14px;
}