@charset "UTF-8";
/**
 * Accordion v3.3.4
 * 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;
}
.ac .ac-header {

}
.ac .ac-trigger {

    cursor: pointer;
    background-color: transparent;
    transition: color 0.25s ease;
    position: relative;
    text-decoration: none;

}


.ac .ac-panel {
    overflow: hidden;
    transition-property: height, visibility;
    transition-timing-function: ease;
}

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

