.wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.card {
  position: relative;
  width: 150px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s;
  border: none !important;
}

.card:hover {
  transform: scale(1.05);
}

.input {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  appearance: none;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0.5px 0.5px 5px #d7d7d7, -1px -1px 10px #ffffff;
}

.input+.check::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  background-color: #e8e8e8;
}

.input:checked+.check::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 14px;
  height: 14px;
  background-color: rgba(255, 0, 0, 0.7);
  border-radius: 50%;
}

.input[value="Monthly"]:checked+.check::after {
  background-color: rgba(255, 165, 0, 0.7);
}

.input[value="One Time"]:checked+.check::after {
  background-color: rgba(0, 128, 0, 0.7);
}

.input[value="basic"]:checked {
  border: 1.5px solid rgba(255, 0, 0, 0.7);
}

.input[value="Monthly"]:checked {
  border: 1.5px solid rgba(255, 165, 0, 0.7);
}

.input[value="One Time"]:checked {
  border: 1.5px solid rgba(0, 128, 0, 0.7);
}

.label {
  color: #323232;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.label .title {
  margin: 15px 0 0 15px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.label .price {
  margin: 20px 0 0 15px;
  font-size: 20px;
  font-weight: 900;
}

.label .span {
  color: gray;
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }
}