@import url(fonts.css);
* {
  box-sizing: border-box;
  outline: none !important;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
html {
  background-color: #000000;
}
html body {
  position: fixed;
  /*
    display: flex;
    flex-direction: column;
    justify-content: center;
    */
  width: 100vw;
  height: 100%;
  padding: 0;
  background-color: #000000;
  background-size: cover;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a2a;
  max-width: 1240px;
  max-height: 768px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 700px) {
  html body {
    font-size: 13px;
  }
}
html body h1 {
  font-family: "Galada", cursive;
  color: #306961FF;
  font-size: min(8vw, 300%);
  padding: 0 15px;
  margin: 0;
}
html body h2 {
  color: #306961FF;
  font-family: "Galada", cursive;
  font-size: 200%;
  padding: 0;
  margin: 30px 0 0 0;
}
html body h3 {
  font-weight: 100;
  font-style: italic;
  line-height: 1.4;
  font-size: 110%;
  margin: 10px 0 0 0;
  color: #28363a !important;
}
html body header {
  width: 100%;
  height: 50px;
}
html body header h1 {
  margin: 5px;
  vertical-align: top;
  display: inline-block;
}
html body header h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #306961FF;
}
html body button {
  border: 1px solid transparent;
  background-color: transparent;
  font-family: 'Playfair Display', serif;
  padding: 5px;
  color: #306961FF;
  transition: all 0.3s;
  min-width: 140px;
  min-height: 45px;
  font-weight: 500;
  font-size: 110%;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 20px;
}
html body button:hover {
  filter: brightness(130%);
}
html body button.graphic {
  position: relative;
  padding: 10px 15px;
  height: 50px;
  margin: 10px;
  background-color: #895652;
  color: #ffffff;
  font-size: 120%;
  box-shadow: 0 0 0 3px rgba(48, 105, 97, 0.6);
}
html body button.choice {
  background-color: #306961FF;
  color: #ffffff;
}
html body button.small {
  min-height: 0;
  font-size: 90%;
  padding: 10px 10px;
}
html body button.skip {
  color: #bbbbbb;
  text-transform: uppercase;
  border: none;
  font-size: 70%;
}
html body button.hidden {
  filter: grayscale(100%) opacity(20%);
  pointer-events: none;
}
html body .disabled {
  filter: grayscale(100%) opacity(0%) !important;
  pointer-events: none !important;
}
html body #CONTINUE {
  display: none;
}
html body #PANELS {
  display: none;
  background: #2a2a2a;
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 768px;
}
html body #PANELS .panel {
  display: none;
  position: absolute;
  overflow-y: hidden;
  width: 100%;
  height: 100vh;
  max-height: 768px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  overflow-x: hidden;
  background: #ffffff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
html body #PANELS .panel#LOADING-ASSETS {
  background-color: #2a2a2a;
  z-index: 100000;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
html body #PANELS .panel#LOADING-ASSETS .loader {
  width: 300px;
  height: 10px;
  background: #2a2a2a;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
  border: 1px solid #306961FF;
}
html body #PANELS .panel#LOADING-ASSETS #bar {
  height: 100%;
  width: 0%;
  background: #306961FF;
  transition: width 0.2s ease;
}
html body #PANELS .panel#INSTALL-APP-AS-HOME {
  background-image: url("../elements/assets/VILLA.jpg");
  background-size: cover;
  z-index: 10000;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
html body #PANELS .panel#INSTALL-APP-AS-HOME #INSTALL-WRAPPER {
  background-color: rgba(255, 255, 255, 0.89);
  padding: 40px;
  margin: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
html body #PANELS .panel#INSTALL-APP-AS-HOME #INSTALL-WRAPPER p {
  font-style: italic;
}
html body #PANELS .panel#GAME {
  position: absolute;
  background: transparent;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
