.accordion-item {
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    background: #ffffff;
    padding: 20px 20px;
    box-shadow: 0px 16px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;

    > .title {
        display: flex;
        margin: 0;
        padding: 0;
        justify-content: space-between;
        align-items: center;
        line-height: 1;
        cursor: pointer;
    }

    > .title > .arrow {
        fill: #51cbce;
    }

    > .content {
        display: none;
        overflow: hidden;
    }

    > .content > .entry {
        line-height: 1.74;

        p {
            &:last-of-type,
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}