/*!
 * Bootstrap  v5.3.7 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

.faq-item {
  background: #fff;
  border-radius: 2rem;
}

.faq-item__question {
  align-items: center;
  background: #fff;
  border: 2px solid #67f7fe;
  border-radius: 2rem;
  box-shadow: inset 0 0 12px 0 rgba(100, 198, 246, .8);
  color: #003da6;
  cursor: pointer;
  display: flex;
  filter: drop-shadow(0 2px 2px rgba(0, 61, 166, .24));
  font-size: .875rem;
  font-weight: 700;
  gap: .75rem;
  line-height: 1.25rem;
  
  padding: .75rem .75rem .75rem 1.25rem;
  
  text-align: left;
  width: 100%;
}

[dir="rtl"] .faq-item__question {
  
  padding: .75rem 1.25rem .75rem .75rem;
  
  text-align: right;
}

.faq-item__question em {
  color: #b88744;
  font-style: italic;
}

.faq-item__question-text {
  flex: 1 0 0;
  min-width: 0;
}

@container (min-width: 992px) {
  .faq-item__question-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.faq-item__arrow {
  align-items: center;
  background: #003da6;
  border: 1px solid #003da6;
  border-radius: 6.25rem;
  display: flex;
  flex-shrink: 0;
  height: 1.875rem;
  justify-content: center;
  position: relative;
  width: 3rem;
}

.faq-item__arrow-icon {
  display: block;
  height: .5rem;
  width: .875rem;
}

.faq-item__arrow-icon--up {
  display: none;
  position: absolute;
}

.faq-item__question[aria-expanded=true] .faq-item__arrow .faq-item__arrow-icon--down {
  display: none;
}

.faq-item__question[aria-expanded=true] .faq-item__arrow .faq-item__arrow-icon--up {
  display: block;
  position: static;
}

.faq-item__answer-body {
  color: hsl(221, 100%, 19%);
  font-size: 14px;
  line-height: 1.25rem;
  letter-spacing: 0;
  padding: .75rem 1.25rem 1rem;
}

.faq-item__answer-body > :first-child {
  margin-top: 0;
}

.faq-item__answer-body > :last-child {
  margin-bottom: 0;
}

.faq-item__answer-body p {
  margin: 0 0 .75rem;
}

.faq-item__answer-body ul,
.faq-item__answer-body ol {
  margin: 0 0 .75rem;
  
  padding-left: 1.25rem;
}

[dir="rtl"] .faq-item__answer-body ul,
[dir="rtl"] .faq-item__answer-body ol {
  padding-left: 0;
  
  padding-right: 1.25rem;
}

.faq-item__answer-body li {
  margin-bottom: .25rem;
}

.faq-item__answer-body a {
  color: #003da6;
  text-decoration: underline;
}

.faq-item__answer-body em {
  color: #b88744;
  font-style: italic;
}

.faq-item__gold {
  color: #b88744;
  font-weight: 900;
}

