.divRadio{
  display: flex;
  justify-content: center;
  align-items: center;
}
.corpoRadio{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.corpoRadio p{
  color:  #215e65;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.corpoRadio label{
  position: relative;
}

.corpoRadio label input{
  appearance:  none;
  -webkit-appearance:  none;
  cursor: pointer;

}

.corpoRadio label .fa{
  position: relative;
  width: 40px;
  height: 40;
  background: #2A3F54;
  line-height: 40px;
  text-align: center;
  margin: 0 4px;
  color: #6f6f6f;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1),
              2px 2px 6px rgba(0, 0, 0, 0.8);
}

.corpoRadio label .fa:hover{
  color: #fff;
  box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1),
              2px 2px 6px rgba(0, 0, 0, 0.8),
              inset -2px -2px 10px rgba(255, 255, 255, 0.05),
              inset 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.corpoRadio label input:checked ~ .fa{
  color: #00fff1;
  box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1),
              2px 2px 6px rgba(0, 0, 0, 1);
  text-shadow: 0 0 2.5px #00fff1,
               0 0 2.5px #00fff1;
}

.corpoRadio .botao{
  border-radius: 50%;
  background: #2A3F54;
  color: #6f6f6f;
}

.corpoRadio label .botao:hover{
  color: #fff;
  box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1),
              2px 2px 6px rgba(0, 0, 0, 0.8),
              inset -2px -2px 10px rgba(255, 255, 255, 0.05),
              inset 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.minidropdown ul{
  list-style: none;
  margin-top: 2%;
  margin: 0;
  padding: 0;
  z-index: 3000;
}
.minidropdown ul li {
  background: #2A3F54;
  width: 180px;
  border: 1px solid #fff;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  float: left;
  color: #fff;
  position: relative;
  font-family: poppins;
  z-index: 3000;
  
}
.minidropdown ul li:hover{
  background: crimson;
  font-family: poppins;
  cursor: pointer;
  z-index: 3000;
}
.minidropdown ul ul{
  display: none;
  
}
.minidropdown ul li:hover > ul{
  display: block;
  
}
.minidropdown ul ul ul{
  margin-left: 175px;
  top: 0;
  position: absolute;
  font-family: poppins;
  z-index: 3000;
  
}