@font-face {
  font-family: Tektur;
  src: url('/assets/fonts/Tektur-Regular.ttf');
  font-weight: 400;
}

@font-face {
  font-family: Tektur;
  src: url('/assets/fonts/Tektur-Medium.ttf');
  font-weight:  500;
}

@font-face {
  font-family: Rostelecom Basis;
  src: url('/assets/biometry/RostelecomBasis-Medium.woff2');
  font-weight:  500;
}

@font-face {
  font-family: Rostelecom Basis;
  src: url('/assets/biometry/RostelecomBasis-Regular.woff2');
  font-weight:  400;
}


.loader-container {
  z-index: 99999;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 1;
}

.loader-container.hidden-anim {
  animation: hide 0.15s 1 linear forwards;
}

.loader {
  top: 50%;
  left: 50%;
  translate: -50% -50%;

  width: 8%;
  height: 8%;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border-style: solid;
  border-width: 0.6vh;
  border-color: #7800ff #7800ff transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #ff4f12 #ff4f12;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border-width: 0.6vh;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 60%;
  height: 60%;
  border-width: 0.6vh;
  border-color: #7800ff #7800ff transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}


@keyframes hide {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.orbit__loading-container {
  width: 300px;
  height: 20px;
  background-color: #ccc;
  border-radius: 2px;
  border: 2px solid #7700FF;
  overflow: hidden;
  background-color: transparent;
}

.orbit__loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #4A00E7, #FF4F12);  
}

.orbit__ui-container {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px); /* Apply the blur filter to the entire outer container */
}

.orbit__modal-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px); /* Apply the blur filter to the entire outer container */
  background: radial-gradient(#483C6A, #1E1D22);
}

.orbit__radial-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#483C6A, #1E1D22);
  user-select: none;
}

.orbit__pointer {
  display: flex;
  position: absolute;
  width: 10%;
  opacity: 0.8;
  top: 5%;
  right: 5%;
  user-select: none;
  flex-direction: column;
  gap: 1em;
}

.orbit__pointer img {
  width: 100%;
  height: 100%;
}

.orbit__pointer .close-icon {
  background: no-repeat center/100% url(/assets/orbit-viewer/close-Default.svg);
  width: 100%;
  aspect-ratio: 1;
  border: 0;
}
.orbit__pointer .close-icon:hover {
  background: no-repeat center/100% url(/assets/orbit-viewer/close-hover.svg);
}
.orbit__pointer .close-icon:active {
  background: no-repeat center/100% url(/assets/orbit-viewer/close-click.svg);
}

/*                              */
/*        games__entry          */
/*                             */

.games__entry-entry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
}

.games__entry-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.games__entry-finish {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(1, 1, 1, 0.5);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.games__entry-finish .games__entry-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 10% 5%;
  background-color: white;
}


.games__entry-entry h2,
.games__entry-entry button,
.games__entry-entry progress {
  margin-top: 5em;
}

.games__entry-entry p {
  margin: 5em 10% 0 10%;
}

.hidden {
  display: none;
}

.games__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.games__overlay>.pass-through {
  position: absolute;
  border: 0;
  opacity: 0;
}

/*                             */
/*           SPUTNIK           */
/*                             */

.sputnik {
  overflow: hidden;
  margin: 0;
}

