/* CSS for index.ejs */

body {
  background-color: #F3F3F3;
}
/* Generic Aurelia Loader */
.aurelia-splash-container {
  background-color: #F3F3F3;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.aurelia-splash {
  box-sizing: border-box;
  margin: 10% 0 0 0;
  text-align: center;
}

.aurelia-splash {
  font-size: 72px;
  line-height: 72px;
  text-transform: uppercase;
}

.aurelia-splash .aurelia-loader {
  display: inline-block;
  font-size: 72px;
  margin-top: 50px;
  text-align: center;
}

/* supported browsers */
.supported-browsers-container {
  bottom: 20px;
  display: none;
  font-size: 15px;
  left: 0;
  line-height: 20px;
  margin: auto;
  position: absolute;
  right: 0;
}

.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: #920F15;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.supported-browsers-container .message {
  font-size: 15px;
  font-weight: 500;
}

.supported-browsers-container .browsers-list .browser {
  margin-left: 10px;
  margin-right: 10px;
  width: 150px;
}

.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 .name {
  font-size: 12px;
}

.supported-browsers-container .browsers-list .browser.chrome .logo {
  background-image: url(../images/browsers/chrome.svg);
}

.supported-browsers-container .browsers-list .browser.edge .logo {
  background-image: url(../images/browsers/edge.svg);
}

.supported-browsers-container .browsers-list .browser.firefox .logo {
  background-image: url(../images/browsers/firefox.png);
}

/* Customer verticalization */
.aurelia-splash-container {
  background-image: url(../images/logo_dark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}

.aurelia-splash {
  color: #5C1F20;
  margin: 6% 0 0 0;
}

.aurelia-loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.aurelia-loader div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.aurelia-loader div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5C1F20;
  margin: -4px 0 0 -4px;
}
.aurelia-loader div:nth-child(1) {
  animation-delay: -0.036s;
}
.aurelia-loader div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.aurelia-loader div:nth-child(2) {
  animation-delay: -0.072s;
}
.aurelia-loader div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.aurelia-loader div:nth-child(3) {
  animation-delay: -0.108s;
}
.aurelia-loader div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.aurelia-loader div:nth-child(4) {
  animation-delay: -0.144s;
}
.aurelia-loader div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.aurelia-loader div:nth-child(5) {
  animation-delay: -0.18s;
}
.aurelia-loader div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.aurelia-loader div:nth-child(6) {
  animation-delay: -0.216s;
}
.aurelia-loader div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.aurelia-loader div:nth-child(7) {
  animation-delay: -0.252s;
}
.aurelia-loader div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.aurelia-loader div:nth-child(8) {
  animation-delay: -0.288s;
}
.aurelia-loader div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .aurelia-splash-container {
    background-size: 80%;
  }

  .supported-browsers-container .browsers-list .browser {
    width: 100px;
  }
}

@media (max-height: 375px) and (orientation: landscape) {
  .aurelia-splash-container.unsupported {
    background-position: top;
  }
}