@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox],
    input[type=radio] {
        --active: var(--primary);
        --active-inner: #fff;
        --input-border: var(--discret);
        --input-border-hover: var(--light);
        --background: trasparent;
        --disabled: #F5F9FF;
        --disabled-inner: #E4ECFA;
        height: 21px;
        outline: none;
        position: relative;
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        cursor: pointer;
        height: 21px;
        border: 1px solid var(--input-border);
        background: var(--background);
        transition: background 0.3s ease, border-color 0.3s ease;
    }

        input[type=checkbox]:after,
        input[type=radio]:after {
            content: "";
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform 0.3s ease, opacity 0.2s ease;
        }

        input[type=checkbox]:checked,
        input[type=radio]:checked {
            background: var(--active);
            border-color: var(--active);
        }

            input[type=checkbox]:checked:after,
            input[type=radio]:checked:after {
                transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
            }

        input[type=checkbox]:disabled,
        input[type=radio]:disabled {
            cursor: not-allowed;
            opacity: 0.7;
            background: var(--disabled);
        }

            input[type=checkbox]:disabled:checked,
            input[type=radio]:disabled:checked {
                background: var(--disabled-inner);
                border-color: var(--input-border);
            }

        input[type=checkbox]:hover:not(:checked):not(:disabled),
        input[type=radio]:hover:not(:checked):not(:disabled) {
            border-color: var(--input-border-hover);
        }

        input[type=checkbox]:not(.switch),
        input[type=radio]:not(.switch) {
            width: 21px;
        }

            input[type=checkbox]:not(.switch):after,
            input[type=radio]:not(.switch):after {
                opacity: 0;
            }

            input[type=checkbox]:not(.switch):checked:after,
            input[type=radio]:not(.switch):checked:after {
                opacity: 1;
            }

        input[type=checkbox]:not(.switch) {
            border-radius: 6px;
        }

            input[type=checkbox]:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(20deg);
            }

            input[type=checkbox]:not(.switch):checked:after {
                transform: rotate(43deg);
            }

        input[type=checkbox].switch {
            width: 38px;
            border-radius: 1.5rem;
        }

            input[type=checkbox].switch:after {
                left: 2px;
                top: 2px;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                background: var(--input-border);
            }

            input[type=checkbox].switch:checked:after {
                background: var(--active-inner);
                transform: translateX(17px);
            }

            input[type=checkbox].switch:disabled:not(:checked):after {
                background: var(--input-border);
            }

    input[type=radio] {
        border-radius: 50%;
    }

        input[type=radio]:after {
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: var(--active-inner);
            opacity: 0;
            transform: scale(0.7);
        }

        input[type=radio]:checked:after {
            background: var(--active-inner);
            transform: scale(0.5);
        }
}
