.md-switch-container {
  height: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.md-switch-container .md-transition {
  transition: all 100ms linear;
}
.md-switch-container .md-switch-track {
  width: 34px;
  height: 14px;
  border-radius: 34px;
  background: #9e9e9e;
  transition: all 100ms linear;
}
.md-switch-container .md-switch-handle {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  border-radius: 100%;
  background: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  transition: all 100ms linear;
}

.md-switch-container .md-switch-label {
  margin-left: 10px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
}
.md-switch-container.checked .md-switch-track {
  background: #ffF04800;
}
.md-switch-container.checked .md-switch-handle {
  left: 14px;
  background: #00ac98;
}

.md-switch-container.disabled .md-switch-handle {
  background: #f9f9f9;
}

.md-switch-container.checked.disabled .md-switch-handle {
  background: #ffc5b7;
}

.md-switch-container.disabled .md-switch-track {
  background: #e8e8e8;
}

.md-switch-container.checked.disabled .md-switch-track {
  background: rgba(255, 82, 82, 0.1);
}

.md-switch-container.disabled {
  cursor: not-allowed;
}