p-radiobutton {
    display: inline-flex;
    gap: 12px;
    margin: 4px 0;

    .p-radiobutton {
        .p-radiobutton-box {
            border: 1px solid #c1c1cc;
            background-color: #fff;
            border-radius: 50%;
            height: 20px;
            width: 20px;

            .p-radiobutton-icon {
                background-color: #fff;
                height: 12px;
                width: 12px;
            }
        }

        &-checked {
            .p-radiobutton-box {
                border: 5px solid #428bca;

                &:hover {
                    background-color: #063951;
                }
            }
        }

        .p-radiobutton-box:hover {
            border-color: #888b99;
        }

        &:has(input:focus),
        &:has(input:active) {
            .p-radiobutton-box {
                border: 1px solid #428bca !important;
            }
        }
    }
    .p-radiobutton.p-disabled {
        opacity: 0.5;
    }
}
