@import url('portal-theme.css');

/* === PORTAL NAVBAR (лево — как на странице топа, право — уведомления / куратор / профиль) === */
#portal-navbar-root {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav, 1000);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    overflow-x: clip;
    overflow-y: visible;
    background: rgba(10, 10, 12, 0.98);
    border-bottom: 1px solid rgba(255, 0, 60, 0.15);
}

#portal-navbar-root > script {
    display: none !important;
}

.navbar {
    --portal-nav-pad-y: 15px;
    --portal-nav-pad-x: var(--portal-gutter);
    position: relative;
    z-index: var(--z-nav, 1000);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: var(--portal-nav-h);
    min-height: var(--portal-nav-h);
    max-height: var(--portal-nav-h);
    padding: var(--portal-nav-pad-y) var(--portal-nav-pad-x);
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    overflow: visible;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    min-width: 0;
    flex-shrink: 0;
}

.nav-logo {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-logo span {
    color: #ff003c;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 36px;
    min-width: 36px;
    padding: 0 14px;
    border-radius: 9px;
    border: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    color: rgba(168, 168, 184, 0.92);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-btn:active {
    background: rgba(255, 255, 255, 0.08);
}

.nav-btn:focus-visible {
    outline: none;
    color: #fff;
    border-color: rgba(255, 0, 60, 0.45);
}

.nav-btn.active {
    color: #fff;
    background: rgba(255, 0, 60, 0.14);
    border-color: rgba(255, 0, 60, 0.45);
}

.nav-btn.active::before {
    content: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 30px);
    flex-shrink: 0;
    min-width: 0;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.action-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-icon-btn svg {
    width: 22px;
    height: 22px;
    fill: #a8a8b8;
    transition: 0.3s;
}

.action-icon-btn:hover svg {
    fill: #fff;
}

.curator-btn {
    background: #ff003c;
    border-color: #ff003c;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.curator-btn svg {
    fill: #fff;
}

.bell-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: var(--z-nav-overlay, 1100);
}

.bell-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    padding: 5px;
}

.bell-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.bell-icon {
    width: 24px;
    height: 24px;
    fill: #8e8e9f;
    transition: fill 0.3s, filter 0.3s;
}

.bell-btn:hover .bell-icon {
    fill: #fff;
    filter: drop-shadow(0 0 8px #fff);
}

.bell-btn.active .bell-icon {
    fill: #ff003c;
    filter: drop-shadow(0 0 8px #ff003c);
}

.bell-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    background-color: #ff003c;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff003c;
    border: 2px solid rgba(10, 10, 12, 0.85);
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: -10px;
    width: 340px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 60, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: var(--z-nav-overlay, 1100);
    overflow: hidden;
    transform-origin: top right;
}

.notif-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.notif-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 0, 60, 0.05);
}

