@charset "UTF-8";
/**
 * Accordion v3.3.2
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */

.ac {
  box-sizing: border-box;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  color: #000;
}
.ac + .ac {
  margin-top: -2px;
}
.ac .ac-header {
  margin: 0;
  padding: 0;
}
.ac .ac-trigger {
  text-align: left;
  width: 100%;
  padding: 20px 70px 20px 0;
  display: block;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
  margin: 0;
  border: 0;
  font-size: 23px;
  line-height: 1.4;
  min-height: 88px;
  display: inline-flex;
  align-items: flex-end;
  color: #000;
}
.ac .ac-trigger::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' d='M49 1.111v47.89H1.11M49 49 1 1'/%3E%3C/svg%3E");
  text-align: center;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 10px;
  top: 50%;
  background-size: contain;
}
/* .ac .ac-trigger:focus {
  color: #8a8a8a;
} */
.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
  font-size: 18px;
  line-height: 1.11;
}
.ac .ac-panel .ac-text {
  padding-top: 60px;
  padding-bottom: 20px;
}
.ac.js-enabled .ac-panel {
  visibility: hidden;
}
.ac.is-active .ac-panel {
  visibility: visible;
}
.ac.is-active > .ac-header .ac-trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' d='M1 48.889V.999h47.89M1 1l48 48'/%3E%3C/svg%3E");
}

.bg-dark .ac .ac-trigger {
  color: #fff;
}

.bg-dark .ac {
  border-color: #fff;
  color: #fff;
}

.bg-dark .ac .ac-trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M49 1.111v47.89H1.11M49 49 1 1'/%3E%3C/svg%3E");
}

.bg-dark .ac.is-active > .ac-header .ac-trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M1 48.889V.999h47.89M1 1l48 48'/%3E%3C/svg%3E");
}

.faq__accordion {
  margin-top: 7px;
}

.faq .ac .ac-trigger {
  font-size: 18px;
  line-height: 110%;
}
