* {
  margin: 0;
  padding: 0;
  /* No text select */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  width: 100vw;
  height: 100vh;
  color: #000;
  overflow: hidden;
  background-color: #EBDDFB;
  font-family: 'Officina-regular', Arial, Helvetica, sans-serif;
}

#container {
  position: absolute;
  width: 1366px;
  height: 769px;
  overflow-x: hidden;
  background-color: transparent;
}

#hud {
  width: 1366px;
  height: 769px;
  z-index: 1;
}

.menu-hud {
  top: 80%;
  left: 5%;
}

.hud button {
  position: absolute;
  bottom: 4%;
}

.hud button.back {
  display: none;
  left: 5%;
  cursor: pointer;
}

.hud button.next {
  display: none;
  right: 5%;
  cursor: pointer;
}

#loaded_content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 2;
}

.divImg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: transparent;
  image-rendering: -webkit-optimize-contrast;
}

.abs {
  position: absolute;
  transform: translate(-50%, -50%);
}

.icon_sound {
  position: absolute;
  top: 8.5%;
  right: 4%;
  width: 5%;
  height: auto;
  z-index: 1;
  cursor: pointer;
  border-radius: 2rem;
}

.icon_sound:hover {
  animation: hlbtnpink 1.5s linear infinite forwards;
}

button {
  border: none;
  outline: none;
  z-index: 9;
  color: #fff;
  width: 13rem;
  height: auto;
  cursor: pointer;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem 0 1.2rem 0;
  text-transform: uppercase;
  background-image: url(../img/bg_btn.png);
  font-family: 'Officina-bold', Arial, Helvetica, sans-serif;
}

.btn_next:hover,
.hud button:hover {
  transition: .5s;
  animation: btn 2.5s linear infinite;
}

.disabled {
  pointer-events: none;
  touch-action: none;
  cursor: default;
  opacity: 0.5;
}

/* TIMER */
.timer {
  display: none;
  position: absolute;
  bottom: 4%;
  right: 5%;
  width: 13rem;
  height: 5rem;
  z-index: 1;
  background-image: url(../img/bg_btn.png);
}

.timer p {
  top: 42.5%;
  left: 50%;
  color: #fff;
  width: 58%;
  text-align: center;
  font-size: 1.07rem;
  line-height: 1.2rem;
  font-family: 'Officina-extra-bold', Arial, Helvetica, sans-serif;
}

/* SMOKE EFFECT */
.container_pink_smoke {
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  width: 79%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  background-color: transparent;
}

.pink_smoke {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 10;
}

.pink_smoke_left {
  left: 0;
  -webkit-animation: an-smoke-left 10s linear infinite;
  -moz-animation: an-smoke-left 10s linear infinite;
  -o-animation: an-smoke-left 10s linear infinite;
  animation: an-smoke-left 10s linear infinite;
}

.pink_smoke_right {
  right: 0;
  -webkit-animation: an-smoke-right 10s linear infinite;
  -moz-animation: an-smoke-right 10s linear infinite;
  -o-animation: an-smoke-right 10s linear infinite;
  animation: an-smoke-right 10s linear infinite;
}