@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");


body {
  background-color: #fafafa;
  margin: 0;
  padding: 0;
}

.user-info-form {
  display: none;
  align-items: start;
  justify-content: center;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  background-color: #FAFAFA;
  font: 14px Montserrat, sans-serif;
}

.user-info-form-header{
  font: 18px Montserrat, sans-serif;
  color: #093f63;
  font-weight: 600;
  width: 90%;
  display: flex;
  justify-content: flex-start;
}

.form-container {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  min-width: 240px;
  width: 60%;
  flex-direction: column;
  padding: 32px;
  padding-bottom: 0;
}

.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-label {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  line-height: 1.6;
}

.form-input {
  border-radius: 10px;
  background-color: #f1f1f1;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 500;
  line-height: 25px;
  padding: 8px 16px;
  border: none;
}

.submit-button {
  align-self: stretch;
  border-radius: 10px;
  background-color: #66ac47;
  width: 100%;
  color: #fff;
  padding: 10px 20px;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .form-group,
  .form-label,
  .form-input,
  .submit-button {
    max-width: 100%;
  }

  .submit-button {
    white-space: normal;
  }
}

/* Modal container styling */
.cancel-modal {
  display: none; /* Hidden by default */
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
  max-width: 280px;
  font-family: Montserrat, sans-serif;
  line-height: 1;
  padding: 16px;
  position: absolute; /* Positioning relative to the header */
  top: 20%;
  right: 4%; /* Align it with the header's left edge */
  margin-top: 8px; /* Space between button and modal */
  z-index: 1000; /* Ensure it appears above other content */
}

/* Title styling inside the modal */
.cancel-modal__title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
}

/* Actions container styling inside the modal */
.cancel-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* Styling for buttons inside the modal */
.cancel-modal__button {
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  cursor: pointer;
  border: none;
}

/* Confirm button styling */
.cancel-modal__button--confirm {
  background-color: #66ac47;
  color: #fff;
}

