@charset "UTF-8";
.custom-accordion {
  /* Accordion styles */
}
.custom-accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.custom-accordion.tabs {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  gap: 0em;
}
.custom-accordion .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.custom-accordion .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #005bae;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  /* Icon */
}
.custom-accordion .tab-label:hover {
  background: #00407b;
}
.custom-accordion .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.custom-accordion .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #005bae;
  transition: all 0.35s;
}
.custom-accordion .tab-content h2 {
  color: #005bae;
  font-size: 1em !important;
  font-weight: bold;
}
.custom-accordion .tab-content p {
  color: #222222;
}
.custom-accordion .tab-content p iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.custom-accordion .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #005bae;
  cursor: pointer;
}
.custom-accordion .tab-close:hover {
  background: #00407b;
}
.custom-accordion input:checked + .tab-label {
  background: #00407b;
}
.custom-accordion input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.custom-accordion input:checked ~ .tab-content {
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 1em;
}/*# sourceMappingURL=style.css.map */