@charset "utf-8";
/* CSS Document */

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 5.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  width: 22px;
  transition: all 0.15s ease-out 0s;
  background:url(../images/radio-btn.jpg) 0 0 no-repeat;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
   outline:none!important;
   
   
}
.option-input:hover {
  
}
.option-input:checked {
 background:url(../images/radio-btn.jpg) bottom no-repeat;
}
.option-input:checked::before {
  height: 22px;
  width: 22px;
  position: absolute;
  display: inline-block;
  font-size: 11.66667px;
  text-align: center;
  line-height: 20px;
 
  
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background:
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;

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

label.option { margin-right:15px;}


