/**
 * Accordion v3.3.4
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 */

.ac {
    width: 100%;
    box-sizing: border-box;
}
.ac:not(:last-of-type) {
    border-bottom: 1px solid #b6b6ac;
}
.ac .ac-trigger {
    padding: 15px 50px 15px 30px;
    display: block;
    cursor: pointer;
    background-color: transparent;
    transition: color 0.25s ease;
    position: relative;
    text-decoration: none;
    margin: 0;
    border: 0;
    width: 100%;
}
.ac .ac-trigger::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-color: #b6b6ac;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-left: 0;
    border-bottom: 0;
    right: 25px;
    top: 40%;
}
.ac .ac-panel {
    font-weight: 500;
    overflow: hidden;
    padding: 0 30px;
    transition-property: height, visibility;
    transition-timing-function: ease;
}
.ac.js-enabled .ac-panel {
    visibility: hidden;
}
.ac.is-active .ac-panel {
    visibility: visible;
}
.ac.is-active > .ac-trigger::after {
    top: 50%;
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    border-color: var(--nv-primary-accent);
}
.ac .ac-panel br {
    content: "";
    display: block;
    margin: 15px 0;
}