.custom-radio {
    position: relative;
    display: flex;
    cursor: pointer;
}
.custom-radio:hover::after {
    transform: scale(1);
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
}
.custom-radio::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #3e8ede;
    margin-right: 8px;
}
.custom-radio::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #3e8ede;
    position: absolute;
    left: 4px;
    top: 4px;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.3s ease-out;
}
.custom-radio.selected::after {
    transform: scale(1);
    left: 4px;
    width: 8px;
    height: 8px;
    top: 4px;
    transition: all 0.3s ease;
}
.custom-radio input {
    opacity: 0;
    width: 0;
}
