.angular-switch {
  background: #fff;
  border: 1px solid #dfdfdf;
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  overflow: visible;
  width: 60px;
  height: 20px;
  padding: 0px;
  margin: 0px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  top: -1px;
}
/*adding a wide width for larger angular-switch text*/
.angular-switch.wide {
  width:70px;
}
.angular-switch small {
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
}
.angular-switch.checked {
  background: rgb(100, 189, 99);
  border-color: rgb(100, 189, 99);
}
.angular-switch.checked small {
  left: 40px;
}
/*wider angular-switch text moves small further to the right*/
.angular-switch.wide.checked small {
  left:50px;
}
/*styles for angular-switch-text*/
.angular-switch .angular-switch-text {
  font-family:Arial, Helvetica, sans-serif, Microsoft Yahei;
  font-size:12px;
}

.angular-switch .off {
  display:block;
  position: absolute;
  right: 15%;
  top: 10%;
  z-index: 0;
  color:#A9A9A9;
}

.angular-switch .on {
  display:none;
  z-index: 0;
  color:#fff;
  position: absolute;
  top: 10%;
  left: 15%;
}

.angular-switch.checked .off {
  display:none;
}

.angular-switch.checked .on {
  display:block;

}

.angular-switch.disabled {
  opacity: .50;
  cursor: not-allowed;
}
