/*_____________________________ GENERAL _____________________________*/
.can-toggle {
  position: relative; }
  .can-toggle input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0; }
    .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
      transform: translate3d(85px, 0, 0); }
    .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:before {
      content: attr(data-unchecked);
      left: 0; }
    .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
      content: attr(data-checked); }
  .can-toggle label {
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    max-width: 170px;
    font-size: 1em; }
    .can-toggle label .can-toggle__switch {
      position: relative;
      height: 30px;
      flex: 0 0 170px;
      border-radius: 4px;
      line-height: 30px;
      font-size: 12px;
      text-transform: uppercase;
      text-align: center; }
      .can-toggle label .can-toggle__switch:before {
        content: attr(data-checked);
        position: absolute;
        color: #2A3BA8;
        width: 85px;
        background: rgba(255, 255, 255, 0.5); }
      .can-toggle label .can-toggle__switch:after {
        content: attr(data-unchecked);
        position: absolute;
        z-index: 5;
        background: #2A3BA8;
        transform: translate3d(0, 0, 0);
        width: 85px;
        top: 0;
        right: 0;
        left: 0;
        color: #FFFFFF; }

/*# sourceMappingURL=switcher.css.map */
