@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  font-family: 'Roboto', sans-serif;
  top: 12px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 30px;
  transition: all 0.15s ease-out 0s;
  background: #d4d8dc;
  border: none;
  color: #0367a6;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 100;
  margin-bottom: 10px;
}

.option-input:hover {
  background: rgba(200,200,200,0.6);
}

.option-input:checked {
  background: #ffffff;
}

.option-input:checked::before {
  height: 40px;
  width: 30px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 30px;
  text-align: center;
  line-height: 25px;
}

.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: rgba(4,157,217,0.64);
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio {
  border-radius: 50%;
}

.option-input.radio::after {
  border-radius: 50%;
}

body label {
  display: block;
  line-height: 40px;
}

