.future .switch {
  display: inline-block;
  height: 22px;
  position: relative;
  width: 75px;
  margin-bottom: 0;
  margin-left: 14px;
  margin-right: 4px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .future .switch .switcher-text {
    position: absolute;
    color: var(--white-color);
    font-size: 1em;
    right: 14px; }

.future .result-container {
  margin-left: 4px;
  width: 20px;
  height: 20px; }
  .future .result-container .Toastify__spinner {
    display: block; }

.future .switchBg {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  -webkit-transition: background-color .2s;
  -moz-transition: background-color .2s;
  transition: background-color .2s;
  border-radius: 34px;
  background-color: var(--error-color); }
  .future .switchBg.isChecked {
    background-color: var(--main-color); }

.future .switchInput {
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: transparent; }
  .future .switchInput:focus, .future .switchInput:active {
    outline: none;
    border: none; }

.future .label.label-before-toggle {
  font-weight: 500;
  margin: 0 5px;
  vertical-align: middle;
  cursor: pointer; }

.future .switchHandle {
  bottom: -4px;
  width: 30px;
  height: 30px;
  position: absolute;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translateX(0);
  outline: none;
  background-color: var(--white-color); }
  .future .switchHandle:active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 10px hsla(var(--main-color-h), var(--main-color-s), var(--main-color-l), 0.3);
    transition: all, 0.1s; }
  .future .switchHandle.isChecked {
    transform: translateX(40px);
    background-color: var(--main-color); }
    .future .switchHandle.isChecked + .switcher-text {
      left: 12px;
      text-align: start;
      right: auto; }

.future .switcher-no-target {
  height: 22px;
  width: 20px;
  z-index: 2;
  position: absolute;
  left: 0; }
