@charset "utf-8";
/* CSS Document */
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    filter: invert(8%) sepia(100%) saturate(7435%) hue-rotate(2deg) brightness(103%) contrast(107%);
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed) {
    color: #101010;
    background-color: #fff;
    box-shadow: none;
}
.accordion-item {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    border-top: none;
    border-right: none;
    border-left: none;

    &:last-child {
        border-bottom: none;
    }
}
.accordion-body {
    padding: 1rem 1.25rem;
    padding-top: 0;
    text-align: justify;
    line-height: 1.2rem;
}
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem;
}
.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 0;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: none;
}
.list-group-alphabet {
    list-style-type: lower-alpha;
    counter-reset: section;
    padding-left: 12px;

    li {
        margin: 4px 0;
    }
}
