/* Accordion */
.accordion {
    margin-bottom: 20px;
    overflow: hidden;
    border:1px solid #f2f2f2;
    border-radius: 8px;
}

.accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 24px 20px;
    width: 100%;
    font: inherit;
    font-weight: 600;
    text-align: left;
    border: 0;
    border-radius: 0;
    transition: background 0.3s ease;
    cursor: pointer;
    border-bottom:1px solid #f2f2f2;
    font-size: 18px;
}

.accordion__button:after {
    content: "+";
    display: block;
    margin-left: 15px;
    font: inherit;
    font-size: 32px;
    color: var(--text-black);
}

.accordion__button:hover,
.accordion__button.is-active {
    background: #fff;
}

.accordion__button.is-active:after {
    content: "−";
}

.accordion__button:focus {
    background: #fff;
    outline: none;
}

.accordion__body {
    /* "max-height" isn't needed, but it's better for the first page draw. */
    max-height: 0;
    background: #fff;
    transition: max-height 0.3s ease;
    overflow: hidden;
    border-bottom:1px solid #f2f2f2
}

.accordion__body p:last-child{margin-bottom: 0}

@media (max-width: 767px) {
    .accordion * {
        font-size:15px;
    }
}

