.radiobox {
    display: inline-block;
}

.radiobox .check {
    font-size: 100%;
    display: block;

    margin: 3px 0;
    border: 2px solid #EBE6E2;
    background-color: #ffffff;
    width: 18px;
    height: 18px;
    position: relative;

    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
}

.element-radiobox:hover .check,
.radiobox:hover .check {
    border-color: #cccccc;
}

.radiobox .check a {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    height: 100%;
}

.radiobox .check a span {
    display: block;
    margin: 3px;
    height: 8px;
    width: 8px;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.radiobox .check a.checked span {
    background-color: #8f8f8f;
}