@charset "UTF-8";
.changelog h1 {
  font-size: 2em;
  line-height: 2em;
  font-weight: bold;
}
.changelog h2 {
  font-size: 1.5em;
  line-height: 1.5em;
}
.changelog h3, .changelog h4 {
  font-size: 1.25em;
  line-height: 1.25em;
}
.changelog h4:after {
  content: ":";
}
.changelog h2, .changelog h3, .changelog h4, .changelog h5, .changelog h6 {
  padding-top: 1em;
}
.changelog li:before {
  content: "- ";
}
.changelog code {
  background: rgba(112, 112, 112, 0.2);
  word-wrap: break-word;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 0.1rem 0.3rem 0.2rem;
  border-radius: 0.2rem;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.loading-animation span {
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.loading-animation span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-animation span:nth-child(3) {
  animation-delay: 0.4s;
}

@media (prefers-color-scheme: dark) {
  .authentication {
    background-color: #12263f;
  }
}
.switch {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  height: 16px;
}
.switch span:not(.slider) {
  position: relative;
  top: -2px;
  cursor: pointer;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  width: 42px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 50%, #dee2e6 50%, #dee2e6 100%);
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: -1px;
  bottom: -4px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.switch input:checked + .slider {
  background-position: 100% 0;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}
.switch input:checked + .slider:before {
  content: "✓";
  color: var(--color-primary);
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  transform: translateX(20px);
}
