.sidebar__logo-mask {
  position: absolute;
  width: 11px;
  height: 12px;
  background: #fff;
  right: 18px;
  top: 2px;
}

.sidebar__content {
  width: 100%;
  flex: 0 0 auto;
  margin-block: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .sidebar.sidebar--user {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .sidebar.sidebar--admin {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --sidebar-width: 260px;
    --sidebar-content-gap: 40px;
  }
  html.sidebar-collapsed {
    --sidebar-width: 72px;
  }
  .content-app:has(> .sidebar.sidebar--user) {
    align-items: stretch;
    min-height: 100vh;
  }
  .content-app:has(> .sidebar.sidebar--user) > .content-main {
    width: calc(100% - var(--sidebar-width) - var(--sidebar-content-gap));
    transition: width 0.28s ease;
  }
  .sidebar.sidebar--user {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    min-height: 100vh;
    flex-shrink: 0;
    align-self: stretch;
    position: sticky;
    top: 0;
    transition: width 0.28s ease, min-width 0.28s ease, max-width 0.28s ease;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid #eee;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    z-index: 2;
    box-sizing: border-box;
  }
  .sidebar__header {
    flex-shrink: 0;
    padding: 0 16px 12px;
    box-sizing: border-box;
  }
  .sidebar__footer {
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: 16px;
    padding: 16px 8px 16px 0;
    border-top: 1px solid var(--color-bg-light-grey, #ece9f6);
  }
  .sidebar__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #888;
    cursor: pointer;
    font-family: var(--first-font, inherit);
    font-size: 13px;
    line-height: 1.25;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .sidebar__toggle:hover {
    background: var(--color-bg-light-grey, #ece9f6);
    color: #666;
  }
  .sidebar__toggle:focus-visible {
    outline: 2px solid #9078ff;
    outline-offset: 2px;
  }
  .sidebar__toggle-icon {
    flex-shrink: 0;
    margin-right: 10px;
    fill: currentColor;
    transition: transform 0.2s ease;
  }
  .sidebar__toggle-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sidebar__logo {
    display: block;
    line-height: 0;
  }
  .sidebar__logo-img {
    display: block;
    margin: 0;
    width: 80px;
    height: auto;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    padding: 0;
    gap: 0;
  }
  .sidebar__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 8px 0 0;
    gap: 2px;
    box-sizing: border-box;
  }
  .sidebar__link,
  .sidebar__link--active {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 0 10px 10px 0;
    padding: 10px 16px;
    margin-bottom: 0;
    border: 1px solid transparent;
    transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
    position: relative;
    text-decoration: none;
  }
  .sidebar__link--active {
    background: #9078ff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  .sidebar__link--active > .sidebar__label {
    color: #fff;
  }
  .sidebar__link--active > .sidebar__icon {
    fill: #fff;
  }
  .sidebar__link:hover {
    background: rgba(144, 120, 255, 0.09);
    border: 1px solid rgba(143, 120, 255, 0.35);
    box-shadow: none;
  }
  .sidebar__link:hover > .sidebar__label {
    color: #8f78ff;
  }
  .sidebar__link:hover > .sidebar__icon {
    fill: #8f78ff;
  }
  .sidebar__label {
    font-size: 14px;
    line-height: 1.25;
    color: #666;
  }
  .sidebar__icon {
    fill: #666;
    flex-shrink: 0;
    margin-right: 10px;
  }
  .sidebar__group {
    width: 100%;
    box-sizing: border-box;
  }
  .sidebar__group .sidebar__subnav {
    flex-direction: column;
    margin-left: 44px;
    display: none;
  }
  .sidebar__group--active .sidebar__subnav {
    display: flex;
  }
  .sidebar__subnav .sidebar__sublink {
    margin-bottom: 6px;
  }
  html.sidebar-collapsed {
    --sidebar-width: 72px;
  }
  html.sidebar-collapsed .sidebar__logo-img {
    width: 40px;
    margin: 0 auto;
  }
  html.sidebar-collapsed .sidebar__header {
    padding-left: 8px;
    padding-right: 8px;
  }
  html.sidebar-collapsed .sidebar__footer {
    width: auto;
    margin-top: 12px;
    padding: 12px 0 16px;
    margin-left: auto;
    margin-right: auto;
  }
  html.sidebar-collapsed .sidebar__toggle {
    width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: center;
    border-radius: 10px;
  }
  html.sidebar-collapsed .sidebar__toggle-icon {
    margin-right: 0;
    transform: rotate(180deg);
  }
  html.sidebar-collapsed .sidebar__toggle-label {
    display: none;
  }
  html.sidebar-collapsed .sidebar__nav {
    padding: 0;
  }
  html.sidebar-collapsed .sidebar__body {
    padding-right: 0;
    align-items: center;
  }
  html.sidebar-collapsed .sidebar__link,
  html.sidebar-collapsed .sidebar__link--active {
    width: 48px;
    max-width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: center;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  html.sidebar-collapsed .sidebar__link .sidebar__label,
  html.sidebar-collapsed .sidebar__link--active .sidebar__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  html.sidebar-collapsed .sidebar__icon {
    margin-right: 0;
  }
  html.sidebar-collapsed .sidebar__group .sidebar__subnav {
    display: none !important;
  }
  html.sidebar-collapsed .sidebar__group {
    width: auto;
    display: flex;
    justify-content: center;
  }
  html.sidebar-collapsed .sidebar__link[title]:hover::after,
  html.sidebar-collapsed .sidebar__link--active[title]:hover::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    padding: 6px 10px;
    border-radius: 8px;
    background: #281b38;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(40, 27, 56, 0.2);
  }
  html.sidebar-is-expanding .sidebar__body {
    align-items: flex-start;
    padding-right: 8px;
  }
  html.sidebar-is-expanding .sidebar__logo-img {
    width: 40px;
    margin: 0;
  }
  html.sidebar-is-expanding .sidebar__footer {
    width: auto;
    margin-top: 16px;
    padding: 16px 0;
    margin-left: 0;
    margin-right: auto;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__toggle {
    width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: flex-start;
    border-radius: 10px;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1), min-width 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__toggle-icon {
    margin-right: 0;
    transform: rotate(180deg);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__toggle-label {
    display: block;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: auto;
    white-space: nowrap;
    border: 0;
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__link,
  html.sidebar-is-expanding .sidebar__link--active {
    width: 48px;
    max-width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: flex-start;
    border-radius: 10px;
    margin-left: 0;
    margin-right: auto;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.28s cubic-bezier(0.22, 1, 0.36, 1), min-width 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.28s cubic-bezier(0.22, 1, 0.36, 1), margin 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
  }
  html.sidebar-is-expanding .sidebar__link .sidebar__label,
  html.sidebar-is-expanding .sidebar__link--active .sidebar__label {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: auto;
    white-space: nowrap;
    border: 0;
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__icon {
    margin-right: 0;
    transition: margin-right 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__group .sidebar__subnav {
    display: none !important;
  }
  html.sidebar-is-expanding .sidebar__group {
    width: auto;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__logo-img {
    width: 80px;
    margin: 0;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 8px;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__toggle {
    width: 100%;
    min-width: 0;
    padding: 10px 16px;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__toggle-icon {
    margin-right: 10px;
    transform: rotate(0deg);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__toggle-label {
    opacity: 1;
    transform: translateX(0);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link,
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link--active {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 10px 16px;
    border-radius: 0 10px 10px 0;
    margin-left: 0;
    margin-right: 0;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link .sidebar__label,
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link--active .sidebar__label {
    opacity: 1;
    transform: translateX(0);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__icon {
    margin-right: 10px;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__group {
    width: 100%;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__group--active .sidebar__subnav {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sidebar.sidebar--user,
  .content-app:has(> .sidebar.sidebar--user) > .content-main,
  .sidebar__toggle-icon,
  html.sidebar-is-expanding .sidebar__link,
  html.sidebar-is-expanding .sidebar__link--active,
  html.sidebar-is-expanding .sidebar__link .sidebar__label,
  html.sidebar-is-expanding .sidebar__link--active .sidebar__label,
  html.sidebar-is-expanding .sidebar__toggle-label,
  html.sidebar-is-expanding .sidebar__logo-img {
    transition: none;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar__toggle {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  :root {
    --sidebar-width: 300px;
  }
  .content-app:has(> .sidebar.sidebar--admin) {
    gap: 24px;
    align-items: stretch;
    min-height: 100vh;
  }
  .content-app:has(> .sidebar.sidebar--admin) > .content-main {
    width: auto !important;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    transition: none;
  }
  .sidebar.sidebar--admin {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    min-height: 100vh;
    flex-shrink: 0;
    align-self: stretch;
    position: sticky;
    top: 0;
    transition: width 0.28s ease, min-width 0.28s ease, max-width 0.28s ease;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    border-right: 1px solid #eee;
    display: flex;
    height: 100vh;
    max-height: 100vh;
    flex-direction: column;
    z-index: 2;
    box-sizing: border-box;
  }
  .sidebar__header {
    flex-shrink: 0;
    padding: 20px 16px 12px;
    box-sizing: border-box;
  }
  .sidebar__footer {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-bg-light-grey, #ece9f6);
  }
  .sidebar__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #888;
    cursor: pointer;
    font-family: var(--first-font, inherit);
    font-size: 13px;
    line-height: 1.25;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .sidebar__toggle:hover {
    background: var(--color-bg-light-grey, #ece9f6);
    color: #666;
  }
  .sidebar__toggle:focus-visible {
    outline: 2px solid #9078ff;
    outline-offset: 2px;
  }
  .sidebar__toggle-icon {
    flex-shrink: 0;
    margin-right: 10px;
    fill: currentColor;
    transition: transform 0.2s ease;
  }
  .sidebar__toggle-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sidebar__logo-img {
    display: block;
    margin: 0;
    width: 80px;
    height: auto;
  }
  .sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    overflow: visible;
    padding: 8px 8px 16px 0;
    gap: 2px;
  }
  .sidebar__link,
  .sidebar__link--active {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 0 10px 10px 0;
    padding: 10px 16px;
    margin-bottom: 0;
    border: 1px solid transparent;
    transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
    position: relative;
    text-decoration: none;
  }
  .sidebar__link--active {
    background: #9078ff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  .sidebar__link--active > .sidebar__label {
    color: #fff;
  }
  .sidebar__link--active > .sidebar__icon {
    fill: #fff;
  }
  .sidebar__link:hover {
    background: rgba(144, 120, 255, 0.09);
    border: 1px solid rgba(143, 120, 255, 0.35);
    box-shadow: none;
  }
  .sidebar__link:hover > .sidebar__label {
    color: #8f78ff;
  }
  .sidebar__link:hover > .sidebar__icon {
    fill: #8f78ff;
  }
  .sidebar__label {
    font-size: 14px;
    line-height: 1.25;
    color: #666;
  }
  .sidebar__icon {
    fill: #666;
    flex-shrink: 0;
    margin-right: 10px;
  }
  html.sidebar-collapsed {
    --sidebar-width: 72px;
  }
  html.sidebar-collapsed .sidebar__logo-img {
    width: 40px;
    margin: 0 auto;
  }
  html.sidebar-collapsed .sidebar__header {
    padding-left: 8px;
    padding-right: 8px;
  }
  html.sidebar-collapsed .sidebar__footer {
    width: auto;
    margin-top: 16px;
    padding-top: 12px;
    margin-left: auto;
    margin-right: auto;
  }
  html.sidebar-collapsed .sidebar__toggle {
    width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: center;
    border-radius: 10px;
  }
  html.sidebar-collapsed .sidebar__toggle-icon {
    margin-right: 0;
    transform: rotate(180deg);
  }
  html.sidebar-collapsed .sidebar__toggle-label {
    display: none;
  }
  html.sidebar-collapsed .sidebar__nav {
    padding-right: 0;
    align-items: center;
  }
  html.sidebar-collapsed .sidebar__link,
  html.sidebar-collapsed .sidebar__link--active {
    width: 48px;
    max-width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: center;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  html.sidebar-collapsed .sidebar__link .sidebar__label,
  html.sidebar-collapsed .sidebar__link--active .sidebar__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  html.sidebar-collapsed .sidebar__icon {
    margin-right: 0;
  }
  html.sidebar-collapsed .sidebar__link[title]:hover::after,
  html.sidebar-collapsed .sidebar__link--active[title]:hover::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    padding: 6px 10px;
    border-radius: 8px;
    background: #281b38;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(40, 27, 56, 0.2);
  }
  html.sidebar-is-expanding .sidebar__logo-img {
    width: 40px;
    margin: 0;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__nav {
    align-items: flex-start;
    padding-right: 8px;
  }
  html.sidebar-is-expanding .sidebar__footer {
    width: auto;
    margin-left: 0;
    margin-right: auto;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__toggle {
    width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: flex-start;
    border-radius: 10px;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1), min-width 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__toggle-icon {
    margin-right: 0;
    transform: rotate(180deg);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__toggle-label {
    display: block;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: auto;
    white-space: nowrap;
    border: 0;
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__link,
  html.sidebar-is-expanding .sidebar__link--active {
    width: 48px;
    max-width: 48px;
    min-width: 48px;
    padding: 10px;
    justify-content: flex-start;
    border-radius: 10px;
    margin-left: 0;
    margin-right: auto;
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.28s cubic-bezier(0.22, 1, 0.36, 1), min-width 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.28s cubic-bezier(0.22, 1, 0.36, 1), margin 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
  }
  html.sidebar-is-expanding .sidebar__link .sidebar__label,
  html.sidebar-is-expanding .sidebar__link--active .sidebar__label {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: auto;
    white-space: nowrap;
    border: 0;
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding .sidebar__icon {
    margin-right: 0;
    transition: margin-right 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__logo-img {
    width: 80px;
    margin: 0;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__toggle {
    width: 100%;
    min-width: 0;
    padding: 10px 16px;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__toggle-icon {
    margin-right: 10px;
    transform: rotate(0deg);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__toggle-label {
    opacity: 1;
    transform: translateX(0);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link,
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link--active {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 10px 16px;
    border-radius: 0 10px 10px 0;
    margin-left: 0;
    margin-right: 0;
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link .sidebar__label,
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__link--active .sidebar__label {
    opacity: 1;
    transform: translateX(0);
  }
  html.sidebar-is-expanding.sidebar-is-expanding-active .sidebar__icon {
    margin-right: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sidebar.sidebar--admin,
  .sidebar__toggle-icon,
  html.sidebar-is-expanding .sidebar__link,
  html.sidebar-is-expanding .sidebar__link--active,
  html.sidebar-is-expanding .sidebar__label,
  html.sidebar-is-expanding .sidebar__toggle-label,
  html.sidebar-is-expanding .sidebar__logo-img {
    transition: none;
  }
}
@media screen and (max-width: 800px) {
  .sidebar__toggle {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sidebar.sidebar--user,
  .content-app:has(> .sidebar.sidebar--user) > .content-main,
  .sidebar__toggle-icon,
  html.sidebar-is-expanding .sidebar__link,
  html.sidebar-is-expanding .sidebar__link--active,
  html.sidebar-is-expanding .sidebar__link .sidebar__label,
  html.sidebar-is-expanding .sidebar__link--active .sidebar__label,
  html.sidebar-is-expanding .sidebar__toggle-label,
  html.sidebar-is-expanding .sidebar__logo-img {
    transition: none;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar__toggle {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar__toggle {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .sidebar__toggle {
    display: none;
  }
}
