.onoffswitch {
  display: inline-block;
  position: relative;
  width: 50px;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  height: 30px;
  padding: 0;
  line-height: 30px;
  border-radius: 20px;
  background-color: $colorBordes;
  margin-bottom:0;
  box-shadow: inset 0 1px 3px 0 rgba(69, 64, 60, 0.25);
}

.onoffswitch-label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  background: #FFFFFF;
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 3px;
  border-radius: 20px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label {
  background-color: $brand-green;
  .onoffswitch-interactive & {
    background-color: $interactive-color;
  }
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  transform: translate3d(20px, 0, 0);
}
