.switching-content-ctls {
    margin-top: 48px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    justify-content: flex-start;

    scrollbar-width: none;

    @media (max-width: 1100px) {
        margin-top: -12px;
    }
}

.switching-content-ctls::before,
.switching-content-ctls::after {
    content: "";
    flex: 1 0 0;
}

.switching-content-ctls button {
    flex: 0 0 auto;
    white-space: nowrap;
    background-color: #E4E7EC;
    color: #475467;
    padding: 12px 16px;
    border-radius: 100px;
    cursor: pointer;
}

.switching-content-ctls button:focus {
    outline: none;
}

.switching-content-ctls button.active {
    background-color: #2F202D;
    color: white;
    padding: 12px 16px;
    border-radius: 100px;
    cursor: unset;
}

.chain-content section {
    display: none;
    opacity: 0;

    transition: opacity 100ms cubic-bezier(.4, 0, .2, 1)
}

.chain-content section.active {
    display: block;
    opacity: 1;

    @starting-style {
        opacity: 0;
    }
}

.chain-content section.active-flex {
    display: flex;
    opacity: 1;

    @starting-style {
        opacity: 0;
    }
}
