.radio-toolbar {
  margin: 10px;
}

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-toolbar label {
	margin:8px;
	min-width:100px;
	max-width:110px;
	min-height:50px;
    background: transparent;
    padding: 10px 10px;
    font-family: inherit;
    font-size: inherit;
    border: 1px solid #9a0367;
    border-radius: 6px;
	justify-content: center;
	display: flex;
	align-items:center;
	flex-wrap:wrap;

}

.radio-toolbar label:hover {
  background-color: #ccc; /* button hover background color */
  color:#b81783;
}

.radio-toolbar input[type="radio"]:focus + label {
    border: 1px solid #9a0367;
}

.radio-toolbar input[type="radio"]:checked + label {
    background-color: #900b5d;  /* button background color */
    border-color: #9a0367;
	color:#fff;
}