/* unsupported-browser.css */
html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #f8f9fa;
  background-size: 100% 100%;
  font-family: sans-serif;
  color: #212529;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stretch {
  display: block;
  width: 100%;
  height: 100%;
}

.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.bottomLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}

.unsupported-browser {
  display: none;
  background: white;
  padding: 2rem;
  font-family: sans-serif;
}

.supported-browser-container {
  display: flex;
  justify-content: center;
}

.supported-browser-list {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  justify-content: center;
}

.browser-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.browser-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.unsupported-browser-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding: 32px;
  text-align: center;
}

.unsupported-browser-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unsupported-browser-title {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 2rem;
  margin: 48px 0 32px 0;
  color: #0b236b;
}

.unsupported-browser-illustration--mobile img {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.unsupported-browser-body {
  font-size: 1.2rem;
  text-align: center;
}

.sgx-logo {
  width: 180px;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #111111;
  }
}
