body {
  background-color: rgb(212, 228, 241);
  position: relative;
}

.js_reg_auth {
  display: none !important;
}

.wrapper {
  z-index: 1;
}

.headerGame {
  background-color: rgb(72, 116, 140);
  margin-top: 50px;
  margin-bottom: 30px;
}
.headerGame--sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}
.headerGame__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerGame__img {
  width: 220px;
  height: auto;
}
.headerGame__text h1 {
  text-transform: uppercase;
  color: white;
}
.headerGame__text h1 span {
  color: rgb(241, 149, 58);
}

.blue {
  color: rgb(72, 116, 140);
  font-weight: 700;
}

.orange-bold {
  color: rgb(241, 149, 58);
  font-weight: 700;
}

.orange {
  color: rgb(241, 149, 58);
}

.description {
  margin-bottom: 0;
}

.infoGame {
  background-color: white;
  color: black;
  padding: 12px;
  border: 2px solid rgb(24, 153, 214);
  margin-bottom: 15px;
}
.infoGame--center-text {
  align-content: center;
}
.infoGame__check {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.infoGame__check .check {
  width: 18px;
  height: auto;
  margin-top: 5px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.game__wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: 0.6s;
}
.game__wrapper.show {
  max-height: 5000px;
  opacity: 1;
}
.game__question {
  background-color: rgb(85, 142, 173);
  border: 2px solid rgb(24, 153, 214);
  padding: 12px;
  color: white;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}
.game__question p {
  margin-bottom: 0;
}
.game__blocks {
  display: grid;
  width: 70%;
  margin-bottom: 20px;
}
.game__blocks .left-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.game__blocks .left-block label {
  background-color: white;
  padding: 10px;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.game__blocks--final {
  width: 100%;
}

.left-block label:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.answer-text {
  margin-left: 10px;
}

.answer-text.wrong-answer {
  color: red;
}

.answer-text.correct-answer {
  color: green;
  font-weight: bold;
}

.next-btn {
  padding: 3px 40px;
  background: rgb(241, 149, 58);
  border-radius: 12px;
  color: white;
  border: rgb(241, 149, 58);
  font-size: 18px;
}

.next-btn-container {
  display: flex;
  justify-content: flex-end;
}

.source {
  background-color: white;
  color: black;
  padding: 12px;
  border: 2px solid rgb(24, 153, 214);
  margin-bottom: 15px;
  font-size: 14px;
}

.result-block {
  background-color: white;
  color: black;
  padding: 12px;
  border: 2px solid rgb(24, 153, 214);
  margin-bottom: 15px;
  animation: fadeInUp 0.5s ease;
}
.result-block__content {
  display: flex;
  gap: 7px;
}
.result-block__img-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-img {
  width: 400px;
  height: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.right-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.right-block__video {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  justify-self: center;
  align-self: center;
  margin-top: 10px;
  margin-bottom: 7px;
}
.right-block__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.right-block__text .title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}
.right-block__text .title-other {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.right-block__text p {
  color: white;
  font-size: 14px;
}

.orange-light {
  color: rgb(241, 149, 58);
  font-weight: 500;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 991px) {
  .headerGame__text h1 {
    font-size: 28px;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .right-block {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 5px;
  }
  .right-block__video {
    order: 2;
  }
  .right-block__text {
    order: 1;
    display: none;
  }
  .right-block__text br {
    display: none;
  }
  .mobile-center {
    text-align: center;
  }
  .orange-light.mobile-center {
    display: block;
  }
  .game__blocks {
    width: 100%;
  }
  .result-block__content {
    flex-direction: column;
  }
  .result-block__img-container {
    gap: 10px;
  }
  .result-img {
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .headerGame {
    margin-top: 30px;
  }
  .headerGame__content {
    flex-direction: column;
    gap: 5px;
  }
  .headerGame__text h1 {
    font-size: 24px;
  }
}

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