@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
div.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
div.slideshow .result {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}
div.slideshow .result > * {
  display: none;
}
div.slideshow .input {
  display: none;
}
div.slideshow.editing .input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
div.slideshow.editing .input ol {
  width: 100%;
  box-sizing: border-box;
}
div.slideshow.editing .input ol li {
  display: flex;
  justify-content: center;
}
div.slideshow.editing .input ol li > * {
  flex-grow: 1;
}
div.slideshow.editing .input label {
  cursor: pointer;
}
div.slideshow.editing .input input[type=file] {
  display: none;
}
div.slideshow.editing .input div.cta label:before {
  content: "+";
}
div.slideshow.editing .input div.cta.uploading label:before {
  position: relative;
  display: inline-block;
  transform-origin: center;
  animation-name: spin;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  content: "↻";
}
div.grid {
  position: relative;
  width: 100%;
  overflow: hidden;
}
div.grid > * {
  display: block;
  position: absolute;
  content: "";
  cursor: pointer;
}
div.grid video {
  object-fit: cover;
}
video._i,
img._i {
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  object-fit: cover;
}
video._i.loaded,
img._i.loaded {
  opacity: 1;
}
* {
  margin: 0;
  padding: 0;
}
body {
  background: #000;
  color: #fff;
}
body button {
  color: #fff;
  border-color: #fff;
}
body a,
body label {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: transparent;
}
body a:hover,
body label:hover {
  text-decoration-color: #fff;
}
body.light {
  color: #000;
  background: #fff;
}
body.light a,
body.light label {
  color: #000;
}
body.light a:hover,
body.light label:hover {
  text-decoration-color: #000;
  border-color: #000;
}
body.light div.navigation div.links div.underline,
body.light div.navigation div.loading div.underline {
  border-color: #000;
}
body.light svg path {
  fill: #000;
}
body.light .solo {
  color: #fff;
}
body div.navigation h1,
body div.navigation div.links,
body div.navigation div.loading,
body div.back-to-top {
  font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
  font-size: 3.33333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.33333333vw;
  letter-spacing: 0.02em;
  text-align: left;
}
body div.navigation {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  margin: 3.33333333vw;
  z-index: 10;
}
body div.navigation div.loading {
  display: none;
}
body div.navigation div.links,
body div.navigation div.loading {
  margin-left: auto;
  text-align: right;
}
body div.navigation div.links a,
body div.navigation div.loading a {
  margin-left: 1.66666667vw;
  text-decoration: none;
}
body div.navigation div.links div.underline,
body div.navigation div.loading div.underline {
  position: absolute;
  transform: translate(-50%, -50%);
  height: 0.16666667vw;
  width: 0;
  border-bottom: 0.16666667vw solid #fff;
  content: "";
  pointer-events: none;
  transition: top 0.35s ease-in-out, left 0.35s ease-in-out, width 0.35s ease-in-out;
}
body div.one {
  position: static;
  font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
  font-size: 4.44444444vw;
  font-style: normal;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: 0.02em;
  text-align: left;
  width: 62%;
  margin: 125vh 0 0 0;
  padding: 3.33333333vw;
}
body div.one div.images {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
body div.one div.images div.slideshow .input {
  font-size: 1.66666667vw;
  padding-top: 10vw;
  padding-left: 3.33333333vw;
  padding-right: 3.33333333vw;
}
body div.one div.images div.slideshow .input li {
  margin: 0.83333333vw 0;
  padding: 0.83333333vw 0;
  border-bottom: 1px solid #808080;
}
body div.one div.images div.slideshow .input li:first-child {
  border-top: 1px solid #808080;
}
body div.one div.images div.slideshow .input li > div {
  text-align: center;
}
body div.one div.images div.slideshow .input li > div:first-child {
  width: 50%;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
body div.one div.images div.slideshow .input li > div:last-child {
  text-align: right;
}
body div.one div.images div.slideshow .input button {
  font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
  font-size: 1.66666667vw;
  line-height: 112%;
  min-width: 2.2vw;
  height: 3.33333333vw;
  border: 1px solid #fff;
  border-radius: 0.33333333vw;
  background: transparent;
  box-sizing: border-box;
  padding: 0 1.66666667vw;
  vertical-align: middle;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.35s ease-in-out;
}
body div.one div.images div.slideshow .input button:hover {
  opacity: 1;
}
body div.one div.images div.slideshow .input button + button {
  margin-left: 0.83333333vw;
}
body div.one div.images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
body div.one div.textarea {
  position: relative;
}
body div.one div.textarea div.about > * + * {
  margin-top: 5vw;
}
body div.one div.textarea div.about ul {
  list-style: none;
}
body div.one div.textarea div.about p span {
  white-space: nowrap;
}
body div.all {
  margin-top: 50vh;
  padding-bottom: 3.33333333vw;
  margin-bottom: 25vh;
}
body div.hint {
  position: fixed;
  bottom: 3.33333333vw;
  left: 3.33333333vw;
  pointer-events: none;
}
body div.hint svg {
  width: 1.66666667vw;
  height: 3.33333333vw;
}
body div.back-to-top {
  position: fixed;
  bottom: 3.33333333vw;
  right: 3.33333333vw;
  cursor: pointer;
}
body div.view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}
body div.view.fade {
  transition: opacity 0.35s ease-in-out;
  opacity: 0;
}
body div.view.fade.animate-in {
  opacity: 1;
}
body div.view.fade.animate-out {
  opacity: 0;
}
body div.view.fade.animate-out.animate-complete {
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
body div.view.slide {
  transition: transform 0.7s cubic-bezier(0.87, 0, 0.13, 1);
  transform: translateY(50vh);
}
body div.view.slide.animate-in {
  transform: translateY(0);
}
body div.view.slide.animate-out {
  transform: translateY(50vh);
}
body div.view.slide.animate-out.animate-complete {
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
body div.solo {
  font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
  font-size: 1.33333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
}
body div.solo div.stage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  transition: opacity 0.35s ease-in-out;
}
body div.solo img,
body div.solo video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  max-width: 100%;
  pointer-events: none;
  cursor: pointer;
}
body div.solo video {
  pointer-events: inherit;
}
body div.solo .action {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background-size: 100%;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
  transition-delay: 0s;
  opacity: 0;
  content: "";
}
body div.solo div.video.unstarted .action {
  transition-delay: 1s;
  background-image: url(/assets/icons/control_play.svg);
  opacity: 1;
}
body div.solo div.video.paused .action {
  background-image: url(/assets/icons/control_play.svg);
  opacity: 1;
}
body div.solo div.video.playing .action {
  background-image: url(/assets/icons/control_pause.svg);
  opacity: 0;
}
body div.solo div.video.playing.hover .action {
  opacity: 1;
}
body div.solo div.meta {
  position: absolute;
  top: 3.33333333vw;
  left: 3.33333333vw;
  text-transform: capitalize;
}
body div.solo div.close {
  position: absolute;
  top: 3.33333333vw;
  right: 3.33333333vw;
  font-size: 3.33333333vw;
  line-height: 100%;
  cursor: pointer;
}
body div.solo.animate-in {
  opacity: 1;
}
body div.solo.animate-in div.stage {
  opacity: 1;
}
body div.solo.animate-in img,
body div.solo.animate-in video {
  transition: top 0.35s ease-in-out, left 0.35s ease-in-out, width 0.35s ease-in-out, height 0.35s ease-in-out;
}
body div.solo.animate-out {
  opacity: 0;
}
body div.solo.animate-out.animate-complete {
  transition: opacity 0.35s ease-in-out;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
body div.solo.animate-out.animate-complete div.stage {
  opacity: 0;
}
body div.solo.active img,
body div.solo.active video {
  transition: none !important;
}
body div.app {
  position: relative;
  overflow-y: hidden;
}
body div.app.soloing div.view.solo {
  display: block;
}
body div.app.scrollable {
  overflow-y: visible;
}
@media screen and (max-width: 840px) {
  body {
    background: #000;
    color: #fff;
  }
  body button {
    color: #fff;
    border-color: #fff;
  }
  body a,
  body label {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: transparent;
  }
  body a:hover,
  body label:hover {
    text-decoration-color: #fff;
  }
  body.light {
    color: #000;
    background: #fff;
  }
  body.light a,
  body.light label {
    color: #000;
  }
  body.light a:hover,
  body.light label:hover {
    text-decoration-color: #000;
    border-color: #000;
  }
  body.light div.navigation div.links div.underline,
  body.light div.navigation div.loading div.underline {
    border-color: #000;
  }
  body.light svg path {
    fill: #000;
  }
  body.light .solo {
    color: #fff;
  }
  body div.navigation h1,
  body div.navigation div.links,
  body div.navigation div.loading,
  body div.back-to-top {
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-align: left;
  }
  body div.navigation {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    margin: 28px;
    z-index: 10;
  }
  body div.navigation div.loading {
    display: none;
  }
  body div.navigation div.links,
  body div.navigation div.loading {
    margin-left: auto;
    text-align: right;
  }
  body div.navigation div.links a,
  body div.navigation div.loading a {
    margin-left: 14px;
    text-decoration: none;
  }
  body div.navigation div.links div.underline,
  body div.navigation div.loading div.underline {
    position: absolute;
    transform: translate(-50%, -50%);
    height: 1.4px;
    width: 0;
    border-bottom: 1.4px solid #fff;
    content: "";
    pointer-events: none;
    transition: top 0.35s ease-in-out, left 0.35s ease-in-out, width 0.35s ease-in-out;
  }
  body div.one {
    position: static;
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 37.33333333px;
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    letter-spacing: 0.02em;
    text-align: left;
    width: 62%;
    margin: 125vh 0 0 0;
    padding: 28px;
  }
  body div.one div.images {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  body div.one div.images div.slideshow .input {
    font-size: 14px;
    padding-top: 84px;
    padding-left: 28px;
    padding-right: 28px;
  }
  body div.one div.images div.slideshow .input li {
    margin: 7px 0;
    padding: 7px 0;
    border-bottom: 1px solid #808080;
  }
  body div.one div.images div.slideshow .input li:first-child {
    border-top: 1px solid #808080;
  }
  body div.one div.images div.slideshow .input li > div {
    text-align: center;
  }
  body div.one div.images div.slideshow .input li > div:first-child {
    width: 50%;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  body div.one div.images div.slideshow .input li > div:last-child {
    text-align: right;
  }
  body div.one div.images div.slideshow .input button {
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 112%;
    min-width: 18.48px;
    height: 28px;
    border: 1px solid #fff;
    border-radius: 2.8px;
    background: transparent;
    box-sizing: border-box;
    padding: 0 14px;
    vertical-align: middle;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.35s ease-in-out;
  }
  body div.one div.images div.slideshow .input button:hover {
    opacity: 1;
  }
  body div.one div.images div.slideshow .input button + button {
    margin-left: 7px;
  }
  body div.one div.images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  body div.one div.textarea {
    position: relative;
  }
  body div.one div.textarea div.about > * + * {
    margin-top: 42px;
  }
  body div.one div.textarea div.about ul {
    list-style: none;
  }
  body div.one div.textarea div.about p span {
    white-space: nowrap;
  }
  body div.all {
    margin-top: 50vh;
    padding-bottom: 28px;
    margin-bottom: 25vh;
  }
  body div.hint {
    position: fixed;
    bottom: 28px;
    left: 28px;
    pointer-events: none;
  }
  body div.hint svg {
    width: 14px;
    height: 28px;
  }
  body div.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    cursor: pointer;
  }
  body div.view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
  body div.view.fade {
    transition: opacity 0.35s ease-in-out;
    opacity: 0;
  }
  body div.view.fade.animate-in {
    opacity: 1;
  }
  body div.view.fade.animate-out {
    opacity: 0;
  }
  body div.view.fade.animate-out.animate-complete {
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  body div.view.slide {
    transition: transform 0.7s cubic-bezier(0.87, 0, 0.13, 1);
    transform: translateY(50vh);
  }
  body div.view.slide.animate-in {
    transform: translateY(0);
  }
  body div.view.slide.animate-out {
    transform: translateY(50vh);
  }
  body div.view.slide.animate-out.animate-complete {
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  body div.solo {
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 11.2px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    opacity: 0;
  }
  body div.solo div.stage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    transition: opacity 0.35s ease-in-out;
  }
  body div.solo img,
  body div.solo video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    max-width: 100%;
    pointer-events: none;
    cursor: pointer;
  }
  body div.solo video {
    pointer-events: inherit;
  }
  body div.solo .action {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background-size: 100%;
    pointer-events: none;
    transition: opacity 0.15s ease-out;
    transition-delay: 0s;
    opacity: 0;
    content: "";
  }
  body div.solo div.video.unstarted .action {
    transition-delay: 1s;
    background-image: url(/assets/icons/control_play.svg);
    opacity: 1;
  }
  body div.solo div.video.paused .action {
    background-image: url(/assets/icons/control_play.svg);
    opacity: 1;
  }
  body div.solo div.video.playing .action {
    background-image: url(/assets/icons/control_pause.svg);
    opacity: 0;
  }
  body div.solo div.video.playing.hover .action {
    opacity: 1;
  }
  body div.solo div.meta {
    position: absolute;
    top: 28px;
    left: 28px;
    text-transform: capitalize;
  }
  body div.solo div.close {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 28px;
    line-height: 100%;
    cursor: pointer;
  }
  body div.solo.animate-in {
    opacity: 1;
  }
  body div.solo.animate-in div.stage {
    opacity: 1;
  }
  body div.solo.animate-in img,
  body div.solo.animate-in video {
    transition: top 0.35s ease-in-out, left 0.35s ease-in-out, width 0.35s ease-in-out, height 0.35s ease-in-out;
  }
  body div.solo.animate-out {
    opacity: 0;
  }
  body div.solo.animate-out.animate-complete {
    transition: opacity 0.35s ease-in-out;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  body div.solo.animate-out.animate-complete div.stage {
    opacity: 0;
  }
  body div.solo.active img,
  body div.solo.active video {
    transition: none !important;
  }
  body div.one {
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 2160px) {
  body {
    background: #000;
    color: #fff;
  }
  body button {
    color: #fff;
    border-color: #fff;
  }
  body a,
  body label {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: transparent;
  }
  body a:hover,
  body label:hover {
    text-decoration-color: #fff;
  }
  body.light {
    color: #000;
    background: #fff;
  }
  body.light a,
  body.light label {
    color: #000;
  }
  body.light a:hover,
  body.light label:hover {
    text-decoration-color: #000;
    border-color: #000;
  }
  body.light div.navigation div.links div.underline,
  body.light div.navigation div.loading div.underline {
    border-color: #000;
  }
  body.light svg path {
    fill: #000;
  }
  body.light .solo {
    color: #fff;
  }
  body div.navigation h1,
  body div.navigation div.links,
  body div.navigation div.loading,
  body div.back-to-top {
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: 0.02em;
    text-align: left;
  }
  body div.navigation {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    margin: 72px;
    z-index: 10;
  }
  body div.navigation div.loading {
    display: none;
  }
  body div.navigation div.links,
  body div.navigation div.loading {
    margin-left: auto;
    text-align: right;
  }
  body div.navigation div.links a,
  body div.navigation div.loading a {
    margin-left: 36px;
    text-decoration: none;
  }
  body div.navigation div.links div.underline,
  body div.navigation div.loading div.underline {
    position: absolute;
    transform: translate(-50%, -50%);
    height: 3.6px;
    width: 0;
    border-bottom: 3.6px solid #fff;
    content: "";
    pointer-events: none;
    transition: top 0.35s ease-in-out, left 0.35s ease-in-out, width 0.35s ease-in-out;
  }
  body div.one {
    position: static;
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    letter-spacing: 0.02em;
    text-align: left;
    width: 62%;
    margin: 125vh 0 0 0;
    padding: 72px;
  }
  body div.one div.images {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  body div.one div.images div.slideshow .input {
    font-size: 36px;
    padding-top: 216px;
    padding-left: 72px;
    padding-right: 72px;
  }
  body div.one div.images div.slideshow .input li {
    margin: 18px 0;
    padding: 18px 0;
    border-bottom: 1px solid #808080;
  }
  body div.one div.images div.slideshow .input li:first-child {
    border-top: 1px solid #808080;
  }
  body div.one div.images div.slideshow .input li > div {
    text-align: center;
  }
  body div.one div.images div.slideshow .input li > div:first-child {
    width: 50%;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  body div.one div.images div.slideshow .input li > div:last-child {
    text-align: right;
  }
  body div.one div.images div.slideshow .input button {
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 36px;
    line-height: 112%;
    min-width: 47.52px;
    height: 72px;
    border: 1px solid #fff;
    border-radius: 7.2px;
    background: transparent;
    box-sizing: border-box;
    padding: 0 36px;
    vertical-align: middle;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.35s ease-in-out;
  }
  body div.one div.images div.slideshow .input button:hover {
    opacity: 1;
  }
  body div.one div.images div.slideshow .input button + button {
    margin-left: 18px;
  }
  body div.one div.images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  body div.one div.textarea {
    position: relative;
  }
  body div.one div.textarea div.about > * + * {
    margin-top: 108px;
  }
  body div.one div.textarea div.about ul {
    list-style: none;
  }
  body div.one div.textarea div.about p span {
    white-space: nowrap;
  }
  body div.all {
    margin-top: 50vh;
    padding-bottom: 72px;
    margin-bottom: 25vh;
  }
  body div.hint {
    position: fixed;
    bottom: 72px;
    left: 72px;
    pointer-events: none;
  }
  body div.hint svg {
    width: 36px;
    height: 72px;
  }
  body div.back-to-top {
    position: fixed;
    bottom: 72px;
    right: 72px;
    cursor: pointer;
  }
  body div.view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
  body div.view.fade {
    transition: opacity 0.35s ease-in-out;
    opacity: 0;
  }
  body div.view.fade.animate-in {
    opacity: 1;
  }
  body div.view.fade.animate-out {
    opacity: 0;
  }
  body div.view.fade.animate-out.animate-complete {
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  body div.view.slide {
    transition: transform 0.7s cubic-bezier(0.87, 0, 0.13, 1);
    transform: translateY(50vh);
  }
  body div.view.slide.animate-in {
    transform: translateY(0);
  }
  body div.view.slide.animate-out {
    transform: translateY(50vh);
  }
  body div.view.slide.animate-out.animate-complete {
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  body div.solo {
    font-family: neue-haas-grotesk-display, Helvetica, Arial, sans-serif;
    font-size: 28.8px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    opacity: 0;
  }
  body div.solo div.stage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    transition: opacity 0.35s ease-in-out;
  }
  body div.solo img,
  body div.solo video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    max-width: 100%;
    pointer-events: none;
    cursor: pointer;
  }
  body div.solo video {
    pointer-events: inherit;
  }
  body div.solo .action {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background-size: 100%;
    pointer-events: none;
    transition: opacity 0.15s ease-out;
    transition-delay: 0s;
    opacity: 0;
    content: "";
  }
  body div.solo div.video.unstarted .action {
    transition-delay: 1s;
    background-image: url(/assets/icons/control_play.svg);
    opacity: 1;
  }
  body div.solo div.video.paused .action {
    background-image: url(/assets/icons/control_play.svg);
    opacity: 1;
  }
  body div.solo div.video.playing .action {
    background-image: url(/assets/icons/control_pause.svg);
    opacity: 0;
  }
  body div.solo div.video.playing.hover .action {
    opacity: 1;
  }
  body div.solo div.meta {
    position: absolute;
    top: 72px;
    left: 72px;
    text-transform: capitalize;
  }
  body div.solo div.close {
    position: absolute;
    top: 72px;
    right: 72px;
    font-size: 72px;
    line-height: 100%;
    cursor: pointer;
  }
  body div.solo.animate-in {
    opacity: 1;
  }
  body div.solo.animate-in div.stage {
    opacity: 1;
  }
  body div.solo.animate-in img,
  body div.solo.animate-in video {
    transition: top 0.35s ease-in-out, left 0.35s ease-in-out, width 0.35s ease-in-out, height 0.35s ease-in-out;
  }
  body div.solo.animate-out {
    opacity: 0;
  }
  body div.solo.animate-out.animate-complete {
    transition: opacity 0.35s ease-in-out;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  body div.solo.animate-out.animate-complete div.stage {
    opacity: 0;
  }
  body div.solo.active img,
  body div.solo.active video {
    transition: none !important;
  }
}
body div#lobby {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
  transition-delay: 1s;
  z-index: 1000;
}
body.ready div#lobby {
  opacity: 0;
  pointer-events: none;
}
.disabled {
  display: none;
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*# sourceMappingURL=main.css.map */