@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&display=swap");
body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.overlay-footer {
  position: absolute;
  inset: auto 0 0 0;
}

.a-dom-overlay button {
  padding: 0.75rem 1.5rem;  /* 12px 24px */
  appearance: none;
  background: rgba(1, 38, 115, 0.24);
  border: 0.125rem solid rgba(255, 255, 255, 0.24); /* 2px */
  border-radius: 0.75rem; /* 12px */
  margin: 0.5rem; /* 8px */
  color: white;
  font-family: "Inter", serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.a-dom-overlay button:hover {
  background: rgba(1, 38, 115, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

#my-interface {
  user-select: none;
}

#my-interface h2 {
  margin: 0;
}

#my-interface fieldset {
  padding: 0;
  margin-bottom: 0.5em;
}

#dom-overlay-message {
  padding: 1rem; /* 16px */
  background: rgba(1, 38, 115, 0.24);
  border-top: 0.1875rem solid rgba(255, 255, 255, 0.24); /* 3px */
  color: white;
  font-family: "Inter", serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  text-align: center;
}

.container {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* 24px */
  margin: 1rem 0 1rem 1rem; /* 16px */
  flex-wrap: wrap;
}

.card {
  display: flex;
  min-width: 7.5rem; /* 120px */
  padding: 0.75rem 1rem 1rem; /* 12px 16px 16px */
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* 8px */
  border-radius: 1rem; /* 16px */
  border: 0.0625rem solid rgba(255, 255, 255, 0.24); /* 1px */
  background: rgba(1, 38, 115, 0.24);
  backdrop-filter: blur(0.75rem); /* 12px */
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(1, 38, 115, 0.4);
}

.card:active {
  transform: translateY(1px);
}

.card-img {
  width: 100%;
  height: 100%;
  border-radius: 0.625rem; /* 10px */
  object-fit: contain;
}

.icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-caption {
  color: #fff;
  font-family: "Inter", serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

/* #xpress-animation-container {
  display: none;
} */

.back-button {
  padding: 0.5rem 1rem; /* 8px 16px */
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2); /* 1px */
  border-radius: 0.75rem; /* 12px */
  color: white;
  font-family: "Inter", serif;
  font-size: 0.875rem; /* 14px */
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.d-none{
  display: none;
}
