@import url('https://fonts.googleapis.com/css2?family=Delius+Unicase&display=swap');

#meditoons-qna-form {
  max-width: 600px;
  margin: 20px auto;
  background: none;
  padding: 0 20px;
}

#meditoons-qna-form label {
  font-family: 'Delius Unicase', cursive;
  font-size: 12.8px;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

#meditoons-qna-form input[type="text"],
#meditoons-qna-form input[type="number"],
#meditoons-qna-form input[type="tel"],
#meditoons-qna-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background-color: #ffffff21;
  border: 1px solid var( --e-global-color-5a99a45 );
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
}

#meditoons-qna-form input::placeholder {
  color: #96989b;
  font-size: 14px;
  border: none;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.field-wrap {
  flex: 1;
}

.form-question {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.question-label {
  margin-bottom: 25px;
}

/* simple MCQ styling */
.mcq-option {
  display: inline-block !important;
  margin-right: 15px;
}
.mcq-option input {
  margin-right: 6px;
}

#download-message{
  color: white;
  font-family: 'Delius Unicase', cursive;
  font-size: 12.8px;
	
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#meditoons-qna-submit {
  padding: padding: 17px 40px 17px 40px;;
  background-color: var( --e-global-color-857338c );
  color: var( --e-global-color-primary );
  border: none;
  border-radius: 30px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  font-family: "Delius Unicase", Sans-serif;
}
#meditoons-qna-submit:hover {
  opacity: 0.9;
  background-color: #AEEAFD;
  transform: scale(1.1);
}
#meditoons-qna-form input:focus,
#meditoons-qna-form select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ffffff21;
}
/* base select styling */
#meditoons-qna-form select {
  background-color: #ffffff21;
  color: #fff;
	border-radius: 20px;
}

/* dropdown menu items */
#meditoons-qna-form select option {
  background-color: #455969;
  color: #fff;
}

/* when you hover or keyboard‑navigate options */
#meditoons-qna-form select option:hover,
#meditoons-qna-form select option:checked {
  background-color: #455969;
  color: #fff;
}


#qna-loader {
  text-align: center;
  font-style: italic;
  color: #555;
}
.loader {
  border: 3px solid #eee;
  border-top: 3px solid #666;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 10px;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
