.dsds-switch {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 34px;
  }
  
  .dsds-switch:before {
    content: 'enabled';
    position: absolute;
    height: 18px;
    width: 50%;
    font-size: 12px;
    z-index: 1;
    float: left;
    left: 0;
    margin-top: 8px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.dsds-switch:after {
    content: 'disabled';
    position: absolute;
    height: 18px;
    width: 50%;
    font-size: 12px;
    z-index: 1;
    float: right;
    right: 0;
    margin-top: 8px;
    text-align: center;
    color: #8E969E;
    text-transform: uppercase;
    font-weight: bold;
}
/* Hide default HTML checkbox */
.dsds-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .dsds-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f4f4f4;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius:3px;
  }
  
  .dsds-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: calc(50% - 4px);
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius:3px;
    z-index:3;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  }
  
  input:checked + .dsds-slider {
    background-color: #2196F3;
  }
  
  input:focus + .dsds-slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .dsds-slider:before {
    left:50%;
  }