/* ----- ----- ----- ----- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }


/*.main-container{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}*/
.main-container h2{
  margin: 0 0 80px 0;
  color:  #8373e6;
  font-size: 30px;
  font-weight: 400;
}


.radio-buttons{
  width: 100%;
  /*margin: 0 auto;*/
  text-align: center;
}

.custom-radio input{
  display: none;
}

.radio-btn{
  margin: 10px;
  width: 90px;
  height: 90px;
  border: 3px solid transparent;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;

}

.radio-btn > i{
  color: #ffffff;
  background-color: #bcc1bc;
  font-size: 20px;
  position: absolute;
  top: -10px;
  //left: 70%;
  transform: translateX(-50%) scale(4);
  border-radius: 50px;
  padding:  3px;
  transition: 0.2s;
  pointer-events: none;
  opacity: 0;
}

.radio-btn .hobbies-icon{
  width: 80%;
  height: 80px;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-btn .hobbies-icon img{
  color: #8373e6;
  line-height: 80px;
  font-size: 30px;
  width: 60px;
}

.radio-btn .hobbies-icon h3{
  color: #89949a;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.custom-radio input:checked + .radio-btn{
// border: 3px solid #fe4138;
 background: #bec9cf6b;
}



.custom-radio input:checked + .radio-btn > i{
  opacity: 1;
  transform: translateX(-50px) scale(1);
}



