.radio{
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}

.radio__input{
  display: none;
}

.radio__radio{
  width: 17px;
  height: 17px;
  border: 1px solid rgba(200, 200, 200, 1);
  border-radius: 50%;
  margin-right: 10px;
  box-sizing: border-box;
  padding: 3px;
}

.radio__radio::after{
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255,215,0,1);
  box-shadow: 0 0 5px rgba(255,215,0,1), 0 0 10px rgba(255,215,0,1), 0 0 15px rgba(255,215,0,1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.15s;
}

.radio__input:checked + .radio__radio::after{
  transform: scale(1);
}

.cli-radio-title{
  color: rgba(200,200,200,1);
}

@media screen and (min-width:2000px){

  .radio__radio{
    width: 25px;
    height: 25px;
    border: 1px solid rgba(200, 200, 200, 1);
    border-radius: 50%;
    margin-right: 10px;
    box-sizing: border-box;
    padding: 3px;
  }

  .radio__radio::after{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(255,215,0,1);
    box-shadow: 0 0 5px rgba(255,215,0,1), 0 0 10px rgba(255,215,0,1), 0 0 15px rgba(255,215,0,1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.15s;
  }
  .cli-radio-title{
    font-size: 18px;
  }

}
