.efly-switch{
  display: inline-block;
  width: 50px;
  height: 26px;
  position: relative;
  border-radius: 26px;
  background: $color-text-placeholder;
  cursor: pointer;

  &:after{
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 100%;
    transition: all .3s;
    width: 22px;
    height: 22px;
    background: $color-white;
  }

  &.active{
    background: $color-primary;

    &:after{
      left: calc(100% - 24px);
    }
  }


}
