/*
CSS para formatacao de formulario 
Author: BM - Estevão Luis


/* --- se for colocar alguma codigo aqui não esquecer de identar o codigo e comentar --- */

.margin_form { 
	margin-left: 15px;
	margin-right: 15px
}

.margin_titulo {
    margin-left: 2%;
    margin-right: 2%;
}

.group-radio {
     display: block;
     padding: 10px;
     position: relative;
      font-size: 18px;
     line-height: 20px;
}

.btn-avanca {
     width:200px  !important; 
     height:40px!important;;
     border-radius: 7px 7px 7px 7px ;
     color: #ffffff;
     font-size: 20px;
     background-color: #00aff3;
     border-color: #ffffff;
}

.container_box { 
     width: 95%;
     margin: 0 auto;  
}

.bisque  {
      background-color: #26c9ff;
      color: #ffffff;
      border-radius: 25px;
}

.btn-ativo  {
      background-color: #00aff3;
      color: #ffffff;
      border-radius: 10px 10px 0 0;
}

.btn-menu_mobile  {
      background-color: #00aff3;
      color: #ffffff;
      border-radius: 5px;
}

.btn-espera  {
      color: #ffffff;
      border-radius: 10px 10px 0 0;
}

.btn-espera:hover {
      background-color: #102f65;
}

.group-radio {
  display: block;
  padding: 10px;
  position: relative;
   font-size: 18px;
  line-height: 20px;
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 6.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25px;
  width: 25px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
  background: #ffa500;
}
.option-input:checked::before {
  width: 25px;
  height: 25px;
  display:flex;
  content: '\f00c';
  font-size: 25px;
  font-weight:bold;
  position: absolute;
  align-items:center;
  justify-content:center;
  font-family:'Font Awesome 5 Free';
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #fe5b10;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}



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



.check_radio:checked {
  background: #32CD32;
}

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