/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/* Do not edit */
.switch {
    display: inline-block;
    position: relative;
}

.switch input {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    cursor: pointer;
}

.switch label {
    border: solid 1px #a4a9b1;
    background-color: #f3f1ef;
    border-radius: 2px;
    padding: 1px;
}

.switch label span {
    display: inline-block;
    position: relative;
    min-width: 50px;
    border-radius: 2px;
    text-align: center;
}

.switch input ~ label .on {
    color: #222;
    background-color: #f3f1ef;
    transition: background-color .4s ease-out;
}

.switch input ~ label .off {
    color: white;
    background-color: #a4a9b1;
    transition: background-color .4s ease-out;
}

.switch input:checked ~ label .on {
    color: white;
    background-color: #0e5d91;
    transition: background-color .4s ease-out;
}

.switch input:checked ~ label .off {
    color: #222;
    background-color: #f3f1ef;
    transition: background-color .4s ease-out;
}

.switch input:focus ~ label {
    border: solid 1px #0e5d91;
}

.switch.monostyle input ~ label .off {
    color: white;
    background-color: #0e5d91;
    transition: background-color .4s ease-out;
}

.switch.monostyle input:checked ~ label .off {
    color: #222;
    background-color: #f3f1ef;
    transition: background-color .4s ease-out;
}

/*# sourceMappingURL=switch.css.map */