.radio {
    position: absolute;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
    width: 100%!important;
    height: 100%;
    margin: 0px;
}

.root {
    position: relative;
    min-height: 26px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.choiceFieldEmpty {
    position: relative;
}

.choiceFieldEmpty:before {
    content: '';
    display: inline-block;
    width: 20px;
    height:20px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    box-sizing: border-box;
    top: 0px;
    left: 0px;
    color: #666;
}

.choiceFieldEmpty:after {
    content: '';
}

.choiceFieldFull {
    position: relative;
}

.choiceFieldFull:before {
    content: '';
    display: inline-block;
    width: 20px;
    height:20px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    box-sizing: border-box;
    top: 0px;
    left: 0px;
    border-color: #2f5d7c;
}

.choiceFieldFull:after {
    content: '';
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border-width: 5px;
    border-style: solid;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    right: 0px;
    top: 5px;
    border-color: #2f5d7c;
    background-color: #2f5d7c;
}



.choiceFieldLabel {
    padding-left: 26px;
    display:inline-block;
    font-size: 14px;
    user-select: none;
    -ms-user-select: none;
}

.wrapper {
    white-space: nowrap;
    margin-right: 5px;
}