body {
  background: #000;
}

.floating-input {
  background: #222;
}
.floating-input .my-profile {
  color: #fff;
}
.floating-input .write-comment {
  background: #333;
  color: #fff;
}
.floating-input .write-comment::placeholder {
  color: #a7a9ab;
}
.floating-input .a-profile {
  color: #fff;
}
.floating-input .anon-switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
  transform: translate(0, -6px);
}
.floating-input .anon-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 600ms;
  transition: 600ms;
  border-radius: 34px;
}
.floating-input .anon-slider:before {
  background-size: contain;
  box-shadow: 0 0 2px #0005;
  position: absolute;
  content: "";
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  left: 1px;
  bottom: 1px;
  -webkit-transition: transform 400ms;
  transition: transform 400ms;
  border-radius: 50%;
}
.floating-input input:not(:checked) + .anon-slider:before {
  background: #fff url(/static/img/anon.svg) center no-repeat;
  background-size: contain;
}
.floating-input input:checked + .anon-slider {
  background: #fd0;
}
.floating-input input:checked + .anon-slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

/*# sourceMappingURL=dark.css.map */
