.cut-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cut-block_mb {
    margin-bottom: 20px;
}
.cut-block__inner {}
.cut-block__toggle {
    display: inline-flex;
    background: var(--color-grey-thin);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.16;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    cursor: pointer;
    gap: 8px;
    align-items: center;
    align-self: flex-start;
    padding: 5px 0 0;
}
.cut-block__toggle:after {
    content: "\e906";
    font-family: var(--icons);
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    transform: rotate(-90deg);
}
.cut-block:not(.cut-block_active) .cut-block__toggle {
    position: absolute;
    left: 0;
    bottom: 0;
}
.cut-block:not(.cut-block_active) .cut-block__toggle:after {
    content: "\e906";
    transform: rotate(90deg);
}
.cut-block:not(.cut-block_active) .cut-block__inner {
    width: 100%;
}
.cut-block:not(.cut-block_cutted):not(.cut-block_active) .cut-block__toggle {
    display: none;
}
.cut-block_cutted:not(.cut-block_active) .cut-block__toggle:before {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    left: calc(100% - -1px);
    bottom: 0;
    background: linear-gradient(to left, rgba(255,255,255,0) 0%, var(--color-grey-thin) 80%);
    pointer-events: none;
}
.cut-block_cutted:not(.cut-block_active):before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--color-grey-thin) 100%);
    pointer-events: none;
}
.cut-block:not(.cut-block_active) {
    max-height: 100px;
    overflow: hidden;
}
.cut-block_200:not(.cut-block_active) {
    max-height: 200px;
}
@media screen and (min-width: 768px) {
    .cut-block_mb {
        margin-bottom: 48px;
    }
}