#wheel-section {
  flex: 1;
  margin-top: 200px;
}
#wheel-section .learn-color {
  background-color: #5C6BC0;
}
#wheel-section .manage-color {
  background-color: #FBC02D;
}
#wheel-section .understand-color {
  background-color: #358735;
}
#wheel-section .fact-color {
  background-color: #D32F2F;
}
#wheel-section p {
  color: #515151;
  font-size: 18px;
  line-height: 22px;
}
#wheel-section .heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #007CC3;
  margin-bottom: 15px;
}
#wheel-section .heading p {
  margin-bottom: 15px;
}
#wheel-section .full-bg-section {
  background-color: #E2F4F3;
  padding: 16px;
}
#wheel-section .full-bg-section .learn-section {
  width: 100%;
  max-width: 280px;
}
#wheel-section .full-bg-section .learn-section .colored-box {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  margin-right: 5px;
}
#wheel-section .full-bg-section .learn-section p {
  color: #515151;
  margin-bottom: 0px;
}
#wheel-section .svg-header {
  height: 124px;
}
@media (min-width: 576px) {
  #wheel-section .svg-header {
    height: 165px;
  }
}
#wheel-section .wheel-container {
  position: relative;
  width: 60%;
  max-width: 450px;
  aspect-ratio: 1/1;
  margin: 40px auto;
}
#wheel-section .wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
#wheel-section .wheel-svg {
  width: 100%;
  height: 100%;
}
#wheel-section .needle {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 100;
}
#wheel-section .needle img {
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  #wheel-section .needle img {
    width: 75px;
    height: 75px;
  }
}
#wheel-section .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
#wheel-section .spin-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background-color: #004995;
  background-size: cover;
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 11;
  transition: all 0.3s ease;
}
#wheel-section .spin-button::before {
  content: "";
  background-image: url(../images/lung.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50%;
}
@media (min-width: 576px) {
  #wheel-section .spin-button {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  #wheel-section .spin-button {
    font-size: 32px;
  }
}
#wheel-section .spin-button:hover {
  transform: translate(-50%, -50%);
}
#wheel-section .spin-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}
#wheel-section .spin-button:disabled {
  cursor: not-allowed;
}
#wheel-section .font-green {
  color: #358735;
}
#wheel-section .font-red {
  color: #D32F2F;
}
#wheel-section .font-yellow {
  color: #FBC02D;
}
#wheel-section .lung-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
#wheel-section .popup-overlay {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1035;
  justify-content: center;
  align-items: center;
}
#wheel-section .popup-overlay.active {
  display: block;
}
#wheel-section .popup {
  max-width: 535px;
  height: 90%;
  width: 90%;
  max-height: 710px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  #wheel-section .popup {
    max-height: 725px;
    overflow: auto;
  }
}
#wheel-section .popup .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  width: 100%;
}
#wheel-section .popup .card-header .bg-header-image {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 576px) {
  #wheel-section .popup .card-header .bg-header-image {
    width: 32px;
    height: 32px;
  }
}
#wheel-section .popup .card-header .header-text::after {
  color: white;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 576px) {
  #wheel-section .popup .card-header .header-text::after {
    font-size: 24px;
  }
}
#wheel-section .popup .question-container {
  padding: 10px 35px 30px 35px;
  z-index: 10;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  #wheel-section .popup .question-container {
    padding: 10px 70px 30px 70px;
  }
}
#wheel-section .popup .question-container.mt-20 {
  margin-top: -20px;
}
#wheel-section .popup .question-container .question-title {
  color: #515151;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 576px) {
  #wheel-section .popup .question-container .question-title {
    font-size: 18px;
    line-height: 22px;
  }
}
#wheel-section .popup .info-container {
  height: calc(100% - 125px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#wheel-section .popup .info-container.popup-info-large {
  height: calc(100% - 80px);
  margin-top: -40px;
}
@media (min-width: 576px) {
  #wheel-section .popup .info-container {
    height: calc(100% - 165px);
  }
  #wheel-section .popup .info-container.popup-info-large {
    height: calc(100% - 165px);
    margin-top: 0px;
  }
}
#wheel-section .popup .info-container .wheel-references {
  padding-bottom: 20px;
}
#wheel-section .popup .info-container .try-again-btn {
  text-decoration: none;
}
#wheel-section .popup .info-container .btn-container {
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
#wheel-section .popup .info-container .btn-container.asthma .try-again-btn {
  width: 185px;
}
#wheel-section .popup .info-container .asthma-img {
  max-width: 160px;
}
@media (min-width: 576px) {
  #wheel-section .popup .info-container .asthma-img {
    max-width: 260px;
  }
}
@media (min-width: 576px) {
  #wheel-section .popup .info-container .asthma-ul {
    width: 50%;
  }
}
#wheel-section .popup .info-container .map-img,
#wheel-section .popup .info-container .allergies-img {
  width: 100%;
  max-width: 360px;
}
#wheel-section .popup .info-container .allergies-img-big {
  width: 100%;
  max-width: 480px;
}
#wheel-section .popup .info-container p {
  font-size: 14px;
  line-height: 18px;
  color: #515151;
  margin-bottom: 0px;
}
#wheel-section .popup .info-container ul {
  margin-bottom: 0px;
}
#wheel-section .popup .info-container ul li {
  font-size: 14px;
  line-height: 18px;
  color: #515151;
  margin-bottom: 8px;
}
#wheel-section .popup .info-container {
  padding: 0px 10px 10px 10px;
}
#wheel-section .popup .info-container .checkbox-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
#wheel-section .popup .info-container .checkbox-list img {
  width: 30px;
  height: 30px;
}
#wheel-section .popup .info-container .checkbox-list .fblue {
  color: #5C6BC0;
  font-weight: 700;
  font-size: 24px;
}
#wheel-section .popup .info-container .img-border {
  padding: 6px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
