@charset "UTF-8";
:root {
  --addressbar: #F8FAFA;
  --launcher-backgroundColor: #F8BF11;
  --launcher-linkColor: #CE2B37;
  --launcher-textColor: #ffffff;
  --launcher-button-backgroundColor: #EEC210;
  --launcher-button-textColor: #F8FAFA;
  --launcher-button-borderRadius: 25px;
  --launcher-loader-logo: url("../assets/images/logo_default.svg");
  --launcher-loader-backgroundColor: #F8BF11;
  --launcher-loader-spinner-backgroundColor: rgba(206, 43, 55, 0.5);
  --launcher-loader-spinner-foregroundColor: #CE2B37;
  --launcher-waiting-textColor: #ffffff;
}
:root.embed {
  --launcher-backgroundColor: transparent;
  --launcher-waiting-textColor: #F8BF11;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  user-select: none;
  width: 100%;
}

.launcher {
  background-color: var(--launcher-backgroundColor);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.launcher__body {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

img[alt=logo] {
  content: var(--launcher-loader-logo);
  padding: 1rem;
  visibility: visible !important;
}

.launcher__content {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.launcher__loading {
  transform: scale(1.5);
  transition: transform 0.5s, opacity 0.5s;
  transition-delay: 0.5s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 11rem;
  width: 11rem;
  pointer-events: none;
  cursor: default;
}

.launcher.launcher--loading .launcher__loading {
  transform: scale(1);
  opacity: 1 !important;
}
.launcher.launcher--loading .launcher__logo > img {
  transform: scale(0.7);
}

.launcher__spinner {
  border-top: 0.4rem solid var(--launcher-loader-spinner-backgroundColor);
  border-right: 0.4rem solid var(--launcher-loader-spinner-backgroundColor);
  border-bottom: 0.4rem solid var(--launcher-loader-spinner-backgroundColor);
  border-left: 0.4rem solid var(--launcher-loader-spinner-foregroundColor);
  background-color: var(--launcher-loader-backgroundColor);
  transform: translateZ(0);
  animation: launcher__spinner 1.1s infinite linear;
}

.launcher__spinner,
.launcher__spinner::after {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

@keyframes launcher__spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.launcher__launch {
  padding-top: 2.5rem;
}
.launcher__launch > button {
  background: var(--launcher-button-backgroundColor);
  padding: 0.8rem 2.75rem;
  border-radius: var(--launcher-button-borderRadius);
  text-decoration: none;
  font-weight: bold;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  outline: none;
  cursor: pointer;
  color: var(--launcher-button-textColor);
  font-weight: 800;
}

.launcher__footer {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.launcher__logo {
  position: relative;
  height: 11rem;
  width: 11rem;
  display: flex;
  align-items: center;
}

.launcher__logo > img {
  width: 100%;
  max-width: 11rem;
  max-height: 11rem;
  margin: 0 auto;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}

.launcher__links > p > a {
  color: var(--launcher-linkColor);
  text-decoration: unset;
}

/* Generic Aurelia Loader */
.aurelia-splash-container {
  background-color: var(--launcher-backgroundColor);
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  flex-direction: column;
  align-items: center;
}
.aurelia-splash-container.shown {
  display: flex !important;
}
.aurelia-splash-container .image-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aurelia-splash-container img {
  width: 100%;
  max-width: 11rem;
  transform: scale(0.7);
}

.launcher__waiting {
  padding-top: 30px;
  text-align: center;
  display: none;
}
.launcher__waiting.shown {
  display: block;
}
.launcher__waiting > span::before {
  display: block;
  content: "We detected a slow connection...";
  color: var(--launcher-waiting-textColor);
}
.launcher__waiting > span:lang(it)::before {
  display: block;
  content: "Abbiamo rilevato una connessione lenta...";
}
.launcher__waiting > span::after {
  display: block;
  content: "Please wait or try again later";
  color: var(--launcher-waiting-textColor);
}
.launcher__waiting > span:lang(it)::after {
  display: block;
  content: "Attendi oppure riprova più tardi";
}

/* supported browsers */
.supported-browsers-container {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px;
}
.supported-browsers-container .browsers-list {
  display: flex;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}
.supported-browsers-container .unsupported-browser {
  color: var(--launcher-textColor);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.supported-browsers-container .message {
  color: var(--launcher-textColor);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.supported-browsers-container .browsers-list .browser {
  margin-left: 10px;
  margin-right: 10px;
  width: 150px;
  text-align: center;
}
.supported-browsers-container .browsers-list .browser .name {
  font-size: 12px;
  color: var(--launcher-textColor);
}
.supported-browsers-container .browsers-list .browser .logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 70px;
  margin: auto;
  width: 60px;
}
.supported-browsers-container .browsers-list .browser.chrome .logo {
  background-image: url(/assets/images/browsers/chrome.svg);
}
.supported-browsers-container .browsers-list .browser.edge .logo {
  background-image: url(/assets/images/browsers/edge.svg);
}
.supported-browsers-container .browsers-list .browser.firefox .logo {
  background-image: url(/assets/images/browsers/firefox.png);
}

@media (max-width: 767px) {
  .supported-browsers-container .browsers-list .browser {
    width: 100px;
  }
}
.aurelia-splash-container {
  background-color: #F8BF11;
  font-family: "Inter";
}

@media (max-width: 767px) {
  .supported-browsers-container .browsers-list .browser {
    width: 100px;
  }
}