novo-radio-group {
    display: flex;
    >novo-radio {
        margin: 0;
        button {
            border-radius: 0 !important;
            &.unchecked {
                opacity: .5;
            }
            &[theme="icon"] i {
                margin-right: 0;
            }
        }
        &:first-child {
            button {
                border-top-left-radius: 3px;
                border-bottom-left-radius: 3px;
            }
        }
        &:last-child {
            button {
                border-top-right-radius: 3px;
                border-bottom-right-radius: 3px;
                border-right-width: 1px !important;
                border-right-style: solid !important;
                &[theme="icon"] {
                    border-right-width: 0px !important;
                }
            }
        }
    }
}

novo-radio {
    margin-right: 10px;
    &.vertical {
        display: block;
    }
    >input {
        position: absolute;
        z-index: -1;
        opacity: 0;
        &:focus+label {
            i {
                &:before {
                    text-shadow: 0px 0px 20px rgba(74, 137, 220, 0.50);
                }
                &.bhi-radio-empty,
                &.bhi-radio-filled {
                    color: $positive;
                }
            }
        }
    }
    >label {
        cursor: pointer;
        >div {
            display: inline;
        }
        i {
            margin-right: 5px;
            transition: all 200ms ease-in-out;
            &.bhi-checkbox-empty,
            &.bhi-radio-empty {
                color: #D2D2D2;
            }
            &.bhi-checkbox-filled,
            &.bhi-radio-filled {
                color: $positive;
            }
        }
    }
    button[theme].has-icon {
        opacity: .7;
        transition: all 100ms ease-in-out;
        &:hover {
            opacity: 1;
        }
        &.checked {
            color: $white;
            background: $positive;
            opacity: 1;
        }
    }
}
