.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 2px solid #bbbcc2;
    overflow: hidden;
}

.accordion .accordion__item {
    background-color: #fff;
}

.accordion .accordion__item:not(:last-child) {
    border-bottom: 2px solid #bbbcc2;
}

    .accordion .accordion__header > button[aria-expanded="false"]:hover, .accordion .accordion__header > button[aria-expanded="false"]:focus {
        background-color: var(--pop);
    }

.accordion .accordion__header > button[aria-expanded="false"] {
    background-color: var(--accent);
    color: #fff;
    padding-bottom: 12px;
    padding-top: 12px;
    transition: 0.2s;
}

.accordion .accordion__header > button {
    background-color: transparent;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    padding: 12px 20px 12px 20px;
    text-align: left;
    font-weight: 500;
    font-family: var(--circular-font);
    font-size: 0.875rem;
    color: var(--accent);
}

.accordion .accordion__header > button:hover {
    cursor: pointer;
}

.accordion .accordion__body {    
    font-size: 0.875rem;
    padding-right: 10px;
}

.accordion .accordion__body p {
    font-size: 0.875rem;
}


.accordion .accordion__collapse {
    max-height: inherit;
    transition: 0.2s ease-in-out;
    max-height: 150px;
    overflow-y: auto;
    margin: 0 16px 10px 20px;
}

.accordion .accordion__collapse:not(.show) {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.accordion .accordion__body p:first-child {
    margin-top: 0;
}

.accordion .accordion__body p:last-child {
    margin-bottom: 0;
}

.accordion .accordion__header button::after {
    display: block;
    float: right;
    content: "-";
}

.accordion .accordion__header button[aria-expanded="false"]::after {
    content: "+";
}
