.flexradio {
  display: flex;
  flex-flow: row wrap;
}

.flexradio > div {
  flex: 1;
  padding: 0.5rem;
}

.flexradio input[type="radio"] {
  display: none;
}

.flexradio input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}

.flexradio input[type="radio"]:disabled ~ label {
  color: hsla(150, 5%, 75%, 1);
  border-color: hsla(150, 5%, 75%, 1);
  box-shadow: none;
  cursor: not-allowed;
}

.flexradio label {
  /* height: 100%; */
  display: block;
  background: white;
  /* border: 2px solid hsla(150, 75%, 50%, 1); */
  border: 2px solid #26237b;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
  position: relative;
  font-weight: 400;
}

.flexradio input[type="radio"]:checked + label {
  /* background: hsla(150, 75%, 50%, 1); */
  background: #26237b;
  color: hsla(215, 0%, 100%, 1);
  /* box-shadow: 0px 0px 20px hsla(150, 100%, 50%, 0.75); */
}

.flexradio input[type="radio"]:checked + label::after {
  /* color: hsla(215, 5%, 25%, 1); */
  color: #26237b;
  font-family: FontAwesome;
  /* border: 2px solid hsla(150, 75%, 45%, 1); */
  border: 2px solid #26237b;
  content: "\f00c";
  /* font-size: 24px; */
  position: absolute;
  /* top: -25px; */
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  /* height: 50px;
  width: 50px; */
  height: 30px;
  width: 30px;
  /* line-height: 50px; */
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
}