/* hotfix modal */

div#modal-event-add{
    z-index: 99999999999999999999;
}

.zone-100 .carousel-caption {
    color: #004565;
    background-color: #FFFFFF;
    text-shadow: none;
    line-height: 1.2;
}

.carousel-caption .caption-title {
    color: #004565;
    font-weight: normal;
    padding-bottom: 20px;
}



.ct-quiz {
  max-width: 640px;
  margin: 0 auto;
}
 
/* --- Question bar --- */
.ct-question {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.ct-question__text {
  color: #000;
  font-size: 17px;
  text-align: center;
  margin: 0;
  line-height: 2.1; /* room for pills when they wrap on mobile */
}
 
/* --- Pill buttons --- */
.ct-pill {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 5px 16px;
  margin: 0 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.ct-pill:hover { transform: translateY(-1px); filter: brightness(1.06); }
.ct-pill:focus-visible { outline: 3px solid #ffd97a; outline-offset: 2px; }
.ct-pill--a { background: #bfe3d8; color: #073d42; }
.ct-pill--b { background: #58b368; color: #fff; }
.ct-pill.is-active { box-shadow: 0 0 0 3px rgba(255, 255, 255, .85); }
 
/* --- Answer card --- */
.ct-answer {
  display: none;
  background: #fff;
  border-radius: 12px;
  margin-top: 14px;
  padding: 22px 24px 26px;
  text-align: center;
  animation: ct-fade .25s ease;
}
.ct-answer.is-open { display: block; }
@keyframes ct-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .ct-answer { animation: none; }
  .ct-pill { transition: none; }
}
.ct-answer h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #1a1a1a;
}
.ct-answer p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.ct-cta {
  display: inline-block;
  background: #0b3d44;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 9px 20px;
  transition: filter .12s ease;
}
.ct-cta:hover { filter: brightness(1.25); color: #fff; }

