@import url("./theme.css");
.error-message {
    color: var(--color-error);
    border-color: var(--color-error);
    margin-top: 1rem;
    font-size: var(--font-size-sm);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    visibility: hidden;
    border: 1px solid var(--color-error, #d63638);
    border-radius: var(--border-lg);
    padding-left: 8px;
}
.error-message.is-visible {
    visibility: visible;
}
.error-message.is-visible::before {
    content: "⚠ ";
    font-weight: bold;
    font-size: var(--font-size-xl);
    margin-right: 4px;
}
@keyframes shadowAnim {
	0%,100% {
		-webkit-box-shadow: 0 0 0 #00bfff;
		box-shadow: 0 0 0 #00bfff;
	}

	50% {
		-webkit-box-shadow: 0 0 20px #00bfff;
		box-shadow: 0 0 20px #00bfff;
	}
}
.phone-input-wrapper{
	width: 100%;
	height: 60px;
	display: flex;
	margin: auto;
	overflow: hidden;
	border-radius: 4px;
	align-items: center;
	border: 3px solid #00bfff;
	box-sizing: border-box;
	background-color: #fff;
	margin-bottom: 10px;
	position: relative;
	-webkit-animation: shadowAnim 1.5s infinite;
	animation: shadowAnim 1.5s infinite;
}
#ctaButton{
/* 	box-shadow: 0 5px 30px 0 rgba(51,114,255,0.40); */
/* 	border-radius: 4px; */
	border: 0;
/* 	font-family: 'Poppins',sans-serif; */
	font-size: 21pt;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	height: 90px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-animation: pulse 1.5s infinite;
	animation: pulse 1.5s infinite
}
#ctaButton.is-disabled {
	animation: none;
	-webkit-animation: none;
	color: white;
	background: #d0d0d0;
	transition: none;
	box-shadow: 0 0;
}
.phone-label.is-disabled {
	animation: none;
	-webkit-animation: none;
}
.phone-input-wrapper.is-disabled {
	animation: none !important;
	-webkit-animation: none !important;
}

.subscriptionInfo h3 { font-size: 0.9rem !important; }



/*  FAQ CSS STYLES */
/* Accordion / details inside modal */
#modal-body details {
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-secondary);
}

#modal-body details:last-of-type {
  margin-bottom: 0;
}

/* Summary (clickable header) */
#modal-body details summary {
  padding: 15px 20px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: color 0.2s ease;
}

/* Remove default arrow */
#modal-body details summary::-webkit-details-marker {
  display: none;
}

/* Custom + icon */
#modal-body details summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-secondary);
  margin-left: 10px;
  flex-shrink: 0;
}

/* Hover */
#modal-body details summary:hover {
  color: var(--primary-color);
}

/* Open state */
#modal-body details[open] summary {
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

#modal-body details[open] summary::after {
  content: '−';
}

/* Content inside details */
#modal-body details p {
  padding: 15px 20px;
  margin: 0;
  color: var(--text-secondary);
}

#modal-body details p:last-child {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  #modal-body details summary {
    padding: 12px 15px;
    font-size: 14px;
  }

  #modal-body details p {
    padding: 12px 15px;
    font-size: 14px;
  }

  #modal-body details p:last-child {
    padding-bottom: 15px;
  }
}
