html,
body {
  font-family: 'Open Sans', sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s linear;
}

.container.visible {
  opacity: 1;
}

.main {
  display: flex;
  width: 35%;
  min-width: 220px;
  align-items: center;
  justify-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  text-align: center;
  gap: 20px;
  font-size: 10px;
  font-weight: 300;
  font-style: normal;
  line-height: 21px;
  letter-spacing: -0.1px;
}

#logo {
  width: 190px;
  height: 46px;
  margin: 4px;
}

.description {
  color: var(--grey-900, #16191f);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.1px;
  margin: 0;
}

/* native client button */
.ws-button {
  border-radius: 40px;
  border: 2px solid #0073bb;
  background: #0073bb;
  color: #ffffff;
  padding: 6px 22px;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.ws-button:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 2px gray;
  cursor: pointer;
  background-color: #0073bb;
  transform: scale(1.01);
}

.ws-button.disabled {
  background: var(--grey-200, #e9ebed);
  border: 2px solid #e9ebed;
  color: var(--grey-400, #9ba7b6);
}

.ws-button.disabled:hover {
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

/* web client link */
.links {
  color: var(--grey-900, #16191f);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link {
  color: var(--blue-600, #0073bb);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-decoration: none;
}

#web-client-url-box {
  display: none;
  opacity: 0;
  transition: opacity 0.6s linear;
}

#web-client-url-box.visible {
  display: block;
  opacity: 1;
}

/* download alert */
#native-client-download-alert {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex: 1 0 0;
  gap: 16px;
  text-align: center;
  padding: 10px 18px;
  width: 80%;
  max-width: 600px;
  margin-top: 32px;
  color: var(--grey-900, #000716);
  border: 2px solid var(--blue-600, #0972d3);
  border-radius: 12px;
  background: var(--blue-100, #f2f8fd);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#native-client-download-alert.visible {
  transform: translateY(0%);
  opacity: 1;
}

#native-client-download-alert .native-client-download-alert-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
}

#native-client-download-alert .native-client-download-alert-text p {
  text-align: left;
  margin: 0;
}

#native-client-download-alert .native-client-download-button-link {
  text-decoration: none;
  display: flex;
  padding: 6px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 2px solid var(--grey-600, #414d5c);
  color: var(--grey-600, #414d5c);
  font-weight: 800;
  color: var(--grey-600, #414d5c);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

#native-client-download-alert #native-client-download-alert-close:hover {
  cursor: pointer;
}

.icon {
  width: 16px;
  height: 16px;
}

/* footer */
.footer {
  color: var(--grey-550, #687078);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0.18px;
  margin: 0 0 24px;
}
