/* Specific style for Radio buttons on the LEFT */
.option-card.radio-style {
    flex-direction: row;
    /* Circles on the LEFT */
    justify-content: flex-start;
}

.option-card.radio-style .option-text {
    margin-left: 12px;
}

.option-card.radio-style::after {
    order: -1;
    /* Move to start */
    margin-left: 0;
    margin-right: 12px;
    border-radius: 50%;
    /* CIRCLE */
    width: 22px;
    height: 22px;
    border: 1.5px solid #9C27B0;
}

.option-card.radio-style.selected::after {
    background-color: #9C27B0;
    background-image: radial-gradient(circle, white 30%, transparent 40%);
}