@font-face {
  font-family: 'LALIGA-VIE Headline';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../fonts/VIE-LALIGAHeadline-WideRegular.otf) format('opentype');
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  /* background: var(--primary-color); */
  background: #fff;
  transition: all 11ms linear;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.layout {
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  transition: all 0.3s linear;
}

.layout .left,
.layout .right {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* Sticky */
  position: sticky;
  top: 52px;
  place-self: start;
  width: 100%;
}

.layout .content {
  margin-top: 12px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layout .content > div {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.promotion,
.container-fixed {
  max-width: 1248px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 12px;
}

.vip-club {
  background: #002c0f;
}
.vip-footer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

#main_loading {
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#main_loading > div {
  width: 35px;
  height: 35px;
  border: 3px solid var(--main-loading-color, #205caa);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1140px) {
  .layout {
    grid-template-columns: 1fr !important;
  }

  .layout .content {
    margin: 12px 12px 0 12px;
  }

  .layout .left,
  .layout .right {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .layout .content {
    margin-left: 0;
    margin-right: 0;
  }

  .layout .content > div {
    border-radius: 0px;
  }
}