/* Cancel button styling */
.cancel-modal__button--cancel {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

/* Hover effect for cancel button */
.cancel-modal__button--cancel:hover {
  background-color: #e0e0e0;
}

.personal-details-nav {
  background-color: #fff;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  padding: 0 8rem;
  font: 500 0.875rem/1 Montserrat, sans-serif;
}

.nav-item {
  align-self: stretch;
  gap: 0.625rem;
  margin: auto 0;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

.nav-item-active {
  border-bottom: 0.125rem solid #66ac47;
  color: #000;
  font-weight: 600;
}

.nav-item-payment {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .nav-item-payment {
    white-space: initial;
  }
}

.subscription-section {
  display: none;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 10px 96px;
}
.subscription-section.active {
  display: flex; /* Visible when active class is added */
}
.user-info-container {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: center;
  padding: 4px;
  gap: 16px;
}
@media (max-width: 991px) {
  .user-info-container {
    max-width: 100%;
  }
}
.profile-card {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  width: 90%;
  flex-direction: column;
  font-family: Montserrat, sans-serif;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.edit-icon {
  cursor: pointer;
  color: #555;
}

.edit-icon:hover {
  color: #000;
}

.profile-info {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.name-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.user-name {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.group-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  line-height: 25px;
  justify-content: flex-start;
}

.group-name,
.user-count {
  align-self: stretch;
  margin: auto 0;
}

.divider {
  align-self: stretch;
  margin-top: 8px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-upper {
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: -webkit-fill-available;

}

.contact-info2 {
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #66ac47;
  font-weight: 500;
  line-height: 25px;
  justify-content: flex-start;
}

.email,
.phone {
  align-self: stretch;
  margin: auto 0;
}

@media (max-width: 991px) {
  .profile-info,
  .divider {
    max-width: 100%;
  }
}

/* Label styling */
.value-label {
  color: rgba(0, 0, 0, 0.5);
  font: 600 14px/1.6 Montserrat, sans-serif;
}

/* Styling for the value input container */
.value-input {
  border-radius: 10px;
  background-color: #f1f1f1;
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 12px;
  color: #000;
  padding: 8px 16px;
  font: 500 24px/43px Montserrat, sans-serif;
  border: 1px solid #ccc; /* Added for input consistency */
}

/* Styling for the input field */
.value-input input {
  border: none;
  background: transparent;
  font: inherit;
  color: #000;
  width: 60px; /* Adjust width as needed */
  text-align: center;
  outline: none;
}

/* Slider container styling */
.slider-container {
  display: flex;
  margin-top: 8px;
  width: 100%;
  align-items: center;
  gap: 12px;
}

/* Button styling within slider */
.slider-button {
  border-radius: 20px;
  background-color: rgba(102, 172, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: none;
}

/* Icon styling within slider buttons */
.slider-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 24px;
}

/* Slider track styling */
.slider-track {
  border-radius: 10px;
  background-color: #f1f1f1;
  flex: 1;
  height: 10px;
  position: relative;
}

/* Progress bar within slider track */
.slider-progress {
  border-radius: 10px;
  background-color: #093f63;
  width: 9px;
  height: 100%;
  position: absolute;
}

/* Range indicators styling */
.value-range {
  display: flex;
  margin-top: 8px;
  width: 100%;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.5);
  font: 500 14px/25px Montserrat, sans-serif;
}

/* Minimum value styling */
.minimum-value {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
  font: 400 14px/1.6 Montserrat, sans-serif;
}

/* Navigation buttons styling */
.navigation-buttons {
  display: flex;
  margin-top: 24px;
  width: 100%;
  justify-content: space-between;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.form-navigation-buttons {
  display: flex;
  gap: 24px;
  padding: 24px 34px;
  width: 90%;
  background-color: #fff;
  justify-content: space-between;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

@media(max-width: 580px){
  .form-navigation-buttons {
    width: 100%;
    padding: 24px 0;
  }
}

.third-wrapper {
  gap: 2rem;
  display: flex;
}

.third-navigation-buttons {
  display: flex;
  background-color: #fff;
  padding: 0 16px 8px 16px;
  width: 94%;
  justify-content: space-between;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.first-form-navigation-buttons {
  display: flex;
  background-color: #fff;
  padding: 16px;
  width: 94%;
  justify-content: center;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.third-edit-popup-save-button {
  display: flex;
  background-color: #fff;
  padding: 0px 0px 8px 16px;
  width: 94%;
  justify-content: center;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

/* General styling for navigation buttons */
.nav-button {
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

.form-nav-button {
  border-radius: 5px;
  padding: 10px 20px;
  
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.third-form-nav-button {
  align-self: flex-end;
  border-radius: 5px;
  margin-top: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 16px 24px;
  border: none;
  width: 8.375rem;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.form-nav-checkbox{
  font-size: 14px;
  font-weight: 400;
  font-family: Montserrat, sans-serif;
}

.first-form-nav-button {
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

/* Previous button styling */
.previous-button {
  background-color: rgba(0, 0, 0, 0.04);
  color: #888;
  border: none;
}

/* Next button styling */
.next-button {
  background-color: #66ac47;
  color: #fff;
  border: none;
}

.third-download-button {
  background-color: rgb(255, 255, 255);
  color: #66ac47;
  font-weight: 400;
  padding: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font: 700 14px/1 Montserrat, sans-serif;
}

.first-next-button {
  background-color: #66ac47;
  color: #fff;
  border: none;
  width: 100%;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.first-save-button {
  background-color: #66ac47;
  color: #fff;
  border: none;
  width: 90%;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

/* Responsive styling for smaller screens */
@media (max-width: 991px) {
  .subscription-title,
  .value-section,
  .value-label,
  .value-input,
  .slider-container,
  .value-range,
  .minimum-value,
  .navigation-buttons {
    max-width: 100%;
  }

  .value-input {
    white-space: normal;
  }

  .navigation-buttons {
    white-space: normal;
  }

  .nav-button {
    white-space: normal;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.values-container {
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  width: 90%;
  flex-direction: column;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.5);
  font: 500 14px/1 Montserrat, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: auto;
}

@media(max-width: 450px){
  .values-container{
    max-width: 340px;
  }
}

.values-header {
  display: flex;
  align-self: stretch;
  background-color: #f1f1f1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  color: rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  padding: 16px;
}

.values-header-green {
  align-self: stretch;
  background-color:#66ac47;
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-weight: 600;
  padding: 12px 16px;
}

.value-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  color: #000;
  padding: 12px 16px;
}

@media(max-width: 480px){
  .value-item{
    width: 95%;
  }
}

.value-item:last-child {
  border-bottom: none;
}

.value-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.value-text {
  align-self: stretch;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}

.value-text-multiline {
  line-height: 17px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 140px;
  font-family: Montserrat, sans-serif;
  color: #000;
  font-weight: 600;
  line-height: 1;
  height: 5rem;
}

.header-logo{
  width: 120px;
}

@media (max-width: 460px){
  .third-page-wrapper{
  display: block;
  }
  }
  
  .first-value-amount{
  width: 50%;
  }

@media (max-width: 490px) {
  .header {
    padding: 0 2rem;
  }
}

.logo {
  text-transform: uppercase;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.logo1 {
  text-transform: uppercase;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.logo-blue {
  color: #093f63;
}

.logo-green {
  color: #66ac47;
}

.offer-timer {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  justify-content: center;
  padding: 0.5rem 1rem;
  margin: 0 4rem;
}

@media (max-width: 630px) {
  .offer-timer {
    margin: 0 1.4rem !important;
  }

  .logo {
    margin: 0 1rem !important;
  }

  .personal-details-nav {
    padding: 0 2rem !important;
  }
}

.timer-text {
  font-weight: 500;
}

.timer-image {
  aspect-ratio: 41.67;
  object-fit: contain;
  object-position: center;
  width: 80px;
  margin-top: 10px;
}

.cancel-button {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  background: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .cancel-button {
    white-space: normal;
  }
}

.third-payment-confirmation {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  max-width: 822px;
  flex-direction: column;
  font-family: Montserrat, sans-serif;
  padding: 32px;
}

.third-confirmation-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.third-payment-details {
  align-self: start;
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  justify-content: end;
}

.third-payment-details-green {
  align-self: start;
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  justify-content: end;
}

.third-payment-amount {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.third-payment-frequency {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 4px;
}

.third-divider {
  height: 1px;
  margin: 24px 0;
  width: 100%;
  background-color: #000;
}

.third-benefits-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-size: 12px;
  justify-content: end;
}

.third-benefits-title {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  line-height: 1.6;
}

.third-benefits-list {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  line-height: 19px;
  margin-top: 4px;
}

.third-previous-button {
  align-self: start;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.04);
  margin-top: 24px;
  color: #888;
  padding: 10px 20px;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
  .third-confirmation-title,
  .third-divider,
  .third-benefits-section,
  .third-benefits-list {
    max-width: 100%;
  }

  .third-previous-button {
    white-space: normal;
  }
}

.third-payment-summary-container {
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  max-width: 350px;
  flex-direction: column;
  overflow: hidden;
  font: 14px/1 Montserrat, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.third-payment-summary-header {
  background-color: #f1f1f1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600;
  padding: 16px 24px;
}

.third-payment-details {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  padding: 16px 24px;
}

.third-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.third-payment-row:last-child {
  margin-bottom: 0;
}

.third-payment-label {
  flex: 1;
}

.third-payment-amount {
  flex: 1;
  text-align: right;
}

.third-total-section {
  padding: 12px 24px 24px;
}

.third-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  margin-bottom: 16px;
}

.third-total-label {
  font-weight: 500;
  flex: 1;
}

.third-total-amount {
  font-weight: 700;
  flex: 1;
  text-align: right;
}

.third-pay-button {
  background-color: #66ac47;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 16px;
  text-align: center;
  width: 100%;
}

.third-page-wrapper {
  display: none;
  width: 100%;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 2rem;
}
@media (max-width: 790px) {
  .third-page-wrapper {
    width: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.footer-container {
  background-color: #093f63;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.footer-top {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  height: 7rem;
  justify-content: space-between;
}

@media (max-width: 584px) {
  .footer-top {
    justify-content: flex-start;
  }
}

.logo {
  margin: 0 4rem;
  font: 400 2rem/3.625rem Varela, -apple-system, Roboto, Helvetica, sans-serif;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.logo1 {
  margin: 0 4rem;
  font: 400 2rem/3.625rem Varela, -apple-system, Roboto, Helvetica, sans-serif;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.social-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 4rem;
}

.social-text {
  font: 500 1rem/1.8125rem Montserrat, sans-serif;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.footer-middle {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font: 500 0.875rem/1.5625rem Montserrat, sans-serif;
}

@media (max-width: 1245px) {
  .footer-middle {
    justify-content: flex-start;
  }
}

.nav-links {
  display: flex;
  min-width: 15rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 1rem 2rem;
  padding-left: 0;
}

.nav-link {
  text-decoration: none;
  color: inherit;
}

.contact-info {
  text-align: right;
  margin: 1rem 4rem;
}

.footer-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font: 500 0.875rem/1.5625rem Montserrat, sans-serif;
}

@media (max-width: 660px) {
  .footer-bottom {
    justify-content: flex-start;
  }
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 1rem 4rem;
}

.footer-bottom-text {
  margin: 1rem 4rem;
}

.legal-link {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 61.9375rem) {
  .footer-top,
  .footer-middle,
  .footer-bottom {
    padding: 1.5rem 1.25rem;
    padding-left: 0;
    position: relative;
    right: 2rem;
  }

  .nav-links,
  .contact-info {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    margin-top: 1.25rem;
  }

  .nav-links {
    width: 12rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.first-pricing-container {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  width: 721px;
  flex-direction: column;
  overflow: hidden;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 770px) {
  .first-pricing-container {
    width: 100%;
    max-width: 721px;
  }
}

/*.first-pricing-container2 {
  border-radius: 20px;
  background-color: #fff;
  display: none;
  width: 721px;
  flex-direction: column;
  overflow: hidden;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
}*/

.first-pricing-container2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  border-radius: 20px;
}

@media (max-width: 770px) {
  .first-pricing-container2 {
    width: 100%;
    max-width: 721px;
  }
}

.first-pricing-content {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 5px 10px;
  align-items: flex-start;
}

.first-pricing-title {
  margin-bottom: 0;
  margin-top: 0;
  color: #000;
  text-align: center;
  font: 600 20px Montserrat, sans-serif;
}

.first-pricing-options {
  display: flex;
  margin-top: 24px;
  width: 100%;
  align-items: start;
  gap: 24px;
  color: rgba(0, 0, 0, 0.5);
  justify-content: start;
  flex-wrap: wrap;
  font: 12px/1.6 Montserrat, sans-serif;
}

@media (max-width: 991px) {
  .first-pricing-options {
    max-width: 100%;
  }
}

.first-value-setter {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  font-weight: 500;
  justify-content: start;
  flex: 1;
  flex-basis: 0%;
}

@media (max-width: 991px) {
  .first-value-setter {
    max-width: 100%;
  }
}

.first-value-setter-title {
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .first-value-setter-title {
    max-width: 100%;
  }
}

.first-value-input {
  border-radius: 10px;
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: #000;
  line-height: 36px;
  justify-content: start;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .first-value-input {
    max-width: 100%;
  }
}

.first-currency-symbol {
  align-self: stretch;
  margin: auto 0;
}

.first-value-amount {
  align-self: stretch;
  flex: 1;
  flex-basis: 0%;
  border: none;
  font-size: 20px;
}

.first-value-period {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 22px;
  align-self: stretch;
  margin: auto 0;
}

.first-minimum-amount {
  font-weight: 400;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .first-minimum-amount {
    max-width: 100%;
  }
}

.first-value-adjuster {
  display: flex;
  margin-top: 8px;
  width: 100%;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1;
  justify-content: start;
}

@media (max-width: 991px) {
  .first-value-adjuster {
    max-width: 100%;
  }
}

.first-adjuster-text {
  text-align: right;
  align-self: stretch;
  margin: auto 0;
}

.first-adjuster-button {
  border-radius: 20px;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #66ac47;
  font-weight: 700;
  white-space: nowrap;
  justify-content: center;
  margin: auto 0;
  padding: 8px 16px 8px 12px;
  border: 1px solid #66ac47;
}

@media (max-width: 991px) {
  .first-adjuster-button {
    white-space: initial;
  }
}

.first-adjuster-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin: auto 0;
}

.first-adjuster-amount {
  align-self: stretch;
  margin: auto 0;
}

.first-adjuster-description {
  text-align: right;
  align-self: stretch;
  margin: auto 0;
}

.first-capacity-setter {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.first-capacity-title {
  font-weight: 600;
  margin: 0;
}

.first-capacity-input {
  border-radius: 10px;
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  line-height: 36px;
  justify-content: start;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .first-capacity-input {
    white-space: initial;
  }
}

.first-capacity-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin: auto 0;
}

.first-capacity-amount {
  width: 90%;
  font-size: 20px;
  border: none;
}

.first-minimum-users {
  font-weight: 400;
  margin-top: 8px;
}

.first-divider {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .first-divider {
    max-width: 100%;
  }
}

.first-calculation-section {
  display: flex;
  padding: 1rem 2rem;
  padding-bottom: 2rem;
  align-items: start;
  gap: 40px 100px;
  width: 90%;
  justify-content: center;
  flex-wrap: wrap;
}

#after-edit-first-calculation-section{
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .first-calculation-section {
    max-width: 100%;
  }
}

.first-calculate-button {
  align-self: stretch;
  border-radius: 5px;
  background-color: #66ac47;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

.first-total-amount {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-family: Montserrat, sans-serif;
  justify-content: start;
}

.first-total-label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.first-total-value {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
}

.first-payment-details {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px 32px;
  font: 14px Montserrat, sans-serif;
}

@media (max-width: 991px) {
  .first-payment-details {
    max-width: 100%;
    padding: 0 20px;
  }
}

.first-payment-title {
  margin: 8px 0;
  color: #000;
  font-weight: 600;
}

.first-payment-item {
  display: flex;
  margin-top: 16px;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .first-payment-item {
    max-width: 100%;
  }
}

.first-payment-label {
  align-self: stretch;
  margin: auto 0;
}

.first-payment-value {
  align-self: stretch;
  margin: auto 0;
}

.first-total-payable {
  display: flex;
  margin-top: 8px;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .first-total-payable {
    max-width: 100%;
  }
}

.first-total-payable-label {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  align-self: stretch;
  margin: auto 0;
}

.first-total-payable-value {
  color: #000;
  font-weight: 600;
  align-self: stretch;
  margin: auto 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.third-payment-summary {
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  width: 721px;
  flex-direction: column;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 790px) {
  .third-payment-summary {
    width: auto;
  }
}

.third-payment-summary1 {
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  width: 721px;
  flex-direction: column;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 790px) {
  .third-payment-summary1 {
    width: auto;
  }
}

.third-summary-header {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  line-height: 1.6;
  flex-wrap: wrap;
  padding: 24px 32px;
  justify-content: center;
}

.third-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 40px;
}

.third-payment-info {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  flex: 1;
  flex-basis: 0%;
}

.third-congratulations-message {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  font-size: 12px;
  margin: 0;
  font-family: Montserrat, sans-serif;
  /*font-weight: 700;*/
  font-size: 16px;
}
.third-congratulations-message1 {
  color: rgba(0, 0, 0, 0.75);
  /*font-weight: 700;*/
  font-size: 22px;
  margin-top: 0;
}

.third-payment-amount {
  color: #000;
  font-size: 32px;
  line-height: 1;
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: start;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}
.third-payment-amount1 {
  color: #000;
  font-size: 14px;
  line-height: 1;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: start;
}

.third-payment-details {
  display: flex;
  margin-top: 4px;
  width: 100%;
  align-items: center;
  gap: 8px;
  color: #000;
  flex-wrap: wrap;
  flex-direction: row;
  font-family: Montserrat, sans-serif;
  justify-content: space-between;
  font-weight: 500;
  padding-left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.third-payment-details-green {
  display: flex;
  margin-top: 4px;
  width: 100%;
  align-items: center;
  gap: 8px;
  color: #66ac47;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  font-weight: 700;
  padding-left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.third-detail-item {
  align-self: stretch;
  margin: auto 0;
  font-weight: 700;
}

.third-detail-item-green {
  align-self: stretch;
  margin: auto 0;
  font-size: 14px;
  font-weight: bold;
}

.third-detail-item1 {
  color: #888;
}

.third-edit-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  background-color: #66ac47;
  border: none;
  border-radius: 8px;
    padding: 8px 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .third-edit-section {
    white-space: initial;
  }
}

.third-edit-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin: auto 0;
}

.third-edit-text {
  align-self: stretch;
  margin: auto 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.third-payment-breakdown {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1;
  padding: 12px 32px;
}

.third-breakdown-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.third-divider-new {
  margin-top: 16px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .third-divider {
    max-width: 100%;
  }
}

.third-breakdown-item {
  display: flex;
  margin-top: 16px;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .third-breakdown-item {
    max-width: 100%;
  }
}

.third-item-label {
  align-self: stretch;
  margin: auto 0;
}

.third-item-value {
  align-self: stretch;
  margin: auto 0;
}

.third-total-amount {
  display: flex;
  margin-top: 8px;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .third-total-amount {
    max-width: 100%;
  }
}

.third-total-label {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  align-self: stretch;
  margin: auto 0;
}

.third-total-value {
  color: #000;
  font-weight: 600;
  align-self: stretch;
  margin: auto 0;
}

.third-pay-button {
  align-self: flex-end;
  border-radius: 5px;
  background-color: #66ac47;
  margin-top: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 16px 24px;
  border: none;
  width: 8.375rem;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.third-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#congrats-final-screen {
  display: none;
}

.price-slider{
  width: 100%;
}

.addon-wrapper {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 32px;
  gap: 24px;
  font: 14px Montserrat, sans-serif;
}

.addon-image {
  display: flex;
  justify-content: space-between;
}

.ao-checkmark {
  display: none;
}

@media (max-width: 991px) {
  .addon-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}

.addon-header {
  display: flex;
  flex-direction: column;
}

.addon-bold {
  font-weight: 700;
  color: #093f63;
  font-size: 16px;
  font: Montserrat;
}

.addon-default {
  font-weight: 600;
  color: rgb(0, 0, 0, 0.5);
  font-size: 12px;
  font: Montserrat;
}

.addon-card-wrapper {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
}

.addon-card {
  display: flex;
  flex-direction: column;
  width: 24%;
  border-radius: 12px;
  background-color: #fff;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgb(0, 0, 0, 0.1);
  cursor: pointer;
}


.addon-card-long {
  display: flex;
  flex-direction: column;
  width: 41%;
  border-radius: 12px;
  background-color: #fff;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgb(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 697px){
  .addon-card, .addon-card-long{
    width: 100%;
  }
}
.ao-desc-bold {
  font-weight: 500;
  color: #000000;
  font-size: 14px;
  font: Montserrat;
  padding-bottom:10px;
}

.ao-desc-default {
  font-weight: 500;
  color: rgb(0, 0, 0, 0.5);
  font-size: 14px;
  font: Montserrat;
}

.giveaway-container {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  position: relative;
  max-width: 350px;
  line-height: 1;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #66ac47;
  background-image: linear-gradient(#fff, #b6d6a7);
}

.giveaway-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.giveaway-title {
  position: relative;
  color: #093f63;
  text-align: center;
  font: 700 20px Montserrat, sans-serif;
}

.giveaway-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 250px;
  align-self: center;
  margin-top: 31px;
  max-width: 100%;
}

.giveaway-button {
  position: relative;
  align-self: stretch;
  border-radius: 5px;
  background-color: #093f63;
  margin-top: 31px;
  min-height: 40px;
  width: 100%;
  color: #fff;
  padding: 10px 20px;
  font: 400 16px "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

.first-payment-details-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 90%;
  padding: 12px 24px;
  border-radius: 20px;
  border: 1px solid rgb(0, 0, 0, 0.1);
  font: 14px Montserrat, sans-serif;
}

@media (max-width: 991px) {
  .first-payment-details-card {
    max-width: 100%;
    padding: 0 20px;
  }
}

.ao-sidemenu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.spin-wheel-container {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  max-width: 528px;
  flex-direction: column;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1;
  justify-content: center;
  padding: 10px;
  z-index: 9;
}

.spin-wheel-title {
  color: #093f63;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  align-self: stretch;
  margin:0px;
}

.spin-wheel-image-container {
  display: flex;
  margin-top: 0px;
  width: 100%;
  flex-direction: column;
  overflow: visible;
  align-items: center;
  font-size: 12px;
  color: #ce0614;
  white-space: nowrap;
  text-align: right;
  aspect-ratio: 1;
}

.spin-wheel-image-wrapper {
  display: flex;
  flex-direction: column;
  transform: rotate(0.015980221426776138rad);
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  padding: 8px;
  justify-content: center;
  align-items: center;
}

/* Style for the spin wheel image */

.spin-wheel-image {
  position: absolute;
  /*height: 400px;*/
  width: 400px;
  object-fit: cover;
  object-position: center;
  display: flex;
  justify-content: center;
  transition: transform 3.0s; /* Smooth rotation */
}

/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spin-button {
  align-self: stretch;
  border-radius: 10px;
  background-color: #66ac47;
  margin-top: 0px;
  width: 100%;
  color: #fff;
  white-space: nowrap;
  padding: 12px 20px;
  font: 400 20px "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .spin-wheel-container {
    padding: 0 20px;
  }

  .spin-wheel-image-container {
    margin-top: 40px;
    white-space: initial;
  }

  .spin-wheel-image-wrapper {
    padding: 100px 20px 110px;
  }

  .spin-button {
    margin-top: 40px;
    margin-bottom: 40px;
    white-space: initial;
  }
}

/*.spin-wheel-image {
  transition: transform 4s cubic-bezier(0.33, 1, 0.68, 1);
}*/

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

.modal-content {
  margin: 15% auto; /* 15% from the top and centered */
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: auto; /* Could be more or less, depending on screen size */
  height: auto;
  border-radius: 20px;
  background-color: rgb(255, 255, 255, 0);
  display: flex;
  max-width: 528px;
  flex-direction: column;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1;
  justify-content: center;
  z-index: 9;
}

@media(max-width: 520px){
.modal-content{
  width: auto;
  height: auto;
}
}


.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Add this to your existing CSS file */
.addon-card {
  transition: border-color 0.3s;
}

.addon-card.selected {
  border-color: #66ac47; /* Change border color on selection */
}

.addon-card.selected .ao-checkmark {
  display: flex; /* Show checkmark when selected */
}

.giveaway-title2 {
  position: relative;
  color: #093f63;
  text-align: center;
  font: 700 24px Montserrat, sans-serif;
}

.giveaway-subtitle {
  position: relative;
  color: #66ac47;
  margin: 0;
  text-align: center;
  font: 700 16px Montserrat, sans-serif;
}

.giveaway-container2 {
  display: none;
  flex-direction: column;
  border-radius: 20px;
  position: relative;
  max-width: 350px;
  line-height: 1;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #66ac47;
  background-image: linear-gradient(#fff, #b6d6a7);
}

@media (max-width: 450px){
  .giveaway-container2{
    padding: 8px;
  }
}

.congratulations-section {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  position: relative;
  width: 500px;
  line-height: 1;
  justify-content: center;
  padding: 15px;
  background-color: #66ac47;
  align-items: center;
}

@media (max-width: 450px){
  .congratulations-section{
    width: 80%;
  }
}

.background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.congratulations-content {
  position: relative;
  display: flex;
  width: 95%;
  flex-direction: column;
  align-items: center;
  font-family: Montserrat, sans-serif;
  color: #fff;
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .congratulations-content {
    max-width: 100%;
  }
}

.congratulations-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .congratulations-title {
    max-width: 100%;
  }
}
@media (max-width: 780px) {
  .congratulations-title {
    margin-top: 4rem;
  }
}

.congratulations-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .congratulations-subtitle {
    max-width: 100%;
  }
}

.prize-container {
  background-image: url("../images/effect.gif");
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  margin-top: 5px;
  width: 95%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.prize-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 179px;
  max-width: 100%;
}

.prize-details {
  align-self: stretch;
  display: flex;
  margin-top: 3px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-family: Montserrat, sans-serif;
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .prize-details {
    max-width: 100%;
    margin-top: 40px;
  }
}

.prize-title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .prize-title {
    max-width: 100%;
  }
}

.prize-value {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
}

@media (max-width: 991px) {
  .prize-value {
    max-width: 100%;
  }
}

.claim-button {
  border-radius: 10px;
  background-color: #093f63;
  margin-top: 5px;
  width: 224px;
  max-width: 100%;
  color: #fff;
  padding: 12px 20px;
  font: 800 16px "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
  border: 1px solid #093f63;
  cursor: pointer;
}

@media (max-width: 991px) {
  .claim-button {
    margin-top: 40px;
  }
}

.action-buttons {
  position: relative;
  display: flex;
  margin-top: 24px;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
  justify-content: flex-start;
  font: 400 16px "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
  .action-buttons {
    max-width: 100%;
  }
}

.cancel-button {
  align-self: stretch;
  border-radius: 10px;
  background-color: #409f16;
  color: #fff;
  flex-wrap: wrap;
  margin-top: 36px;
  flex: 1;
  padding: 12px 20px;
  font: 500 20px "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .cancel-button {
    white-space: initial;
  }
}

.spin-button2 {
  align-self: stretch;
  border-radius: 10px;
  background-color: #fff;
  color: #093f63;
  flex-wrap: wrap;
  flex: 1;
  padding: 12px 20px;
  margin-top: 36px;
  font: 500 20px "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

.giveaway-card {
  width: 286px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #66ac47;
  border-radius: 16px;
  border: 4px solid #fff;
  padding: 48px 24px;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
  text-align: center;
}

.ga-desc-bold {
  font-size: 20px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  color: #fff;
}

.ga-desc-default {
  font-size: 16px;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
  color: #fff;
  margin-top: 1rem;
}

.giveaway-logo img {
  width: 120px;
  height: 120px;
}

.cloud-payment-item,
.payment-payment-item,
.tally-payment-item,
.whatsapp-payment-item,
.mobileapp-payment-item {
  display: none;
  margin: 8px 0;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .cloud-payment-item,
  .payment-payment-item,
  .tally-payment-item,
  .whatsapp-payment-item,
  .mobileapp-payment-item {
    max-width: 100%;
  }
}

.wheel-pointer{
  z-index: 9;
  width: 58px;
  height: 85px;
  position: relative;
  bottom: 3%;
}


        /* Custom checkbox styles */
        .custom-checkbox {
          width: 25px; /* Size of the checkbox */
          height: 25px; /* Size of the checkbox */
          background-color: #E2E2E2; /* Background color */
          border-radius: 50%;/* Border color */
          display: inline-block;
          position: relative;
          cursor: pointer;
      }

      /* Checked state */
      .addon-checkbox:checked + .custom-checkbox {
          background-color: #66ac47; /* Change background when checked */
          border-color: #409f16; /* Darker border when checked */
      }

      /* Checkmark */
      .custom-checkbox::after {
          content: '';
          position: absolute;
          left: 8px;
          top: 4px;
          width: 6px;
          height: 12px;
          border: solid white; /* Checkmark color */
          border-width: 0 2px 2px 0;
          transform: rotate(45deg);
          opacity: 0; /* Hidden by default */
      }

      /* Show checkmark when checked */
      .addon-checkbox:checked + .custom-checkbox::after {
          opacity: 1; /* Show checkmark */
      }

      .addon-checkbox {
        display: none;
    }


    .new-spin-prize-container {
      border-radius: 20px;
      background-color: #66ac47;
      display: none;
      max-width: 721px;
      height: 400px;
      flex-direction: column;
      justify-content: flex-end;
    }
    
    .new-spin-prize-content {
      display: flex;
      flex-direction: column;
      border-radius: 10px;
      position: relative;
      height: 160px;
      align-items: flex-end;
      gap: 16px;
      justify-content: flex-start;
      padding: 32px 48px 0;
    }
    
    .new-spin-prize-background {
      position: absolute;
      inset: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      background-color: #093f63;
      object-position: center;
      border-radius: 10px;
    }
    
    .new-spin-prize-details {
      position: relative;
      display: flex;
      min-width: 240px;
      width: 100%;
      align-items: center;
      gap: 48px;
      justify-content: center;
      flex-wrap: wrap;
      flex: 1;
      flex-basis: 0%;
      bottom: 197px;
    }
    
    .new-spin-prize-image-wrapper {
      align-self: stretch;
      display: flex;
      min-width: 240px;
      flex-direction: column;
      justify-content: flex-start;
      width: 282px;
      margin: auto 0;
      z-index: 9;
    }
    
    .new-spin-prize-image {
      object-fit: contain;
      object-position: center;
      width: 300px;
      align-self: center;
      max-width: 100%;
    }
    
    .new-spin-prize-spacer {
      display: flex;
      min-height: 92px;
      width: 100%;
    }
    
    .new-spin-prize-card {
      background-image: url("../images/effect.gif");
      height: 100%;
      border-radius: 16px 16px 0 0;
      background-color: #fff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
      align-self: stretch;
      display: flex;
      flex-direction: column;
      font-family: Montserrat, sans-serif;
      text-align: center;
      line-height: 1;
      justify-content: center;
      flex: 1;
      width: auto;
      flex-basis: 0%;
      margin: auto 0;
      padding: 4px 0;
      border: 4px solid #fff;
      border-bottom: none;
      z-index: 9;
    }
    
    .new-spin-prize-title {
      color: #093f63;
      font-size: 16px;
      font-weight: 700;
      margin : 0;
      padding: 5px;
    }
    
    .new-spin-prize-icon {
      aspect-ratio: 0.99;
      object-fit: contain;
      object-position: center;
      width: 119px;
      filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1));
      align-self: center;
      margin-top: 24px;
      max-width: 100%;
    }
    
    .new-spin-prize-description {
      display: flex;
      width: 100%;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .new-spin-prize-name {
      color: #000;
      font-size: 14px;
      font-weight: 600;
      margin: 5px;
      padding: 5px;
    }
    
    .new-spin-prize-value {
      font-size: 12px;
      font-weight: 600;
      margin: 2px;
      color: #093f63;
    }
    
    .new-spin-visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    
    @media (max-width: 991px) {
      .new-spin-prize-container {
        padding-top: 100px;
      }
    
      .new-spin-prize-content {
        max-width: 100%;
        padding: 0 20px;
      }
    
      .new-spin-prize-details {
        max-width: 100%;
      }
    
      .new-spin-prize-card {
        padding: 0 20px;
      }
    }
    

    .new-spin-prize-spin-button{
    background-color: #66ac47;
    color: #fff;
    border: none;
    font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
    }


    .new-spin-prize-button{
    display: flex;
    background-color: #fff;
    padding: 16px;
    width: 94%;
    justify-content: end;
    font-family: "Varela Round", -apple-system, Roboto, Helvetica, sans-serif;
    }


    .pre-spin-container{
      height: auto;
      width: 447px;
      background-color: #fff;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .pre-spin-blue-container{
      height: 85%;
      border-radius: 10px;
      background-color: #fafafa;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .pre-spin-content{
      background-image: url("../images/effect.gif");
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      gap: 16px;
      width: 90%;
      bottom: 94px;
    }

    .pre-spin-button-container{
      width: 100%;
      padding: 0 24px;
    }

    .pre-spin-button{
      width: 100%;
      padding: 12px;
      background-color: #66ac47;
      color: #fff;
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      border: none;
      box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
    }

    .spin-and-win-first{
      width: 281px;
      display: flex;
      justify-content: center;
     position: relative;
     bottom: 30px;
    }

    .blue-edit-header{
      padding: 16px 24px;
      background-color: #093f63;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    
    .green-edit-header{
      padding: 12px 24px;
      background-color: #66ac47;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }


    .blue-header-text{
      font-family: Montserrat, sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: #fff;
      display: flex;
      align-items: center;
    }

    
    .green-header-text{
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: 16px;
      color: #fff;
      display: flex;
      align-items: center;
    }

    .values-header-new{
      font-weight: 500;
      color: #093f63;
      font-size: 16px;
      font: Montserrat;
    }

    .new-values-container{
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 16px;
    }

    .values-card-container{
      display: flex;
      border-radius: 10px;
      border: 1px solid rgb(0, 0, 0, 0.1);
    }

    @media(max-width: 750px){
      .values-card-container{
        flex-wrap: wrap;
      }
      .values-card{
        width: 100%;
      }
    }

    @media(max-width: 490px){
      .pre-spin-container{
        width: auto;
      }
      .values-card{
        width: 100%;
      }
      .spin-wheel-image{
        width: 300px !important;
        height: auto !important;
      }
    }
    @media(max-width: 750px){
      .values-card{
        padding: 8px !important;
        gap: 4px !important;
      }
      .form-container{
        width: 100%;
      }
    }

    .values-card{
      display: flex;
      background-color: rgb(205, 4, 48, .05);
      padding: 4px;
      gap: 0;
      border: 1px solid rgb(0, 0, 0, 0.1);
    }

    .values-card img {
      width:25px;
    }

    #valueCard1{
      border-radius: 10px 0 0 10px;
    }

    #valueCard5{
      border-radius: 0 10px 10px 0;
    }

    .values-text{
      font-weight: 600;
      font-size: 10px;
      font: Montserrat;
      max-width: 100px;
      margin-left: 10px;
    }

    #checkCircle{
      display: none;
    }

    .first-total-amount-new {
      display: flex;
      align-items: center;
      font-family: Montserrat, sans-serif;
      justify-content: flex-end;
      gap: 0.5rem;
    }





    /*------------------------------------------------*/


.checkbox-wrapper-4 * {
  box-sizing: border-box;
}
.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  align-items: center;
  display: flex;
}
.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  transform: scale(1);
  background-color: #f2f2f2;
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}
.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  top: 5px;
  left: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx:hover{
  background-color: white;
}
.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}
.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color:#409f16;
}
.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}
.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
  background: #66ac47;
  border-color: #409f16;
  animation: wave-4 0.4s ease;
}
.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 640px) {
  .checkbox-wrapper-4 .cbx {
    width: 100%;
    display: inline-block;
  }
}
@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

.pre-spin-container-new{
  
  height: auto;
  width: 447px;
  background-color: #fff;
  border-radius: 20px;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
}
.pre-spin-blue-container-new{
  height: 115px;
  border-radius: 10px;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pre-spin-content-new{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 16px;
  width: 90%;
}

.pre-spin-logo{
  POSITION: relative;
  top: 9px;
}

.values-header-new-wrapper{
  display: flex;
  justify-content: space-between;
}



body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 24px;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  margin-top: 24px;
}

.subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #6c757d;
  margin-top: 8px;
}
/* 
.divider {
  height: 4px;
  width: 96px;
  background-color: #5c6bc0;
  margin: 16px auto;
  opacity: 0.75;
} */

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px 0;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 16px;
  padding: 16px;
  width: 280px;
  transition: transform 0.2s;
}

.card.popular {
  border: 2px solid #5c6bc0;
}

.card-header {
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.card-price {
  font-size: 1rem;
  color: #6c757d;
}

.card-description {
  text-align: center;
  margin: 16px 0;
}

.features {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.features li {
  margin: 8px 0;
  color: #495057;
}

.select-button {
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.select-button:hover {
  background-color: #6c757d;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.footer-text {
  border-bottom: 2px solid #5c6bc0;
  color: #5c6bc0;
  margin-right: 8px;
}

.twitter-icon {
  height: 20px;
  fill: #5c6bc0;
  cursor: pointer;
  transition: fill 0.2s;
}

.twitter-icon:hover {
  fill: #3b5998;
}


body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9fafb;
  color: #111827;
}

.am-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  margin-bottom: 2rem;
}

.am-header {
  text-align: center;
  margin-bottom: 2rem;
}

.am-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #093f63;
}

.am-header p {
  font-size: 1.25rem;
  color: #6b7280;
}

.am-pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.am-pricing-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  margin: 20px auto;
  text-align: center;
  transition: transform 0.2s;
}

.am-pricing-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.am-pricing-card p {
  margin-bottom: 1rem;
  color: #6b7280;
}

.am-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #333;
}

.am-description {
  font-size: 1rem;
  color: #666;
}

.am-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 15px 0;
}

.am-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #66ac47;
  margin-right: 5px;
}

.am-duration {
  font-size: 1rem;
  color: #888;
  /*margin-left: 0.5rem;
  color: #6b7280;*/
}

.am-features {
  /*list-style-type: none;*/
  /*text-align: left;
  padding: 0;
  margin: 1.5rem 0;
  padding-left: 1rem;*/

  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.am-feature {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  text-align: left;
}

/*.am-features li {
  margin: 0.5rem 0;
}*/

.am-icon {
  color: #66ac47;
  margin-right: 10px;
}

.am-button {
  background-color: #66ac47;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  width: 100%;
  transition: background-color 0.3s;
}

.am-button:hover {
  background-color: #56913d;
}

.am-pricing-card:hover{
  border: 1px solid rgb(102, 172, 71, 0.5);
  transform: scale(1.01);

}

.am-pricing-card-final {
  background-color: white;
  border: 1px solid #e5e7eb;
  transition: transform .2s;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.am-pricing-card-final h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.am-pricing-card-final p {
  margin-bottom: 1rem;
  color: #6b7280;
}

.am-pricing-cards {
  display: flex;     
  flex-wrap: wrap;    
  gap: 1.5rem;     
  margin: -0.75rem;     
}

.am-pricing-card {
  flex: 1 1 300px;    
  margin: 0.75rem;   
}


.third-payment-summary{
  width: auto;
}

.final-selected-plan-card {
  height: auto !important;
  border: 1px solid #E5E7EB;
  transform: none;
  flex: none;
  margin: 0px;
  border-radius: 20px;
  box-shadow: none;
}

.final-selected-plan-card:hover {
  border: 1px solid #E5E7EB;
  transform: none;
}

.am-button-parent{
  margin-top: 8.5rem;
}

.am-button-parent2{
  margin-top: 6.5rem;
}