/**
 * @author Maxime Mustarda <maxime@inarix.com>
 * @file style.css
 * @desc Created on Wed Sep 27 2023 17:40:59
 * @copyright All rights reserved @ Inarix
 */
* {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #344054;
  border-color: #344054;
}

html, body {
  margin: 0;
  padding: 0;
}
body {
  text-align: center;
  margin: 1vh 1vw;
}
h1 {
  font-size: 46px;
  margin-bottom: 0;
}
img {
  margin: auto;
  display: block;
}
button {
  color: white;
  background-color: #3479EC;
  width: 240px;
  font-size: 16px;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
}
.no-overflow {
  width: 0;
  height: 0;
  overflow: hidden;
}
.no-overflow>* {
  visibility: hidden;
}
.with-margin {
  margin: 20px auto;
}

#main>div {
  margin: 16px;
}
#spacer {
  height: 40px;
}
#spacer, #tip, .hidden {
  display: none;
}
#tip>div {
  margin: 16px auto;
  max-width: 312px;
}
#tip .icon {
  width: 310px;
}
#tip .explanation {
  font-size: 24px;
  font-weight: bold;
}
#tip .dots {
  display: inline-block;
  background-color: #F4F8FF;
  border-radius: 10px;
  line-height: 8px;
  height: 8px;
  padding: 5px;
  margin: 0;
}
#tip .dot {
  display: inline-block;
  background-color: #E4EEFF;
  border-radius: 10px;
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
#tip .dot.current {
  background-color: #145BD0;
}

#version {
  position: absolute;
  z-index: 1000;
  top: 10px;
  right: 10px;
  color: #999999;
  font-size: .8em;
}
#errors p {
  color: #FF3B30;
}
#debug {
  font-size: .8em;
}

/* Spinner credits: https://github.com/loadingio/css-spinner/ */
#spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 !important;
}
#spinner:after {
  content: " ";
  display: block;
  width: 32px;
  height: 32px;
  margin: 4px;
  border-radius: 50%;
  border: 3px solid #344054;
  border-color: #344054 transparent #344054 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
