@charset "UTF-8";
/*
888       888   888       888   888       888
888   o   888   888   o   888   888   o   888
888  d8b  888   888  d8b  888   888  d8b  888
888 d888b 888   888 d888b 888   888 d888b 888
888d88888b888   888d88888b888   888d88888b888
88888P Y88888   88888P Y88888   88888P Y88888
8888P   Y8888   8888P   Y8888   8888P   Y8888
888P     Y888   888P     Y888   888P     Y888

888888888888P   d888b    888b   d088888888889
       d888P    d8888b   888b   d0888b
      d888P     d88888b  888b   d0888b
     d888P      d888Y88b 888b   d08888888b
    d888P       d888 Y88b888b   d0888b999b
   d888P        d888  Y88888b   d0888b
  d888P         d888   Y8888b   d0888b
d888888888888   d888    Y888b   d088888888889
*/
@import url("https://fontsapi.zeoseven.com/292/main/result.css");
@import url("https://fontsapi.zeoseven.com/2/main/result.css");
@import url("https://fontsapi.zeoseven.com/285/main/result.css");
@import url("https://fontsapi.zeoseven.com/84/main/result.css");
@import url("https://fontsapi.zeoseven.com/638/main/result.css");
@import url("https://fontsapi.zeoseven.com/281/main/result.css");
@font-face {
  font-family: "monaspace-radon";
  src: url("https://fontsapi.zeoseven.com/gm/main.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
html[data-theme=dark] {
  --bg-color-major: #acacac;
  --bg-color-minor: #585656;
  --bg-color-important: #7e7a7a;
  --bg-color-warn: #f3b0b0;
  --text-color-normal: #575757;
  --text-color-headline: #f4f4f4;
  --text-color-paragraph: #f4f4f4;
  --text-color-small: #f4f4f4;
  --highlight-color: rgb(251, 251, 251, 0.3);
  --shadow-color: #f2d8d8;
  --backdrop-color: rgba(75, 75, 75, 0.9);
  --border-color: #ffffff;
  --cursor-default: default;
  --cursor-link: alias;
  --cursor-copy: copy;
  --cursor-click: pointer;
}

:root,
html[data-theme=light] {
  --bg-color-major: #f4f4f4;
  --bg-color-minor: rgb(149, 149, 149);
  --bg-color-important: #060606;
  --bg-color-warn: #f3b0b0;
  --text-color-normal: #000000;
  --text-color-headline: #000000;
  --text-color-paragraph: #000000;
  --text-color-small: #000000;
  --highlight-color: rgb(176, 176, 176, 0.5);
  --shadow-color: #00000040;
  --backdrop-color: rgba(255, 255, 255, 0.9);
  --border-color: #000000;
  --cursor-default: default;
  --cursor-link: alias;
  --cursor-copy: copy;
  --cursor-click: pointer;
}

:root {
  --z-base: 1;
  --z-float: 10;
  --z-mask: 100;
  --z-modal: 200;
  --z-top: 300;
  --head-font-family:
    "monaspace-radon", "LXGW ZhenKai GB";
  --paragraph-font-family:
    "monaspace-radon", "LXGW WenKai";
  --foot-font-family: "monaspace-radon", "Xiaolai";
  --normal-font-family:
    "monaspace-radon", "DouyinSans";
  --small-font-family:
    "monaspace-radon", "DymonShouXieTi";
}

html[data-theme=light] {
  color-scheme: light only;
}

html[data-theme=dark] {
  color-scheme: dark only;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color-major);
  font-family: var(--normal-font-family);
  font-weight: normal;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

::view-transition-old(root) {
  z-index: -1;
  animation: none;
}

::view-transition-new(root) {
  z-index: 2;
  animation: unclip 1s both;
}

@keyframes unclip {
  0% {
    -webkit-clip-path: inset(0 0 100% 100%);
    clip-path: inset(0 0 100% 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  /*滚动条轨道*/
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background: transparent;
}

::-webkit-scrollbar-thumb {
  /*滚动滑块*/
  border-radius: 25%;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: var(--bar-text-color);
}

/* prettier-ignore */
.w-textAlign-center {
  text-align: center !important;
}

/* prettier-ignore */
.w-textAlign-left {
  text-align: left !important;
}

/* prettier-ignore */
.w-textAlign-right {
  text-align: right !important;
}

/* prettier-ignore */
.w-textAlign-justify {
  text-align: justify !important;
}

/* prettier-ignore */
.w-fontWeight-bold, .w-bold {
  font-weight: bold !important;
}

/* prettier-ignore */
.w-fontWeight-normal, .w-normal {
  font-weight: normal !important;
}

/* prettier-ignore */
.w-fontStyle-italic, .w-italic {
  font-style: italic !important;
}

/* prettier-ignore */
.w-textTransform-uppercase {
  text-transform: uppercase !important;
}

/* prettier-ignore */
.w-textTransform-lowercase {
  text-transform: lowercase !important;
}

/* prettier-ignore */
.w-textDecoration-underline {
  text-decoration: underline !important;
}

/* prettier-ignore */
.w-textDecoration-line-through {
  text-decoration: line-through !important;
}

/* prettier-ignore */
.w-whiteSpace-nowrap .W-nowrap {
  white-space: nowrap !important;
}

/* prettier-ignore */
.w-wordBreak-break-all {
  word-break: break-all !important;
}

/* prettier-ignore */
.w-wordBreak-break-word {
  word-break: break-word !important;
}

/* prettier-ignore */
.w-letterSpacing-1px {
  letter-spacing: 1px !important;
}

/* prettier-ignore */
.w-letterSpacing-2px {
  letter-spacing: 2px !important;
}

/* prettier-ignore */
.w-opacity-5 {
  opacity: 0.05 !important;
}

/* prettier-ignore */
.w-opacity-10 {
  opacity: 0.1 !important;
}

/* prettier-ignore */
.w-opacity-25 {
  opacity: 0.25 !important;
}

/* prettier-ignore */
.w-opacity-50 {
  opacity: 0.5 !important;
}

/* prettier-ignore */
.w-opacity-80 {
  opacity: 0.8 !important;
}

/* prettier-ignore */
.w-opacity-100 {
  opacity: 1 !important;
}

/* prettier-ignore */
.w-shadow {
  text-shadow: 1px 1px 4px #888 !important;
}

/* prettier-ignore */
.w-textIndent-2em {
  text-indent: 2em;
}

/* prettier-ignore */
.w-whiteSpace-pre {
  white-space: pre;
}

/* prettier-ignore */
.w-whiteSpace-preWrap {
  white-space: pre-wrap;
}

/* prettier-ignore */
.w-whiteSpace-preLine {
  white-space: pre-line;
}

/* prettier-ignore */
.w-display-block {
  display: block !important;
}

/* prettier-ignore */
.w-display-inline {
  display: inline !important;
}

/* prettier-ignore */
.w-display-inlineBlock {
  display: inline-block !important;
}

/* prettier-ignore */
.w-display-flex {
  display: flex !important;
}

/* prettier-ignore */
.w-display-grid {
  display: grid !important;
}

/* prettier-ignore */
.w-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* prettier-ignore */
.w-alignItems-start {
  align-items: start !important;
}

/* prettier-ignore */
.w-alignItems-center {
  align-items: center !important;
}

/* prettier-ignore */
.w-alignItems-end {
  align-items: end !important;
}

/* prettier-ignore */
.w-flexDirection-row {
  flex-direction: row !important;
}

/* prettier-ignore */
.w-flexDirection-column {
  flex-direction: column !important;
}

/* prettier-ignore */
.w-flexWrap-wrap {
  flex-wrap: wrap !important;
}

/* prettier-ignore */
.w-flex-gap {
  gap: 5px;
}

/* prettier-ignore */
.w-justify-center {
  justify-content: center !important;
}

/* prettier-ignore */
.w-justify-between {
  justify-content: space-between !important;
}

/* prettier-ignore */
.w-justify-around {
  justify-content: space-around !important;
}

/* prettier-ignore */
.w-justify-evenly {
  justify-content: space-evenly !important;
}

/* prettier-ignore */
.w-m-0 {
  margin: 0 !important;
}

/* prettier-ignore */
.w-m-1 {
  margin: 1rem !important;
}

/* prettier-ignore */
.w-mt-1 {
  margin-top: 1em !important;
}

/* prettier-ignore */
.w-mb-1 {
  margin-bottom: 1em !important;
}

/* prettier-ignore */
.w-ml-1 {
  margin-left: 1em !important;
}

/* prettier-ignore */
.w-mr-1 {
  margin-right: 1em !important;
}

/* prettier-ignore */
.w-p-0 {
  padding: 0 !important;
}

/* prettier-ignore */
.w-p-1 {
  padding: 1em !important;
}

/* prettier-ignore */
.w-pt-1 {
  padding-top: 1em !important;
}

/* prettier-ignore */
.w-pb-1 {
  padding-bottom: 1em !important;
}

/* prettier-ignore */
.w-pl-1 {
  padding-left: 1em !important;
}

/* prettier-ignore */
.w-pr-1 {
  padding-right: 1em !important;
}

/* prettier-ignore */
.w-m-auto {
  margin: auto !important;
}

/* prettier-ignore */
.w-w-100 {
  width: 100% !important;
}

/* prettier-ignore */
.w-w-50 {
  width: 50% !important;
}

/* prettier-ignore */
.w-h-100 {
  height: 100% !important;
}

/* prettier-ignore */
.w-h-50 {
  height: 50% !important;
}

/* prettier-ignore */
.w-w-auto {
  width: auto !important;
}

/* prettier-ignore */
.w-h-auto {
  height: auto !important;
}

/* prettier-ignore */
.w-w-fit {
  width: fit-content !important;
}

/* prettier-ignore */
.w-h-fit {
  height: fit-content !important;
}

/* prettier-ignore */
.w-max-w-100 {
  max-width: 100% !important;
}

/* prettier-ignore */
.w-max-h-100 {
  max-height: 100% !important;
}

/* prettier-ignore */
.w-overflow-auto {
  overflow: auto !important;
}

/* prettier-ignore */
.w-overflow-hidden {
  overflow: hidden !important;
}

/* prettier-ignore */
.w-overflow-scroll {
  overflow: scroll !important;
}

/* prettier-ignore */
.w-overflow-x-auto {
  overflow-x: auto !important;
}

/* prettier-ignore */
.w-overflow-y-auto {
  overflow-y: auto !important;
}

/* prettier-ignore */
.w-position-relative {
  position: relative !important;
}

/* prettier-ignore */
.w-position-absolute {
  position: absolute !important;
}

/* prettier-ignore */
.w-position-fixed {
  position: fixed !important;
}

/* prettier-ignore */
.w-position-sticky {
  position: sticky !important;
}

/* prettier-ignore */
.w-top-0 {
  top: 0 !important;
}

/* prettier-ignore */
.w-bottom-0 {
  bottom: 0 !important;
}

/* prettier-ignore */
.w-left-0 {
  left: 0 !important;
}

/* prettier-ignore */
.w-right-0 {
  right: 0 !important;
}

/* prettier-ignore */
.w-top-1em {
  top: 1em !important;
}

/* prettier-ignore */
.w-bottom-1em {
  bottom: 1em !important;
}

/* prettier-ignore */
.w-left-1em {
  left: 1em !important;
}

/* prettier-ignore */
.w-right-1em {
  right: 1em !important;
}

/* prettier-ignore */
.w-top-50 {
  top: 50% !important;
}

/* prettier-ignore */
.w-bottom-50 {
  bottom: 1em !important;
}

/* prettier-ignore */
.w-left-50 {
  left: 50% !important;
}

/* prettier-ignore */
.w-right-50 {
  right: 50% !important;
}

/* prettier-ignore */
.w-z-base {
  z-index: var(--z-base) !important;
}

/* prettier-ignore */
.w-z-header {
  z-index: var(--z-header) !important;
}

/* prettier-ignore */
.w-z-menu {
  z-index: var(--z-menu) !important;
}

/* prettier-ignore */
.w-z-modal {
  z-index: var(--z-modal) !important;
}

/* prettier-ignore */
.w-z-toast {
  z-index: var(--z-toast) !important;
}

/* prettier-ignore */
.w-z-mask {
  z-index: var(--z-mask) !important;
}

/* prettier-ignore */
.w-bg-white {
  background: #fff !important;
}

/* prettier-ignore */
.w-bg-black {
  background: #000 !important;
}

/* prettier-ignore */
.w-bg-gray {
  background: #eee !important;
}

/* prettier-ignore */
.w-bg-primary {
  background: #409eff !important;
}

/* prettier-ignore */
.w-bg-success {
  background: #67c23a !important;
}

/* prettier-ignore */
.w-bg-warning {
  background: #e6a23c !important;
}

/* prettier-ignore */
.w-bg-danger {
  background: #f56c6c !important;
}

/* prettier-ignore */
.w-bg-info {
  background: #909399 !important;
}

/* prettier-ignore */
.w-color-white {
  color: #fff !important;
}

/* prettier-ignore */
.w-color-black {
  color: #000 !important;
}

/* prettier-ignore */
.w-color-gray {
  color: #666 !important;
}

/* prettier-ignore */
.w-color-primary {
  color: #409eff !important;
}

/* prettier-ignore */
.w-color-success {
  color: #67c23a !important;
}

/* prettier-ignore */
.w-color-warning {
  color: #e6a23c !important;
}

/* prettier-ignore */
.w-color-danger {
  color: #f56c6c !important;
}

/* prettier-ignore */
.w-color-info {
  color: #909399 !important;
}

/* prettier-ignore */
.w-borderRadius-4 {
  border-radius: 4px !important;
}

/* prettier-ignore */
.w-borderRadius-8 {
  border-radius: 8px !important;
}

/* prettier-ignore */
.w-borderRadius-16 {
  border-radius: 16px !important;
}

/* prettier-ignore */
.w-borderRadius-50 {
  border-radius: 50% !important;
}

/* prettier-ignore */
.w-border-1-solid {
  border: 1px solid #ccc !important;
}

/* prettier-ignore */
.w-border-none {
  border: none !important;
}

/* prettier-ignore */
.w-border-1-solid-primary {
  border: 1px solid #409eff !important;
}

/* prettier-ignore */
.w-hidden {
  display: none !important;
}

/* prettier-ignore */
.w-visible {
  display: block !important;
}

/* prettier-ignore */
.w-invisible {
  visibility: hidden !important;
}

/* prettier-ignore */
.w-show {
  visibility: visible !important;
}

/* prettier-ignore */
.w-cursor-pointer {
  cursor: pointer !important;
}

/* prettier-ignore */
.w-cursor-default {
  cursor: default !important;
}

/* prettier-ignore */
.w-shadow-box {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

/* prettier-ignore */
.w-transition {
  transition: all 0.3s ease !important;
}

/* prettier-ignore */
.w-user-select-none {
  user-select: none !important;
}

/* prettier-ignore */
.w-select-text {
  user-select: text !important;
}

/* prettier-ignore */
.w-pointer-events-none {
  pointer-events: none !important;
}

/* prettier-ignore */
.w-pointer-events-auto {
  pointer-events: auto !important;
}

.resizer {
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  cursor: col-resize;
  z-index: 100;
}

.shake {
  transform-origin: center center;
}

.shake:hover {
  animation-name: shake-base;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez {
  animation-play-state: paused !important;
}

.shake.freez.shake-hard {
  animation-name: shake-hard;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-slow {
  animation-name: shake-slow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-little {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-horizontal {
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-vertical {
  animation-name: shake-vertical;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-rotate {
  animation-name: shake-rotate;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-opacity {
  animation-name: shake-opacity;
  animation-duration: 200ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez.shake-crazy {
  animation-name: shake-crazy;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.freez:hover {
  animation-play-state: running !important;
}

.shake.shake-hard:hover {
  animation-name: shake-hard;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-slow:hover {
  animation-name: shake-slow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-little:hover {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-horizontal:hover {
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-vertical:hover {
  animation-name: shake-vertical;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-rotate:hover {
  animation-name: shake-rotate;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-opacity:hover {
  animation-name: shake-opacity;
  animation-duration: 200ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-crazy:hover {
  animation-name: shake-crazy;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant {
  animation-name: shake-base;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-hard {
  animation-name: shake-hard;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-slow {
  animation-name: shake-slow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-little {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-horizontal {
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-vertical {
  animation-name: shake-vertical;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-rotate {
  animation-name: shake-rotate;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-opacity {
  animation-name: shake-opacity;
  animation-duration: 200ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.shake-crazy {
  animation-name: shake-crazy;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-play-state: running;
}

.shake.shake-constant.hover-stop:hover {
  animation-play-state: paused;
}

.shake.shake-delay {
  animation-name: shake-base;
  animation-duration: 100ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
  animation-play-state: running;
}

@keyframes shake-base {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(-1.5px, 1.5px) rotate(0.5deg);
  }
  4% {
    transform: translate(-2.5px, -1.5px) rotate(-1.5deg);
  }
  6% {
    transform: translate(-0.5px, 1.5px) rotate(-1.5deg);
  }
  8% {
    transform: translate(1.5px, -0.5px) rotate(-1.5deg);
  }
  10% {
    transform: translate(0.5px, -0.5px) rotate(-0.5deg);
  }
  12% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg);
  }
  14% {
    transform: translate(-0.5px, 0.5px) rotate(-1.5deg);
  }
  16% {
    transform: translate(1.5px, -0.5px) rotate(0.5deg);
  }
  18% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  20% {
    transform: translate(-2.5px, 0.5px) rotate(0.5deg);
  }
  22% {
    transform: translate(-0.5px, 0.5px) rotate(-0.5deg);
  }
  24% {
    transform: translate(1.5px, -1.5px) rotate(0.5deg);
  }
  26% {
    transform: translate(-2.5px, 1.5px) rotate(-0.5deg);
  }
  28% {
    transform: translate(-2.5px, 0.5px) rotate(-0.5deg);
  }
  30% {
    transform: translate(1.5px, 1.5px) rotate(-0.5deg);
  }
  32% {
    transform: translate(0.5px, 1.5px) rotate(0.5deg);
  }
  34% {
    transform: translate(1.5px, 1.5px) rotate(-0.5deg);
  }
  36% {
    transform: translate(1.5px, -1.5px) rotate(-0.5deg);
  }
  38% {
    transform: translate(-1.5px, 1.5px) rotate(0.5deg);
  }
  40% {
    transform: translate(0.5px, -2.5px) rotate(-0.5deg);
  }
  42% {
    transform: translate(-2.5px, -0.5px) rotate(-0.5deg);
  }
  44% {
    transform: translate(-2.5px, -0.5px) rotate(-0.5deg);
  }
  46% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  48% {
    transform: translate(-2.5px, 1.5px) rotate(-0.5deg);
  }
  50% {
    transform: translate(-0.5px, -2.5px) rotate(0.5deg);
  }
  52% {
    transform: translate(0.5px, 1.5px) rotate(-1.5deg);
  }
  54% {
    transform: translate(-0.5px, -2.5px) rotate(0.5deg);
  }
  56% {
    transform: translate(-0.5px, 0.5px) rotate(-0.5deg);
  }
  58% {
    transform: translate(-0.5px, 1.5px) rotate(0.5deg);
  }
  60% {
    transform: translate(0.5px, -2.5px) rotate(0.5deg);
  }
  62% {
    transform: translate(1.5px, -2.5px) rotate(0.5deg);
  }
  64% {
    transform: translate(-1.5px, 1.5px) rotate(-0.5deg);
  }
  66% {
    transform: translate(-0.5px, 1.5px) rotate(-0.5deg);
  }
  68% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  }
  70% {
    transform: translate(0.5px, 0.5px) rotate(-0.5deg);
  }
  72% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  74% {
    transform: translate(1.5px, -1.5px) rotate(-1.5deg);
  }
  76% {
    transform: translate(1.5px, 1.5px) rotate(-1.5deg);
  }
  78% {
    transform: translate(-2.5px, -1.5px) rotate(-1.5deg);
  }
  80% {
    transform: translate(0.5px, 1.5px) rotate(-0.5deg);
  }
  82% {
    transform: translate(-2.5px, -1.5px) rotate(0.5deg);
  }
  84% {
    transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
  }
  86% {
    transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
  }
  88% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  90% {
    transform: translate(0.5px, -1.5px) rotate(-1.5deg);
  }
  92% {
    transform: translate(0.5px, 0.5px) rotate(-1.5deg);
  }
  94% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  96% {
    transform: translate(-1.5px, -1.5px) rotate(-1.5deg);
  }
  98% {
    transform: translate(-2.5px, -0.5px) rotate(-1.5deg);
  }
}
@keyframes shake-little {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  4% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  6% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  8% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  10% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  12% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  14% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  16% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  18% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  20% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  22% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  24% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  26% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  28% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  30% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  32% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  34% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  36% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  38% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  40% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  42% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  44% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  46% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  48% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  50% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  52% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  54% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  56% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  58% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  60% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  62% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  64% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  66% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  68% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  70% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  72% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  74% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  76% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  78% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  80% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  82% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  84% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  86% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  88% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  90% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  92% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  94% {
    transform: translate(-1px, 0px) rotate(-0.5deg);
  }
  96% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
  98% {
    transform: translate(0px, -1px) rotate(-0.5deg);
  }
}
@keyframes shake-slow {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(-6px, -8px) rotate(2.5deg);
  }
  4% {
    transform: translate(3px, -9px) rotate(-0.5deg);
  }
  6% {
    transform: translate(3px, -8px) rotate(2.5deg);
  }
  8% {
    transform: translate(0px, 5px) rotate(0.5deg);
  }
  10% {
    transform: translate(3px, 2px) rotate(0.5deg);
  }
  12% {
    transform: translate(8px, 0px) rotate(0.5deg);
  }
  14% {
    transform: translate(4px, 7px) rotate(-3.5deg);
  }
  16% {
    transform: translate(-4px, 0px) rotate(-0.5deg);
  }
  18% {
    transform: translate(1px, 3px) rotate(-1.5deg);
  }
  20% {
    transform: translate(-8px, -1px) rotate(-3.5deg);
  }
  22% {
    transform: translate(5px, 9px) rotate(2.5deg);
  }
  24% {
    transform: translate(-9px, -10px) rotate(-2.5deg);
  }
  26% {
    transform: translate(0px, 7px) rotate(-1.5deg);
  }
  28% {
    transform: translate(-10px, 7px) rotate(2.5deg);
  }
  30% {
    transform: translate(8px, -7px) rotate(-1.5deg);
  }
  32% {
    transform: translate(0px, -8px) rotate(-0.5deg);
  }
  34% {
    transform: translate(9px, 7px) rotate(-0.5deg);
  }
  36% {
    transform: translate(-7px, 6px) rotate(0.5deg);
  }
  38% {
    transform: translate(8px, -10px) rotate(-0.5deg);
  }
  40% {
    transform: translate(8px, 0px) rotate(0.5deg);
  }
  42% {
    transform: translate(0px, -2px) rotate(1.5deg);
  }
  44% {
    transform: translate(5px, -2px) rotate(-0.5deg);
  }
  46% {
    transform: translate(1px, -10px) rotate(-2.5deg);
  }
  48% {
    transform: translate(4px, -1px) rotate(2.5deg);
  }
  50% {
    transform: translate(-5px, -4px) rotate(2.5deg);
  }
  52% {
    transform: translate(3px, 2px) rotate(-3.5deg);
  }
  54% {
    transform: translate(1px, -6px) rotate(-0.5deg);
  }
  56% {
    transform: translate(-3px, -4px) rotate(-0.5deg);
  }
  58% {
    transform: translate(-10px, -10px) rotate(2.5deg);
  }
  60% {
    transform: translate(8px, 7px) rotate(-3.5deg);
  }
  62% {
    transform: translate(9px, -6px) rotate(-3.5deg);
  }
  64% {
    transform: translate(-5px, 8px) rotate(-0.5deg);
  }
  66% {
    transform: translate(1px, -3px) rotate(0.5deg);
  }
  68% {
    transform: translate(-6px, 9px) rotate(1.5deg);
  }
  70% {
    transform: translate(-5px, 8px) rotate(-1.5deg);
  }
  72% {
    transform: translate(-10px, -2px) rotate(2.5deg);
  }
  74% {
    transform: translate(0px, -4px) rotate(1.5deg);
  }
  76% {
    transform: translate(-2px, -5px) rotate(0.5deg);
  }
  78% {
    transform: translate(-2px, 9px) rotate(-3.5deg);
  }
  80% {
    transform: translate(7px, 4px) rotate(-3.5deg);
  }
  82% {
    transform: translate(-1px, -4px) rotate(-1.5deg);
  }
  84% {
    transform: translate(3px, -6px) rotate(0.5deg);
  }
  86% {
    transform: translate(7px, -8px) rotate(-1.5deg);
  }
  88% {
    transform: translate(4px, -9px) rotate(1.5deg);
  }
  90% {
    transform: translate(1px, -6px) rotate(2.5deg);
  }
  92% {
    transform: translate(-8px, -1px) rotate(-1.5deg);
  }
  94% {
    transform: translate(-4px, -1px) rotate(0.5deg);
  }
  96% {
    transform: translate(-6px, 9px) rotate(1.5deg);
  }
  98% {
    transform: translate(7px, 4px) rotate(-0.5deg);
  }
}
@keyframes shake-hard {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(0px, 4px) rotate(0.5deg);
  }
  4% {
    transform: translate(6px, -2px) rotate(-3.5deg);
  }
  6% {
    transform: translate(-3px, -8px) rotate(-2.5deg);
  }
  8% {
    transform: translate(-1px, 9px) rotate(2.5deg);
  }
  10% {
    transform: translate(6px, 5px) rotate(-2.5deg);
  }
  12% {
    transform: translate(-3px, 6px) rotate(-2.5deg);
  }
  14% {
    transform: translate(-9px, 1px) rotate(-0.5deg);
  }
  16% {
    transform: translate(-6px, 5px) rotate(2.5deg);
  }
  18% {
    transform: translate(-9px, 8px) rotate(0.5deg);
  }
  20% {
    transform: translate(-9px, 6px) rotate(-2.5deg);
  }
  22% {
    transform: translate(-5px, 6px) rotate(0.5deg);
  }
  24% {
    transform: translate(6px, 3px) rotate(1.5deg);
  }
  26% {
    transform: translate(8px, -10px) rotate(-2.5deg);
  }
  28% {
    transform: translate(0px, -5px) rotate(-3.5deg);
  }
  30% {
    transform: translate(6px, -10px) rotate(2.5deg);
  }
  32% {
    transform: translate(3px, 0px) rotate(-3.5deg);
  }
  34% {
    transform: translate(4px, -6px) rotate(-3.5deg);
  }
  36% {
    transform: translate(-5px, 4px) rotate(-0.5deg);
  }
  38% {
    transform: translate(-7px, -6px) rotate(-1.5deg);
  }
  40% {
    transform: translate(4px, -9px) rotate(-3.5deg);
  }
  42% {
    transform: translate(-9px, -2px) rotate(-1.5deg);
  }
  44% {
    transform: translate(0px, -3px) rotate(1.5deg);
  }
  46% {
    transform: translate(-5px, -5px) rotate(-2.5deg);
  }
  48% {
    transform: translate(-6px, 2px) rotate(-3.5deg);
  }
  50% {
    transform: translate(0px, -5px) rotate(-1.5deg);
  }
  52% {
    transform: translate(6px, 1px) rotate(-2.5deg);
  }
  54% {
    transform: translate(9px, 6px) rotate(2.5deg);
  }
  56% {
    transform: translate(-8px, -10px) rotate(-0.5deg);
  }
  58% {
    transform: translate(6px, -2px) rotate(-1.5deg);
  }
  60% {
    transform: translate(-4px, -8px) rotate(-1.5deg);
  }
  62% {
    transform: translate(0px, -9px) rotate(0.5deg);
  }
  64% {
    transform: translate(-7px, -6px) rotate(2.5deg);
  }
  66% {
    transform: translate(8px, 6px) rotate(2.5deg);
  }
  68% {
    transform: translate(-10px, -7px) rotate(-2.5deg);
  }
  70% {
    transform: translate(-1px, 9px) rotate(-2.5deg);
  }
  72% {
    transform: translate(-6px, 8px) rotate(-2.5deg);
  }
  74% {
    transform: translate(2px, 5px) rotate(-1.5deg);
  }
  76% {
    transform: translate(-7px, 6px) rotate(1.5deg);
  }
  78% {
    transform: translate(3px, -9px) rotate(0.5deg);
  }
  80% {
    transform: translate(-4px, -9px) rotate(-1.5deg);
  }
  82% {
    transform: translate(0px, 7px) rotate(0.5deg);
  }
  84% {
    transform: translate(-4px, -3px) rotate(-1.5deg);
  }
  86% {
    transform: translate(-10px, 8px) rotate(-0.5deg);
  }
  88% {
    transform: translate(-9px, 1px) rotate(-0.5deg);
  }
  90% {
    transform: translate(-3px, 6px) rotate(1.5deg);
  }
  92% {
    transform: translate(-8px, -10px) rotate(-3.5deg);
  }
  94% {
    transform: translate(-8px, -7px) rotate(2.5deg);
  }
  96% {
    transform: translate(-2px, 1px) rotate(2.5deg);
  }
  98% {
    transform: translate(-3px, 4px) rotate(-2.5deg);
  }
}
@keyframes shake-horizontal {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(-7px, 0px) rotate(0deg);
  }
  4% {
    transform: translate(7px, 0px) rotate(0deg);
  }
  6% {
    transform: translate(5px, 0px) rotate(0deg);
  }
  8% {
    transform: translate(9px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(9px, 0px) rotate(0deg);
  }
  12% {
    transform: translate(3px, 0px) rotate(0deg);
  }
  14% {
    transform: translate(9px, 0px) rotate(0deg);
  }
  16% {
    transform: translate(-6px, 0px) rotate(0deg);
  }
  18% {
    transform: translate(8px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(0deg);
  }
  22% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  24% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  26% {
    transform: translate(-6px, 0px) rotate(0deg);
  }
  28% {
    transform: translate(-5px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(-4px, 0px) rotate(0deg);
  }
  32% {
    transform: translate(-10px, 0px) rotate(0deg);
  }
  34% {
    transform: translate(9px, 0px) rotate(0deg);
  }
  36% {
    transform: translate(4px, 0px) rotate(0deg);
  }
  38% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  40% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  42% {
    transform: translate(2px, 0px) rotate(0deg);
  }
  44% {
    transform: translate(-4px, 0px) rotate(0deg);
  }
  46% {
    transform: translate(8px, 0px) rotate(0deg);
  }
  48% {
    transform: translate(-6px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(4px, 0px) rotate(0deg);
  }
  52% {
    transform: translate(-5px, 0px) rotate(0deg);
  }
  54% {
    transform: translate(6px, 0px) rotate(0deg);
  }
  56% {
    transform: translate(-5px, 0px) rotate(0deg);
  }
  58% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  60% {
    transform: translate(3px, 0px) rotate(0deg);
  }
  62% {
    transform: translate(5px, 0px) rotate(0deg);
  }
  64% {
    transform: translate(-4px, 0px) rotate(0deg);
  }
  66% {
    transform: translate(-8px, 0px) rotate(0deg);
  }
  68% {
    transform: translate(4px, 0px) rotate(0deg);
  }
  70% {
    transform: translate(-5px, 0px) rotate(0deg);
  }
  72% {
    transform: translate(7px, 0px) rotate(0deg);
  }
  74% {
    transform: translate(-5px, 0px) rotate(0deg);
  }
  76% {
    transform: translate(1px, 0px) rotate(0deg);
  }
  78% {
    transform: translate(8px, 0px) rotate(0deg);
  }
  80% {
    transform: translate(8px, 0px) rotate(0deg);
  }
  82% {
    transform: translate(7px, 0px) rotate(0deg);
  }
  84% {
    transform: translate(-10px, 0px) rotate(0deg);
  }
  86% {
    transform: translate(9px, 0px) rotate(0deg);
  }
  88% {
    transform: translate(-1px, 0px) rotate(0deg);
  }
  90% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  92% {
    transform: translate(-2px, 0px) rotate(0deg);
  }
  94% {
    transform: translate(5px, 0px) rotate(0deg);
  }
  96% {
    transform: translate(5px, 0px) rotate(0deg);
  }
  98% {
    transform: translate(-8px, 0px) rotate(0deg);
  }
}
@keyframes shake-vertical {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(0px, -2px) rotate(0deg);
  }
  4% {
    transform: translate(0px, -3px) rotate(0deg);
  }
  6% {
    transform: translate(0px, 9px) rotate(0deg);
  }
  8% {
    transform: translate(0px, 7px) rotate(0deg);
  }
  10% {
    transform: translate(0px, -6px) rotate(0deg);
  }
  12% {
    transform: translate(0px, 6px) rotate(0deg);
  }
  14% {
    transform: translate(0px, -3px) rotate(0deg);
  }
  16% {
    transform: translate(0px, 6px) rotate(0deg);
  }
  18% {
    transform: translate(0px, 8px) rotate(0deg);
  }
  20% {
    transform: translate(0px, 9px) rotate(0deg);
  }
  22% {
    transform: translate(0px, -4px) rotate(0deg);
  }
  24% {
    transform: translate(0px, -7px) rotate(0deg);
  }
  26% {
    transform: translate(0px, -9px) rotate(0deg);
  }
  28% {
    transform: translate(0px, 7px) rotate(0deg);
  }
  30% {
    transform: translate(0px, 7px) rotate(0deg);
  }
  32% {
    transform: translate(0px, 6px) rotate(0deg);
  }
  34% {
    transform: translate(0px, 4px) rotate(0deg);
  }
  36% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  38% {
    transform: translate(0px, 4px) rotate(0deg);
  }
  40% {
    transform: translate(0px, 7px) rotate(0deg);
  }
  42% {
    transform: translate(0px, -5px) rotate(0deg);
  }
  44% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  46% {
    transform: translate(0px, -2px) rotate(0deg);
  }
  48% {
    transform: translate(0px, -5px) rotate(0deg);
  }
  50% {
    transform: translate(0px, -4px) rotate(0deg);
  }
  52% {
    transform: translate(0px, 1px) rotate(0deg);
  }
  54% {
    transform: translate(0px, -1px) rotate(0deg);
  }
  56% {
    transform: translate(0px, -2px) rotate(0deg);
  }
  58% {
    transform: translate(0px, 5px) rotate(0deg);
  }
  60% {
    transform: translate(0px, 6px) rotate(0deg);
  }
  62% {
    transform: translate(0px, -3px) rotate(0deg);
  }
  64% {
    transform: translate(0px, -3px) rotate(0deg);
  }
  66% {
    transform: translate(0px, -9px) rotate(0deg);
  }
  68% {
    transform: translate(0px, -8px) rotate(0deg);
  }
  70% {
    transform: translate(0px, -7px) rotate(0deg);
  }
  72% {
    transform: translate(0px, 5px) rotate(0deg);
  }
  74% {
    transform: translate(0px, 5px) rotate(0deg);
  }
  76% {
    transform: translate(0px, -6px) rotate(0deg);
  }
  78% {
    transform: translate(0px, 8px) rotate(0deg);
  }
  80% {
    transform: translate(0px, 2px) rotate(0deg);
  }
  82% {
    transform: translate(0px, -8px) rotate(0deg);
  }
  84% {
    transform: translate(0px, -6px) rotate(0deg);
  }
  86% {
    transform: translate(0px, 5px) rotate(0deg);
  }
  88% {
    transform: translate(0px, -9px) rotate(0deg);
  }
  90% {
    transform: translate(0px, 1px) rotate(0deg);
  }
  92% {
    transform: translate(0px, -9px) rotate(0deg);
  }
  94% {
    transform: translate(0px, -8px) rotate(0deg);
  }
  96% {
    transform: translate(0px, -3px) rotate(0deg);
  }
  98% {
    transform: translate(0px, 1px) rotate(0deg);
  }
}
@keyframes shake-rotate {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  4% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  6% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  8% {
    transform: translate(0px, 0px) rotate(4.5deg);
  }
  10% {
    transform: translate(0px, 0px) rotate(-5.5deg);
  }
  12% {
    transform: translate(0px, 0px) rotate(-3.5deg);
  }
  14% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  16% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  18% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  20% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  22% {
    transform: translate(0px, 0px) rotate(6.5deg);
  }
  24% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  26% {
    transform: translate(0px, 0px) rotate(-5.5deg);
  }
  28% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  32% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  34% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  36% {
    transform: translate(0px, 0px) rotate(6.5deg);
  }
  38% {
    transform: translate(0px, 0px) rotate(-6.5deg);
  }
  40% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  42% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  44% {
    transform: translate(0px, 0px) rotate(5.5deg);
  }
  46% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  48% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  50% {
    transform: translate(0px, 0px) rotate(5.5deg);
  }
  52% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  54% {
    transform: translate(0px, 0px) rotate(5.5deg);
  }
  56% {
    transform: translate(0px, 0px) rotate(-7.5deg);
  }
  58% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  60% {
    transform: translate(0px, 0px) rotate(6.5deg);
  }
  62% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  64% {
    transform: translate(0px, 0px) rotate(-7.5deg);
  }
  66% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
  68% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  70% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  72% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  74% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  76% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
  78% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(-3.5deg);
  }
  82% {
    transform: translate(0px, 0px) rotate(5.5deg);
  }
  84% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  86% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  88% {
    transform: translate(0px, 0px) rotate(4.5deg);
  }
  90% {
    transform: translate(0px, 0px) rotate(5.5deg);
  }
  92% {
    transform: translate(0px, 0px) rotate(4.5deg);
  }
  94% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  96% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  98% {
    transform: translate(0px, 0px) rotate(-7.5deg);
  }
}
@keyframes shake-opacity {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.6;
  }
  10% {
    transform: translate(-2px, -1px) rotate(-0.5deg);
    opacity: 0.5;
  }
  20% {
    transform: translate(-4px, 4px) rotate(1.5deg);
    opacity: 0.4;
  }
  30% {
    transform: translate(-4px, -1px) rotate(-1.5deg);
    opacity: 0.8;
  }
  40% {
    transform: translate(-2px, -1px) rotate(-2.5deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(-4px, 1px) rotate(-2.5deg);
    opacity: 0.5;
  }
  60% {
    transform: translate(-2px, 4px) rotate(0.5deg);
    opacity: 0.1;
  }
  70% {
    transform: translate(-3px, 1px) rotate(-0.5deg);
    opacity: 0.4;
  }
  80% {
    transform: translate(0px, 0px) rotate(-0.5deg);
    opacity: 0.5;
  }
  90% {
    transform: translate(2px, -1px) rotate(-2.5deg);
    opacity: 0.8;
  }
}
@keyframes shake-crazy {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.4;
  }
  10% {
    transform: translate(3px, 10px) rotate(-1deg);
    opacity: 0.8;
  }
  20% {
    transform: translate(5px, 14px) rotate(-3deg);
    opacity: 0.5;
  }
  30% {
    transform: translate(14px, 3px) rotate(4deg);
    opacity: 0.6;
  }
  40% {
    transform: translate(-17px, 0px) rotate(9deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(1px, 17px) rotate(-4deg);
    opacity: 0.7;
  }
  60% {
    transform: translate(9px, -4px) rotate(-10deg);
    opacity: 0.2;
  }
  70% {
    transform: translate(13px, 7px) rotate(7deg);
    opacity: 0.4;
  }
  80% {
    transform: translate(10px, 12px) rotate(9deg);
    opacity: 0.1;
  }
  90% {
    transform: translate(0px, 3px) rotate(5deg);
    opacity: 0.6;
  }
}
#svg-wwwzne {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  padding: 0.2rem 1rem;
  transform: translate(50%, 50%) rotate(-45deg);
  background: var(--bg-color-minor);
}
#svg-wwwzne g {
  animation: fill 10s forwards infinite;
}
#svg-wwwzne g path:nth-child(1) {
  stroke-dasharray: 743;
  stroke-dashoffset: 743;
  animation: line-anm 2s forwards 300ms;
}
#svg-wwwzne g path:nth-child(2) {
  stroke-dasharray: 743;
  stroke-dashoffset: 743;
  animation: line-anm 2s forwards 600ms;
}
#svg-wwwzne g path:nth-child(3) {
  stroke-dasharray: 743;
  stroke-dashoffset: 743;
  animation: line-anm 2s forwards 700ms;
}
#svg-wwwzne g path:nth-child(4) {
  stroke-dasharray: 518;
  stroke-dashoffset: 518;
  animation: line-anm 2s forwards 900ms;
}
#svg-wwwzne g path:nth-child(5) {
  stroke-dasharray: 514;
  stroke-dashoffset: 514;
  animation: line-anm 2s forwards 1s;
}
#svg-wwwzne g path:nth-child(6) {
  stroke-dasharray: 614;
  stroke-dashoffset: 614;
  animation: line-anm 2s forwards 1s;
}
@keyframes line-anm {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  0% {
    fill: transparent;
  }
  25% {
    fill: rgba(149, 209, 108, 0.87);
  }
  75% {
    fill: rgb(72, 189, 225);
  }
  100% {
    fill: transparent;
  }
}

/*# sourceMappingURL=main.css.map */
