:root {
  --ambio-info-screen--animation-duration: 10s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ambio-info-screen {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.ambio-info-screen *,
.ambio-info-screen *:before,
.ambio-info-screen *:after {
  box-sizing: border-box;
}
.ambio-info-screen .splash-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ambio-info-screen .splash-screen .content {
  width: 25%;
  max-width: 500px;
}
.ambio-info-screen .splash-screen .content img {
  display: block;
  width: 100%;
  animation: fadeIn 1s;
}
.ambio-info-screen .splash-screen .content h1 {
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: 3s ease 0s normal forwards 1 fadeIn;
  font-weight: 400;
}
.ambio-info-screen .splash-screen.hidden {
  display: none;
}
.ambio-info-screen .channel {
  position: relative;
  height: 100vh;
  width: 100vw;
}
.ambio-info-screen .channel iframe {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ambio-info-screen .slides {
  position: relative;
}
.ambio-info-screen .slides.list {
  display: grid;
  grid-auto-rows: 1fr;
  background-color: #ccc;
}
.ambio-info-screen .slides.list .slide {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
  font-size: 1.5rem;
  background-size: auto 80%;
  background-repeat: no-repeat;
  background-position: right center;
  background-color: #fff;
  transition: all 200ms linear;
  opacity: 0.4;
}
.ambio-info-screen .slides.list .slide.active {
  padding-left: 3rem;
  opacity: 1;
}
.ambio-info-screen .slides.list .slide * {
  margin: 0;
}
.ambio-info-screen .slides.list .slide.iframe .content {
  margin-left: auto;
}
.ambio-info-screen .slides.list .slide .index {
  margin-right: 1rem;
  font-size: 5rem;
}
.ambio-info-screen .slides.slideshow .slide {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  font-size: 4vw;
  line-height: 1.1;
  text-align: center;
  position: absolute;
  opacity: 0;
  z-index: 1;
  webkit-transition: opacity var(--ambio-info-screen--animation-duration);
  -moz-transition: opacity var(--ambio-info-screen--animation-duration);
  -o-transition: opacity var(--ambio-info-screen--animation-duration);
  transition: opacity var(--ambio-info-screen--animation-duration);
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.background.image {
  padding: 1vw;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split {
  display: flex;
  width: 100%;
  height: 100%;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split.horizontal {
  font-size: 2vw;
  flex-direction: row;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split.horizontal.reverse {
  flex-direction: row-reverse;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split.horizontal > div {
  flex: 0 50%;
  max-width: 100%;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split.vertical {
  flex-direction: column;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split.vertical.reverse {
  flex-direction: column-reverse;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split.vertical > div {
  flex: 0 0 50%;
  width: 100%;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split > div.image {
  background-position: center;
  background-size: cover;
}
.ambio-info-screen .slides.slideshow .slide.custom-content .content.split > div.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3vw;
}
.ambio-info-screen .slides.slideshow .slide.iframe .content {
  height: 100%;
  width: 100%;
  position: relative;
}
.ambio-info-screen .slides.slideshow .slide.iframe .content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ambio-info-screen .slides.slideshow .slide.event .content {
  background-color: #fff;
  color: #000;
}
.ambio-info-screen .slides.slideshow .slide * {
  margin: 0;
}
.ambio-info-screen .slides.slideshow .slide.active {
  opacity: 1 !important;
  z-index: 2 !important;
}
.ambio-info-screen .slides.slideshow .slide .index {
  opacity: 0;
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  font-size: 5rem;
  transition: opacity 200ms linear, bottom 100ms linear;
  z-index: 3;
  color: #fff;
}
.ambio-info-screen .slides.slideshow .slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 2;
}
.ambio-info-screen .slides.slideshow .slide .overlay:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.ambio-info-screen .slides.slideshow .slide .overlay:hover .index {
  opacity: 1;
  bottom: 1rem;
}
.ambio-info-screen .notice {
  display: flex;
  height: 100vh;
  width: 100vw;
  align-items: flex-end;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
  padding: 1vw;
  color: #000;
}
/*# sourceMappingURL=style.css.map */