.sovet-item {
    margin-bottom: 8px;
}

.sovet-item .sovet-head {
    display: flex;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    justify-content: space-between;
    padding: 16px 16px;
    background-color: var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
} 

.sovet-item.active .sovet-head{
    background-color: transparent;
    padding: 16px 16px 0px;
}

.sovet-item .sovet-head .minus,
.sovet-item.active .sovet-head .plus{
    display: none;
}

.sovet-item .sovet-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 16px;
}

.sovet-item.active .sovet-content {
    display: block;
    padding: 8px 16px 24px;
    box-shadow: 0px 28px 23px -7px #0000000D;
}

.sovet-item .sovet-head .plus,
.sovet-item.active .sovet-head .minus {
    display: flex;
    height: 56px;
    width: 56px;
    align-items: center;
    justify-content: center;
}