.switch {
  position: relative;
  z-index: 2;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #282828;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 2px;
  border: 0;
  font-family: 'Roboto Condensed', sans-serif;
  overflow: auto;
}
.switch .switch-label {
  position: relative;
  z-index: 2;
  padding: 0px !important;
  width: 70px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  margin: 0px;
  vertical-align: middle;
}
.switch .switch-input {
  display: none;
}
.switch .switch-input:checked + .switch-label {
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  -ms-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
}
.switch .switch-input:checked + .switch-label-go ~ .switch-selection {
  left: 123px;
  background-color: #00B400;
}
.switch .switch-selection {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 53px;
  display: block;
  width: 70px;
  height: 40px;
  border-radius: 3px;
  background-color: #E70000;
  opacity: 0.4;
  -webkit-transition: left 0.2s ease-out;
  -moz-transition: left 0.2s ease-out;
  -ms-transition: left 0.2s ease-out;
  -o-transition: left 0.2s ease-out;
  transition: left 0.2s ease-out;
}
