#app .wrap {
  position: relative;
}
#app .wrap .switch {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  width: 56px;
  height: 30px;
}
#app .wrap .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#app .wrap .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}
#app .wrap .switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  background-image: url("../img/icon/light-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  transition: 0.4s;
  border-radius: 50%;
}
#app .wrap .switch input:checked + .slider {
  background-color: #0F172A;
}
#app .wrap .switch input:checked + .slider:before {
  background-color: #475569;
  transform: translateX(26px);
  background-image: url("../img/icon/dark-icon.png");
}
#app .wrap .blink-caret {
  border-right: 0.1em solid;
  width: 26ch;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 6s steps(16, jump-end) infinite alternate, blink-caret 0.5s infinite alternate;
}
@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
#app .bottom a {
  transition: all 0.4s;
}/*# sourceMappingURL=index.css.map */