.sputnik .games__entry-container {
  display: block;
  height: 100%;
  width: 100%;
  
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;

  margin: 0;
  position: absolute;
  transform: translateY(0);
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.sputnik .games__entry-container.hidden {
  display: block;
  transform: translateY(100%);
}

.sputnik .games__entry-play {
  position: relative;
  top: 82.5%;
  left: 50%;
  translate: -50% -50%;
  width: 43%;
  aspect-ratio: 4;
  margin: 0;
  border: 0;
  padding: 0;
  background: no-repeat center/100% url(/assets/sputnik/play_normal.svg);
}
.sputnik .games__entry-play:hover {
  background: no-repeat center/100% url(/assets/sputnik/play_hover.svg);
}
.sputnik .games__entry-play:active {
  background: no-repeat center/100% url(/assets/sputnik/play_press.svg);
}

.sputnik .games__entry-progress {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 80%;
  height: 30%;

  opacity: 1;
  transition: opacity 0.7s linear;
}

.sputnik .games__entry-progress.hidden {
  opacity: 0;
}

.sputnik .games__entry-progress-smoke {
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;

  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease-in-out;
}

.sputnik .games__entry-progress-rocket {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;

  translate: -30% 0;
  transition: translate 0.5s ease-in-out;
} 


/*                             */
/*            WIRES            */
/*                             */

.wires .games__entry-container {
  padding: 23% 15% 0 15%;
  position: relative;
}

.wires .games__entry-progress {
  position: relative;
  width: 50%;
  aspect-ratio: 12;
  margin: 59% auto 0;
  
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.wires .games__entry-progress-bar {
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;

  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.25s ease-in-out;
}

.wires .games__entry-play {
  position: relative;
  width: 43%;
  aspect-ratio: 3.31;
  margin: 57% auto 0;
  border: 0;
  background: no-repeat center/100% url('/assets/wires/bottom_play_normal.png');
}
.wires .games__entry-play:hover {
  background: no-repeat center/100% url('/assets/wires/bottom_play_hover.png');
}
.wires .games__entry-play:active {
  background: no-repeat center/100% url('/assets/wires/bottom_play_active.png');
}




/* Biometry styles */

.biometry__header {
  color: red;
}

.biometry__submit {
  color: #4FEAFF;
  box-shadow: 0px 9px 19px 0px #008080A1;
  font-family: Rostelecom Basis;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  border-radius: 8px;
  padding: 2%;
  background: #005561;
  border: 1px solid #005561;
  transition: background 0.5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30%;
  width: 42%;
}

.biometry__submit img {
  height: 100%;
}
.biometry__submit div {
  fill: #4FEAFF;
  width: 100%;
  height: 100%;
  display: flex;
}

.biometry__submit:hover {
  background: radial-gradient(59.92% 184.32% at 50% 50%, #005561 0%, #00BFD9 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  box-shadow: 0px 9px 19px 0px #008080A1;
}

.biometry__submit:disabled {
  color: rgba(255, 255, 255, 0.3)
}

.biometry__person {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
  margin-right: 4%;
  width: 20%;
}

.biometry__person:last-child {
  margin-right: 0;
}

.biometry__person-container {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  justify-content: center;
}

.biometry__person-icon {
  border: 3px solid #FFFFFF;
  box-shadow: 0px 9px 19px 0px #008080A1;
  border-radius: 100px;
  width: 100%;
  height: 100%;
}

.biometry__person-icon--selected {
  opacity: 0.4;
}

.biometry__person-name {
  color: #005561;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 10% 12%;
  width: 100%;

  position: relative;
  top: -10px;
  font-family: Rostelecom Basis;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0em;
  fill: #005561;
  box-sizing: border-box;
}

.biometry__hint {
  color: #fff;
  border: 1px solid #4FEAFF;
  background: linear-gradient(0deg, rgba(0, 140, 159, 0.7), rgba(0, 140, 159, 0.7)),linear-gradient(0deg, #4FEAFF, #4FEAFF);
  font-family: Rostelecom Basis;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 10px;
  padding: 1% 4%;
  border-radius: 7px;
  margin-bottom: 2%;
  height: 7%;
  box-sizing: border-box;
}

.biometry__hint-error {
  color: #fff;
  border: 1px solid #4FEAFF;
  background: linear-gradient(0deg, rgba(255, 72, 72, 0.7), rgba(255, 72, 72, 0.7));
}

.biometry__card {
  opacity: 84%;
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 37.04%, rgba(255, 255, 255, 0.42) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  box-shadow: 0px 20px 24px -5px #006876DB;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 7%;
  align-items: center;
  justify-content: center;
  width: 80%;
}

#biometry-button-check {
  height: 11%;
  width: 32%;
}

#biometry-tryAgain {
  height: 28%;
  width: 54%;
}

.biometry__audio--root {
  max-width: 20%;
  position: relative;
  display: flex;
  align-self: flex-start;
}

.biometry__audio--root:nth-child(2n) {
  align-self: flex-end;
}

.biometry__audio--dynamic {
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 50%;
}

.biometry__audio--container {
  display: flex;
  height: 30%;
  margin-bottom: 5%;
  width: 100%;
  justify-content: center;
}

.biometry__audio {
  position: relative;
  overflow: visible;
  padding: 0;
  border-radius: 100px;
  border: none;
  background: rgba(0, 0, 0, 0);
}

.biometry__audio--icon {
  width: 100%;
}

.biometry__audio--correct .biometry__audio--icon {
  opacity: 0.4;
}



.biometry__audio-scan {
  width:100%;
  height: 100px;
  position:absolute;
  z-index:9999;
   -moz-animation: scan 5s 1;
  -webkit-animation: scan 5s 1;
  animation: scan 2s 1;
   -webkit-animation-direction: alternate-reverse;
  left: 0;
  object-fit: cover;
}

@keyframes scan {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(70px);
  }
}

.biometry {
  display: flex;
  flex-direction: column;
  background-size:cover;
}

.biometry__root {
  height: 89%;
  width: 89%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.biometry__title {
  font-family: Rostelecom Basis;
  font-size: 45px;
  font-weight: 500;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 5%;
  margin-top: 0;
  color: #005561;
  width: 100%;
}

.biometry__audio--check {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  max-width: 50%;
}

.biometry__text {
  font-family: Rostelecom Basis;
  font-size: 17px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 5%;  
  margin-top: 0;
  color: #3D3D3D;
  width: 100%;
}

#bars {
  position: absolute;
  top: 34%;
  height: 10px;
  left: 0;
  height: 20px;
  transform: scale(2) translate(34%);
  width: 43%;
  overflow: hidden;
}

.bar {
  position: absolute;
  bottom: 40%;
  height: 3px;
  width: 1px;
  background: #4FEAFF;
  animation: sound 0ms -800ms linear infinite alternate;
  transform: translateY(50%);
}

@keyframes sound {
    0% {
      opacity: .35;
      height: 3px; 
    }
    100% {
      opacity: 1;       
      height: 16px;        
    }
}

#progressContainer {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
  
#progressBar {
  width: 1%;
  height: 3%;
  margin-bottom: 3%;
  background: linear-gradient(270deg, #4FEAFF 0%, #00B4CC 50%, #4FEAFF 100%);
  align-self: flex-start;
}

#progressText {
  font-family: Rostelecom Basis;
font-size: 12px;
font-weight: 500;
line-height: 15px;
letter-spacing: 0em;
text-align: left;
color: #3d3d3d;
width: 116%;
}

