/* ==================================== Default =========================================== */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000000;
}

body {
  height: 100%;
  overflow-y: hidden;
}

/* ==================================== Page Loader =========================================== */

.loader-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  --duration: 1.5s;
  --container-size: 250px;
  --box-size: 33px;
  --box-border-radius: 15%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2f2f2f;
  z-index: 100;
}

.container {
  width: var(--container-size);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.📦 {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: block;
  -webkit-transform-origin: -50% center;
  transform-origin: -50% center;
  border-radius: var(--box-border-radius);
}
.📦:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: lightblue;
  border-radius: var(--box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(28, 159, 255, 0.4);
}
.📦:nth-child(1) {
  -webkit-animation: slide var(--duration) ease-in-out infinite alternate;
  animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
  -webkit-animation: color-change var(--duration) ease-in-out infinite alternate;
  animation: color-change var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2) {
  -webkit-animation: flip-1 var(--duration) ease-in-out infinite alternate;
  animation: flip-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  -webkit-animation: squidge-1 var(--duration) ease-in-out infinite alternate;
  animation: squidge-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3) {
  -webkit-animation: flip-2 var(--duration) ease-in-out infinite alternate;
  animation: flip-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
  -webkit-animation: squidge-2 var(--duration) ease-in-out infinite alternate;
  animation: squidge-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4) {
  -webkit-animation: flip-3 var(--duration) ease-in-out infinite alternate;
  animation: flip-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
  -webkit-animation: squidge-3 var(--duration) ease-in-out infinite alternate;
  animation: squidge-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5) {
  -webkit-animation: flip-4 var(--duration) ease-in-out infinite alternate;
  animation: flip-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
  -webkit-animation: squidge-4 var(--duration) ease-in-out infinite alternate;
  animation: squidge-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  background-color: #1c9fff;
}
.📦:nth-child(3):after {
  background-color: #1fb1fd;
}
.📦:nth-child(4):after {
  background-color: #22c7fb;
}
.📦:nth-child(5):after {
  background-color: #23d3fb;
}

@-webkit-keyframes slide {
  0% {
    background-color: #1795ff;
    -webkit-transform: translatex(0vw);
    transform: translatex(0vw);
  }
  100% {
    background-color: #23d3fb;
    -webkit-transform: translatex(
      calc(var(--container-size) - (var(--box-size) * 1.25))
    );
    transform: translatex(
      calc(var(--container-size) - (var(--box-size) * 1.25))
    );
  }
}

@keyframes slide {
  0% {
    background-color: #1795ff;
    -webkit-transform: translatex(0vw);
    transform: translatex(0vw);
  }
  100% {
    background-color: #23d3fb;
    -webkit-transform: translatex(
      calc(var(--container-size) - (var(--box-size) * 1.25))
    );
    transform: translatex(
      calc(var(--container-size) - (var(--box-size) * 1.25))
    );
  }
}
@-webkit-keyframes color-change {
  0% {
    background-color: #1795ff;
  }
  100% {
    background-color: #23d3fb;
  }
}
@keyframes color-change {
  0% {
    background-color: #1795ff;
  }
  100% {
    background-color: #23d3fb;
  }
}
@-webkit-keyframes flip-1 {
  0%,
  15% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  35%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@keyframes flip-1 {
  0%,
  15% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  35%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-1 {
  5% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  15% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  25%,
  20% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  55%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  40% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-1 {
  5% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  15% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  25%,
  20% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  55%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  40% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-2 {
  0%,
  30% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@keyframes flip-2 {
  0%,
  30% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-2 {
  20% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  30% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  40%,
  35% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  70%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  55% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-2 {
  20% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  30% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  40%,
  35% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  70%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  55% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-3 {
  0%,
  45% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  65%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@keyframes flip-3 {
  0%,
  45% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  65%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-3 {
  35% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  45% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  55%,
  50% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  85%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  70% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-3 {
  35% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  45% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  55%,
  50% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  85%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  70% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-4 {
  0%,
  60% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  80%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@keyframes flip-4 {
  0%,
  60% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  80%,
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-4 {
  50% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  60% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  70%,
  65% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  85% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-4 {
  50% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  60% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
  70%,
  65% {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  100% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
    transform: scalex(1) scaley(1);
  }
  85% {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
    transform: scalex(1.3) scaley(0.7);
  }
}

/* ==================================== All Content =========================================== */
#content-container {
  display: none;
}

/* ==================================== Navigation Bar =========================================== */
.navbar {
  position: fixed;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 0px 3%;
  z-index: 99;
}

.brand-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin: 1rem;
}

.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  transition: width 2s;
}

.navbar-links ul li {
  list-style: none;
}

.navbar-links ul li a {
  text-decoration: none;
  color: #ffffff;
  margin: 1rem;
  display: block;
}

.navbar-links ul li a:hover {
  color: rgb(170, 170, 170);
}

.toggle-button {
  position: absolute;
  top: 1.2rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
}

.underline {
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}

.underline::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgb(170, 170, 170);
  transition: width 0.3s;
}

.underline:hover::after {
  width: 100%;
  transition: width 0.3s;
}

@media screen and (max-width: 600px) {
  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    margin: 0;
    padding: 1rem;
  }

  .navbar-links ul li a:hover {
    color: rgb(170, 170, 170);
  }

  .navbar-links.active {
    display: flex;
  }

  .underline:hover::after {
    width: 0;
  }
}

/* ==================================== Sections =========================================== */
.section {
  display: flex;
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background: #000000;
}

#dailies {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 25%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("../assets/img/dailies_background.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding: 80px 0px;
}

#weeklies {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 25%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("../assets/img/weeklies_background.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding: 80px 0px;
}

.dailies-wrapper,
.weeklies-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/* ==================================== Countdown Clocks =========================================== */
#dailies--clock,
#weeklies--clock--boss,
#weeklies--clock--other {
  font-family: sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
  border-radius: 10px;
  background: rgba(7, 7, 7, 0.25);
  margin: 20px;
}

#dailies--clock > div,
#weeklies--clock--boss > div,
#weeklies--clock--other > div {
  padding: 10px;
  border-radius: 3px;
  display: inline-block;
}

#dailies--clock div > span,
#weeklies--clock--boss div > span,
#weeklies--clock--other div > span {
  padding: 10px;
  border-radius: 3px;
  display: inline-block;
}

.smalltext {
  font-size: 16px;
}

/* ==================================== Dailies =========================================== */
.dailies--subheading {
  text-align: center;
  font-family: "ZCOOL XiaoWei", sans-serif;
  font-size: 64px;
  font-weight: bolder;
  color: #ffc792;
  margin-bottom: 20px;
}
.dailies--container {
  justify-items: center;
  align-content: center;
  text-align: center;
}
.dailies--boss {
  margin-bottom: 30px;
}
.dailies--other {
  margin-top: 30px;
}
.dailies--boss_checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.dailies--other_checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.daily {
  margin: 10px 10px;
  -webkit-tap-highlight-color: transparent;
}
input.daily[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 100px;
  width: 100px;
  position: relative;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
input.daily[type="checkbox"]:not(:checked):before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  transition: 0.5s;
  transform: scale(1);
  z-index: -1;
}
input.daily[type="checkbox"]:not(:checked):hover:before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #fff59e;
  filter: blur(8px);
}
input.daily[type="checkbox"]:not(:checked):before:focus {
  outline: none;
}
input.daily[type="checkbox"]:focus {
  outline: none;
}
input.daily[type="checkbox"]:checked {
  animation: shake 0.35s;
  transition: 0.7s;
  filter: grayscale(100%) brightness(70%);
}
input.daily[type="checkbox"]:not(checked) {
  transition: 0s;
}

/* ==================================== Weeklies =========================================== */
.weeklies--subheading {
  text-align: center;
  font-family: "ZCOOL XiaoWei", sans-serif;
  font-size: 64px;
  font-weight: bolder;
  color: #ffc792;
}
.weeklies--boss {
  justify-items: center;
  align-content: center;
  text-align: center;
}
.weeklies--other {
  margin-top: 30px;
  justify-items: center;
  align-content: center;
  text-align: center;
}
.weeklies--boss_checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.weeklies--other_checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.weekly_other,
.weekly_boss {
  margin: 10px 10px;
  -webkit-tap-highlight-color: transparent;
}
input.weekly_other[type="checkbox"],
input.weekly_boss[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 100px;
  width: 100px;
  position: relative;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
input.weekly_other[type="checkbox"]:not(:checked):before,
input.weekly_boss[type="checkbox"]:not(:checked):before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ff2600;
  transition: 0.5s;
  transform: scale(1);
  z-index: -1;
}
input.weekly_other[type="checkbox"]:not(:checked):hover:before,
input.weekly_boss[type="checkbox"]:not(:checked):hover:before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #a200ff;
  filter: blur(8px);
}
input.weekly_other[type="checkbox"]:not(:checked):before:focus,
input.weekly_boss[type="checkbox"]:not(:checked):before:focus {
  outline: none;
}
input.weekly_other[type="checkbox"]:focus,
input.weekly_boss[type="checkbox"]:focus {
  outline: none;
}
input.weekly_other[type="checkbox"]:checked,
input.weekly_boss[type="checkbox"]:checked {
  animation: shake 0.35s;
  transition: 0.7s;
  filter: grayscale(100%) brightness(70%);
}
input.weekly_other[type="checkbox"]:not(checked),
input.weekly_boss[type="checkbox"]:not(checked) {
  transition: 0s;
}

@media (hover: none) {
  input.daily[type="checkbox"]:not(:checked):before,
  input.weekly_other[type="checkbox"]:not(:checked):before,
  input.weekly_boss[type="checkbox"]:not(:checked):before {
    width: 0;
    height: 0;
  }
}

/* ==================================== Animations =========================================== */
@keyframes shake {
  0% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  5% {
    transform: translate(-2px, 3px) rotate(-1deg);
  }
  10% {
    transform: translate(-4px, 0px) rotate(1deg);
  }
  15% {
    transform: translate(4px, 3px) rotate(0deg);
  }
  20% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  25% {
    transform: translate(-4px, 2px) rotate(-1deg);
  }
  30% {
    transform: translate(4px, 2px) rotate(0deg);
  }
  35% {
    transform: translate(-2px, -2px) rotate(1deg);
  }
  40% {
    transform: translate(2px, 3px) rotate(-1deg);
  }
  45% {
    transform: translate(2px, -3px) rotate(0deg);
  }
  50% {
    transform: translate(2px, 2px) rotate(-1deg);
  }
  55% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  60% {
    transform: translate(-2px, 3px) rotate(-1deg);
  }
  65% {
    transform: translate(-4px, 0px) rotate(1deg);
  }
  70% {
    transform: translate(4px, 3px) rotate(0deg);
  }
  75% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  80% {
    transform: translate(-4px, 2px) rotate(-1deg);
  }
  85% {
    transform: translate(4px, 2px) rotate(0deg);
  }
  90% {
    transform: translate(-2px, -2px) rotate(1deg);
  }
  95% {
    transform: translate(2px, 3px) rotate(-1deg);
  }
  100% {
    transform: translate(2px, -3px) rotate(0deg);
  }
}
