
/* Layout */
.layout {
  display: flex;
  min-height: 100vh;
}

.side {
  background-color: #002244;
  flex: 1; /* take up leftover space */
}

.main {
  width: 568px;
  max-width: 100%;
  background-color: #f8f9fa;
  padding: 15px;
}

/* Phone container */
.phone {
  max-width: 568px;
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  margin: 20% auto auto auto;
}

/* Navbar */
.navbar {
  max-width: 568px;
  margin: auto;
}

/* Footer */
.footbar {
  background-color: rgba(29,53,87, .2);
  z-index: 99;
}
.footbar i {
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footbar i:hover {
  transform: scale(1.2);
  color: #0071b3;
}
.footbar i.active {
  color: #0071b3 !important;
}

/* Icons */
.homeicon {
  width: 50px !important;
  height: 50px !important;
}
.iconsizeclass {
  width: 48px;
  height: 48px;
}
.iconcolor {
  color: #457B9D;
}

/* Shared hover effect */
#terugPijl, #homeIcon, #homeIcon2, #homeLogo, .iconcustomclass {
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
#terugPijl:hover, #homeIcon:hover, #homeIcon2:hover, #homeLogo:hover, .iconcustomclass:hover {
  transform: scale(1.2);
  color: #0071b3;
}

/* Payment options */
.payment-option {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.payment-option input[type="radio"] {
  display: none;
}
.payment-option .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid gray;
  display: inline-block;
  position: relative;
}
.payment-option input[type="radio"]:checked + label {
  border-color: #28c76f;
  color: #28c76f;
}
.payment-option input[type="radio"]:checked + label .circle {
  border-color: #28c76f;
}
.payment-option input[type="radio"]:checked + label .circle::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #28c76f;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
}
label.payment-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  padding: 15px 20px;
  border: 2px solid #eee;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Subscription card */
.sub-card {
  background-color: #1D3557;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  color: white;
}
.sub-card .badge-bsi {
  display: inline-block;
  border: 2px solid white;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.sub-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  color: white;
}
.sub-card ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-card .text-green {
  color: #28c76f;
  font-weight: 600;
}


/* Responsive */
@media (max-width: 380px) {
  .datumclass {
    font-size: 10px;
    text-wrap: nowrap;
  }
}
@media (max-width: 567px) {
  .layout {
    flex-direction: column;
  }
  .side {
    display: none;
  }
  .main {
    width: 100%;
  }
}
