input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

label {
  cursor: pointer;
  text-indent: -9999px;
  width: 55px;
  height: 30px;
  background: #ebebeb;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: relative;
}

label:after {
  content: "";
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 4px;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
}

input:checked + label {
  background: #00709F;
}

input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.night {
  background-color: #151515;
  color: #fff;
}
.night .dark-mode-toggler {
  background: linear-gradient(#212121, #212121, #151515);
}
.night .login-dark-mode-toggler {
  background: #282828;
}
.night .modal-content {
  background-color: #151515;
}
.night .assessment ul hr {
  background: #d0d0d0;
}
.night .custom-shape-divider-bottom-1676187597 .shape-fill {
  fill: #151515;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 200ms ease-out;
  transition-delay: 0 !important;
}/*# sourceMappingURL=dark.css.map */