
/******************************************************************************/
/* Hover Colors */
/******************************************************************************/
.hov_select:hover {
  color: #97AFC6;
}

.hov_underline:hover {
    text-decoration: underline;
}

.hidden_disabled:disabled {
  background-color:inherit;
  color: black; /* Same as the normal state */
  opacity: 1; /* Prevent opacity change */
  cursor: not-allowed; /* Use the "not-allowed" cursor for disabled state */
}

.disabled_no_change:disabled {
  opacity: 1; /* Prevent opacity change */
}

.navLink {
    text-decoration:none;
    font-size:1.25vw;
    vertical-align:top;
    color:white;
}
.navLink:hover {
    text-decoration: underline;
}

.menuLink {
    text-decoration:none;
    font-size:1.5vw;
    vertical-align:top;
    color:black;
}
.menuLink:hover {
    text-decoration: underline;
}

.custom_select {
    -webkit-appearance: none; /* Safari and Chrome */
    -moz-appearance: none; /* Firefox */
    appearance: none; /* Other browsers */
    background: transparent; /* Make the background transparent */
}

div, input, textarea {
  font-family: Helvetica;
}

/* TOOL TIP */
.tooltip-container {
    position: relative;
}
.tooltip {
    visibility: hidden;
    position: absolute;
    background-color: #97AFC6;
    color: black;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    font-size: 1vw;
    z-index: 1;
    bottom: 100%;
    left: 0%; /* Align the tooltip with the left edge of the button */
    /*transform: translateX(-50%);*/ /* Center the tooltip horizontally */
}
.tooltip-container:hover .tooltip {
    visibility: visible;
}

/* DROP DOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown_btn {
  background-color: inherit;
  cursor: pointer;
}
.dropdown_content {
  display: none;
  position: absolute;
  white-space: nowrap;
  background-color: white;
  text-align: center;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown hr {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 0;
}
.dropdown_content button {
  width: 100%;
  display: block;
  padding: 5px;
  border: none;
  cursor: pointer;
}
.dropdown_content button:hover button:onclick {
  /*background-color: #97AFC6;*/
  background-color: yellow;
  text-decoration: underline;
}
.dropdown:hover .dropdown_content {
  display: block;
}

/* LOADING MODAL */
.loading_modal {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  position: fixed;
  overflow: hidden;
  background-color: rgb(0,0,0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.loading_modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
.loading_message {
  display:inline-block;
  margin-top: 20px;
  font-size: 18px;
}
.loader {
  display:inline-block;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #97AFC6;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
