.custom-theme-toggle {
  /*  Support me if you like it */
}
.custom-theme-toggle .checkbox {
  opacity: 0;
  position: absolute;
}
.custom-theme-toggle .checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-theme-toggle .fa-moon {
  color: #f1c40f;
}
.custom-theme-toggle .fa-sun {
  color: #f39c12;
}
.custom-theme-toggle .checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
.custom-theme-toggle .checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}
.custom-theme-toggle .support {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.custom-theme-toggle .support a {
  color: #292c35;
  font-size: 32px;
  backface-visibility: hidden;
  display: inline-block;
  transition: transform 0.2s ease;
}
.custom-theme-toggle .support a:hover {
  transform: scale(1.1);
}
.custom-theme-toggle .checkbox-label {
  transform: rotate(-90deg);
  position: fixed;
  bottom: 32px;
  left: 20px;
}/*# sourceMappingURL=custom.css.map */