#progressText svg {
  overflow: visible;
}

.ege-game__root {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.ege-game__loader img {
  position: relative;
  top: 22px;
}

.ege-game__loader {
  position: relative;
}

.ege-game__loader-check {
  position: absolute;
  top: 20;
}

.ege-game__rules-container {
  position: absolute;
  top: 20%;
  bottom: 39%;
  left: 16%;
}

.ege-game__rules-container img {
  height: 100%;
}

.ege-game__start-game {
  position: absolute;
  background-image: var(--ege-button-bg);
  border: none;
  width: 48%;
  height: 23%;
  left: 50%;
  transform: translateX(-46%);
  top: 84%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

.ege-game__start-game:active {
  background-image: var(--ege-button-active-bg);
}

.ege-game__start-game:hover {
  background-image: var(--ege-button-hover-bg);
}

.ege-game__info-button {
  position: absolute;
  background-image: url(/assets/shared/info-button-normal.png);
  border: none;
  width: 5%;
  height: 5%;
  left: 51%;
  transform: translateX(-50%);
  top: 74%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

.ege-game__info-button:hover {
  background-image: url(/assets/shared/info-button-hover.png);
}

.ege-game__info-button:active {
  background-image: url(/assets/shared/info-button-active.png);
}


.ege-game__timer-container {
  position: absolute;
  bottom: 5%;
  right: 6%;
  height: 15%;
  width: 30%;
  transform: skew(-5deg, 7deg);
  display: flex
}
.ege-game__timer-number {
  width: 49%;
  font-size: 70px;
  font-weight: 500;
  fill: #fbe9c6;
}

.ege-game__start-text {
  position: absolute;
  top: 50%;
  width: 85%;
  left: 50%;
  font-size: 14px;
  transform: translate(-50%, -50%);
  line-height: 16px;
  color: #3f3a4e;
  fill: #3f3a4e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ege-game__finish-text {
  position: absolute;
  top: 45%;
  width: 85%;
  left: 50%;
  font-size: 14px;
  transform: translate(-50%, -50%);
  line-height: 16px;
  color: #3f3a4e;
  fill: #3f3a4e;
}


#ege-game-frame1 {
  visibility: hidden;
  animation: 0.5s show 1;
  top: 20%;
  bottom: 36%;
  left: 16%;
}

#ege-game-frame2 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.05s;
  top: 20%;
  bottom: 35%;
  left: 16%;
}

#ege-game-frame3 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.1s;
  top: 18%;
  bottom: 38%;
  left: 16%;
}

#ege-game-frame4 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.15s;
  top: 14%;
  bottom: 38%;
  left: 16%;
}

#ege-game-frame5 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.2s;
  top: 8%;
  bottom: 38%;
  left: 16%;
}

#ege-game-frame6 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.25s;
  top: 2%;
  bottom: 38%;
  left: 11%;
}

#ege-game-frame7 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.3s;
  top: 0%;
  bottom: 45%;
  left: 9%;
}

#ege-game-frame8 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.35s;
  top: 0%;
  bottom: 52%;
  left: 4%;
}

#ege-game-frame9 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.4s;
  top: 0%;
  bottom: 58%;
  left: 5%;
}

#ege-game-frame10 {
  visibility: hidden;
  animation: 0.5s show 1;
  animation-delay: 0.45s;
  top: 0%;
  bottom: 81%;
  left: 4%;
}

:root {
  --ege-button-bg: url();
  --ege-button-hover-bg: url();
  --ege-button-active-bg: url();

  --look-sharp-button-bg: url();
  --look-sharp-button-hover-bg: url();
  --look-sharp-button-active-bg: url();
}

@keyframes show {
  0%   { visibility: visible;}
  10%  { visibility: visible; }
  10%  { visibility: hidden; }
  100% { visibility: hidden; }
}

.ege-game__video-container {
  display: flex;
  flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 11.5%;
  top: 12%;
  right: 10.3%;
  bottom: 28.6%;
  gap: 1.2%;
}

.ege-game__video {
  width: 49%;
  height: 48%;
  background-color: #493F58;
  border: 2px solid #3A334E;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ege-game__video video {
  height: 100%;
  max-width: 100%;
}

.ege-game__video--correct {
  box-shadow: 0px 0px 5px 3px green;
}

.ege-game__video--wrong {
  box-shadow: 0px 0px 5px 3px red;
}

.look-sharp__root {
  width: 100%;
  height: 100%;
  background-size: contain;
  position: relative;
  display: flex;
}

.look-sharp__button {
  position: absolute;
  background-image: var(--look-sharp-button-bg);
  border: none;
  width: 30%;
  max-width: 210px;
  height: 10%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  top: 55%;
  left: 50%;
  transform: translate(-50%);
}

.look-sharp__button.look-sharp__button--final {
  top: 60%;
  max-width: 230px; 
}

.look-sharp__button.look-sharp__button--study {
  max-width: 260px;
}

.look-sharp__button:active {
  background-image: var(--look-sharp-button-active-bg);
}

.look-sharp__button:hover {
  background-image: var(--look-sharp-button-hover-bg);
}

