@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
	font-family: "Roboto" !important;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
}

#chatClose:hover{
    cursor: pointer;
}

h1 {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  font-weight: bold;
}

#banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #575757;
  height: 50px;
  padding: 0 10px;
}

#contentWrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#webchat {
  flex: 1;
  overflow: hidden;
}

footer {
  color: black;
  padding: 10px 5px 5px 5px;
  text-align: center;
  font-size: 11px;
  margin: 0;
  font-style: italic;
  background-color: #F2F2F2;
}

footer a {
  color: blue;
  text-decoration: underline;
}


footer a:hover {
  color: lightblue;
  text-decoration: underline;
}

.addressChoice:hover {
  cursor: pointer;
  background-color: bisque;
}

.choice {
  padding: 10px;
  cursor: pointer;
}

.choice:hover {
  background-color: #f0f0f0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
}

#headerLoginButton {
  margin-right: 50px;
  border-radius: 5px;
  border: 0;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#headerLoginButton:hover {
  background-color: #575757;
  color: white;
  cursor: pointer;
  border: 1px solid #F2F2F2;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Additional CSS */
.active-button {
  background-color: #575757 !important;
  border: 1px solid #575757 !important;
  color: white !important;
}

button.active-button span.address-icon,
button.active-button span.lot-number-icon {
    filter: invert(1);
}
