.n-drawer {
  word-break: break-word;
  line-height: var(--n-line-height);
  position: absolute;
  pointer-events: all;
  box-shadow: var(--n-box-shadow);
  transition: background-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier);
  background-color: var(--n-color);
  color: var(--n-text-color);
  box-sizing: border-box;
}

.n-drawer.slide-in-from-right-transition-leave-active {
  transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.n-drawer.slide-in-from-right-transition-enter-active {
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.n-drawer.slide-in-from-right-transition-enter-to {
  transform: translateX(0);
}

.n-drawer.slide-in-from-right-transition-enter-from {
  transform: translateX(100%);
}

.n-drawer.slide-in-from-right-transition-leave-from {
  transform: translateX(0);
}

.n-drawer.slide-in-from-right-transition-leave-to {
  transform: translateX(100%);
}

.n-drawer.slide-in-from-left-transition-leave-active {
  transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.n-drawer.slide-in-from-left-transition-enter-active {
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.n-drawer.slide-in-from-left-transition-enter-to {
  transform: translateX(0);
}

.n-drawer.slide-in-from-left-transition-enter-from {
  transform: translateX(-100%);
}

.n-drawer.slide-in-from-left-transition-leave-from {
  transform: translateX(0);
}

.n-drawer.slide-in-from-left-transition-leave-to {
  transform: translateX(-100%);
}

.n-drawer.slide-in-from-top-transition-leave-active {
  transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.n-drawer.slide-in-from-top-transition-enter-active {
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.n-drawer.slide-in-from-top-transition-enter-to {
  transform: translateY(0);
}

.n-drawer.slide-in-from-top-transition-enter-from {
  transform: translateY(-100%);
}

.n-drawer.slide-in-from-top-transition-leave-from {
  transform: translateY(0);
}

.n-drawer.slide-in-from-top-transition-leave-to {
  transform: translateY(-100%);
}

.n-drawer.slide-in-from-bottom-transition-leave-active {
  transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.n-drawer.slide-in-from-bottom-transition-enter-active {
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.n-drawer.slide-in-from-bottom-transition-enter-to {
  transform: translateY(0);
}

.n-drawer.slide-in-from-bottom-transition-enter-from {
  transform: translateY(100%);
}

.n-drawer.slide-in-from-bottom-transition-leave-from {
  transform: translateY(0);
}

.n-drawer.slide-in-from-bottom-transition-leave-to {
  transform: translateY(100%);
}

.n-drawer.n-drawer--unselectable {
  user-select: none;
  -webkit-user-select: none;
}

.n-drawer.n-drawer--native-scrollbar .n-drawer-content-wrapper {
  overflow: auto;
  height: 100%;
}

.n-drawer .n-drawer__resize-trigger {
  position: absolute;
  background-color: #0000;
  transition: background-color 0.3s var(--n-bezier);
}

.n-drawer .n-drawer__resize-trigger.n-drawer__resize-trigger--hover {
  background-color: var(--n-resize-trigger-color-hover);
}

.n-drawer .n-drawer-content-wrapper {
  box-sizing: border-box;
}

.n-drawer .n-drawer-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.n-drawer
  .n-drawer-content.n-drawer-content--native-scrollbar
  .n-drawer-body-content-wrapper {
  height: 100%;
  overflow: auto;
}

.n-drawer .n-drawer-content .n-drawer-body {
  flex: 1 0 0;
  overflow: hidden;
}

.n-drawer .n-drawer-content .n-drawer-body-content-wrapper {
  box-sizing: border-box;
  padding: var(--n-body-padding);
}

.n-drawer .n-drawer-content .n-drawer-header {
  font-weight: var(--n-title-font-weight);
  line-height: 1;
  font-size: var(--n-title-font-size);
  color: var(--n-title-text-color);
  padding: var(--n-header-padding);
  transition: border 0.3s var(--n-bezier);
  border-bottom: 1px solid var(--n-divider-color);
  border-bottom: var(--n-header-border-bottom);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.n-drawer .n-drawer-content .n-drawer-header .n-drawer-header__main {
  flex: 1;
}

.n-drawer .n-drawer-content .n-drawer-header .n-drawer-header__close {
  margin-left: 6px;
  transition: background-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier);
}

.n-drawer .n-drawer-content .n-drawer-footer {
  display: flex;
  justify-content: flex-end;
  border-top: var(--n-footer-border-top);
  transition: border 0.3s var(--n-bezier);
  padding: var(--n-footer-padding);
}

.n-drawer.n-drawer--right-placement {
  top: 0;
  bottom: 0;
  right: 0;
  border-top-left-radius: var(--n-border-radius);
  border-bottom-left-radius: var(--n-border-radius);
}

.n-drawer.n-drawer--right-placement .n-drawer__resize-trigger {
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-1.5px);
  cursor: ew-resize;
}

.n-drawer.n-drawer--left-placement {
  top: 0;
  bottom: 0;
  left: 0;
  border-top-right-radius: var(--n-border-radius);
  border-bottom-right-radius: var(--n-border-radius);
}

.n-drawer.n-drawer--left-placement .n-drawer__resize-trigger {
  width: 3px;
  height: 100%;
  top: 0;
  right: 0;
  transform: translateX(1.5px);
  cursor: ew-resize;
}

.n-drawer.n-drawer--top-placement {
  top: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: var(--n-border-radius);
  border-bottom-right-radius: var(--n-border-radius);
}

.n-drawer.n-drawer--top-placement .n-drawer__resize-trigger {
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  transform: translateY(1.5px);
  cursor: ns-resize;
}

.n-drawer.n-drawer--bottom-placement {
  left: 0;
  bottom: 0;
  right: 0;
  border-top-left-radius: var(--n-border-radius);
  border-top-right-radius: var(--n-border-radius);
}

.n-drawer.n-drawer--bottom-placement .n-drawer__resize-trigger {
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  transform: translateY(-1.5px);
  cursor: ns-resize;
}

body > .n-drawer-container {
  position: fixed;
}

.n-drawer-container {
  position: relative;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}

.n-drawer-container > * {
  pointer-events: all;
}

.n-drawer-mask {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.n-drawer-mask.n-drawer-mask--invisible {
  background-color: rgba(0, 0, 0, 0);
}

.n-drawer-mask.fade-in-transition-enter-active {
  transition: all 0.2s var(--n-bezier-in) !important;
}

.n-drawer-mask.fade-in-transition-leave-active {
  transition: all 0.2s var(--n-bezier-out) !important;
}

.n-drawer-mask.fade-in-transition-enter-from,
.n-drawer-mask.fade-in-transition-leave-to {
  opacity: 0;
}

.n-drawer-mask.fade-in-transition-leave-from,
.n-drawer-mask.fade-in-transition-enter-to {
  opacity: 1;
}

.n-base-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
}

.n-icon {
  height: 1em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  display: inline-block;
  position: relative;
  fill: currentColor;
  transform: translateZ(0);
}

.n-icon.n-icon--color-transition {
  transition: color 0.3s var(--n-bezier);
}

.n-icon.n-icon--depth {
  color: var(--n-color);
}

.n-icon.n-icon--depth svg {
  opacity: var(--n-opacity);
  transition: opacity 0.3s var(--n-bezier);
}

.n-icon svg {
  height: 1em;
  width: 1em;
}
</style > <style cssr-id="n-button" > .n-button {
  margin: 0;
  font-weight: var(--n-font-weight);
  line-height: 1;
  font-family: inherit;
  padding: var(--n-padding);
  height: var(--n-height);
  font-size: var(--n-font-size);
  border-radius: var(--n-border-radius);
  color: var(--n-text-color);
  background-color: var(--n-color);
  width: var(--n-width);
  white-space: nowrap;
  outline: none;
  position: relative;
  z-index: auto;
  border: none;
  display: inline-flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s var(--n-bezier), background-color 0.3s var(--n-bezier),
    opacity 0.3s var(--n-bezier), border-color 0.3s var(--n-bezier);
}

.n-button.n-button--color .n-button__border {
  border-color: var(--n-border-color);
}

.n-button.n-button--color.n-button--disabled .n-button__border {
  border-color: var(--n-border-color-disabled);
}

.n-button.n-button--color:not(.n-button--disabled):focus
  .n-button__state-border {
  border-color: var(--n-border-color-focus);
}

.n-button.n-button--color:not(.n-button--disabled):hover
  .n-button__state-border {
  border-color: var(--n-border-color-hover);
}

.n-button.n-button--color:not(.n-button--disabled):active
  .n-button__state-border {
  border-color: var(--n-border-color-pressed);
}

.n-button.n-button--color:not(.n-button--disabled).n-button--pressed
  .n-button__state-border {
  border-color: var(--n-border-color-pressed);
}

.n-button.n-button--disabled {
  background-color: var(--n-color-disabled);
  color: var(--n-text-color-disabled);
}

.n-button.n-button--disabled .n-button__border {
  border: var(--n-border-disabled);
}

.n-button:not(.n-button--disabled):focus {
  background-color: var(--n-color-focus);
  color: var(--n-text-color-focus);
}

.n-button:not(.n-button--disabled):focus .n-button__state-border {
  border: var(--n-border-focus);
}

.n-button:not(.n-button--disabled):hover {
  background-color: var(--n-color-hover);
  color: var(--n-text-color-hover);
}

.n-button:not(.n-button--disabled):hover .n-button__state-border {
  border: var(--n-border-hover);
}

.n-button:not(.n-button--disabled):active {
  background-color: var(--n-color-pressed);
  color: var(--n-text-color-pressed);
}

.n-button:not(.n-button--disabled):active .n-button__state-border {
  border: var(--n-border-pressed);
}

.n-button:not(.n-button--disabled).n-button--pressed {
  background-color: var(--n-color-pressed);
  color: var(--n-text-color-pressed);
}

.n-button:not(.n-button--disabled).n-button--pressed .n-button__state-border {
  border: var(--n-border-pressed);
}

.n-button.n-button--loading {
  cursor: wait;
}

.n-button .n-base-wave {
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-iteration-count: 1;
  animation-duration: var(--n-ripple-duration);
  animation-timing-function: var(--n-bezier-ease-out), var(--n-bezier-ease-out);
}

.n-button .n-base-wave.n-base-wave--active {
  z-index: 1;
  animation-name: button-wave-spread, button-wave-opacity;
}

.n-button .n-button__border,
.n-button .n-button__state-border {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  transition: border-color 0.3s var(--n-bezier);
  pointer-events: none;
}

.n-button .n-button__border {
  border: var(--n-border);
}

.n-button .n-button__state-border {
  border: var(--n-border);
  border-color: #0000;
  z-index: 1;
}

.n-button .n-button__icon {
  margin: var(--n-icon-margin);
  margin-left: 0;
  height: var(--n-icon-size);
  width: var(--n-icon-size);
  max-width: var(--n-icon-size);
  font-size: var(--n-icon-size);
  position: relative;
  flex-shrink: 0;
}

.n-button .n-button__icon .n-icon-slot {
  height: var(--n-icon-size);
  width: var(--n-icon-size);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.n-button .n-button__icon .n-icon-slot.icon-switch-transition-enter-from,
.n-button .n-button__icon .n-icon-slot.icon-switch-transition-leave-to {
  transform: translateY(-50%) scale(0.75);
  left: 0;
  top: 50%;
  opacity: 0;
}

.n-button .n-button__icon .n-icon-slot.icon-switch-transition-enter-to,
.n-button .n-button__icon .n-icon-slot.icon-switch-transition-leave-from {
  transform: scale(1) translateY(-50%);
  left: 0;
  top: 50%;
  opacity: 1;
}

.n-button .n-button__icon .n-icon-slot.icon-switch-transition-enter-active,
.n-button .n-button__icon .n-icon-slot.icon-switch-transition-leave-active {
  transform-origin: center;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.n-button .n-button__icon.fade-in-width-expand-transition-leave-from,
.n-button .n-button__icon.fade-in-width-expand-transition-enter-to {
  opacity: 1;
}

.n-button .n-button__icon.fade-in-width-expand-transition-leave-to,
.n-button .n-button__icon.fade-in-width-expand-transition-enter-from {
  opacity: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.n-button .n-button__icon.fade-in-width-expand-transition-leave-active {
  overflow: hidden;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    margin-left 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    margin-right 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.n-button .n-button__icon.fade-in-width-expand-transition-enter-active {
  overflow: hidden;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    margin-left 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    margin-right 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.n-button .n-button__content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.n-button .n-button__content ~ .n-button__icon {
  margin: var(--n-icon-margin);
  margin-right: 0;
}

.n-button.n-button--block {
  display: flex;
  width: 100%;
}

.n-button.n-button--dashed .n-button__border,
.n-button.n-button--dashed .n-button__state-border {
  border-style: dashed !important;
}

.n-button.n-button--disabled {
  cursor: not-allowed;
  opacity: var(--n-opacity-disabled);
}

@keyframes button-wave-spread {
  from {
    box-shadow: 0 0 0.5px 0 var(--n-ripple-color);
  }

  to {
    box-shadow: 0 0 0.5px 4.5px var(--n-ripple-color);
  }
}

@keyframes button-wave-opacity {
  from {
    opacity: var(--n-wave-opacity);
  }

  to {
    opacity: 0;
  }
}

body {
  margin: 0;
  font-size: 14px;
  font-family: v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body input {
  font-family: inherit;
  font-size: inherit;
}

.n-notification-container {
  z-index: 4000;
  position: fixed;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.n-notification-container > .n-scrollbar {
  width: initial;
  overflow: visible;
  height: -moz-fit-content !important;
  height: fit-content !important;
  max-height: 100vh !important;
}

.n-notification-container > .n-scrollbar > .n-scrollbar-container {
  height: -moz-fit-content !important;
  height: fit-content !important;
  max-height: 100vh !important;
}

.n-notification-container
  > .n-scrollbar
  > .n-scrollbar-container
  .n-scrollbar-content {
  padding-top: 12px;
  padding-bottom: 33px;
}

.n-notification-container.n-notification-container--top,
.n-notification-container.n-notification-container--top-right,
.n-notification-container.n-notification-container--top-left {
  top: 12px;
}

.n-notification-container.n-notification-container--top.transitioning
  > .n-scrollbar
  > .n-scrollbar-container,
.n-notification-container.n-notification-container--top-right.transitioning
  > .n-scrollbar
  > .n-scrollbar-container,
.n-notification-container.n-notification-container--top-left.transitioning
  > .n-scrollbar
  > .n-scrollbar-container {
  min-height: 100vh !important;
}

.n-notification-container.n-notification-container--bottom,
.n-notification-container.n-notification-container--bottom-right,
.n-notification-container.n-notification-container--bottom-left {
  bottom: 12px;
}

.n-notification-container.n-notification-container--bottom
  > .n-scrollbar
  > .n-scrollbar-container
  .n-scrollbar-content,
.n-notification-container.n-notification-container--bottom-right
  > .n-scrollbar
  > .n-scrollbar-container
  .n-scrollbar-content,
.n-notification-container.n-notification-container--bottom-left
  > .n-scrollbar
  > .n-scrollbar-container
  .n-scrollbar-content {
  padding-bottom: 12px;
}

.n-notification-container.n-notification-container--bottom
  .n-notification-wrapper,
.n-notification-container.n-notification-container--bottom-right
  .n-notification-wrapper,
.n-notification-container.n-notification-container--bottom-left
  .n-notification-wrapper {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
  margin-top: 12px;
}

.n-notification-container.n-notification-container--top,
.n-notification-container.n-notification-container--bottom {
  left: 50%;
  transform: translateX(-50%);
}

.n-notification-container.n-notification-container--top
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container.n-notification-container--bottom
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container.n-notification-container--top
  .n-notification-wrapper.notification-transition-leave-to,
.n-notification-container.n-notification-container--bottom
  .n-notification-wrapper.notification-transition-leave-to {
  transform: scale(0.85);
}

.n-notification-container.n-notification-container--top
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container.n-notification-container--bottom
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container.n-notification-container--top
  .n-notification-wrapper.notification-transition-enter-to,
.n-notification-container.n-notification-container--bottom
  .n-notification-wrapper.notification-transition-enter-to {
  transform: scale(1);
}

.n-notification-container.n-notification-container--top
  .n-notification-wrapper {
  transform-origin: top center;
}

.n-notification-container.n-notification-container--bottom
  .n-notification-wrapper {
  transform-origin: bottom center;
}

.n-notification-container.n-notification-container--top-right .n-notification,
.n-notification-container.n-notification-container--bottom-right
  .n-notification {
  margin-left: 28px;
  margin-right: 16px;
}

.n-notification-container.n-notification-container--top-left .n-notification,
.n-notification-container.n-notification-container--bottom-left
  .n-notification {
  margin-left: 16px;
  margin-right: 28px;
}

.n-notification-container.n-notification-container--top-right {
  right: 0;
}

.n-notification-container.n-notification-container--top-right
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container.n-notification-container--top-right
  .n-notification-wrapper.notification-transition-leave-to {
  transform: translate(calc(100%), 0);
}

.n-notification-container.n-notification-container--top-right
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container.n-notification-container--top-right
  .n-notification-wrapper.notification-transition-enter-to {
  transform: translate(0, 0);
}

.n-notification-container.n-notification-container--top-left {
  left: 0;
}

.n-notification-container.n-notification-container--top-left
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container.n-notification-container--top-left
  .n-notification-wrapper.notification-transition-leave-to {
  transform: translate(calc(-100%), 0);
}

.n-notification-container.n-notification-container--top-left
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container.n-notification-container--top-left
  .n-notification-wrapper.notification-transition-enter-to {
  transform: translate(0, 0);
}

.n-notification-container.n-notification-container--bottom-right {
  right: 0;
}

.n-notification-container.n-notification-container--bottom-right
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container.n-notification-container--bottom-right
  .n-notification-wrapper.notification-transition-leave-to {
  transform: translate(calc(100%), 0);
}

.n-notification-container.n-notification-container--bottom-right
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container.n-notification-container--bottom-right
  .n-notification-wrapper.notification-transition-enter-to {
  transform: translate(0, 0);
}

.n-notification-container.n-notification-container--bottom-left {
  left: 0;
}

.n-notification-container.n-notification-container--bottom-left
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container.n-notification-container--bottom-left
  .n-notification-wrapper.notification-transition-leave-to {
  transform: translate(calc(-100%), 0);
}

.n-notification-container.n-notification-container--bottom-left
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container.n-notification-container--bottom-left
  .n-notification-wrapper.notification-transition-enter-to {
  transform: translate(0, 0);
}

.n-notification-container.n-notification-container--scrollable.n-notification-container--top-right {
  top: 0;
}

.n-notification-container.n-notification-container--scrollable.n-notification-container--top-left {
  top: 0;
}

.n-notification-container.n-notification-container--scrollable.n-notification-container--bottom-right {
  bottom: 0;
}

.n-notification-container.n-notification-container--scrollable.n-notification-container--bottom-left {
  bottom: 0;
}

.n-notification-container .n-notification-wrapper {
  margin-bottom: 12px;
}

.n-notification-container
  .n-notification-wrapper.notification-transition-enter-from,
.n-notification-container
  .n-notification-wrapper.notification-transition-leave-to {
  opacity: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.n-notification-container
  .n-notification-wrapper.notification-transition-leave-from,
.n-notification-container
  .n-notification-wrapper.notification-transition-enter-to {
  opacity: 1;
}

.n-notification-container
  .n-notification-wrapper.notification-transition-leave-active {
  transition: background-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier),
    opacity 0.3s var(--n-bezier), transform 0.3s var(--n-bezier-ease-in),
    max-height 0.3s var(--n-bezier), margin-top 0.3s linear,
    margin-bottom 0.3s linear, box-shadow 0.3s var(--n-bezier);
}

.n-notification-container
  .n-notification-wrapper.notification-transition-enter-active {
  transition: background-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier),
    opacity 0.3s var(--n-bezier), transform 0.3s var(--n-bezier-ease-out),
    max-height 0.3s var(--n-bezier), margin-top 0.3s linear,
    margin-bottom 0.3s linear, box-shadow 0.3s var(--n-bezier);
}

.n-notification-container .n-notification {
  background-color: var(--n-color);
  color: var(--n-text-color);
  transition: background-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier),
    opacity 0.3s var(--n-bezier), box-shadow 0.3s var(--n-bezier);
  font-family: inherit;
  font-size: var(--n-font-size);
  font-weight: 400;
  position: relative;
  display: flex;
  overflow: hidden;
  flex-shrink: 0;
  padding-left: var(--n-padding-left);
  padding-right: var(--n-padding-right);
  width: var(--n-width);
  max-width: calc(100vw - 16px - 16px);
  border-radius: var(--n-border-radius);
  box-shadow: var(--n-box-shadow);
  box-sizing: border-box;
  opacity: 1;
}

.n-notification-container .n-notification .n-notification__avatar .n-icon {
  color: var(--n-icon-color);
}

.n-notification-container .n-notification .n-notification__avatar .n-base-icon {
  color: var(--n-icon-color);
}

.n-notification-container
  .n-notification.n-notification--show-avatar
  .n-notification-main {
  margin-left: 40px;
  width: calc(100% - 40px);
}

.n-notification-container
  .n-notification.n-notification--closable
  .n-notification-main
  > *:first-child {
  padding-right: 20px;
}

.n-notification-container
  .n-notification.n-notification--closable
  .n-notification__close {
  position: absolute;
  top: 0;
  right: 0;
  margin: var(--n-close-margin);
  transition: background-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier);
}

.n-notification-container .n-notification .n-notification__avatar {
  position: absolute;
  top: var(--n-padding-top);
  left: var(--n-padding-left);
  width: 28px;
  height: 28px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n-notification-container .n-notification .n-notification__avatar .n-icon {
  transition: color 0.3s var(--n-bezier);
}

.n-notification-container .n-notification .n-notification-main {
  padding-top: var(--n-padding-top);
  padding-bottom: var(--n-padding-bottom);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  width: calc(100% - 8px);
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main-footer
  .n-notification-main-footer__meta {
  font-size: var(--n-meta-font-size);
  transition: color 0.3s var(--n-bezier-ease-out);
  color: var(--n-description-text-color);
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main-footer
  .n-notification-main-footer__action {
  cursor: pointer;
  transition: color 0.3s var(--n-bezier-ease-out);
  color: var(--n-action-text-color);
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main__header {
  font-weight: var(--n-title-font-weight);
  font-size: var(--n-title-font-size);
  transition: color 0.3s var(--n-bezier-ease-out);
  color: var(--n-title-text-color);
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main__description {
  margin-top: 8px;
  font-size: var(--n-description-font-size);
  white-space: pre-wrap;
  word-wrap: break-word;
  transition: color 0.3s var(--n-bezier-ease-out);
  color: var(--n-description-text-color);
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main__content {
  line-height: var(--n-line-height);
  margin: 12px 0 0 0;
  font-family: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
  transition: color 0.3s var(--n-bezier-ease-out);
  color: var(--n-text-color);
}

.n-notification-container
  .n-notification
  .n-notification-main
  .n-notification-main__content:first-child {
  margin: 0;
}

@media (max-width: 768px) {
  .mobile-zoom {
    zoom: 1.25;
  }
}
