body {
  font-family: "Nunito Sans", sans-serif;
  background-color: rgb(0, 40, 93);
  color: #fff;
  margin: 0;
}

.js_reg_auth {
  display: none !important;
}

.about-bottom {
  display: flex;
  justify-content: flex-end;
}
.about-bottom .about-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 5px 25px;
  background-color: rgb(159, 214, 226);
  color: rgb(39, 37, 38);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}
.about-bottom .about-btn:hover {
  background-color: rgb(146, 215, 229);
  color: rgb(39, 37, 38);
  text-decoration: none;
}

.main {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url("assets/bg-game2.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}
.main .bnt-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .bnt-container .top-btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: rgb(159, 214, 226);
  color: rgb(39, 37, 38);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.main .bnt-container .top-btn:hover {
  background-color: rgb(146, 215, 229);
  color: rgb(39, 37, 38);
  text-decoration: none;
}
.main__title {
  font-size: 36px;
  font-weight: 300;
}
.main__title span {
  font-weight: 700;
  color: white;
  font-size: 46px;
}
.main__subtitle {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
}
.main__btn {
  display: inline-block;
  margin-top: 24px;
  padding: 5px 25px;
  background-color: rgb(159, 214, 226);
  color: rgb(39, 37, 38);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.main__btn:hover {
  background-color: rgb(146, 215, 229);
  color: rgb(39, 37, 38);
  text-decoration: none;
}

.quiz {
  margin: 0 auto;
}

.question {
  display: none;
  gap: 20px;
  border-radius: 10px;
  padding: 20px 0 20px 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.question.active {
  display: block;
}

.line-img {
  width: 100%;
  height: auto;
}

.question__flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 20px;
}

.question__image {
  flex: 1 1 50%;
  max-width: 600px;
}
.question__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.question__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.answers {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.answer {
  background: rgb(198, 236, 255);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  transition: background 0.2s;
}
.answer:hover {
  background: rgb(182, 221, 241);
}
.answer .icon {
  width: 45px;
  height: 45px;
}

.line-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.sources {
  display: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sourses.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bottom-line {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.top-line {
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .question__flex {
    flex-direction: column;
  }
  .question__image,
  .question__content {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .answer {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .answer .answer__icon {
    margin-left: auto;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.modal-overlay .modal-content {
  display: none;
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
  max-width: 1000px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}
.modal-overlay .modal-content .modal-text {
  font-size: 16px;
  margin-bottom: 20px;
}
.modal-overlay .modal-content .modal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.modal-overlay .modal-content .modal-bottom .line-modal {
  width: 70%;
  height: auto;
}
.modal-overlay .modal-content .modal-bottom .modal-btn {
  width: 100%;
  padding: 10px 20px;
  background: rgb(0, 142, 206);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.modal-overlay .modal-content .modal-bottom .modal-btn:hover {
  background: rgb(1, 135, 196);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.light-blue {
  color: rgb(97, 194, 237);
  font-weight: 700;
}

.blue {
  color: rgb(0, 97, 172);
  font-weight: 700;
}

.correct-span {
  color: rgb(5, 132, 135);
  font-weight: 700;
}

.wrong {
  color: rgb(203, 0, 21);
  font-weight: 700;
}

@media (max-width: 440px) {
  .main .bnt-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .main {
    min-height: 250px;
  }
  body {
    font-size: 14px;
  }
  .answers .answer {
    font-size: 14px;
    gap: 10px;
  }
  .answers .answer .icon {
    width: 30px;
    height: 30px;
  }
  .modal-overlay .modal-content .modal-bottom {
    gap: 10px;
  }
  .modal-overlay .modal-content .modal-bottom .line-modal {
    width: 60%;
  }
  .modal-overlay .modal-content .modal-bottom .modal-btn {
    padding: 5px 10px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .question {
    flex-direction: column;
    align-items: center;
  }
  .question__image,
  .question__content {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .modal-overlay .modal-content {
    padding: 15px;
  }
  .modal-overlay .modal-content .modal-text {
    font-size: 14px;
  }
  .modal-overlay .modal-content .modal-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}

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