.eo-accordion {
    color: #666;
    background-color: #eee;
    cursor: pointer;
}

    .eo-accordion:hover {
        background-color: #f5f6f7;
    }

.eo-accordion-content {
    max-height: 200px;
    overflow: hidden;
}

.eo-accordion-content--unfolded {
    max-height: initial;
    transition: all 0.3s;
}

.eo-accordion__label {
    padding: 13px !important;
}

    .eo-accordion__label::after {
        content: "\276F";
        width: 16px;
        height: 16px;
        text-align: center;
        transition: all 0.3s;
        float: right;
        transform: rotate(90deg);
    }

.eo-accordion--unfolded .eo-accordion__label::after {
    transform: rotate(270deg);
}
