.switch .slide-button,
.toggle p span {
  display: none;
}
@media only screen {
  .toggle {
    position: relative;
    padding: 0;
    margin-left: 100px;
  }
  .toggle label {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
  }
  .toggle input {
    position: absolute;
    opacity: 0;
    z-index: 5;
  }
  .toggle p {
    position: absolute;
    left: -100px;
    width: 100%;
    margin: 0;
    padding-right: 100px;
    text-align: left;
  }
  .toggle p span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: block;
    width: 50%;
    margin-left: 100px;
    text-align: center;
  }
  .toggle p span:last-child {
    left: 50%;
  }
  .toggle .slide-button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    display: block;
    width: 50%;
    height: 100%;
    padding: 0;
  }
  .switch {
    position: relative;
    padding: 0;
  }
  .switch input {
    position: absolute;
    opacity: 0;
  }
  .switch label {
    position: relative;
    z-index: 2;
    float: left;
    width: 50%;
    height: 100%;
    margin: 0;
    text-align: center;
  }
  .switch .slide-button {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
  }
  .switch input:last-of-type:checked ~ .slide-button {
    left: 50%;
  }
  .switch.switch-three label,
  .switch.switch-three .slide-button {
    width: 33.3%;
  }
  .switch.switch-three input:checked:nth-of-type(2) ~ .slide-button {
    left: 33.3%;
  }
  .switch.switch-three input:checked:last-of-type ~ .slide-button {
    left: 66.6%;
  }
  .switch.switch-four label,
  .switch.switch-four .slide-button {
    width: 25%;
  }
  .switch.switch-four input:checked:nth-of-type(2) ~ .slide-button {
    left: 25%;
  }
  .switch.switch-four input:checked:nth-of-type(3) ~ .slide-button {
    left: 50%;
  }
  .switch.switch-four input:checked:last-of-type ~ .slide-button {
    left: 75%;
  }
  .switch.switch-five label,
  .switch.switch-five .slide-button {
    width: 20%;
  }
  .switch.switch-five input:checked:nth-of-type(2) ~ .slide-button {
    left: 20%;
  }
  .switch.switch-five input:checked:nth-of-type(3) ~ .slide-button {
    left: 40%;
  }
  .switch.switch-five input:checked:nth-of-type(4) ~ .slide-button {
    left: 60%;
  }
  .switch.switch-five input:checked:last-of-type ~ .slide-button {
    left: 80%;
  }
  .toggle,
  .switch {
    display: block;
    height: 30px;
  }
  .switch *,
  .toggle * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  .switch .slide-button,
  .toggle .slide-button {
    display: block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .toggle label,
  .toggle p,
  .switch label {
    line-height: 30px;
    vertical-align: middle;
  }
  .toggle input:checked ~ .slide-button {
    right: 50%;
  }
  .toggle input:focus ~ .slide-button,
  .switch input:focus + label {
    outline: 1px dotted #888;
  }
  .switch,
  .toggle {
    -webkit-animation: bugfix infinite 1s;
  }
  @-webkit-keyframes bugfix {
    from {
      position: relative;
    }
    to {
      position: relative;
    }
  }
  .switch.candy,
  .toggle.candy {
    background-color: #2d3035;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 1px #191b1e;
    border-radius: 3px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.3), 0 1px 0px rgba(255,255,255,0.2);
  }
  .switch.candy input:checked + label,
  .toggle.candy input:checked + label {
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  }
  .switch.candy .slide-button,
  .toggle.candy .slide-button {
    border: 1px solid #333;
    background-color: #70c66b;
    background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.2),rgba(0,0,0,0));
    background-image: -moz-linear-gradient(top,rgba(255,255,255,0.2),rgba(0,0,0,0));
    background-image: -ms-linear-gradient(top,rgba(255,255,255,0.2),rgba(0,0,0,0));
    background-image: -o-linear-gradient(top,rgba(255,255,255,0.2),rgba(0,0,0,0));
    background-image: linear-gradient(top,rgba(255,255,255,0.2),rgba(0,0,0,0));
    box-shadow: 0 1px 1px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.45);
    border-radius: 3px;
  }
  .switch.candy p,
  .toggle.candy p {
    color: #333;
    text-shadow: none;
  }
  .switch.candy span,
  .toggle.candy span {
    color: #fff;
  }
  .switch.candy.blue .slide-button,
  .toggle.candy.blue .slide-button {
    background-color: #38a3d4;
  }
  .switch.candy.yellow .slide-button,
  .toggle.candy.yellow .slide-button {
    background-color: #f5e560;
  }
  .switch.android,
  .toggle.android {
    background-color: #b6b6b6;
    color: #fff;
  }
  .android.toggle {
    border: 2px solid #b6b6b6;
  }
  .android.switch {
    overflow: hidden;
  }
  .android.switch .slide-button {
    background-color: #279fca;
    -webkit-transform: skew(20deg) translateX(10px);
    -moz-transform: skew(20deg) translateX(10px);
    -ms-transform: skew(20deg) translateX(10px);
    -o-transform: skew(20deg) translateX(10px);
    transform: skew(20deg) translateX(10px);
  }
  .android.toggle .slide-button {
    border-radius: 2px;
    background-color: #848484;
  }
  .android.toggle input:first-of-type:checked ~ .slide-button {
    background-color: #279fca;
  }
  .android.switch input:first-of-type:checked ~ .slide-button {
    -webkit-transform: skew(20deg) translateX(-10px);
    -moz-transform: skew(20deg) translateX(-10px);
    -ms-transform: skew(20deg) translateX(-10px);
    -o-transform: skew(20deg) translateX(-10px);
    transform: skew(20deg) translateX(-10px);
  }
  .switch.android p,
  .toggle.android p {
    color: #333;
  }
  .switch.android span,
  .toggle.android span {
    color: #fff;
  }
  .android.switch,
  .switch.android span,
  .toggle.android span {
    text-transform: uppercase;
  }
  .android.switch input {
    top: 0;
    left: 0;
  }
  .switch.ios,
  .toggle.ios {
    background: -webkit-linear-gradient(top,#cfcfcf,#efefef 50%,#f9f9f9 50%,#fefefe);
    background: -moz-linear-gradient(top,#cfcfcf,#efefef 50%,#f9f9f9 50%,#fefefe);
    background: -o-linear-gradient(top,#cfcfcf,#efefef 50%,#f9f9f9 50%,#fefefe);
    background: -ms-linear-gradient(top,#cfcfcf,#efefef 50%,#f9f9f9 50%,#fefefe);
    background: linear-gradient(top,#cfcfcf,#efefef 50%,#f9f9f9 50%,#fefefe);
    -webkit-box-shadow: inset 0 2px 2px #b6b6b6, inset 3px 0 3px #b6b6b6;
    box-shadow: inset 0 2px 2px #b6b6b6, inset 3px 0 3px #b6b6b6;
    border: 1px solid #efefef;
    border-radius: 3px;
    color: #7f7f7f;
    font: bold 14px sans-serif;
    text-align: center;
    text-shadow: none;
  }
  .ios.toggle .slide-button {
    border: 1px solid #919191;
    background: -webkit-linear-gradient(top,#cdcdcd,#fbfbfb);
    background: -moz-linear-gradient(top,#cdcdcd,#fbfbfb);
    background: -o-linear-gradient(top,#cdcdcd,#fbfbfb);
    background: -ms-linear-gradient(top,#cdcdcd,#fbfbfb);
    background: linear-gradient(top,#cdcdcd,#fbfbfb);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 0 #f0f0f0;
    box-shadow: inset 0 1px 0 #f0f0f0;
  }
  .ios.toggle input:first-of-type:checked ~ p span:first-child,
  .ios.switch input:checked + label {
    color: #fff;
    text-shadow: 0 -1px 0 #1b3b6f;
  }
  .ios.toggle input:first-of-type:checked ~ .slide-button,
  .ios.switch .slide-button {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #006dcc;
    background-image: -moz-linear-gradient(top,#08c,#0044cc);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0044cc));
    background-image: -webkit-linear-gradient(top,#08c,#0044cc);
    background-image: -o-linear-gradient(top,#08c,#0044cc);
    background-image: linear-gradient(to bottom,#08c,#0044cc);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0043cc', GradientType=0);
    border-color: #0044cc #0044cc #002a80;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    *background-color: #0044cc;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  }
  .ios.toggle input:first-of-type:checked ~ .slide-button:hover,
  .ios.toggle input:first-of-type:checked ~ .slide-button:focus,
  .ios.toggle input:first-of-type:checked ~ .slide-button:active,
  .ios.toggle input:first-of-type:checked ~ .slide-button.active,
  .ios.toggle input:first-of-type:checked ~ .slide-button.disabled,
  .ios.toggle input:first-of-type:checked ~ .slide-button[disabled],
  .ios.switch .slide-button:hover,
  .ios.switch .slide-button:focus,
  .ios.switch .slide-button:active,
  .ios.switch .slide-button.active,
  .ios.switch .slide-button.disabled,
  .ios.switch .slide-button[disabled] {
    color: #fff;
    background-color: #0044cc;
    *background-color: #003bb3;
  }
  .ios.toggle input:first-of-type:checked ~ .slide-button:active,
  .ios.toggle input:first-of-type:checked ~ .slide-button.active,
  .ios.switch .slide-button:active,
  .ios.switch .slide-button.active {
    background-color: #003399 \9;
  }
  .ios.toggle p span {
    color: #7f7f7f;
  }
}
