﻿.cf-radio {
    width: 1rem;
    height: 1rem;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}
    .cf-radio:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .cf-radio[type=radio] {
        border-radius: 50%;
    }

    .cf-radio:checked[type=radio] {
        background-image: url(../../../icon/components/radio-center.svg);
    }

    .cf-radio:focus {
        outline: 2px solid white;
        box-shadow: 0 0 0 .25rem var(--primary-color-light);
    }