
.radio_buton {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #6c757d;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_buton input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

.radio_buton:hover input ~ .checkmark {
    background-color: #ccc;
}

.radio_buton input:checked  ~ .text {
    color: #4285f4;
}

.radio_buton input:checked ~ .checkmark {
    background-color: #4285f4;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_buton input:checked ~ .checkmark:after {
    display: block;
}

.radio_buton .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
