.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 7px;
  width: 27px;
  height: 27px;
  -webkit-transition: all 0.15s ease-out 0;
  -moz-transition: all 0.15s ease-out 0;
  transition: all 0.15s ease-out 0;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
  margin-right: 0.5rem;
  margin-left: -32px !important;
  z-index: 1000;
}

input.option-input::-ms-check {
	background:transparent;
	border:0;
    color: white;
    margin-top:-6px;
}

.option-input:hover { background: #9faab7; }

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

.option-input:checked::before {
  width: 27px;
  height: 27px;
  position: absolute;
  content: '\2714';
  display: inline-block;
  font-size: 16px;
  text-align: center;
  line-height: 12px;
}

.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #fd790f;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

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

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

.option-radio {
	line-height:30px;
}