*, *:after, *:before {
    box-sizing: border-box;
}

.radio-label {
    display: flex;
    cursor: pointer;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}
.radio-label .radio-input {
    position: absolute;
    left: -9999px;
}
.radio-label .radio-input:checked + span {
    background-color: #e7e7eb;
    color: rgb(49, 49, 49) !important;
}
.radio-label .radio-input:checked + span:before {
    box-shadow: inset 0 0 0 0.3em #3875d7;
}
.radio-label span {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
}

.dark .radio-label span {
    color: rgb(189, 189, 189);
}

.radio-label span:hover {
    background-color: #e8e8ec;
}

.radio-label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #b6b6b6;
}