@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 {
    margin-top: 10px;
    /* margin-left: 1em; */
    /* margin-right: 1em; */
    /* border: 1px solid #eee; */
    /* background-color: #fff; */
    box-sizing: border-box;
    /* border-bottom: 1px solid var(--sv-theme); */
    background: hsla(0, 0%, 100%, .1);
    width: 100%;
    margin: 7px auto;
    padding: 1.2rem 5px;
    border-radius: 4px;
}

.ac:hover {
  background: hsla(0, 0%, 71%, 0.1);;
  transition: .3s ease;
}

.ac .ac-header {
  margin: 0;
  padding-right: 15px;
}

.ac .ac-trigger {
  font-family: var(--ff-sans);
  color: var(--sv-light);
  text-align: left;
  width: 100%;
  padding: 10px 30px 10px 10px;
  display: block;
  cursor: pointer;
  background-color: transparent;
  transition: color .15s ease-out;
  position: relative;
  text-decoration: none;
  margin: 0;
  border: 0;
    text-transform: uppercase;

}

.ac .ac-trigger::after {
  content: "⬇";
  text-align: center;
  width: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 25px;
  top: 50%
}

.ac .ac-trigger:focus {
  color: var(--sv-alt);
}

.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
  /* border: 1px solid var(--sv-light); */
}

.ac .ac-panel .ac-text {
  /* font: 15px/24px Arial, sans-serif; */
  /* color: #111; */
  padding: 10px;
  margin: 0
}

.ac.js-enabled .ac-panel {
  visibility: hidden
}

.ac.is-active .ac-panel {
  visibility: visible;
}

.ac.is-active>.ac-header .ac-trigger::after {
  content: "⬆"
}