/*
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 */
/*
 * Every style defined here must be mirrored with `writing-mode-horizontal-tb` mixin.
   Because writing-mode can be defined on 2 levels: a) item, b) text block or interaction;
     so if there's a horizontal block inside vertical item, vertical styles should *not* be used for it.
 */
/* 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 0.4s ease-out;
}
.switch input ~ label .off {
  color: white;
  background-color: #a4a9b1;
  transition: background-color 0.4s ease-out;
}
.switch input:checked ~ label .on {
  color: white;
  background-color: rgb(14, 93, 145);
  transition: background-color 0.4s ease-out;
}
.switch input:checked ~ label .off {
  color: #222;
  background-color: #f3f1ef;
  transition: background-color 0.4s ease-out;
}
.switch input:focus ~ label {
  border: solid 1px rgb(14, 93, 145);
}
.switch.monostyle input ~ label .off {
  color: white;
  background-color: rgb(14, 93, 145);
  transition: background-color 0.4s ease-out;
}
.switch.monostyle input:checked ~ label .off {
  color: #222;
  background-color: #f3f1ef;
  transition: background-color 0.4s ease-out;
}
/*# sourceMappingURL=switch.css.map */