.look-sharp__start {
  font-family: Tektur;
  background-color: transparent;
  fill: #fff;
  border: none;
  position: absolute;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  top: 5%;
  left: 8%;
  max-width: 30%;
}

.look-sharp__start:hover {
  fill: #D57BFF;

}

.look-sharp__start:active {
  fill: #fff;
  opacity: 60%;
}

.look-sharp__timer {
  font-family: Tektur;
  font-size: 40px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
  fill: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5%;
  height: 6%;
  margin: 0;
  display: flex;
}

.look-sharp__timer--play {
  top: 3%;
}

.look-sharp__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);

  margin: auto;
  width: 77%;
  height: 77%;
  margin: auto;
  gap: 3%;
}

.look-sharp__card {
  padding: 0;
  background-color: transparent;
  border: none;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: transform 0.3s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.look-sharp__card.selected {
  transform: scale(1.05);
}

.look-sharp__card.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
}

.look-sharp__card.is-flipped.selected {
  transform: translateX(-100%) rotateY(-180deg) scale(1.05);;
}
.look-sharp__img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.look-sharp__back {
  transform: rotateY(180deg);
}

.look-sharp__loader {
  position: absolute;
  top: 55%;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-family: Rostelecom Basis;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}

.look-sharp__loader-line {
  background: linear-gradient(270deg, #FFFFFF 0%, #E373FF 48.6%, #FFFFFF 100%);
  height: 2px;
  animation: lookSharpGradient 3s linear infinite;
  background-size: 200%;
  background-position-x: 100%;
}

.look-sharp__loader-line::before {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  content: ' ';
  position: absolute;
  left: 0;
  background: #E373FF;
  top: -2px;
  animation: lookSharpBeforeGradient 3s linear infinite;

}

.look-sharp__loader-line::after {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  content: ' ';
  position: absolute;
  right: 0;
  background: #fff;
  top: -2px;
  animation: lookSharpAfterGradient 3s linear infinite;
}

@keyframes lookSharpBeforeGradient {
	0% {
		background-color: #E373FF;
	}
  50% {
    background-color: #fff;
  }
  100% {
		background-color: #E373FF;
  }
}

@keyframes lookSharpAfterGradient {
	0% {
		background-color: #fff;
	}
  50% {
    background-color: #E373FF;
  }
  100% {
		background-color: #fff;
  }
}

@keyframes lookSharpGradient {
	0% {
		background-position-x: 100%;
	}
	24% {
		background-position: 50%;
	}
	48% {
		background-position: 0%;
	}
  72% {
		background-position: 50%;
  }
  100% {
		background-position: 100%;
  }
}

.big-data__root {
  width: 100%;
  height: 100%;
  background-color: #434343;
  background-image: url('/assets/big-data-game/start-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-data__start {
  width: 75%;
  height: 35%;
}

.big-data__head {
  font-family: Tektur;
  font-size: 42px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: center;
  fill: #fff;
  margin: 0 10% 5%;  
}

.big-data__text {
  font-family: Rostelecom Basis;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  fill: #fff
}

.big-data__submit {
  background: linear-gradient(0deg, rgba(255, 79, 18, 0.1), rgba(255, 79, 18, 0.1));
  border: 1px solid #FF4F12;
  color: #fff;
  fill: #fff;
  font-family: Tektur;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: left;
  border-radius: 2px;

  width: 41%;
  margin: 5% auto 0;

  padding: 3% 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-data__submit:hover {
  background: radial-gradient(44.91% 103.92% at 50% 50%, rgba(255, 79, 18, 0.03) 0%, rgba(255, 79, 18, 0.3) 100%);
}

.big-data__submit:active {
  background: linear-gradient(0deg, rgba(255, 79, 18, 0.5), rgba(255, 79, 18, 0.5));
}

.big-data__submit:disabled {
  opacity: 0.4;
}

.big-data__button {
  position: absolute;
  top: 50%;
  left: 50%;

  border: 1px dotted #FFFFFF;
  font-family: Tektur;
  text-align: center;
  background: transparent;
  border-radius: 9px;
  fill: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-data__button:hover {
  border: none;
  color: #FFB49A;
  fill: #FFB49A;
}

.big-data__button.selected {
  border: none;
  color: #FF4F12;
  fill: #FF4F12;
  border: 1px dotted #FF4F12;
  background: linear-gradient(0deg, rgba(255, 79, 18, 0.1), rgba(255, 79, 18, 0.1));
}

.big-data__play {
  width: 75%;
  height: 75%;
}

.big-data__button.photo {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  padding: 7px;
  width: 28%;
  height: 16%;
}

.big-data__button.zkh {
  font-size: 29px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
  padding: 11px;
  width: 19%;
  height: 16%;
}

.big-data__button.meteo {
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
  padding: 9px;
  width: 44%;
  height: 15%;
}
.big-data__button.transport {
  font-family: Tektur;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  padding: 5px;
  width: 46%;
  height: 12%;
}
.big-data__button.health {
  font-family: Tektur;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  padding: 5px 4px;
  width: 39%;
  height: 12%;
}
.big-data__button.hr {
  font-family: Tektur;
  font-size: 25px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
  padding: 9px;
  width: 39%;
  height: 20%;
}
.big-data__button.mrkt {
  font-family: Tektur;
  font-size: 34px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0em;
  text-align: center;
  padding: 12px;
  width: 46%;
  height: 20%;
}
.big-data__button.industry {
  font-family: Tektur;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  padding: 4px;
  width: 30%;
  height: 12%;
}
.big-data__button.sales {
  font-family: Tektur;
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0em;
  text-align: center;
  padding: 9px;
  width: 29%;
  height: 15%;
}
.big-data__button.media {
  font-family: Tektur;
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
  padding: 10px;
  width: 23%;
  height: 15%;
}
.big-data__button.banking {
  font-family: Tektur;
  font-size: 29px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0em;
  text-align: center;
  padding: 11px;
  width: 31%;
  height: 18%;
}

.big-data__button.rent {
  font-family: Tektur;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: center;
  padding: 5px;
  width: 30%;
  height: 17%;
}

.big-data__button.logistics {
  font-family: Tektur;
  font-size: 21px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  padding: 8px;
  width: 30%;
  height: 14%;
}

.big-data__buttons {
  margin-top: 5%;
  height: 80%;
  position: relative;
}

.buttons-touch  .big-data__button.photo {
    top: 2%;
    left: 1%;
  }
  
.buttons-touch  .big-data__button.zkh {
    top: 9%;
    left: 32%;
  }
  
.buttons-touch  .big-data__button.meteo {
    top: 1%;
    left: 53%;
  }

.buttons-touch  .big-data__button.transport {
    top: 26%;
    left: 6%;
  }

.buttons-touch  .big-data__button.health {
    top: 22%;
    left: 58%;
  }
.big-data__button.hr {
    top: 41%;
    left: 1%;
  }
.buttons-touch  .big-data__button.mrkt {
    top: 40%;
    left: 49%;
  }
.buttons-touch  .big-data__button.industry {
    top: 70%;
    left: 5%;
  }
.buttons-touch  .big-data__button.sales {
    top: 65%;
    left: 42%;
  }
.buttons-touch .big-data__button.media {
    top: 69%;
    left: 75%;
  }
.buttons-touch .big-data__button.banking {
    top: 85%;
    left: 1%;
  }
  
.buttons-touch  .big-data__button.rent {
    top: 84%;
    left: 37%;
  }
  
.buttons-touch  .big-data__button.logistics {
    top: 87%;
    left: 71%;
  }

.big-data__final {
  width: 75%;
  height: 31%;
}

.big-data__head--final {
  font-family: Tektur;
  font-size: 30px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  fill: #fff;
  margin-bottom: 6%
}

.big-data__head--final-fail{
  font-family: Tektur;
  font-size: 30px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  fill: #FF4F12
}

.big-data__text--final {
  font-family: Rostelecom Basis;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  fill: #fff;
}

.big-data__submit--final {
  margin-top: 6%;
  padding: 3% 6%;
}


.neuro-quiz__root {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.neuro-quiz__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.2s;
  z-index: 0;
}

.neuro-quiz__start {
  width: 86%;
  height: 37%;
  padding: 5%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid;
  border-radius: 2px;
  margin-bottom: 1.5%;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  border-image-slice: 1 1;
  box-sizing: border-box;
  animation: fadeIn 0.2s;
}

.neuro-quiz__start--title {
  font-family: Tektur;
  font-size: 42px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: center;
  fill: #1B1A13;
  margin-bottom: 3%;
  box-sizing: border-box;
}

.neuro-quiz__start--text {
  font-family: Rostelecom Basis;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;  
  fill: #1B1A13;
  box-sizing: border-box;
}

.neuro-quiz__slider-container {
  overflow: hidden;
  width: 82%;
  box-sizing: border-box;
  animation: fadeIn 0.2s;
  position: relative;
  flex-direction: column;
  align-items: center;
}

.neuro-quiz__slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.2s;
  transition: 0.2s; 
  align-items: center;
  box-sizing: border-box;
}

.neuro-quiz__slider-item {
  box-sizing: border-box;
  font-family: Tektur;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: left;
}


.neuro-quiz__slider-item:nth-child(1) {
  flex: 0 0 98%;
  fill: url(#question-button-0);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
}

.neuro-quiz__slider-item:nth-child(1):hover {
  background: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  fill: #fff;
  border-image-slice: 0 0;
}

.neuro-quiz__slider-item:nth-child(1):active {
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
  linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
    fill: #fff;
  border-image-slice: 0 0;
}

.neuro-quiz__slider-item:nth-child(2) {
  flex: 0 0 75%;
  fill: url(#question-button-1);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(110.02deg, #265961 15.62%, #0B1C21 79.89%);
}

.neuro-quiz__slider-item:nth-child(2):hover {
  border-image-slice: 0 0;
  fill: #fff;
  background: linear-gradient(110.02deg, #265961 15.62%, #0B1C21 79.89%);
}

.neuro-quiz__slider-item:nth-child(2):active {
  border-image-slice: 0 0;
  fill: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
  linear-gradient(110.02deg, #265961 15.62%, #0B1C21 79.89%);
  }


.neuro-quiz__slider-item:nth-child(3) {
  flex: 0 0 75%;

  fill: url(#question-button-2);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(110.34deg, #487CFF 0%, #214FC4 54.28%, #0238C2 98.74%);
}

.neuro-quiz__slider-item:nth-child(3):hover {
  fill: #fff;
  border-image-slice: 0 0;
  background: linear-gradient(110.34deg, #487CFF 0%, #214FC4 54.28%, #0238C2 98.74%);

}

.neuro-quiz__slider-item:nth-child(3):active {
  fill: #fff;
  border-image-slice: 0 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
  linear-gradient(110.34deg, #487CFF 0%, #214FC4 54.28%, #0238C2 98.74%);  
}

.neuro-quiz__slider-item:nth-child(4) {
  flex: 0 0 98%;

  fill: url(#question-button-3);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(110.02deg, #781403 0%, #763DC8 36.46%, #763DC8 60.94%, #063783 100%);
}

.neuro-quiz__slider-item:nth-child(4):hover {
  background: linear-gradient(110.02deg, #781403 0%, #763DC8 36.46%, #763DC8 60.94%, #063783 100%);
  border-image-slice: 0 0;
  fill: #fff;
}

.neuro-quiz__slider-item:nth-child(4):active {
  border-image-slice: 0 0;
  fill: #fff;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
  linear-gradient(110.02deg, #781403 0%, #763DC8 36.46%, #763DC8 60.94%, #063783 100%);
  }

.neuro-quiz__slider-item:nth-child(5) {
  flex: 0 0 100%;
  fill: url(#question-button-4);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(110.28deg, #37D7DE 0%, #20A4C2 82.52%);
}
.neuro-quiz__slider-item:nth-child(5):hover {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(110.28deg, #37D7DE 0%, #20A4C2 82.52%);
}
.neuro-quiz__slider-item:nth-child(5):active {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)), linear-gradient(110.28deg, #37D7DE 0%, #20A4C2 82.52%);  
}

.neuro-quiz__slider-item:nth-child(6) {
  flex: 0 0 90%;

  fill: url(#question-button-5);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(116.69deg, #FA90BE 0%, #E46797 37.1%, #8B0013 100%); 
}

.neuro-quiz__slider-item:nth-child(6):hover {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(116.69deg, #FA90BE 0%, #E46797 37.1%, #8B0013 100%);
}

.neuro-quiz__slider-item:nth-child(6):active {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
linear-gradient(116.69deg, #FA90BE 0%, #E46797 37.1%, #8B0013 100%);
}

.neuro-quiz__slider-item:nth-child(7) {
  flex: 0 0 95%;

  fill: url(#question-button-6);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(180deg, #6445EB 0%, #2402B7 100%);
}

.neuro-quiz__slider-item:nth-child(7):hover {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(180deg, #6445EB 0%, #2402B7 100%);


}
.neuro-quiz__slider-item:nth-child(7):active {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
linear-gradient(180deg, #6445EB 0%, #2402B7 100%);
}

.neuro-quiz__slider-item:nth-child(8) {
  flex: 0 0 98%;

  fill: url(#question-button-7);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(109.51deg, #7D9CFF 1.53%, #5367A9 66.1%);
}

.neuro-quiz__slider-item:nth-child(8):hover {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(109.51deg, #7D9CFF 1.53%, #5367A9 66.1%);

}

.neuro-quiz__slider-item:nth-child(8):active {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
linear-gradient(109.51deg, #7D9CFF 1.53%, #5367A9 66.1%);
}

.neuro-quiz__slider-item:nth-child(9) {
  flex: 0 0 66%;

  fill: url(#question-button-8);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(110.02deg, #D0CD98 0%, #D9A748 47.94%, #C57206 100%);
}

.neuro-quiz__slider-item:nth-child(9):hover {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(110.02deg, #D0CD98 0%, #D9A748 47.94%, #C57206 100%);

}

.neuro-quiz__slider-item:nth-child(9):active {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
linear-gradient(110.02deg, #D0CD98 0%, #D9A748 47.94%, #C57206 100%);
}


.neuro-quiz__slider-item:nth-child(10) {
  flex: 0 0 98%;

  fill: url(#question-button-9);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(89.23deg, #BE79FD 2.56%, #E6A4E9 100%);
}

.neuro-quiz__slider-item:nth-child(10):hover {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(89.23deg, #BE79FD 2.56%, #E6A4E9 100%);
}

.neuro-quiz__slider-item:nth-child(10):active {
  border-image-slice: 1 1;
  fill: #fff;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
  linear-gradient(89.23deg, #BE79FD 2.56%, #E6A4E9 100%);
}

.neuro-quiz__quesion--btn {
  font-family: Tektur;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 3% 5%;
  border: 1px solid #FFFFFF;
  background-color: rgba(255, 255, 255, 0.8);
  fill: #fff;
  flex: 0 0 100%;
  height: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
}

.neuro-quiz__question {
  font-family: Rostelecom Basis;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 3.5%;
  box-sizing: border-box;
  fill: #fff;
}

.neuro-quiz__answer {
  font-family: Rostelecom Basis;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 3.5%;
  box-sizing: border-box;
  fill: #fff;
}

.neuro-quiz__back {
  padding: 2.5% 8%;
  font-family: Tektur;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: left;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  width: 25%;
  height: 8%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  display: flex;
  fill: #fff;
  box-sizing: border-box;
  position: absolute;
  cursor: pointer;
}

.neuro-quiz__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 86%;
  margin-bottom: 5%;
}
.neuro-quiz__navigation {
  background: transparent;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 64%;
  border: 1px solid;
  width: 8%;
  height: 63%;
  outline: none;
  cursor: pointer;
  border-radius: 2px;
  padding: 2% 1%;
  fill: #000;
}

.neuro-quiz__navigation:hover:not(:disabled) {
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  background: linear-gradient(0deg, #1B1A13, #1B1A13);
  fill: rgba(255,255,255, 1);
}

.neuro-quiz__navigation:active:not(:disabled) {
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  background: rgba(27, 26, 19, 1);  
  fill: rgba(255,255,255, 0.6);
}
.neuro-quiz__left {
  left: 7%;
}

.neuro-quiz__right {
  right: 7%;
}

.neuro-quiz__left svg {
  transform: rotate(180deg);
}
.neuro-quiz__right:disabled {
  opacity: 0.2;
}

.neuro-quiz__left:disabled {
  opacity: 0.2;
}

.neuro-quiz__slider-navigation {
  font-family: Tektur;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: left;

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 36%;
  height: 8.6%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  padding: 3% 8%;
  box-sizing: border-box;
  animation: fadeIn 0.2s;
  cursor: pointer;
}


.neuro-quiz__slider-navigation:hover {
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  background: linear-gradient(0deg, #1B1A13, #1B1A13);
  fill: rgba(255,255,255, 1);
}

.neuro-quiz__slider-navigation:active {
  border: 1px solid;
  border-image-slice: 1 1;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  background: rgba(27, 26, 19, 1);  
  fill: rgba(255,255,255, 0.6);
}

.neuro-quiz__counter {
  font-family: Tektur;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: left;
    
  fill: #000;
  width: 30%;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 2px;
  border-image-source: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  border-image-slice: 1 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  margin-bottom: 3%;
  padding: 3% 10%;
  box-sizing: border-box;
}

.neuro-quiz__first {
  background: linear-gradient(120.38deg, #83745B 17.88%, #1B1A13 66.56%);
  width: 88.7%;
  height: 53.5%;
  padding: 9.5% 5.2%;
  box-sizing: border-box;
  cursor: pointer;
}
.neuro-quiz__second {
  background: linear-gradient(110.02deg, #265961 15.62%, #0B1C21 79.89%);
  width: 88.7%;
  height: 51.5%;
  padding: 10.1% 3.8%;
  box-sizing: border-box;
  cursor: pointer;
}
.neuro-quiz__third {
  background: linear-gradient(110.34deg, #487CFF 0%, #214FC4 54.28%, #0238C2 98.74%);
  width: 88.7%;
  height: 53.5%;
  padding: 10.1% 6.3%;
  box-sizing: border-box;
}
.neuro-quiz__fourth {
  background: linear-gradient(110.02deg, #781403 0%, #763DC8 36.46%, #763DC8 60.94%, #063783 100%);
  width: 88.7%;
  height: 53.5%;
  padding: 6.8% 4.7%;
  box-sizing: border-box;
}
.neuro-quiz__fifth {
  background: linear-gradient(110.28deg, #37D7DE 0%, #20A4C2 82.52%);
  width: 88.7%;
  height: 65.8%;
  box-sizing: border-box;
  padding: 6.1% 3.7%;
}
.neuro-quiz__sixth {
  background: linear-gradient(116.69deg, #FA90BE 0%, #E46797 37.1%, #8B0013 100%);
  width: 88.7%;
  height: 63%;
  box-sizing: border-box;
  padding: 6.5% 3%;
}
.neuro-quiz__seventh {
  background: linear-gradient(180deg, #6445EB 0%, #2402B7 100%);
  width: 88.7%;
  height: 53.2%;
  box-sizing: border-box;
  padding: 6.6% 6.2%;
}
.neuro-quiz__eighth {
  background: linear-gradient(109.51deg, #7D9CFF 1.53%, #5367A9 66.1%);
   width: 88.7%;
  height: 53.2%;
  box-sizing: border-box;
  padding: 5% 1.5%;

}
.neuro-quiz__ninth {
  background: linear-gradient(110.02deg, #D0CD98 12.67%, #D9A748 53.96%, #C57206 100%);
  width: 88.7%;
  height: 53.2%;
  box-sizing: border-box;
  padding: 5% 3.5%;
}

.neuro-quiz__tenth {
  background: linear-gradient(89.23deg, #BE79FD 2.56%, #E6A4E9 100%);
  width: 88.7%;
  height: 68.3%;
  box-sizing: border-box;
  padding: 5.3% 3.5%;
}

.neuro-quiz__loading {
  overflow: hidden;
  background: #fff;
  position: relative;
}

.neuro-quiz__root--loading {
  transform: translateY(34%);
}
.neuro-quiz__loader {
  width: 48%;
  background: linear-gradient(140.34deg, #1D1C1B 17.63%, #504E4C 53.34%, #000000 85.11%);
  border-radius: 4px;
  height: 3.2%;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px;
}

.neuro-quiz__loader--line {
  width: 1%;
  background: #42FFFF;
  height: 99%;
  border-radius: 2px 0 0 2px;
}

.neuro-quiz__slider-item.visited svg {
  opacity: 0.4;
}

.marusia3d__bottom-hint {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.marusia3d__bottom-hint-text {
  position: absolute;
  bottom: 0.5em;
  width: 100%;
  text-align: center;
  font-family: Rostelecom Basis;
  font-weight: 400;
  font-size: 0.8em;
  color: white;
  opacity: 0.6;
}

#viewer .marusia3d__bottom-hint {
  font-size: 1vw;
}

@media screen and (max-width: 1000px) {
  #viewer .marusia3d__bottom-hint {
    font-size: 2.5vw;
  }
  .marusia3d__bottom-hint-text {
    font-size: 1.8em;
  }
}


.marusia__root {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: relative;
  background-color: #434343;
}

.marusia__logo {
  width: 16.4%;
  height: 21%;
  margin-bottom: 3.2%;
}

.marusia__logo--play {
  width: 20.2%;
  height: 23%;
  margin-bottom: 5%;
}

.marusia__logo--question {
  width: 13.6%;
  height: 15%;
  margin-bottom: 3%;
}

.marusia__loader {
  height: 1%;
  width: 41.4%;
  border: 0.0625em solid #545B7D;
  box-sizing: border-box;
  border-radius: 0.125em;
  margin-bottom: 1.3%;
}

.marusia__loader--line {
  background: linear-gradient(102.66deg, #FF65E6 18.18%, #0077FF 64.11%, #12E9F6 99.84%);
  height: 100%;
  width: 1%;
}

.marusia__loader--text {
  width: 58.7%;
  height: 4.8%;
  font-family: Rostelecom Basis;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 0.95px;
  letter-spacing: 0em;
  text-align: center;
  fill: #fff;
}

.marusia__title--main {
  margin-bottom: 3.2%;
}

.marusia__text--start {
  width: 90.6%;
  font-family: Rostelecom Basis;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 3.2%;
  fill: #fff;
  color: white;
}

.marusia__submit {
  border: 1px solid #0077FF;
  border-radius: 2px;
  background: #0077FF;
  fill: #fff;
  color: white;
  font-family: Tektur;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 1.5% 3%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marusia__submit:hover {
  background: radial-gradient(44.91% 103.92% at 50% 50%, rgba(0, 119, 255, 0.03) 0%, rgba(0, 119, 255, 0.3) 100%);
}

.marusia__submit:active {
  background: linear-gradient(0deg, rgba(0, 119, 255, 0.5), rgba(0, 119, 255, 0.5));
}

.marusia__submit--start {
  width: 27%;
  height: 8.2%;
}

.marusia__submit--continue {
  height: 8.2%;
  width: 36%;
}

.marusia__submit--sound {
  position: absolute;
  bottom: 3.2%;
  right: 11.5%;
  width: 8%;
  height: 8%;
  padding: 2.1% 1.9%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625em solid #FFFFFF;
  background: transparent;
  border-radius: 100%;
  stroke: #fff;
}

.marusia__submit--sound:hover {
  background: radial-gradient(40% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) 
}

.marusia__submit--sound:active {
  background: #fff;
}

.marusia__submit--sound:active path {
  stroke: #0077FF;
}

.marusia__question {
  font-family: Rostelecom Basis;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-align: center;
  width: 85.6%;
  margin-bottom: 4%;
  fill: #fff;
  color: white;
}

.marusia__counter {
  font-family: Tektur;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0em;
  text-align: center;
  width: 70.6%;
  fill: #fff;
  color: white;
  margin-bottom: 2%;
} 

.marusia__options--container {
  width: 80.6%;
  height: 42.7%;
  margin-bottom: 3%;
}

.marusia__container {
  display: block;
  position: relative;
  padding-left: 15.5%;
  margin-bottom: 3.5%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: Rostelecom Basis;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-align: left;
  fill: #fff;
  color: white;
  height: 19%;
}

.marusia__container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.marusia__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10.1%;
  background: linear-gradient(0deg, rgba(255, 79, 18, 0.1), rgba(255, 79, 18, 0.1));
  border: 1px solid #0077FF;
  border-radius: 50%;
}

.marusia__container:hover input ~ .marusia__checkmark {
  background: radial-gradient(40% 50% at 50% 50%, rgba(0, 119, 255, 0) 0%, rgba(0, 119, 255, 0.3) 100%); 
}

.marusia__container input:checked ~ .marusia__checkmark {
  background-image: url("/assets/marusia/marusia-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}

.marusia__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.marusia__container input:checked ~ .marusia__checkmark:after {
  display: block;
}


.marusia__option--text {
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.35em;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.marusia__answer--title {
  font-family: Tektur;
  font-size: 1.5em;
  font-weight: 300;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 4%;
  width: 80.6%;
  color: white;
}

.marusia__answer--title.wrong {
  color: #F55E70;
}

.marusia__submit--next {
  width: 24.7%;
  height: 8.2%;
}

.marusia__submit--again {
  width: 48%;
  padding: 1.5% 4%;
  height: 8.2%;
  font-size: 0.9em;
}
.marusia__answer--text {
  width: 80.6%;
  font-family: Rostelecom Basis;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 5%;
  color: white;
}

#game .marusia__root {
  font-size: 1.4vw;
}

@media screen and (max-width: 1000px) {
  #game .marusia__root {
    font-size: 3vw;
  }
}


.pager__image-row {
  display: flex;
  width: 80%; /* Set the width of the image row */
  position: absolute;
  bottom: 5%; /* Adjust this for the desired vertical position */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.pager__image-row img {
  width: 33%; /* Adjust this to control the individual image width */
  height: auto;
}

.neuro-quiz__card-aniamtion {
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


.room__bubble {
  position: absolute;
  z-index: 100;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