#wheel-section .popup .info-container .references {
  font-size: 8px !important;
  line-height: 12px !important;
}
#wheel-section .popup .info-container .references a {
  color: #515151;
  text-decoration: none;
  word-break: break-all;
}
@media (min-width: 576px) {
  #wheel-section .popup .info-container .references {
    font-size: 10px !important;
    line-height: 14px !important;
  }
}
@media (min-width: 576px) {
  #wheel-section .popup .info-container {
    padding: 0px 30px 10px 30px;
  }
  #wheel-section .popup .info-container .btn-container {
    flex-direction: row;
    gap: 24px;
  }
  #wheel-section .popup .info-container p,
  #wheel-section .popup .info-container li {
    font-size: 18px !important;
    line-height: 22px !important;
  }
}
#wheel-section .popup .options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}
#wheel-section .popup .option-button {
  width: 100%;
  padding: 10px 13px;
  border: none;
  color: #515151;
  border-radius: 30px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
#wheel-section .popup .option-button .option-letter {
  width: 30px !important;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #358735;
  margin-right: 15px;
}
@media (min-width: 576px) {
  #wheel-section .popup .option-button .option-letter {
    height: 41px;
    width: 41px !important;
  }
}
#wheel-section .popup .option-button .option-letter .option-text {
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #358735;
  border-radius: 50%;
  font-size: 14px;
  color: #FFFFFF;
}
@media (min-width: 576px) {
  #wheel-section .popup .option-button .option-letter .option-text {
    width: 31px;
    height: 31px;
    font-size: 18px;
  }
}
#wheel-section .popup .option-button .option-title {
  width: 70%;
  font-size: 16px;
  line-height: 18px;
}
@media (min-width: 576px) {
  #wheel-section .popup .option-button .option-title {
    font-size: 18px;
    line-height: 22px;
  }
}
#wheel-section .popup .option-button:hover {
  border-color: #667eea;
  background: #f9fafb;
  transform: translateX(5px);
}
#wheel-section .popup .option-button.correct {
  border: 2px solid #358735;
  background: #d1fae5;
}
#wheel-section .popup .option-button.correct .checkmark {
  width: 20px;
  height: 20px;
  background-image: url("../images/wheel-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#wheel-section .popup .option-button.incorrect {
  border: 2px solid #ef4444;
  background: #fee2e2;
  animation: shake 0.5s ease;
}
#wheel-section .popup .option-button.incorrect .checkmark {
  width: 20px;
  height: 20px;
  background-image: url("../images/wheel-cross.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#wheel-section .popup .try-again-btn {
  width: 165px;
  height: 35px;
  border-radius: 10px;
  background-color: #004995;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#wheel-section .popup .try-again-btn p {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0px;
}
@media (min-width: 576px) {
  #wheel-section .popup .try-again-btn p {
    font-size: 18px;
  }
}
#wheel-section .popup.blur-content .card-inner {
  filter: blur(2px);
}
#wheel-section .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
#wheel-section .card-header-section {
  z-index: 2;
}
#wheel-section .card-front,
#wheel-section .card-back {
  top: 0;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow-y: auto;
}
#wheel-section .card-back {
  transform: rotateY(180deg);
}
#wheel-section .popup.flipped .card-inner {
  transform: rotateY(180deg);
}
#wheel-section .popup.blue svg path {
  fill: #5C6BC0;
}
#wheel-section .popup.blue .card-header .bg-header-image {
  background-image: url("../images/learn.svg");
}
#wheel-section .popup.blue .card-header .header-text::after {
  content: "LEARN";
}
#wheel-section .popup.blue .option-button {
  background-color: rgba(92, 107, 192, 0.1);
}
#wheel-section .popup.blue .option-button .option-letter {
  border: 2px solid #5C6BC0;
}
#wheel-section .popup.blue .option-button .option-letter .option-text {
  background-color: #5C6BC0;
}
#wheel-section .popup.red svg path {
  fill: #D32F2F;
}
#wheel-section .popup.red .card-header .bg-header-image {
  background-image: url("../images/wheel-asthma.svg");
}
#wheel-section .popup.red .card-header .header-text::after {
  content: "ASTHMA";
}
#wheel-section .popup.red .option-button {
  background-color: rgba(211, 47, 47, 0.1);
}
#wheel-section .popup.red .option-button .option-letter {
  border: 2px solid #D32F2F;
}
#wheel-section .popup.red .option-button .option-letter .option-text {
  background-color: #D32F2F;
}
#wheel-section .popup.yellow svg path {
  fill: #FBC02D;
}
#wheel-section .popup.yellow .card-header .bg-header-image {
  background-image: url("../images/manage-black.svg");
}
#wheel-section .popup.yellow .card-header .header-text::after {
  content: "MANAGE";
  color: #515151;
}
#wheel-section .popup.yellow .close-button .close-white {
  display: none;
}
#wheel-section .popup.yellow .close-button .close-black {
  display: block;
}
#wheel-section .popup.yellow .option-button {
  background-color: rgba(251, 192, 45, 0.1);
}
#wheel-section .popup.yellow .option-button .option-letter {
  border: 2px solid #FBC02D;
}
#wheel-section .popup.yellow .option-button .option-letter .option-text {
  background-color: #FBC02D;
  color: #515151;
}
#wheel-section .popup.green svg path {
  fill: #358735;
}
#wheel-section .popup.green .card-header .bg-header-image {
  background-image: url("../images/understand.svg");
}
#wheel-section .popup.green .card-header .header-text::after {
  content: "UNDERSTAND";
}
#wheel-section .popup.green .option-button {
  background-color: rgba(53, 135, 53, 0.1);
}
#wheel-section .popup.green .option-button .option-letter {
  border: 2px solid #358735;
}
#wheel-section .popup.green .option-button .option-letter .option-text {
  background-color: #358735;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#wheel-section .close-button {
  position: absolute;
  top: 8px;
  right: 0px;
  /* width: 32px; */
  /* height: 32px; */
  border: none;
  background-color: transparent;
  cursor: pointer;
}
#wheel-section .close-button .close-white {
  display: block;
}
#wheel-section .close-button .close-black {
  display: none;
}
#wheel-section .close-button img {
  width: 20px;
  height: 20px;
}
@media (min-width: 576px) {
  #wheel-section .close-button {
    top: 10px;
  }
  #wheel-section .close-button img {
    width: 32px;
    height: 32px;
  }
}
#wheel-section .footer-wheel-text {
  font-size: 10px;
  color: #515151;
  text-align: center;
}
#wheel-section .font-green {
  color: #009C94;
}

@keyframes correctPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}
.confetti {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  background: #f0f;
  position: absolute;
  animation: confetti-fall 3s ease-out forwards;
}

@keyframes confetti-fall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
.celebration {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: celebrate 1s ease;
  z-index: 10000;
  pointer-events: none;
  width: 200px;
  height: 200px;
}

@keyframes celebrate {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}/*# sourceMappingURL=wheel.css.map */