.owl-faq-radio {
  display: none;
}

.owl-faq-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.owl-faq-item {
  border: none;
  margin-bottom: 12px;
  position: relative;
}

.owl-faq-question {
  background: #f5f7fa;
  color: #15395a;
  font-size: 1.2em;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #e3e7ed;
  border-bottom: none;
  transition: all 0.3s ease;
  margin: 0;
}

.owl-faq-radio:checked + .owl-faq-question {
  background: #0a2e53;
  color: #fff;
  border-color: #0a2e53;
}

.owl-faq-answer {
  background: #fff;
  border: 2px solid #e3e7ed;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 0 24px;
  font-size: 1.08em;
  color: #222;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.owl-faq-radio:checked + .owl-faq-question + .owl-faq-answer {
  padding: 22px 24px;
  max-height: 1000px;
  opacity: 1;
}

.owl-faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  transition: all 0.3s ease;
}

.owl-faq-radio:checked + .owl-faq-question .owl-faq-toggle {
  background: #15395a;
  color: #fff;
  transform: rotate(45deg);
}

:root {
  --theme: #0a2e53;
  --secondary: #0783be;
}

.accordion {
  color: var(--theme);
  overflow: hidden;
  margin-bottom: 2rem;
}
.tab {
  position: relative;
  margin-bottom: 15px;
}
.tab input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
  background: #fff;
}
.tab input[type="checkbox"]:checked ~ .tab__label {
  background: var(--theme);
  color: #fff;
  border: 1px solid var(--theme);
}
.tab input[type="checkbox"]:checked ~ .tab__content {
  max-height: 10rem;
  border: 1px solid #d5d8dc;
}
.tab__label,
.tab__close {
  display: flex;
  color: var(--theme);
  background: #f7f7f7;
  cursor: pointer;
  border: 1px solid #d5d8dc;
}
.tab__label {
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.tab__icon {
  font-family: inherit;
  font-size: 1.5rem;
  text-align: center;
  transition: all 0.35s;
  margin-left: 0.5em;
  display: inline-block;
}
.tab input[type="checkbox"]:checked ~ .tab__label .tab__icon:before {
  content: "−";
}
.tab__label .tab__icon:before {
  content: "+";
}
.tab__label::after {
  display: none;
}
.tab__content p {
  margin: 0;
  padding: 1rem;
  font-size: 0.9rem;
  color: #000;
}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.accordion--radio {
  --theme: var(--secondary);
}
.tab input[type="checkbox"]:not(:checked) + .tab__label:hover::after {
  animation: bounce 0.5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}