.toggle {
  position: relative;
  display: inline-block;
  width: 78px;
  height: 40px;

  input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  &-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: $nobel-300;
    -webkit-transition: .4s;
    transition: .4s;

    &::before {
      position: absolute;
      content: "";
      height: 36px;
      width: 36px;
      left: 2px;
      bottom: 2px;
      background-color: $gallery-100;
      -webkit-transition: .4s;
      transition: .4s;
    }

    &.round {
      border-radius: 36px;

      &::before {
        border-radius: 50%;
      }
    }
  }

  input:checked + .toggle-slider {
    background-color: $sky-blue-500-20p;

    &::before {
      background-color: $sky-blue-500;
    }
  }

  input:checked + .toggle-slider::before {
    -webkit-transform: translateX(38px);
    -ms-transform: translateX(38px);
    transform: translateX(38px);
  }

  input:focus + .toggle-slider {
    box-shadow: 0 0 1px #2196F3;
  }

  &-wrapper {
    display: flex;
    align-items: center;
  }

  &-label {
    margin-left: $base-spacing-half;
  }
}
