@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:var(--a3-font-weight),var(--p2-font-weight),var(--p1-font-weight),var(--p3-bold-font-weight),var(--h1-font-weight)");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}


/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}


.input1{
	color: #022B1B;
	font-size: 16px;
	font-family: Roboto Condensed;
	font-weight: 400;
	line-height: 17.49px;
	word-wrap: break-word;
	width: 400px; 
  height: 36px;
  border: 1px #022B1B solid;
  border-radius: 3px;
}

.input1::placeholder {
    color: lightgrey; /* Set placeholder text color */
    font-style: italic; /* Optional: Make it italic */
}

.recaptcha-container {
            width: 100%;
            text-align: center;
            margin: 20px 0; /* Optional: Adds some spacing around the widget */
        }

.g-recaptcha {
    display: inline-block;
}


.textarea{
	color: #022B1B;
	font-size: 16px;
	font-family: Roboto Condensed;
	font-weight: 400;
	line-height: 17.49px;
	word-wrap: break-word;
  border: 1px #022B1B solid;
  border-radius: 3px;
}

.textarea::placeholder {
    color: lightgrey; /* Set placeholder text color */
    font-style: italic; /* Optional: Make it italic */
}


/* Hidden Div */
.menu-content {
    display: none; /* Initially hidden */
    color: white;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 100vh; /* Ensure it does not overflow the viewport height */
    overflow-y: auto;  /* Enable vertical scrolling */
    overscroll-behavior: contain; /* Prevent scrolling from affecting the page */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Class to show menu */
.menu-content.show {
    display: inline-flex;
    opacity: 1;
    transform: scaleY(1);
}

/* Menu Items */
.menu-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
}


.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-trigger {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: black;
}

.tooltip-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  color: #333;
  padding: 8px;
  border: 1px solid #ccc;
  z-index: 1000;
  top: 120%; /* below the ? */
  left: -100px; /* Move 50px to the left */
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}

.tooltip-container.active .tooltip-content {
  display: block;
}

.tooltip-content-td {
	font-family: Arial, sans-serif;
  font-size: 16px;
  color: black;
  padding-right:10px;
  border-right: 1px solid #ccc;
}