.custom-radio input {
  display: none;
}

.radio-btn {
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 50px;
  margin-top: 10px;
  width: 210px;
  height: 280px;
  display: inline-block;
  border-radius: 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;
}

.radio-btn>i {
  color: #ffffff;
  background-color: #ffbe0b;
  font-size: 50px;
  font-weight: bold;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
  border: 8px solid #fee440;
  box-shadow: 0 0 10px #d9d9d9;
}

.custom-radio input:checked+.radio-btn {
  border: 10px solid #fee440;
}

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