@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;
  top: 13.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 17px;
  width: 17px;
  transition: all 0.15s ease-out 0s;
  background: #fff;
  border: 1px solid #cbd1d8;
  color: #fff;
  cursor: pointer;
  display: inline-block!important;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #cbd1d8;
}
.option-input:checked {
  background: #cbd1d8;
}
.option-input:checked::before {
  height: 17px;
  width: 17px;
  position: absolute;
  content: '';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 17px;
}
.option-input:checked::after {
 
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}