.custom-switch-toggle {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
  float:right;
  margin: 0;
}
.custom-switch-toggle input {
  display:none;
}
.custom-switch-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.custom-switch-toggle .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.custom-switch-toggle input.default:checked + .slider {
  background-color: #343a40;
}
.custom-switch-toggle input.primary:checked + .slider {
  background-color: #7460EB;
}
.custom-switch-toggle input.success:checked + .slider {
  background-color: #55ce62;
}
.custom-switch-toggle input.info:checked + .slider {
  background-color: #2196F3;
}
.custom-switch-toggle input.warning:checked + .slider {
  background-color: #ffbc34;
}
.custom-switch-toggle input.danger:checked + .slider {
  background-color: #f62d51;
}
.custom-switch-toggle input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.custom-switch-toggle input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.custom-square-switch-toggle {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 32px;
  float:right;
  margin: 0;
}
.custom-square-switch-toggle input {
  display:none;
}
.custom-square-switch-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.custom-square-switch-toggle .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 28px;
  left: 3px;
  bottom: 3px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}
.custom-square-switch-toggle .slider:after {
  content: "";
  font-size: 12px;
  font-weight: 400;
  padding: 6px 8px;
  color: white;
  position: absolute;
  top: 1px;
}
.custom-square-switch-toggle input.default:checked + .slider {
  background-color: #343a40;
}
.custom-square-switch-toggle input.primary:checked + .slider {
  background-color: #7460EB;
}
.custom-square-switch-toggle input.success:checked + .slider {
  background-color: #55ce62;
}
.custom-square-switch-toggle input.info:checked + .slider {
  background-color: #2196F3;
}
.custom-square-switch-toggle input.warning:checked + .slider {
  background-color: #ffbc34;
}
.custom-square-switch-toggle input.danger:checked + .slider {
  background-color: #f62d51;
}
.custom-square-switch-toggle input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.custom-square-switch-toggle input + .slider:after {
  content: "OFF";
  left: auto;
  right: 0;
}
.custom-square-switch-toggle input:checked + .slider:after {
  content: "ON";
  left: 0;
  right: auto;
}
.custom-square-switch-toggle input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  left: 17px;
}
