.red-sticker-hover-container {
  position: absolute;
  top: calc(50% - 22rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.yellow-sticker-hover-container {
  position: absolute;
  top: calc(50% + 15rem);
  left: calc(50% - 20rem);
  transform: translate(-50%, -50%);
  z-index: 5;
}

.blue-sticker-hover-container {
  position: absolute;
  top: calc(50% + 15rem);
  right: calc(50% - 20rem);
  transform: translate(50%, -50%);
  z-index: 5;
}

.hover-container-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* When the container is hovered, hide the static image */
.red-sticker-hover-container:hover .red-sticker {
  opacity: 0;
}

/* When the container is hovered, show the GIF */
.red-sticker-hover-container:hover .red-sticker-gif {
  opacity: 1;
}

/* When the container is hovered, hide the static image */
.yellow-sticker-hover-container:hover .yellow-sticker {
  opacity: 0;
}

/* When the container is hovered, show the GIF */
.yellow-sticker-hover-container:hover .yellow-sticker-gif {
  opacity: 1;
}

/* When the container is hovered, hide the static image */
.blue-sticker-hover-container:hover .blue-sticker {
  opacity: 0;
}

/* When the container is hovered, show the GIF */
.blue-sticker-hover-container:hover .blue-sticker-gif {
  opacity: 1;
}

.red-sticker {
  position: relative;
  z-index: 111;
  animation: fadeIn 1s normal 7.1s backwards;
}

.red-sticker-gif {
  opacity: 0;
  position: absolute;

  scale: 1.3;
}

body:not(.flash-screen-active) .red-sticker:hover {
  /* display: none; */
  visibility: hidden;
}

.yellow-sticker {
  position: relative;
  z-index: 111;
  animation: fadeIn 1s normal 6.2s backwards;
}

.yellow-sticker-gif {
  opacity: 0;
  position: absolute;
  scale: 1.4;
}

body:not(.flash-screen-active) .yellow-sticker:hover {
  /* display: none; */
  visibility: hidden;
}

.blue-sticker {
  position: relative;
  z-index: 111;
  animation: fadeIn 1s normal 7.5s backwards;
}

.blue-sticker-gif {
  opacity: 0;
  position: absolute;
  scale: 1.45;
}

body:not(.flash-screen-active) .blue-sticker:hover {
  /* display: none; */
  visibility: hidden;
}

.loaded {
  /* Remove animation after page load */
  animation: none;
}
