#defer a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}
#defer a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.rounded-lg {
    border-radius: 5px;
}
/* input {
    color: #251d00 !important;
} */

.confirm-info input {
    color: #333 !important;
}
input.autocomplete-input {
    border: none;
    background: none;
    outline: none;
    background-color: #000;
    border-radius: 40px;
    padding: 5px 0;
    font-size: 1em; /* Adjust the font size as needed */
    color: #FFF1B6 !important;
    width: 100%; /* Make the input take up the full width of its container */
}

input.autocomplete-input::placeholder {
    color: #aaa; /* Adjust placeholder color if needed */
    opacity: .7; /* Ensures placeholder is fully visible */
}

.autocomplete-suggestions {
    padding: 10px;
    font-size: 1.6em;
    background: #fff;
    overflow: auto;
}
.autocomplete-suggestion {
    padding: 6px 5px;
    white-space: nowrap;
    overflow: hidden;
}
.autocomplete-selected {
    background: #f0f0f0;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399ff;
}
.autocomplete-group {
    padding: 2px 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}
.btn-cta {
    background-color: #ffd252;
    border-radius: 10px;
    color: #444444;
    font-weight: 600;
    -webkit-box-shadow: 0px 10px 0px 0px rgba(255, 242, 203, 1);
    -moz-box-shadow: 0px 10px 0px 0px rgba(255, 242, 203, 1);
    box-shadow: 0px 10px 0px 0px rgba(255, 242, 203, 1);
}

.no-scroll {
    overflow: hidden;
  }

  .modal {
    max-height: 100vh; /* Ensure the modal doesn't exceed the viewport height */
}

.modal > div {
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 100vh; /* Adjust as needed to fit your design */
}


.response-message {
    margin-top: 20px;
    color: #fff;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* Adjust the height if needed */
  }

  .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid #fee091;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

.modal-wrapper, .modal-header, .modal-content, #loader {
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
}

.modal-wrapper.hidden, .modal-header.hidden, .modal-content.hidden {
    opacity: 0; /* Fade out */
    visibility: hidden; /* Hide element */
}

#loader.visible {
    display: block;
    opacity: 1; /* Fade in */
    visibility: visible; /* Show element */
}


#instructionModal {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

#instructionModal.show {
    opacity: 1;
    visibility: visible;
}


.item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Adjust as needed */
    overflow: hidden;
}

.text {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    white-space: nowrap; /* Prevent text wrapping */
    font-family: monospace; /* Optional: for a typewriter font */
}

.space-mono-regular {
    font-family: "Space Mono", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .space-mono-bold {
    font-family: "Space Mono", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .space-mono-regular-italic {
    font-family: "Space Mono", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .space-mono-bold-italic {
    font-family: "Space Mono", serif;
    font-weight: 700;
    font-style: italic;
  }
  

#typewriter-container {
    font-family:  "Space Mono", serif;
    white-space: pre-wrap; /* Preserve whitespace and line breaks */
    line-height: 1.5; /* Adjust line height for readability */
    transition: opacity 0.5s ease-in-out; /* Smooth fade-out transition */
    opacity: 1; /* Initial opacity */
    text-align: center;
    color: #fff;
    font-size: 28px;

}