html body #PANELS .panel#GAME .content {
  height: 100%;
}
html body #PANELS .panel#GAME .end-game {
  display: none;
}
html body #PANELS .panel#SPECIAL-CONTENT {
  position: absolute;
  background: transparent;
  z-index: 20;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  margin: auto;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX {
  position: absolute;
  background: white;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  width: 60%;
  height: calc(100% - 40px);
  overflow: hidden;
  margin: auto;
  background: url("../elements/UI/paper.jpg") no-repeat center center;
  background-size: cover;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  border: 5px solid #306961FF;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-WRAPPER {
  height: calc(100% - 80px);
  overflow: auto;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-WRAPPER img {
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-WRAPPER img.sc-image {
  object-fit: contain;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-WRAPPER #SPECIAL-CONTENT-TEXT {
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
  line-height: 150%;
  padding: 0 20px;
  text-shadow: 0 0 3px white;
  font-weight: 400;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-WRAPPER #SPECIAL-CONTENT-TEXT attr {
  color: #306961FF !important;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-WRAPPER #SPECIAL-CONTENT-TEXT button {
  display: block;
  margin: auto;
  font-size: 100%;
  padding: 5px;
  min-height: 50px;
  text-shadow: 0 0 3px white;
}
html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-ACTIONS {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX {
    padding: 10px;
    width: 80%;
  }
  html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-TEXT {
    font-size: 110% !important;
  }
  html body #PANELS .panel#SPECIAL-CONTENT #SPECIAL-CONTENT-BOX #SPECIAL-CONTENT-ACTIONS {
    bottom: 10px;
  }
}
html body #PANELS .panel#START {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  background: url("../elements/assets/VILLA.jpg") no-repeat center center;
  background-size: cover;
}
html body #PANELS .panel#START h1 {
  margin-top: 5vh;
}
html body #PANELS .panel#DIALOGUE-BOX {
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  color: #2a2a2a;
  text-align: center;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP {
  display: flex;
  align-items: center;
  gap: 20px;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP #DIALOGUE-STEP-COUNTER {
  z-index: 1;
  display: none;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 150%;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP #CHARACTER-MET {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 150%;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP #CHARACTER-MET img {
  height: 53px;
  vertical-align: middle;
  margin: 0 5px 0 0;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP #CHARACTER-MET img.generic {
  filter: invert(100%);
}
@media (max-width: 1024px) {
  html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP #CHARACTER-MET img {
    height: 40px;
  }
}
html body #PANELS .panel#DIALOGUE-BOX #CHARACTER-NAME {
  position: absolute;
  z-index: 1;
  padding: 20px;
  color: #fff;
  font-family: "Overlock SC", sans-serif;
}
html body #PANELS .panel#DIALOGUE-BOX #SCENE-IMAGE {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center bottom;
  background-color: #2a2a2a;
  pointer-events: none;
}
html body #PANELS .panel#DIALOGUE-BOX #SCENE-IMAGE #IMAGE {
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  height: 100%;
}
html body #PANELS .panel#DIALOGUE-BOX #SCENE-IMAGE #PICTURE-IN-PICTURE {
  display: none;
  position: absolute;
  top: 4vh;
  background-size: contain;
  background-position: center center;
  width: 40%;
  height: 60%;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  margin: auto;
  filter: drop-shadow(2px 4px 6px black);
}
html body #PANELS .panel#DIALOGUE-BOX #SCENE-IMAGE:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: url("../elements/assets/FOG_1.png") no-repeat top center;
  background-size: 200% auto;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 3s;
  animation: foggy 20s linear infinite alternate;
}
@keyframes foggy {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 100% 0;
  }
}
html body #PANELS .panel#DIALOGUE-BOX #SCENE-IMAGE.foggy:after {
  opacity: 1;
}
html body #PANELS .panel#DIALOGUE-BOX #IMAGE-MASK {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: top center;
  background-color: transparent;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  pointer-events: none;
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS #IMAGE {
  position: absolute;
  top: 0;
  background-color: #186ba6;
  background-size: cover;
  width: 100%;
  max-height: 400px;
  opacity: 1;
  pointer-events: none;
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor {
  height: 100vh;
  padding: 0;
  bottom: -50px;
  background-size: cover;
  background-repeat: no-repeat;
  max-height: 450px;
  margin-bottom: 0;
  transform: scale(1.3);
  transform-origin: 30% 100%;
}
@media (max-width: 1024px) {
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor {
    transform: scale(1);
  }
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img {
  position: relative;
  max-height: 100%;
  filter: drop-shadow(-10px 0px 10px rgba(42, 42, 42, 0)) grayscale(50%) brightness(40%);
  transition: transform 0.5s, filter 0.5s, bottom 0.5s;
  transform-origin: top center;
  bottom: 0;
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-1-IMG {
  margin-left: -120px;
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-2-IMG {
  margin-right: -50px;
}
@media (max-width: 1024px) {
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-1-IMG {
    margin-left: -110px;
  }
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-2-IMG {
    margin-right: -110px;
  }
}
@media (max-width: 740px) {
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-1-IMG {
    margin-left: -135px;
  }
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-2-IMG {
    margin-right: -135px;
  }
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-1-IMG {
  transform: scale(1) translateX(-50px);
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img#ACTOR-2-IMG {
  transform: scale(1) translateX(50px) scaleX(-1);
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img.talking-actor {
  filter: drop-shadow(-10px 0px 0 rgba(42, 42, 42, 0.4)) grayscale(0%) brightness(100%);
  bottom: 80px;
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img.talking-actor#ACTOR-1-IMG {
  transform: scale(1.2) translateX(0) scaleX(1);
}
html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img.talking-actor#ACTOR-2-IMG {
  transform: scale(1.2) translateX(0) scaleX(-1);
}
@media (max-width: 1024px) {
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img.talking-actor {
    bottom: 40px;
  }
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img.talking-actor#ACTOR-1-IMG {
    transform: scale(1.1) translateX(0) scaleX(1);
  }
  html body #PANELS .panel#DIALOGUE-BOX #ACTORS .actor img.talking-actor#ACTOR-2-IMG {
    transform: scale(1.1) translateX(0) scaleX(-1);
  }
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: auto;
  padding: 20px 0;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #ACTOR-NAME {
  position: relative;
  display: inline-block;
  font-size: 140%;
  color: #306961FF;
  background-color: #ffffff;
  padding: 1px 15px;
  border-radius: 10px;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT {
  font-family: "Borel", cursive;
  color: #ffffff;
  position: relative;
  font-size: 170%;
  padding: 40px 33%;
  text-align: center;
  line-height: 1.6;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT b {
  font-size: 110%;
  font-weight: 600;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT span.char {
  opacity: 0;
  transition: all 0.3s;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT span.char.visible {
  opacity: 1;
}
@media (max-width: 1024px) {
  html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT {
    font-size: 140%;
    padding: 20px 25%;
  }
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #CHOICES {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 10px;
  flex-direction: row;
  padding: 0 18%;
}
html body #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #CHOICES button {
  margin: 0;
}
html body #PANELS .panel#DIALOGUE-BOX.narrator #DIALOGUE-BOX-CONTENT #ACTOR-NAME {
  background-color: transparent;
}
html body #PANELS .panel#DIALOGUE-BOX.narrator #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT {
  font-family: "Overlock SC", sans-serif;
  line-height: 1.2;
  color: #ffffff;
  font-size: 170%;
  font-weight: 100;
  padding: 40px 20%;
}
@media (max-width: 1024px) {
  html body #PANELS .panel#DIALOGUE-BOX.narrator #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT {
    font-size: 140%;
  }
}
html body #PANELS .panel .image {
  position: relative;
  margin: auto;
  display: block;
  width: 60%;
}
html body #PANELS .panel .image.small {
  width: 40%;
}
html body #PANELS .panel .image.actor {
  border-radius: 100%;
}
html body #PANELS .panel.how-to-play {
  position: absolute;
  z-index: 1000;
  padding: 40px;
}
html body #PANELS .panel.how-to-play p {
  max-width: 600px;
  position: relative;
  margin: auto;
  padding: 20px;
}
html body #PANELS .panel.how-to-play img {
  max-width: 150px;
}
html body #PANELS .panel.start img {
  position: absolute;
  bottom: 0;
  margin: auto;
  display: block;
  width: 100%;
  object-fit: contain;
  height: 70px;
  background: white;
}
html body #PANELS .panel.start .content {
  padding: 20px;
}
html body #PANELS .panel.start .content p {
  max-width: 600px;
  position: relative;
  margin: auto;
  padding: 20px;
}
html body #PANELS .panel.game img {
  position: relative;
  margin: auto;
  display: block;
  width: 60%;
}
html body #PANELS .panel.game h2 {
  font-weight: 400;
  font-style: italic;
  padding: 0 15px 20px;
}
html body #PANELS .panel.exploration img {
  position: relative;
  margin: auto;
  display: block;
  width: 60%;
  max-width: 250px;
}
html body #PANELS .panel.map img {
  position: relative;
  margin: auto;
  display: block;
  width: 60%;
  max-width: 200px;
}
html body #PANELS .panel.end {
  background: #28363a;
}
html body #PANELS #MENU {
  position: absolute;
  font-family: "Galada", cursive;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-size: 140%;
  top: 10px;
  right: 40px;
  z-index: 1000;
}
html body #TRANSITION-LAYER {
  background-color: transparent;
  display: none;
  position: fixed;
  width: 100%;
  max-width: 940px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 50px;
  color: #2a2a2a;
  text-align: center;
}
html body #TRANSITION-LAYER h1 {
  margin-top: 10%;
  position: relative;
  width: 100%;
  text-align: center;
  height: 60px;
  color: #2a2a2a;
  font-style: italic;
  font-weight: 100;
}
html body #TRANSITION-LAYER h2 {
  position: relative;
  color: #2a2a2a;
  width: 100%;
  text-align: center;
  height: 60px;
  font-style: italic;
  font-weight: 100;
}
html body #TRANSITION-LAYER button {
  color: #2a2a2a;
}
html body #TRANSITION-LAYER .progress-box {
  margin-bottom: 30px;
}
html body #TRANSITION-LAYER .progress-box .progress {
  list-style: none;
  margin: 0;
  padding: 0;
}
html body #TRANSITION-LAYER .progress-box .progress .element {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 5px;
  display: inline-block;
  padding: 5px;
  background: transparent;
  color: #ffffff;
}
html body #TRANSITION-LAYER .progress-box .progress .element.done {
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
}
html body[data-flow=BIRD_MUSIC] .panel#DIALOGUE-BOX #IMAGE-MASK,
html body[data-flow=GROTTA] .panel#DIALOGUE-BOX #IMAGE-MASK {
  background-image: url("../elements/UI/GROTTA_MASK.png") !important;
}
html body[data-flow=LEMONS_GAME] .panel#DIALOGUE-BOX #IMAGE-MASK,
html body[data-flow=LIMONAIA] .panel#DIALOGUE-BOX #IMAGE-MASK {
  background-image: url("../elements/UI/LIMONAIA_MASK.png") !important;
}
html body[data-flow=RAGNAIA] #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-TOP #DIALOGUE-STEP-COUNTER {
  display: block;
}
html body.font-uppercase #PANELS button {
  text-transform: uppercase !important;
}
html body.font-uppercase #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #DIALOGUE-TEXT {
  text-transform: uppercase !important;
  font-size: 150%;
}
html body.font-uppercase #PANELS .panel#DIALOGUE-BOX #DIALOGUE-BOX-CONTENT #CHOICES button {
  text-transform: uppercase !important;
  font-size: 140%;
  font-family: 'Overlock SC', sans-serif !important;
}
html body #ALERT {
  display: none;
  position: fixed;
  left: 0;
  top: 20vh;
  width: 100%;
  height: 300px;
  background: #2a2a2a;
  color: white;
  text-align: center;
  padding: 20px;
}
@media all and (max-width: 600px) {
  html body {
    overflow: hidden;
  }
  html body button {
    font-size: 100%;
  }
  html body .panel {
    margin: 0;
    padding: 0;
  }
  html body .panel#DIALOGUE-BOX {
    width: 100vw;
  }
  html body .panel#DIALOGUE-BOX #ACTOR {
    height: 350px;
    /*
            .actor {
              img {
                &.talking-actor {
                  &#ACTOR-1-IMG {
                    transform: scale(1.1) translateX(30px) scaleX(-1);
                  }

                  &#ACTOR-2-IMG {
                    transform: scale(1.1) translateX(30px) scaleX(-1);
                  }
                }
              }
            }
            */
  }
  html body .panel#DIALOGUE-BOX #DIALOGUE-TEXT {
    height: 200px;
    font-size: 110%;
    padding: 50px;
  }
  html body .panel#DIALOGUE-BOX #PICTURE-IN-PICTURE {
    top: 0;
  }
  html body #TRANSITION-LAYER {
    padding: 0;
  }
  html body #TRANSITION-LAYER .progress-box .progress .element {
    font-size: 70%;
  }
}
/**/
/*# sourceMappingURL=main.css.map */