


:root {
  --background-color: #101010;
  --element-background-color: #181818;
  --accent-background-color: #333333;
  --accent-dark-background-color: #282828;
  --font-color: #F2F2F2;
  --font-color-green: #09c22a;
}

[data-theme="light"] {
  --background-color: #F2F2F2;
  --element-background-color: #E5E5E5;
  --accent-background-color: #cfcfcf;
  --accent-dark-background-color: #BFBFBF;
  --font-color: #101010;
  --font-color-green: #048d1d;
}

@font-face {
  font-family: lobster;
  src: url('../font/Lobster-Regular.ttf');
}

* {
  color: var(--font-color);
  user-select: none;
}

body {
  background-color: var(--background-color);
}


@media (pointer: coarse) {

  * {
    cursor: none;
  }

}

.showItem {
  display: flex;
}

.hideItem {
  display: none;
}

@media only screen and (max-width: 500px) {
    .showItem {
      display: none;
    }
}

#loading {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 20;
  background-color: rgba(0, 0, 0, 1);
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
  transform: scale(0.5);
}
.lds-spinner div {
  transform-origin: 20px 30px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 6px;
  height: 18px;
  animation: loadingSpanAnimation linear 10s infinite;
  border-radius: 20%;
  background: #50e3ff;
}

@keyframes loadingSpanAnimation {
  0% {
    left: 0;
  }
  25% {
    left: 40px;
  }
  75% {
    left: -40px;
  }
  100% {
    left: 0px;
  }
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomInFadeIn {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

#theme-label input {
  display: none;
}

#theme-label div {
  z-index: 2;
  position: relative;
}

#theme-label::before {
  content: '';
  width: 45px;
  height: 14px;
  margin-top: 8px;
  margin-left: -20px;
  border-radius: 10px;
  display: block;
  position: absolute;
  background-color: #535353;
}


#theme-label input:checked + div {
  left: -22px;
}