:root {
  --white: #e8f6f7;
  --lightblue: #0bffff;
  --blue: #00a2b7;
  --darkblue: #172935;
  --red: #ea2c47;
  --black: #000;
}

@font-face {
  font-family: 'CambayDevanagari-Regular';
  src: url('../fonts/CambayDevanagari-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CambayDevanagari-Bold';
  src: url('../fonts/CambayDevanagari-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
html,
body {
  height: 100%;

}
body {
  background-color: var(--darkblue);
}

.display_none {
  display: none !important;
}
.clear {
  clear: both;
}

#pDebug {
  display: none;
}

.wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--darkblue);
  color: var(--white);
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'CambayDevanagari-Bold';
}

.title-404 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 120px;
  margin-bottom: 50px;
  color: rgba(255,0,0,0.5);
}
.title-404::before,
.title-404::after {
  content: "404";
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  color: rgba(0,255,0,0.5);
  margin-left: 10px;
  margin-top: 10px;
  mix-blend-mode: difference;

  animation-name: anim404Before;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}
.title-404::after {
  color: rgba(0,0,255,0.5);
  margin-left: -10px;
  margin-top: -10px;
  animation-name: anim404After;
}
@keyframes anim404Before {
  0%    {transform: transform: translateX(0px) translateY(0px);}
  50%   {transform: translateX(-20px) translateY(-20px);}
  100%  {transform: transform: translateX(0px) translateY(0px);}
}
@keyframes anim404After {
  0%    {transform: transform: translateX(0px) translateY(0px);}
  50%   {transform: translateX(20px) translateY(20px);}
  100%  {transform: transform: translateX(0px) translateY(0px);}
}
.text-404 {
  font-size: 30px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.link-404 {
  display: block;
  font-size: 30px;
  color: var(--lightblue);
  text-transform: uppercase;
}

.login-wrapper {
  font-size: 30px;
}
.login-link {
  color: var(--lightblue);
}
.login-text {
  margin-bottom: 10px;
}
.title-forbidden {
  font-size: 20px;
  margin-bottom: 20px;
}

.animate {
  opacity: 0;
  will-change: opacity, transform;
  animation-name: anim-translate-fadein;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-delay: 0.0s;
  animation-direction: alternate;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
@keyframes anim-translate-fadein {
  0% {
    opacity: 0;
    transform: translateX(200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}



.page-session-over .wrapper {
  justify-content: flex-start;
  background: var(--darkblue);
  text-align: center;
  overflow-y: auto;
  text-transform: uppercase;
}
.session-over-title {
  line-height: 1.4;
  font-size: 7vw;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.session-over-title span {
  font-weight: bold;
}
.session-over-chrono {
  width: 50%;
  height: 0;
  padding-bottom: 40%;
  background-image: url(../images/qr_chrono.svg?ver=1);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  animation-delay: 0.1s;
  margin-top: auto;
  margin-bottom: auto;
}
.session-over-description {
  line-height: 1.4;
  font-size: 4.5vw;
  animation-delay: 0.2s;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.session-over-link {
  display: block;
  width: 100%;
  animation-delay: 0.3s;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.session-over-qr {
  width: 30%;
  height: 0;
  padding-bottom: 30%;
  background-image: url(../images/qr.svg?ver=1);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin: auto;
}
.session-over-qr-text {
  color: var(--white);
  font-size: 6vw;
  margin-top: 20px;
}
.session-over-link {
  display: block;
  color: var(--white);
}
.session-over-tel {
  font-size: 2em;
}
.session-over-email {
  font-size: 1.4em;
}
