/* .radobtn-box {
  max-width: 500px;
  position: relative;
  margin: 50px auto 0;
  font-size: 15px;
}

.radiobtn {
  position: relative;
  display: block;
}
.radiobtn label {
  display: block;
  background: #9cf378;
  color: #444;
  border-radius: 5px;
  padding: 10px 20px;
  border: 2px solid #5ebf36;
  margin-bottom: 5px;
  cursor: pointer;
}
.radiobtn label:after, .radiobtn label:before {
  content: "";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #5ebf36;
}
.radiobtn label:before {
  background: transparent;
  -webkit-transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
  transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center;
  width: 0;
  height: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}
.radiobtn input[type="radio"] {
  display: none;
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.radiobtn input[type="radio"]:checked + label {
  background: #8bf161;
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  border-color: #4b962c;
}
.radiobtn input[type="radio"]:checked + label:after {
  background: #4b962c;
}
.radiobtn input[type="radio"]:checked + label:before {
  width: 20px;
  height: 20px;
}

@-webkit-keyframes blink {
  0% {
    background-color: #8bf161;
  }
  10% {
    background-color: #8bf161;
  }
  11% {
    background-color: #5ebf36;
  }
  29% {
    background-color: #5ebf36;
  }
  30% {
    background-color: #8bf161;
  }
  50% {
    background-color: #5ebf36;
  }
  45% {
    background-color: #8bf161;
  }
  50% {
    background-color: #5ebf36;
  }
  100% {
    background-color: #8bf161;
  }
}

@keyframes blink {
  0% {
    background-color: #8bf161;
  }
  10% {
    background-color: #8bf161;
  }
  11% {
    background-color: #5ebf36;
  }
  29% {
    background-color: #5ebf36;
  }
  30% {
    background-color: #8bf161;
  }
  50% {
    background-color: #5ebf36;
  }
  45% {
    background-color: #8bf161;
  }
  50% {
    background-color: #5ebf36;
  }
  100% {
    background-color: #8bf161;
  }
} */


.radobtn-box {
  display: flex;
  flex-flow: row wrap;
  margin: 20px 0 0 0;
}

.radobtn-box > div {
  flex: 1;
  padding: 0.5rem;
  height: max-content;
}

.radobtn-box input[type="radio"] {
  display: none;
}
.radobtn-box input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}
.radobtn-box input[type="radio"]:disabled ~ label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.radobtn-box label {
  height: 100%;
  display: block;
  background: white;
  border: 2px solid #1e751a;
  border-radius: 20px;
  padding: 3rem 0 10px 0;
  margin-bottom: 0;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(2, 148, 20, 0.5);
  position: relative;
}

.radobtn-box input[type="radio"]:checked + label {
  background: #3aaa35;
  color: white;
  box-shadow: 0px 0px 20px rgba(2, 148, 20, 0.5);
}
.radobtn-box input[type="radio"]:checked + label::after {
  color: #3d3f43;
  font-family: FontAwesome;
  border: 2px solid #1e751a;
  content: "\f00c";
  font-size: 24px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}



@media only screen and (max-width: 700px) {
  .radobtn-box {
    flex-direction: column;
  }
}
