@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}

::selection{
  background: #bbc1f7;
}
.card .title{
  font-size: 22px;
  font-weight: 500;
}
.card .content{
  margin-top: 20px;
}
.card  label.box{
  background: #ddd;
  margin-top: 12px;
  padding: 10px 12px;
  display: flex;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.card .one:checked ~ label.first,
.card .two:checked ~ label.second,
.card .three:checked ~ label.third,
.card .four:checked ~ label.fourth{
  border-color: #63a7ffc9;
  background: #7cafdb;
}
.card  label.box:hover{
  background: #bbbff7;
}
.card  label.box .circle{
  height: 22px;
  width: 24px; /* 22 px */
  background: #ccc;
  border: 5px solid transparent;
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
  transition: all 0.25s ease;
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.2);
}
.card .one:checked ~ label.first .circle,
.card .two:checked ~ label.second .circle,
.card .three:checked ~ label.third .circle,
.card .four:checked ~ label.fourth .circle{
  border-color: #5585ff;
  background: #fff;
}
.card  label.box .plan{
  display: flex;
  width: 100%;
  align-items: center;
}
.card input[type="radio"]{
  display: none;
}