/**
 * Foundation for Sites
 * Version 6.7.5
 * https://get.foundation
 * Licensed under MIT Open Source
 */
/* 
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
/**==================================================================================================================================
BREAKPOINT
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

.faq {
  max-width: 75rem;
  margin: 0 auto;
  padding: 4rem 3rem;
}

@media screen and (max-width: 47.99875em) {
  .faq {
    padding: 2rem 1rem;
  }
}
.faq-heading {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 3rem;
}

@media screen and (max-width: 47.99875em) {
  .faq-heading {
    font-size: 2.25rem;
  }
}
.faq-category {
  margin-bottom: 1rem;
}

.faq-category-header {
  width: 100%;
  padding: 2rem 3rem;
  background-color: #dee7f7;
  border: none;
  border-radius: 10px;
  color: #1a206d;
  text-align: left;
  font-weight: 400;
  font-size: 2.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 47.99875em) {
  .faq-category-header {
    font-size: 1.5rem;
  }
}
.faq-category-header .arrow-border {
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 1px solid #1a206d;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.faq-category-header .arrow-border .faq-arrow {
  border: solid #1a206d 1px;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -2px;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 3rem;
  background-color: #dee7f7;
  margin-top: -10px;
  display: none;
  transition: all 0.3s ease-in-out;
}

.faq-list .faq-item {
  border-bottom: 1px solid #1a206d;
}

.faq-list .faq-item .faq-question {
  width: 100%;
  background: none;
  border-radius: 0;
  padding: 2rem 0;
  text-align: left;
  font-size: 1.375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a206d;
  gap: 1rem;
  border: none;
  line-height: 1.5;
}

@media screen and (max-width: 47.99875em) {
  .faq-list .faq-item .faq-question {
    font-size: 1.125rem;
    line-height: 1.2;
  }
}
.faq-list .faq-item .faq-question .pluss-icon {
  font-weight: 300;
  border: 1px solid #1a206d;
  background-color: #1a206d;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  min-height: 22px;
  min-width: 22px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.faq-list .faq-item .faq-question .pluss-icon div {
  margin-top: -3px;
  color: #ffffff;
}

.faq-list .faq-item .faq-answer {
  padding: 1.5rem 0 2.5rem;
  color: #1a206d;
  display: none;
  overflow: hidden;
}

.faq-list .faq-item:last-child {
  border-bottom: none;
}

.faq-category-header.isExpanded + .faq-list {
  display: block;
}

.faq-category-header.isExpanded .faq-arrow {
  transform: rotate(225deg);
  margin-top: 2px;
}

.faq-question.isExpanded .pluss-icon {
  transform: rotate(225deg);
  background-color: #dee7f7 !important;
  transition: transform 0.3s ease;
}

.faq-question.isExpanded .pluss-icon div {
  color: #1a206d !important;
}

.faq-question.isExpanded + .faq-answer {
  display: block;
  height: auto;
}
