.VatSwitcher {
    display: flex;
    align-items: center;
    position: relative;
}

.VatSwitcher__input {
    position: absolute;
    left: -999em;
}

.VatSwitcher__label {
    position: relative;
    color: rgba(0,0,0,0.60);
    line-height: 1.2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
}

.VatSwitcher__label--exclude {
    padding-right: 3.5rem;
}

.VatSwitcher__label--include {
    padding-left: 3.5rem;
    margin-left: -3rem;
}

.VatSwitcher__input:checked + .VatSwitcher__label {
    color: #ae1421;
    z-index: 1;
}

.VatSwitcher__input:focus + .VatSwitcher__label {
    text-decoration: underline;
}

/* Toggle */
.VatSwitcher__label--exclude:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 1.2rem;
    border-radius: 500rem;
    background-color: #ae1421;
    transform: none;
    z-index: 1;
}

.VatSwitcher__label--exclude:after {
    content: ''!important;
    position: absolute;
    top: 0.2rem;
    right: 0.25rem;
    width: 0.8rem;
    height: 0.8rem;
    opacity: 1;
    border: none;
    border-radius: 500rem;
    background: #fff;
    z-index: 2;
    transition: left .3s ease;
}

.VatSwitcher__input:checked + .VatSwitcher__label:after {
    right: 1.95rem;
}
