*{/*font-family: 'Roboto', sans-serif;*/}

@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: 26px;
  width: 26px;
  border:1px solid #232323;
  transition: all 0.15s ease-out 0s;
  background: none;/*#cbd1d8*/
 /* border: none;*/
  color: #fff;
  cursor: pointer;
  display: inline-block;
  /*margin-right: 0.45rem;*/
  margin: 0 0.2rem 0 0;
  outline: none;
  position: relative;
  z-index: 1000;
  vertical-align:middle;
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
  background: #f7921e;
}
.option-input:checked::before {
  height: 26px;
  width: 26px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
}
.option-input:checked::after {
  /*-webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;*/
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
  bottom: 4px;
}
.option-input.radio::after {
  border-radius: 50%;
}

body {
  /*display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: box;
  background: #e8ebee;
  color: #9faab7;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  text-align: center;*/
}
body div {
 /* padding: 5rem;*/
}
body label {
 /*display: block;*/
  line-height: 35px;
  float: left;
  padding: 0 0% 0 0;
  margin: 0 0px 0 0;
  box-sizing:border-box;
}

.forcheck{
  margin: 0 20px 0 0;
}

@media (min-width:1200px) {
body label {
 /*display: block;*/
  line-height: 40px;
  float: left;
  padding: 0 0% 0 0;
  margin: 0 0px 0 0;
  box-sizing:border-box;
}
}