.v-spoiler2 {
    background: var(--bg_primary__100);
    border-radius: var(--b-radius);
}
.v-spoiler2__header {
    padding: 12px;
    display: flex;
    align-items: center;
    color: var(--color_main__100);
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    justify-content: flex-start;
}
.v-spoiler2__header-icon {
    border-radius: var(--b-radius-sm);
    background: radial-gradient(73.33% 73.33% at 50% 50%, #9db1ff 0%, #6d3eff 100%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    flex-shrink: 0;
}
.v-spoiler2__header-toggle {
    color: var(--color_secondary__100);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--b-radius-sm);
    margin-left: auto;
    flex-shrink: 0;
}
.v-spoiler2__header-toggle svg {
    transition: all 0.2s;
}
.v-spoiler2__header-toggle.active svg {
    transform: rotate(180deg);
}
.v-spoiler2__content {
    padding: 12px;
    border-top: 1px solid var(--bg_secondary__100, #f2f0ff);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    white-space: pre-line;
}
html.dark .v-spoiler2__content,
html[data-theme="dark"] .v-spoiler2__content {
    border-color: var(--bg_secondary__400);
}
