.radio-toolbar {
    margin: 10px;
}

.radio-toolbar input[type="radio"] {
opacity: 0;
position: fixed;
width: 0;
}

.radio-toolbar label {
    display: inline-block;
    background-color: rgb(73, 73, 73);
    padding: 10px 20px;
    color: white;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 4px;
}

.radio-toolbar label:hover {
background-color: #ff7700;
}

.radio-toolbar input[type="radio"]:focus + label {
    border: 2px dashed #444;
}

.radio-toolbar input[type="radio"]:checked + label {
    background-color: #ff7700;
    border-color: #ffd0a8;
}
.lable-radio {
    color:'white';
}