label.label_choix {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e2d7f4 !important;
    border-radius: 0;
    color: #9388a3;
    font-family: roboto;
    font-size: 0.9rem;
    font-weight: 400 !important;
    padding: 0 1.25rem 0 0.7rem;
    text-transform: uppercase;
    width: 100%;
}

/* hide input */
input.radio:empty {
    display: none;
    margin-left: 0;
}

/* style label */
input.radio:empty ~ label.label_choix {
    -moz-user-select: none;
    cursor: pointer;
    float: left;
    line-height: 2.5em;
    margin-top: 0;
    position: relative;
    text-indent: 3.25em;
}
.inviter > label {
    font-weight: 300;
}
input.radio:empty ~ label.label_choix::before {
    background: #d6c9ef none repeat scroll 0 0;
    border-radius: 0;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    width: 2.5em;
}

/* toggle hover */
input.radio:hover:not(:checked) ~ label.label_choix:before {
	content:'\2714';
	text-indent: .9em;
	color: #ffffff;
}

input.radio:hover:not(:checked) ~ label.label_choix {
	color: #888;
}

/* toggle on */
input.radio:checked ~ label.label_choix::before {
    background-color: #632182;
    color: #ffffff;
    content:'\2714';
    text-indent: 0.9em;
}
input.radio:checked ~ label.label_choix {
    color: #1f093e;
}

/* radio focus */
input.radio:focus ~ label.label_choix:before {
	box-shadow: 0 0 0 3px #999;
}