* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
    font-size: calc((16 * 100dvh) / 1334);
}

body {
  background-image: url("../../images/index/desktop_background.jpg");
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  overflow: hidden;
}

#outer-scroll-wrapper {
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

#outer-scroll-wrapper::-webkit-scrollbar {
    width: 12px;
}

#outer-scroll-wrapper::-webkit-scrollbar-track {
    background: #222;
}

#outer-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 3px solid transparent;
}

#outer-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

#promotion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    height: 100%;
    width: 100%;
    font-size: 16px;
}

#promotion-container #container-game {
    background-image: url("../../images/index/mobile-background.jpg");
    background-size: cover;
    border: 1rem solid rgb(128, 128, 128);
    border-radius: 2.5rem;
    overflow: hidden;
    height: 100%;
    max-height: 1334px;
    max-width: 750px;
    aspect-ratio: 750 / 1334;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-position: center;
}

#promotion-container #loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.8);
    position: absolute;
    z-index: 100;
}

#promotion-container #loader-container #loader {
  width: 15%;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

#instant-logo {
  position: absolute;
  top: 1%;
  left: 3%;
  width: 18%;
}

#logo-team-canada {
  width: 93%;
  position: absolute;
  top: 9%;
}

#logo-olg-sponsors{
  width: 40%;
  position: absolute;
  top: 30.5%;
}

#logo-sponsors-title {
  width: 48%;
  position: absolute;
  top: 40.5%;
}

#logo-gold {
  width: 85%;
  position: absolute;
  top: 46%;
}

#play-btn {
  width: 66%;
  margin: 98% 0 0;
  cursor: pointer;
}

#ticket-entry-container #entry-code-input-container{
  margin: 20% 0 0;
  cursor: pointer;
}

#ticket-entry-container #entry-code-input-container img{
  width: 47%;
}

#accessible-btn {
width: 93%;
margin-top: 3%;
cursor: pointer;
}

#legal-btn  {
  width: 42%;
  margin-top: 3%;
  cursor: pointer;
}

#button-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

#language-toggle {
    display: flex;
    justify-content: center;
    width: 81%;
    margin: 5% auto;
}

.language-btn {
  width: 45%;
  cursor: pointer;
}

@keyframes l3 {to{transform: rotate(1turn)}}