@charset "UTF-8";

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: "mplus1";
  font-display: swap;
  src: url("/cpJC1v__fonts/cpJC1v__mplus1-bold.woff2") format("woff2"), url("/cpJC1v__fonts/cpJC1v__mplus1-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "mplus1";
  font-display: swap;
  src: url("/cpJC1v__fonts/cpJC1v__mplus1-regular.woff2") format("woff2"), url("/cpJC1v__fonts/cpJC1v__mplus1-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --container-width: 1440px;
  --container-padding: 150px;
  --container-padding-tablet: 16px;
  --section-padding-block: 40px;
  --section-padding-block-mobile: 38px;
  --background: #fff;
  --font-color: #405E9E;
  --font-size: clamp(0.875rem, 0.8533653846rem + 0.0961538462vw, 0.9375rem);
  --font-family: mplus1, OpenSans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --btn-font-size: 1rem;
  --btn-font-weight: 700;
  --btn-padding: 0.907em 2.5em;
  --btn-bg: #EB0C00;
  --btn-bg-hover: #EF1A74;
  --btn-color: #ffffff;
  --btn-color-hover: var(--btn-color);
  --btn-radius: 2rem;
  --btn-transition: all 0.2s ease-in-out;
  --btn-shadow: inset -100px 0px 50px 0px #EF1A74;
  --btn-shadow-hover: var(--btn-shadow);
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

h1,
.cpJC1v__h1,
h2,
.cpJC1v__h2,
h3,
.cpJC1v__h3 {
  font-weight: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
  font-weight: 700;
}

h1,
.cpJC1v__h1 {
  font-size: clamp(0.9375rem, 0.4831730769rem + 2.0192307692vw, 2.25rem);
}

h2,
.cpJC1v__h2 {
  font-size: clamp(1.75rem, 1.6634615385rem + 0.3846153846vw, 2rem);
}

h3,
.cpJC1v__h3 {
  font-size: clamp(1rem, 0.9134615385rem + 0.3846153846vw, 1.25rem);
}

html {
  scroll-behavior: smooth;
  background: var(--background);
  scrollbar-gutter: stable;
}

body {
  color: var(--font-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

a {
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
  color: inherit;
}

img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.cpJC1v__no-scroll {
  overflow: hidden;
}

.cpJC1v__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.cpJC1v__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.cpJC1v__items .cpJC1v__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.cpJC1v__terms .cpJC1v__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.cpJC1v__terms ul li,
.cpJC1v__ul-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cpJC1v__terms ul li:before,
.cpJC1v__ul-list li:before {
  content: "•";
  margin-inline: 8px;
}

.cpJC1v__terms ol,
.cpJC1v__ol-list {
  counter-reset: item;
}

.cpJC1v__terms ol li,
.cpJC1v__ol-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: item;
}

.cpJC1v__terms ol li::before,
.cpJC1v__ol-list li::before {
  content: counter(item) ".";
  margin-inline: 8px;
}

ol li {
  list-style: none;
}

.cpJC1v__main section,
.cpJC1v__main .cpJC1v__section {
  padding-block: var(--section-padding-block);
}

button,
.btn {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  text-decoration: none;
  padding: var(--btn-padding);
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border-radius: var(--btn-radius);
  -webkit-box-shadow: var(--btn-shadow);
  box-shadow: var(--btn-shadow);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 180px;
  min-height: 45px;
}

.btn:active {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.cpJC1v__center {
  text-align: center;
}

.cpJC1v__center .btn {
  margin-inline: auto;
}

.cpJC1v__hr {
  position: relative;
  height: 1px;
  background: rgba(64, 94, 158, 0.3);
  overflow: visible;
}

.cpJC1v__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.cpJC1v__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
  overflow-y: auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-block: 20px;
}

.cpJC1v__modal-content {
  background: var(--background);
  padding: 2rem 1rem;
  position: relative;
  max-width: 420px;
  width: 90%;
  -webkit-animation: fadeIn 0.45s cubic-bezier(0.01, 0.8, 0.03, 1);
  animation: fadeIn 0.45s cubic-bezier(0.01, 0.8, 0.03, 1);
  text-align: center;
  margin-block: auto;
}

.cpJC1v__modal-content .btn {
  margin-inline: auto;
  width: 100%;
  padding-inline: 0;
}

.cpJC1v__modal-content h2 {
  text-align: center;
}

.cpJC1v__close {
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

body.cpJC1v__modal-open {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.cpJC1v__checkbox-container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cpJC1v__checkbox-container input[type=checkbox] {
  margin-right: 10px;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.cpJC1v__checkbox-container label {
  cursor: pointer;
  font-size: 12px;
}

.cpJC1v__item.cpJC1v__wrapper,
.cpJC1v__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 20px;
  background: #EBF3FE;
  cursor: default;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: transform;
}

.cpJC1v__item.cpJC1v__wrapper--border,
.cpJC1v__wrapper--border {
  border: 1px solid #5D9EFA;
  padding: 20px;
  gap: 10px;
}

/* Blocks */

section.cpJC1v__banner {
  padding-block: 10px;
}

section.cpJC1v__banner .cpJC1v__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

section.cpJC1v__banner .cpJC1v__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(58, 138, 251, 0.8)), to(rgba(58, 138, 251, 0.8))), url("/cpJC1v__img/cpJC1v__banner.avif");
  background-image: linear-gradient(rgba(58, 138, 251, 0.8), rgba(58, 138, 251, 0.8)), url("/cpJC1v__img/cpJC1v__banner.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 16px;
  padding-bottom: 140px;
  margin-bottom: -176px;
  border-radius: 20px;
  color: #FFF;
  position: relative;
  width: 100%;
}				.cpJC1v__avif section.cpJC1v__banner .cpJC1v__inner {					background-image: linear-gradient(rgba(58, 138, 251, 0.8), rgba(58, 138, 251, 0.8)), url("/cpJC1v__img/cpJC1v__banner.avif")				}							.cpJC1v__avif section.cpJC1v__banner .cpJC1v__inner {					background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(58, 138, 251, 0.8)), to(rgba(58, 138, 251, 0.8))), url("/cpJC1v__img/cpJC1v__banner.avif")				}			

section.cpJC1v__banner .cpJC1v__inner::before,
section.cpJC1v__banner .cpJC1v__inner::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  width: 140px;
  aspect-ratio: 35/51;
  background-image: url("/cpJC1v__img/cpJC1v__flag.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}				.cpJC1v__avif section.cpJC1v__banner .cpJC1v__inner::beforesection.cpJC1v__banner .cpJC1v__inner::after {					background-image: url("/cpJC1v__img/cpJC1v__flag.avif")				}			

section.cpJC1v__banner .cpJC1v__inner::before {
  left: 0;
  -webkit-transform: translate(calc(-100% - 16px), -50%);
  -ms-transform: translate(calc(-100% - 16px), -50%);
  transform: translate(calc(-100% - 16px), -50%);
}

section.cpJC1v__banner .cpJC1v__inner::after {
  right: 0;
  -webkit-transform: translate(calc(100% + 16px), -50%) scaleX(-1);
  -ms-transform: translate(calc(100% + 16px), -50%) scaleX(-1);
  transform: translate(calc(100% + 16px), -50%) scaleX(-1);
}

section.cpJC1v__banner h1 {
  max-width: 36ch;
}

section.cpJC1v__banner .cpJC1v__descr {
  font-size: 20px;
  font-weight: 700;
  color: rgba(58, 138, 251, 0.8);
  text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
}

section.cpJC1v__banner .cpJC1v__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

section.cpJC1v__banner .cpJC1v__advantages li {
  border-radius: 5px;
  background: #FFF;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--font-color);
  font-weight: 700;
}

section.cpJC1v__banner .cpJC1v__advantages li::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

section.cpJC1v__banner .cpJC1v__advantages li:nth-child(1)::before {
  background-image: url("/cpJC1v__img/cpJC1v__icon-lighting.avif");
}				.cpJC1v__avif section.cpJC1v__banner .cpJC1v__advantages li:nth-child(1)::before {					background-image: url("/cpJC1v__img/cpJC1v__icon-lighting.avif")				}			

section.cpJC1v__banner .cpJC1v__advantages li:nth-child(2)::before {
  background-image: url("/cpJC1v__img/cpJC1v__icon-prize.avif");
}				.cpJC1v__avif section.cpJC1v__banner .cpJC1v__advantages li:nth-child(2)::before {					background-image: url("/cpJC1v__img/cpJC1v__icon-prize.avif")				}			

section.cpJC1v__banner .cpJC1v__advantages li:nth-child(3)::before {
  background-image: url("/cpJC1v__img/cpJC1v__icon-key.avif");
}				.cpJC1v__avif section.cpJC1v__banner .cpJC1v__advantages li:nth-child(3)::before {					background-image: url("/cpJC1v__img/cpJC1v__icon-key.avif")				}			

.cpJC1v__footer {
  margin-top: auto;
  padding-block: 70px;
  background: #101E3B;
  color: #FFF;
}

.cpJC1v__footer .cpJC1v__container {
  gap: 60px;
}

.cpJC1v__footer a:hover {
  opacity: 0.6;
}

.cpJC1v__footer .cpJC1v__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cpJC1v__footer .cpJC1v__link a {
  text-decoration: underline;
}

.cpJC1v__footer .cpJC1v__age {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: default;
  font-size: 36px;
  font-weight: 700;
}

.cpJC1v__footer .cpJC1v__regulations a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  gap: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.cpJC1v__footer .cpJC1v__regulations a img {
  width: 100%;
  height: 100%;
  max-width: 171px;
}

.cpJC1v__header {
  padding-block: 12px;
  border-bottom: 1px solid #EBF3FE;
  background: #FFF;
}

.cpJC1v__header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cpJC1v__header__nav {
  display: contents;
}

.cpJC1v__header .cpJC1v__nav__list {
  display: contents;
}

.cpJC1v__header .cpJC1v__nav__list a {
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1px solid transparent;
  padding-block: 2px;
}

.cpJC1v__header .cpJC1v__nav__list a:hover,
.cpJC1v__header .cpJC1v__nav__list a.cpJC1v__active {
  border-color: currentColor;
}

.cpJC1v__header .cpJC1v__nav__list a.cpJC1v__active {
  pointer-events: none;
}

.cpJC1v__header .cpJC1v__age {
  border-radius: 50%;
  background: #EB0C00;
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 43px;
  color: #FFF;
  pointer-events: none;
}

.cpJC1v__logo {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cpJC1v__logo img {
  width: 124px;
  aspect-ratio: 3.024/1;
  -o-object-fit: contain;
  object-fit: contain;
}

.cpJC1v__icons-wrapper {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.cpJC1v__icon {
  fill: transparent;
  stroke: transparent;
  width: 62px;
  height: 62px;
}

.cpJC1v__info-block {
  background: #EBF3FE;
  padding-block: 40px;
}

.cpJC1v__info-block p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}

.cpJC1v__info-block p::before,
.cpJC1v__info-block p::after {
  content: "";
  width: 44px;
  aspect-ratio: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/cpJC1v__img/cpJC1v__icon-time.svg");
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cpJC1v__mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.cpJC1v__mobile-nav--open {
  top: 0;
}

.cpJC1v__mobile-nav a {
  color: #fff;
}

.cpJC1v__mobile-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 20px;
  font-size: 28px;
  text-align: center;
}

/* Nav Icon */

.cpJC1v__mobile-nav-btn {
  --time: 0.1s;
  --width: 26px;
  --height: 30px;
  --line-height: 3px;
  --spacing: 5px;
  --color: var(--font-color);
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 2 + var(--spacing) * 4);
  width: var(--width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cpJC1v__nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.cpJC1v__nav-icon::before,
.cpJC1v__nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.cpJC1v__nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.cpJC1v__nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.cpJC1v__nav-icon.cpJC1v__nav-icon--active {
  background-color: transparent;
}

.cpJC1v__nav-icon.cpJC1v__nav-icon--active::before,
.cpJC1v__nav-icon.cpJC1v__nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
  background-color: #fff;
}

.cpJC1v__nav-icon.cpJC1v__nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cpJC1v__nav-icon.cpJC1v__nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */

.cpJC1v__mobile-nav-btn {
  z-index: 999;
  display: none;
}

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

.cpJC1v__top li:nth-of-type(2) .cpJC1v__stars li:nth-last-child(1) img,
.cpJC1v__top li:nth-of-type(4) .cpJC1v__stars li:nth-last-child(2) img,
.cpJC1v__top li:nth-of-type(6) .cpJC1v__stars li:nth-last-child(3) img,
.cpJC1v__top li:nth-of-type(8) .cpJC1v__stars li:nth-last-child(4) img,
.cpJC1v__top li:nth-of-type(10) .cpJC1v__stars li:nth-last-child(5) img {
  content: url(/cpJC1v__img/cpJC1v__icon-star-50.svg);
}

.cpJC1v__top li:nth-of-type(3) .cpJC1v__stars li:nth-last-child(1) img,
.cpJC1v__top li:nth-of-type(4) .cpJC1v__stars li:nth-last-child(1) img,
.cpJC1v__top li:nth-of-type(5) .cpJC1v__stars li:nth-last-child(-n+2) img,
.cpJC1v__top li:nth-of-type(6) .cpJC1v__stars li:nth-last-child(-n+2) img,
.cpJC1v__top li:nth-of-type(7) .cpJC1v__stars li:nth-last-child(-n+3) img,
.cpJC1v__top li:nth-of-type(8) .cpJC1v__stars li:nth-last-child(-n+3) img,
.cpJC1v__top li:nth-of-type(9) .cpJC1v__stars li:nth-last-child(-n+4) img,
.cpJC1v__top li:nth-of-type(10) .cpJC1v__stars li:nth-last-child(-n+4) img {
  content: url(/cpJC1v__img/cpJC1v__icon-star-0.svg);
}

.cpJC1v__top .cpJC1v__top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}

.cpJC1v__top .cpJC1v__top-list li:first-child .cpJC1v__article {
  position: relative;
  z-index: 1;
  border: none;
}

.cpJC1v__top .cpJC1v__top-list li:first-child .cpJC1v__article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#58CAFB), to(#EFE8FF));
  background: linear-gradient(90deg, #58CAFB 0%, #EFE8FF 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}

.cpJC1v__top .cpJC1v__top-list li:first-child .cpJC1v__article .cpJC1v__label {
  top: 2px;
  left: 2px;
  border: none;
}

.cpJC1v__top .cpJC1v__article {
  border-radius: 10px;
  background: #101E3B;
  -webkit-box-shadow: 0 3px 10px 0 rgba(49, 35, 121, 0.7);
  box-shadow: 0 3px 10px 0 rgba(49, 35, 121, 0.7);
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 232px) 122px minmax(100px, 300px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  padding: 10px 12px;
  margin-inline: auto;
  width: 100%;
  min-height: 138px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  will-change: transform;
  max-width: 1002px;
}

.cpJC1v__top .cpJC1v__label {
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: inherit;
  border-bottom-right-radius: inherit;
  background: #EFF4FF;
  padding: 4px 15px;
  color: var(--font-color);
  font-weight: 700;
  font-size: clamp(0.625rem, 0.5817307692rem + 0.1923076923vw, 0.75rem);
  border: 1px solid #101E3B;
}

.cpJC1v__top .cpJC1v__img-container,
.cpJC1v__top .cpJC1v__bonus-container,
.cpJC1v__top .btn-container,
.cpJC1v__top .cpJC1v__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cpJC1v__top .cpJC1v__img-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.cpJC1v__top .cpJC1v__img-container img {
  width: 100%;
  height: 70px;
  max-width: 205px;
  -o-object-fit: contain;
  object-fit: contain;
}

.cpJC1v__top .cpJC1v__rating span {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: -5px;
}

.cpJC1v__top .cpJC1v__stars,
.cpJC1v__top .cpJC1v__pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cpJC1v__top .cpJC1v__pay {
  gap: 20px;
}

.cpJC1v__top .cpJC1v__pay img {
  width: 20px;
  aspect-ratio: 1;
}

.cpJC1v__top .cpJC1v__stars {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-top: -8px;
}

.cpJC1v__top .cpJC1v__stars img {
  width: 22px;
  aspect-ratio: 1;
}

.cpJC1v__top .cpJC1v__bonus-container,
.cpJC1v__top .btn-container {
  width: 100%;
}

.cpJC1v__top .cpJC1v__bonus {
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.5769230769rem + 0.7692307692vw, 1.25rem);
  max-width: 18ch;
}

.cpJC1v__top .btn {
  width: 100%;
  position: relative;
  position: relative;
  z-index: 0;
}

.cpJC1v__top .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  outline: 6px solid #FF3329;
  -webkit-animation: pulse 3.6s ease-out infinite;
  animation: pulse 3.6s ease-out infinite;
  z-index: -1;
  will-change: transform;
  pointer-events: none;
}

.cpJC1v__top .cpJC1v__license {
  font-size: clamp(0.5rem, 0.4134615385rem + 0.3846153846vw, 0.75rem);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  40% {
    -webkit-transform: scale(1.05, 1.25);
    transform: scale(1.05, 1.25);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  40% {
    -webkit-transform: scale(1.05, 1.25);
    transform: scale(1.05, 1.25);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 1220px) {
  .cpJC1v__container {
    padding: 0 var(--container-padding-tablet);
  }

  section.cpJC1v__banner .cpJC1v__inner {
    width: auto;
  }

  section.cpJC1v__banner .cpJC1v__inner::before,
  section.cpJC1v__banner .cpJC1v__inner::after {
    width: 70px;
  }

  section.cpJC1v__banner .cpJC1v__inner::before {
    top: 10px;
    -webkit-transform: translate(-50px, 0);
    -ms-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  section.cpJC1v__banner .cpJC1v__inner::after {
    top: 10px;
    -webkit-transform: translate(50px, 0) scaleX(-1);
    -ms-transform: translate(50px, 0) scaleX(-1);
    transform: translate(50px, 0) scaleX(-1);
  }

  .cpJC1v__header {
    padding-block: 6px;
  }

  .cpJC1v__header__nav {
    display: none;
  }

  .cpJC1v__header .cpJC1v__age {
    display: none;
  }

  .cpJC1v__mobile-nav-btn {
    display: block;
  }

  .cpJC1v__top .cpJC1v__article {
    max-width: 981px;
  }
}

@media (max-width: 820px) {
  .cpJC1v__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cpJC1v__main section,
  .cpJC1v__main .cpJC1v__section {
    padding-block: var(--section-padding-block-mobile);
  }

  .btn {
    width: 100%;
    margin-inline: auto;
    max-width: 420px;
  }

  .cpJC1v__modal-content {
    padding: 12px;
  }

  .cpJC1v__item.cpJC1v__wrapper,
  .cpJC1v__wrapper {
    padding: 40px 16px;
  }

  section.cpJC1v__banner {
    padding-block: 10px;
  }

  section.cpJC1v__banner .cpJC1v__inner {
    margin-bottom: -190px;
  }

  section.cpJC1v__banner .cpJC1v__inner::before,
  section.cpJC1v__banner .cpJC1v__inner::after {
    width: 34px;
  }

  section.cpJC1v__banner .cpJC1v__inner::before {
    -webkit-transform: translate(-16px, 0);
    -ms-transform: translate(-16px, 0);
    transform: translate(-16px, 0);
  }

  section.cpJC1v__banner .cpJC1v__inner::after {
    -webkit-transform: translate(16px, 0) scaleX(-1);
    -ms-transform: translate(16px, 0) scaleX(-1);
    transform: translate(16px, 0) scaleX(-1);
  }

  section.cpJC1v__banner p {
    display: none;
  }

  section.cpJC1v__banner .cpJC1v__advantages {
    gap: 5px;
  }

  section.cpJC1v__banner .cpJC1v__advantages li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5px 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 142px;
  }

  .cpJC1v__footer .cpJC1v__regulations a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .cpJC1v__info-block p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cpJC1v__top .cpJC1v__top-list {
    gap: 2px;
    margin-inline: -12px;
  }

  .cpJC1v__top .cpJC1v__article {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
    max-width: 610px;
    min-height: 265px;
    padding-top: 28px;
  }

  .cpJC1v__top .cpJC1v__img-container,
  .cpJC1v__top .btn-container {
    grid-column: 1/-1;
  }

  .cpJC1v__top .btn-container {
    margin-top: 6px;
  }

  .cpJC1v__top .cpJC1v__img-container img {
    height: 50px;
  }

  .cpJC1v__top .cpJC1v__pay {
    margin-top: -2px;
  }

  .cpJC1v__top .cpJC1v__stars img {
    width: 18px;
  }
}

@media (max-width: 338px) {
  section.cpJC1v__banner .cpJC1v__advantages li {
    font-size: 13px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .btn:focus-visible {
    color: var(--btn-color-hover);
    background-color: var(--btn-bg-hover);
    -webkit-box-shadow: var(--btn-shadow-hover);
    box-shadow: var(--btn-shadow-hover);
  }
}

@media (hover: hover) {
  .cpJC1v__item.cpJC1v__wrapper:hover,
  .cpJC1v__wrapper:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  .cpJC1v__top .cpJC1v__article:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}