.challenge-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  display: none;
}

.challenge-modal__card {
  width: 95vw;
  max-width: 400px;
  height: 100vh;
  max-height: 550px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.challenge-modal__header {
  padding-top: 30px;
  display: grid;
  place-items: center;
}

.challenge-modal__divider {
  background: #E0E5EB;
  height: 1px;
}

.challenge-modal__iframe-container {
  flex: 1;
  overflow: auto;
}

.challenge-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.challenge-modal__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #A0ADC0;
  font-size: 12px;
}

/* RESPONSIVE */
