@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.eot");
  src: url("fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("fonts/Poppins-SemiBold.woff") format("woff"),
    url("fonts/Poppins-SemiBold.ttf") format("truetype"),
    url("fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.eot");
  src: url("fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Poppins-Bold.woff2") format("woff2"),
    url("fonts/Poppins-Bold.woff") format("woff"),
    url("fonts/Poppins-Bold.ttf") format("truetype"),
    url("fonts/Poppins-Bold.svg#Poppins-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.eot");
  src: url("fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/Poppins-Regular.woff2") format("woff2"),
    url("fonts/Poppins-Regular.woff") format("woff"),
    url("fonts/Poppins-Regular.ttf") format("truetype"),
    url("fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-BoldItalic.eot");
  src: url("fonts/Poppins-BoldItalic.eot?#iefix") format("embedded-opentype"),
    url("fonts/Poppins-BoldItalic.woff2") format("woff2"),
    url("fonts/Poppins-BoldItalic.woff") format("woff"),
    url("fonts/Poppins-BoldItalic.ttf") format("truetype"),
    url("fonts/Poppins-BoldItalic.svg#Poppins-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Italic.eot");
  src: url("fonts/Poppins-Italic.eot?#iefix") format("embedded-opentype"),
    url("fonts/Poppins-Italic.woff2") format("woff2"),
    url("fonts/Poppins-Italic.woff") format("woff"),
    url("fonts/Poppins-Italic.ttf") format("truetype"),
    url("fonts/Poppins-Italic.svg#Poppins-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBoldItalic.eot");
  src: url("fonts/Poppins-SemiBoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/Poppins-SemiBoldItalic.woff2") format("woff2"),
    url("fonts/Poppins-SemiBoldItalic.woff") format("woff"),
    url("fonts/Poppins-SemiBoldItalic.ttf") format("truetype"),
    url("fonts/Poppins-SemiBoldItalic.svg#Poppins-SemiBoldItalic") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* newer stylings */
body {
  padding: 15px;
  background-color: #fefdf6 !important;
}

.pg-banner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.img-banner {
  width: 200px;
  margin: 0 auto;
}
.img-banner img {
  margin: 0 auto;
  border-radius: 8px;
}

.content {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.admack-logo {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.admack-logo-bx {
  display: flex;
  justify-content: center;
  align-items: center;
}

.admack-logo-bx img {
  width: 70%;
  object-fit: contain;
  margin: 0 auto;
}

/* Plan container */
.plans {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: space-between; /* Align plan items evenly */
  margin-bottom: 20px; /* Space before next section */
  flex-direction: column;
}

p.intro {
  max-width: 700px;
  text-align: center;
  text-wrap: wrap;
  margin: 0;
}

#form {
  background-color: white; /* White background similar to the card */
  padding: 20px;
  width: 100%; /* Set a max width for the form */
  max-width: 700px;
  margin: 0 auto; /* Center form horizontally */
}

.phoneInputContainer {
  display: flex;
  align-items: center;
  border: 1px solid #fdcb05;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 10px auto;
  height: 40px;
}

.areaCode {
  background-color: #fdcb05;
  color: #000;
  padding: 8px 10px;
  border-right: 1px solid #fdcb05;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  text-align: center;
  font-size: 14px;
}

/* Styling for the phone input */
.phoneInput {
  flex: 1;
  border: none;
  padding: 8px 10px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 100%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Focus effect for the phone input */
.phoneInput:focus {
  outline: none;
  border: 2px solid #ffcb03;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Title styling */
.phoneBoxTitle {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.plans-bx {
  display: flex;
  width: 100%;
  max-width: 700px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Plan checkbox container */
/* Base styling for the card */
/* Base card styling */
.multiSubscriptionPicker {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  border: 2px solid rgb(234, 234, 234);
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 16px;
  box-sizing: border-box;
  transition: border 0.4s ease-in-out;
  width: 200px;
}

.desk-top {
  display: flex;
  flex-direction: column;
  background-color: white;
  align-items: center;
  justify-content: space-between;
}

/* Styling for the checked state */
.multiSubscriptionPicker input[type="radio"]:checked ~ .planData {
  border: 2px solid rgb(255, 203, 3); /* Highlight color when checked */
}

/* Hide the radio button itself */
.multiSubscriptionPicker input[type="radio"] {
  appearance: none;
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  margin: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

/* Styling for plan data */
.planData {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  text-align: center;
  padding: 10px;
  margin: 0;
  border-radius: 8px;
  background-color: white;
}

/* Title styling */
.planTitle-bx {
  margin-top: 5px;
  border-bottom: 1px solid #b7b2b2;
  width: 100%;
}
.planTitle {
  font-size: 1rem;
  font-weight: bold;
}

/* Price styling */
.planPrice {
  font-size: 1.5rem;
  color: #333;
  margin-top: 5px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0em;
}

/* Extra spacing and styling */
.space {
  font-size: 0.8rem;
}

.free-am {
  font-size: 0.9rem;
  color: rgb(0, 0, 0);
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .multiSubscriptionPicker {
    width: 187px;
    height: 230px;
    border: 1px solid rgb(234, 234, 234);
    background-color: rgb(255, 255, 255);
  }

  .radio-container input[type="radio"] {
    display: none; /* Hide radio button in desktop view */
  }
}

/* Plan data styling */
/* .planData {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.planTitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.planPrice {
  font-size: 24px;
  font-weight: bold;
  color: #333;
} */

/* Submit button */

.submit-btn {
  display: flex;
}
.pillButton {
  background-color: #ffcb03; /* Button color similar to the SVG icon */
  color: white;
  padding: 10px;
  border: none;
  border-radius: 25px; /* Pill-shaped button */
  font-size: 16px;
  cursor: pointer;
  width: 50%; /* Full width */
  text-align: center;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  display: block;
  text-decoration: none;
}

/* Submit button hover effect */
.pillButton:hover {
  background-color: #e0b502; /* Slightly darker yellow on hover */
}

/* .multiSubscriptionPicker {
  position: relative;
  padding: 10px;
  border: 1px solid #ddd;
  display: inline-block;
} */

.status-icon {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  top: 5px;
  right: 5px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.multiSubscriptionPicker.active .status-icon {
  opacity: 1;
  transform: scale(1);
}

.choose-text {
  padding: 12px 34px;
  border-radius: 105px;
  border: 1px solid #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0em;
  transition: background-color 0.4s ease-in-out, border 0.4s ease-in-out,
    transform 0.4s ease-in-out;
  margin-top: 10px;
  display: inline-block; /* Ensure the element's width fits its content */
}

.multiSubscriptionPicker.active .choose-text {
  background-color: #ffcb03;
  border: none;
  transform: scale(0.8); /* Scale down to create a smooth effect */
}

/* General styles for all screen sizes */
.multiSubscriptionPicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
}

.mob-ile {
  display: none;
}

.radio-container .choose-text {
  display: none;
}

.selected-text {
  padding: 5px 10px;
  border-radius: 105px;
  border: 1px solid #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0em;
  transition: background-color 0.4s ease-in-out, border 0.4s ease-in-out,
    transform 0.4s ease-in-out;
  display: inline-block;
}
.selected-text {
  position: absolute;
  opacity: 0; /* Hide in mobile view initially */
}

/* Mobile and Tablet view */
@media (max-width: 767px) {
  .mob-ile {
    display: flex;
    flex-direction: column;
    width: 70%;
  }

  .plans-bx {
    flex-direction: column;
  }

  .mob-ile div {
    display: flex;
  }

  .multiSubscriptionPicker {
    padding: 8px 15px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center; /* Align items vertically centered */
    position: relative;
    display: flex;
    background-color: white;
    border-radius: 8px;
    border: 1px #eaeaea solid;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 8px;
    margin-left: 16px;
    margin-right: 16px;
    width: 100%;
    height: fit-content;
  }

  .desk-top {
    display: none; /* Hide desktop content in mobile view */
  }

  .radio-container {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push the radio button to the far right */
  }

  .radio-container input[type="radio"] {
    margin-left: 10px; /* Adjust margin if needed */
  }

  .radio-container .desk-top .choose-text {
    display: none; /* Hide SVG and Choose button */
  }

  .multiSubscriptionPicker input[type="radio"] {
    appearance: auto;
    position: relative;
    margin-left: 0;
  }

  .mob-ile h3 {
    font-size: 14px;
    margin: 0;
  }

  .multiSubscriptionPicker.active .selected-text {
    background-color: #ffcb03;
    position: relative;
    border: none;
    opacity: 1;
    transform: scale(0.8); /* Show "Selected" text if the card is active */
  }

  .radio-container.active input[type="radio"] {
    appearance: none; /* Hide the radio button when active */
  }

  .radio-container input[type="radio"] {
    appearance: auto; /* Show radio button in mobile view */
    display: inline-block;
    position: relative;
  }

  .radio-container {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .multiSubscriptionPicker.active .radio-container input[type="radio"] {
    appearance: none; /* Hide the radio button when active */
  }

  .selected-text {
    position: absolute;
    opacity: 0; /* Hide "Selected" text initially */
    transform: scale(1); /* Adjust scale if needed */
  }

  .multiSubscriptionPicker.active .selected-text {
    opacity: 1; /* Show "Selected" text if the card is active */
    background-color: #ffcb03;
    border: none;
    transform: scale(1); /* Adjust scale if needed */
  }
}

.submitMessage {
  text-align: center;
}

.error {
  color: #ab0000;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  transition: opacity 0.12s ease-out;
  opacity: 0;
}

.modal-overlay.active {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}

.modal {
  background: #fff;
  max-width: 600px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  left: 50%;
  padding: 20px;
  z-index: 4;
  display: none;
  transition: opacity 0.12s ease-out, transform 0.12s ease-out;
  height: auto;
}

.modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.2s ease-in, transform 0.2s ease-in;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.7rem;
  color: #999999;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
}

.modal-title {
  text-align: center;
  font-size: 2rem;
}

.modal-text {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2em;
}

.am-gradient {
  margin: 24px auto;
  display: block;
  width: 58px;
  height: 40px;
}