.notif-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notif-read-all {
    font-size: 11px;
    color: #ff003c;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}

.notif-read-all:hover {
    color: #ff4d79;
    text-shadow: 0 0 5px #ff003c;
}

.notif-list {
    max-height: 350px;
    overflow-y: auto;
}

.notif-list::-webkit-scrollbar {
    width: 4px;
}

.notif-list::-webkit-scrollbar-thumb {
    background: #ff003c;
    border-radius: 2px;
}

.notif-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    gap: 15px;
    transition: background 0.3s;
    cursor: pointer;
    position: relative;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.notif-item.unread {
    background: linear-gradient(90deg, rgba(255, 0, 60, 0.08), transparent);
    border-left: 2px solid #ff003c;
}

.notif-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.notif-item.unread .notif-icon-wrap {
    background: rgba(255, 0, 60, 0.2);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.notif-icon {
    width: 16px;
    height: 16px;
    fill: #a8a8b8;
}

.notif-item.unread .notif-icon {
    fill: #ff003c;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notif-subj {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.notif-desc {
    font-size: 12px;
    color: #a8a8b8;
    line-height: 1.4;
}

.notif-time {
    font-size: 11px;
    color: rgba(168, 168, 184, 0.72);
    font-weight: 700;
    margin-top: 2px;
}

.notif-empty {
    padding: 28px 20px;
    text-align: center;
    color: #a8a8b8;
    font-size: 13px;
    font-weight: 700;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    min-width: 0;
    max-width: 268px;
    padding: 5px 8px 5px 5px;
    border-radius: 999px;
    background:
        linear-gradient(165deg, rgba(28, 28, 36, 0.98), rgba(14, 14, 18, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 2px 10px rgba(0, 0, 0, 0.28);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.view-mode-form {
    display: flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

.vm-icon-btn {
    padding: 0;
    font: inherit;
    color: inherit;
}

.vm-icon-btn--user {
    background: #ff003c;
    border-color: #ff003c;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.vm-icon-btn--user svg {
    fill: #fff;
}

.admin-gear-note {
    padding: 10px 12px 12px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

/* legacy */
.view-mode-toggle,
.view-mode-switch {
    display: none !important;
}

.profile-container:hover {
    border-color: rgba(255, 0, 60, 0.38);
    background:
        linear-gradient(165deg, rgba(38, 22, 28, 0.98), rgba(18, 12, 16, 0.99));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 0, 60, 0.1),
        0 6px 18px rgba(255, 0, 60, 0.14);
}

.profile-container.is-active {
    border-color: rgba(255, 0, 60, 0.42);
    background:
        linear-gradient(165deg, rgba(40, 20, 28, 0.98), rgba(16, 10, 14, 0.99));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 0, 60, 0.12),
        0 4px 14px rgba(255, 0, 60, 0.16);
}

.profile-avatar-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 0, 60, 0.62);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 0 10px rgba(255, 0, 60, 0.18);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.profile-container:hover .profile-avatar-nav,
.profile-container.is-active .profile-avatar-nav {
    border-color: #ff003c;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 0 14px rgba(255, 0, 60, 0.32);
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: left;
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 2px;
}

.profile-name {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    text-shadow: none;
}

.profile-container:hover .profile-name {
    text-shadow: none;
    color: #fff;
}

.profile-role {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    max-width: 160px;
    font-size: 10px;
    font-weight: 800;
    color: #ff4d79;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role-prefix {
    color: rgba(168, 168, 184, 0.78);
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.profile-role-sep {
    color: rgba(255, 77, 121, 0.4);
    font-weight: 600;
    flex-shrink: 0;
}

.profile-role-main {
    color: #ff4d79;
    font-weight: 800;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role--muted,
.profile-role--muted .profile-role-main {
    color: #8e8e9f;
    letter-spacing: 0.04em;
}

.profile-go {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #7a7a8a;
    background: rgba(8, 8, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.profile-go svg {
    width: 12px;
    height: 12px;
    display: block;
}

.profile-container:hover .profile-go {
    color: #ff4d79;
    border-color: rgba(255, 0, 60, 0.4);
    background: rgba(36, 14, 22, 0.95);
    transform: translateX(1px);
}

.profile-arrow {
    display: none;
}

.nav-more {
    position: relative;
}

.nav-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.nav-more-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.5;
    transform-origin: 50% 40%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-more.is-open .nav-more-btn,
.nav-more-btn.is-open {
    color: #fff;
    background: rgba(16, 16, 20, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: transparent;
    border-radius: 9px 9px 0 0;
}

.nav-more.is-open .nav-more-btn::after,
.nav-more-btn.is-open::after {
    transform: rotate(180deg);
    opacity: 0.85;
}

.nav-more-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: max(100%, 220px);
    padding: 4px;
    border-radius: 0 9px 9px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    background: rgba(16, 16, 20, 0.98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1100;
    transform-origin: top left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s;
}

.nav-more.is-open .nav-more-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-more-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 7px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.nav-more-item::before {
    content: none;
}

.nav-more-item:hover,
.nav-more-item:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.nav-more-item.active {
    color: #fff;
    background: rgba(255, 0, 60, 0.14);
    border-color: rgba(255, 0, 60, 0.32);
}

.admin-gear-container {
    position: relative;
}

.admin-gear-btn .gear-icon {
    transition: fill 0.3s, transform 0.3s;
}

.admin-gear-btn:hover .gear-icon,
.admin-gear-container.is-open .admin-gear-btn .gear-icon {
    fill: #fff;
    animation: adminGearSpin 2.8s linear infinite;
}

.admin-gear-btn.active {
    border-color: rgba(255, 0, 60, 0.45);
    background: rgba(255, 0, 60, 0.12);
    box-shadow: 0 0 14px rgba(255, 0, 60, 0.35);
}

.admin-gear-btn.active .gear-icon {
    fill: #ff003c;
}

@keyframes adminGearSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes navMoreIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.admin-gear-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 250px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 18, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 0, 60, 0.18);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1100;
    animation: navMoreIn 0.18s ease-out;
}

.admin-gear-container.is-open .admin-gear-menu {
    display: flex;
}

.admin-gear-header {
    padding: 8px 12px 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8e8e9f;
}

.admin-gear-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.admin-gear-item svg {
    width: 20px;
    height: 20px;
    fill: #8e8e9f;
    flex-shrink: 0;
    transition: fill 0.2s;
}

.admin-gear-item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.admin-gear-item strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.admin-gear-item small {
    font-size: 11px;
    font-weight: 600;
    color: #8e8e9f;
}

.admin-gear-item:hover,
.admin-gear-item.active {
    background: rgba(255, 0, 60, 0.1);
    border-color: rgba(255, 0, 60, 0.25);
}

.admin-gear-item:hover svg,
.admin-gear-item.active svg {
    fill: #ff003c;
}

@media (max-width: 900px) {
    .profile-info,
    .profile-go,
    .profile-arrow {
        display: none;
    }

    .profile-container {
        padding: 4px;
        max-width: none;
    }

    .nav-auth-btn-label {
        display: none;
    }

    .nav-auth-btn {
        padding: 5px;
    }
}

.nav-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 16px 5px 5px;
    border-radius: 30px;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.nav-auth-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #5865f2;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.nav-auth-btn-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.nav-auth-btn-label {
    padding-right: 2px;
}

.nav-auth-btn:hover {
    border-color: #ff003c;
    background: rgba(255, 0, 60, 0.06);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.35);
    transform: translateY(-2px);
}

.nav-auth-btn:hover .nav-auth-btn-icon {
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.55);
    transform: scale(1.05);
}

.nav-auth-btn:focus-visible {
    outline: 2px solid rgba(255, 0, 60, 0.65);
    outline-offset: 2px;
}

.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger span + span {
    margin-top: 4px;
}

.navbar.is-mobile-open .nav-hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar.is-mobile-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar.is-mobile-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .nav-left {
        gap: clamp(10px, 1.5vw, 20px);
    }

    .nav-btn {
        padding: 0 10px;
        font-size: 11px;
    }

    .icon-group {
        gap: 10px;
    }
}

@media (max-width: 860px) {
    .nav-hamburger {
        display: inline-flex;
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        top: var(--portal-nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1099;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px var(--portal-gutter) 24px;
        background: rgba(10, 10, 12, 0.98);
        border-top: 1px solid rgba(255, 0, 60, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar.is-mobile-open .nav-links {
        display: flex;
    }

    #portal-navbar-root.is-mobile-open::after {
        content: "";
        position: fixed;
        top: var(--portal-nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1098;
        background: rgba(0, 0, 0, 0.55);
        pointer-events: none;
    }

    .nav-links .nav-btn {
        width: 100%;
        justify-content: flex-start;
        height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .nav-more {
        width: 100%;
    }

    .nav-more-btn {
        width: 100%;
        justify-content: space-between;
    }

    .nav-more-menu {
        position: static;
        width: 100%;
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 9px;
        box-shadow: none;
    }

    .nav-more.is-open .nav-more-btn {
        border-radius: 9px;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .navbar {
        --portal-nav-pad-y: 12px;
        height: var(--portal-nav-h);
        min-height: var(--portal-nav-h);
        max-height: var(--portal-nav-h);
        padding: var(--portal-nav-pad-y) var(--portal-gutter);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-btn,
    .nav-more-item,
    .nav-more-btn::after {
        transition: none !important;
    }
    .nav-more-menu {
        transition: none !important;
        transform: none !important;
    }
    .vm-toggle-track,
    .vm-toggle-knob,
    .vm-toggle-word {
        transition-duration: 0.01ms !important;
    }
}
