#hd-game-wrap {
  visibility: hidden;
}
/* Top section */
#hd-game-wrap {
  background: url(../images/bg.jpg) right -135px no-repeat; /* DT */
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

#hd-game-wrap.winner {
  background: url(../images/bg-winner.jpg?v=4) right -135px no-repeat; /* DT */
  background-size: cover;
}

#hd-game-wrap.winner .chars-wrap {
  display: none;
}

/* STARS */
/*
.hd-stars-wrap {
  display: flex;
  justify-content: center;
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hd-stars-wrap .hd-star {
  width: 45px;
  height: 41px;
  color: gold;
  background: url(../images/spring-star.png) 2px center no-repeat;
  background-size: cover;
  transition: all 0.2s linear;
}
.hd-stars-wrap .hd-star-on {
  display: block;
  background: url(../images/spring-star.png) right center no-repeat;
}
*/

.hd-logo-wrap,
.hd-info-area {
  position: relative;
  z-index: 200;
}

.hdc-ga-translator-wrap select {
}
#hdc-ga-translator select {
  font-size: 16px;
  height: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 1700px) {
  #hdc-ga-translator select {
    height: 32px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1100px) {
  #hd-game-wrap {
    background: url(../images/bg.jpg) center -75px no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 1000px) {
  #hd-game-wrap {
    background: url(../images/mob/bg.jpg) center -85px no-repeat;
    background-size: cover;
    height: 100vh;
  }

  #hd-game-wrap.winner {
    background: url(../images/mob/bg-winner.jpg?v=4) center -75px no-repeat; /* DT */
    background-size: cover;
  }
}

/* Tree */
.tree-wrapper .tree {
  position: relative;
  z-index: 0;
  bottom: 300px;
  left: 25px;
}

.tree-wrapper .tree .tree-img {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 725px;
}

.foo-bg-wrap /* Footer bgs */ {
  position: fixed;
  z-index: 1;
  bottom: 80px;
  left: 0;
  right: 0;
}

.foo-bg-wrap /* Footer bgs */ {
  bottom: 80px;
}

@media screen and (min-width: 1000px) {
  .chars-wrap {
    position: fixed;
    z-index: 10;
    bottom: 105px;
    left: auto;
    right: 100px;
  }
}

/* Foo logos */
.hd-easter-foo {
  position: fixed;
  z-index: 200;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
}

@media screen and (max-width: 768px) {
  .hd-easter-foo {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
  }
}
.hd-easter-foo-logos-wrap {
  padding: 0 10px 5px 10px;
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}


@media screen and (min-width: 960px) {
  .hd-info-area {
    min-width: 240px;
  }

  .hd-easter-foo-logos-wrap {
    padding: 0 0 10px 0;
  }
  .hd-light-area {
    margin-top: -42px;
    max-width: 600px;
  }
}


@media screen and (min-width: 1600px) {
  .hd-light-area {
    max-width: 700px;
  }
}

@media screen and (min-width: 1700px) {
  .hd-light-area {
    max-width: 900px;
  }
}




/**********/
/* Winner */
/**********/
.winner-rainbow-wrap.active {
  display: contents;
}

.winner-rainbow-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.winner-rainbow-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
/*  clip-path: inset(0 100% 0 0); */
  clip-path: inset(0 0 0 100%);
  animation: winnerStars 1s ease-out forwards;
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .winner-rainbow-wrap img {
    height: 50%;
  }
}

/* Keyframe animation to "reveal" the image by expanding the mask */
@keyframes winnerStars {
  0% {
/*    clip-path: inset(0 100% 0 0); /* Start fully hidden */
    clip-path: inset(0 0 0 100%); /* Start fully hidden */
  }
  100% {
    clip-path: inset(0 0 0 0); /* Reveal entire image */
  }
}

.winning-blinking-1 {
  mix-blend-mode: screen;
  animation: blinkingWinnerStar 3.52s infinite;
}


.winning-blinking-2 {
  mix-blend-mode: screen;
  animation: blinkingWinnerStar 1.41s infinite;
}

.winning-blinking-3 {
  mix-blend-mode: screen;
  animation: blinkingWinnerStar 2.73s infinite;
}


@keyframes blinkingWinnerStar {
  0% {  opacity: 2; }
  50% {  opacity: -2; }
  100% {  opacity: 2; }
}


/* MEDIUM SCREENS */
@media screen and (min-width: 1000px) and (max-width: 1650px) {
  .tree-wrapper .tree .tree-img {
    max-height: 600px;
  }

  .char-off-granny {
    left: 300px;
  }

  .char-off-granny img {
    max-height: 300px;
  }
}

@media screen and (max-width: 1400px) {
  .chars-wrap {
    bottom: 85px;
  }

  .tree-wrapper .tree {
    bottom: 195px;
    left: 40px;
  }
  .tree-wrapper .tree .tree-img {
    max-height: 500px;
  }
}