body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
body,
button {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
}
#instructions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2em;
  text-align: center;
  opacity: 0;
  transition: opacity 2.5s;
}
.showInstructions #instructions {
  opacity: 1;
}
#instructions p {
  color: #ddd;
  font-size: 0.9em;
  line-height: 1.5;
}
.infobutton {
  position: absolute;
  font-size: 1.25em;
  right: 1em;
  top: 1em;
  border: 2px solid white;
  border-radius: 100%;
  color: white;
  padding: 0.3em 0.82em;
  z-index: 999999;
  opacity: 0.5;
  transition: all 0.5s;
  cursor: crosshair;
}
.infobutton:hover {
  opacity: 1;
}
.showIntro .infobutton {
  opacity: 0;
}
.logo {
  position: absolute;
  z-index: 999999;
  height: 2em;
  width: 2em;
  left: 1.4em;
  top: 1.4em;
  opacity: 0.5;
  transition: all 0.5s;
  cursor: crosshair;
}
.logo:hover {
  opacity: 1;
}
.logo:hover .bar:nth-child(1) {
  left: 1.5em;
}
.logo:hover .bar:nth-child(1):before {
  top: 1.5em;
  left: -1.5em;
}
.logo:hover .bar:nth-child(2) {
  left: 1em;
}
.logo:hover .bar:nth-child(2):before {
  top: 1em;
  left: -1em;
}
.logo:hover .bar:nth-child(3) {
  left: 0.5em;
}
.logo:hover .bar:nth-child(3):before {
  top: 0.5em;
  left: -0.5em;
}
.showIntro .logo {
  opacity: 0;
}
.logo .bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  border-left: 2px solid #fff;
  margin-left: -1px;
  transition: all 1s;
}
.logo .bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  border-top: 2px solid #fff;
  margin-top: -1px;
  margin-left: -1px;
  transition: all 1s;
}
.logo .bar:nth-child(1) {
  left: 0.5em;
}
.logo .bar:nth-child(1):before {
  top: 0.5em;
  left: -0.5em;
}
.logo .bar:nth-child(2) {
  left: 1em;
}
.logo .bar:nth-child(2):before {
  top: 1em;
  left: -1em;
}
.logo .bar:nth-child(3) {
  left: 1.5em;
}
.logo .bar:nth-child(3):before {
  top: 1.5em;
  left: -1.5em;
}
#intro {
  position: absolute;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 5s;
  opacity: 0;
  height: 0;
  overflow: hidden;
  color: #eee;
}
#intro.active {
  height: 100%;
  opacity: 1;
}
#intro.leave {
  height: 0;
  opacity: 0;
  bottom: 0;
}
#intro .slide {
  padding: 4em;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 54em;
  margin: 0 auto;
  display: none;
}
#intro .slide ins,
#intro .slide del {
  display: none;
}
#intro .slide:nth-child(1) {
  display: block;
}
#intro p,
#intro ul {
  font-size: 1.2em;
  line-height: 1.5;
}
#intro ul {
  margin-bottom: 0;
}
#intro li {
  margin-bottom: 1em;
}
#intro p,
#intro h3 {
  margin-top: 0;
  margin-bottom: 1em;
}
#intro h3 {
  font-size: 2em;
}
#intro button {
  opacity: 0;
  transition: opacity 5s ease 5s;
  display: inline-block;
  margin: 2em 0.5em 0;
}
#intro button.introbutton {
  position: absolute;
  z-index: 9999999;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
#intro section {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2em;
}
#intro.active button {
  opacity: 0.5;
}
#intro.active button:hover {
  opacity: 1;
}
.header {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  text-transform: uppercase;
  z-index: 999;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 2s;
  width: 100%;
  height: 80px;
}
.header.active {
  opacity: 1;
  transform: translateY(0%);
}
.header.conceptual {
  width: 100vh;
  transform-origin: 0 50%;
  transform: rotate(-90deg) translate(-96%, -100%);
}
.createLoom .header.conceptual {
  transform: rotate(-90deg) translate(-96%, 50%);
}
.showHaiku .header.conceptual,
.animateLoom .header.conceptual {
  transform: rotate(-90deg) translate(-96%, -100%) !important;
}
.openHaiku .header.conceptual {
  opacity: 0;
}
.animateLoom .header.perceptual {
  transform: translateY(100vh);
}
.openHaiku .header.perceptual {
  transform: translateY(100vh);
}
.header.bottom {
  bottom: 0;
  top: auto;
  transform: translateY(100%);
}
.createLoom .header.bottom {
  transform: translateY(0%);
}
.animateLoom .header.bottom {
  transform: translateY(100%) !important;
}
.openHaiku .header.bottom {
  transform: translateY(100%) !important;
}
.header .title {
  font-weight: 100;
  letter-spacing: .2em;
  margin-top: 0.6em;
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.25);
}
.header .buttons {
  margin: 0 80px;
}
.header .link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: .2em;
  cursor: pointer;
  display: inline-block;
  width: 24%;
  padding: 1em 0;
  transition: all 1s;
}
.header .link.hover,
.header .link:hover {
  color: white;
}
.header .link.selected {
  color: gold;
}
.header .link.selected:hover {
  color: white;
}
button {
  border: 2px solid #fff;
  padding: 1em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  opacity: 0.5;
  font-size: 0.8em;
  letter-spacing: .3em;
  font-weight: 500;
  transition: all 0.5s;
  margin-top: 1.25em;
  outline: none;
}
button:hover,
button:active {
  border-color: #fff;
  color: #fff;
}
.header button.active {
  border-color: gold;
  color: gold;
  opacity: 1;
  cursor: pointer;
}
.header button.active:hover {
  color: #333;
  background-color: gold;
}
.thread {
  position: absolute;
  background-color: #000000;
  z-index: 9;
  opacity: 0.5;
  overflow: hidden;
  transition: all 5s;
}
.createLoom .thread {
  transform: translateY(0%);
}
.openHaiku .thread,
.animateLoom .thread {
  transform: translateY(100vh) !important;
}
.thread[data-column]:nth-child(8) {
  transition-delay: 0.5s;
}
.thread[data-column]:nth-child(7) {
  transition-delay: 1s;
}
.thread[data-column]:nth-child(6) {
  transition-delay: 1.5s;
}
.thread[data-column]:nth-child(5) {
  transition-delay: 2s;
}
.thread.selected,
.thread.hover {
  opacity: 0.5 !important;
}
.thread video {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  top: 0;
  left: 0;
}
.grid {
  cursor: pointer;
  border: 2px solid transparent;
  position: absolute;
  z-index: 999;
  transition: border-color 1s, opacity 5s, transform 5s;
  opacity: 1;
}
.grid:hover {
  border-color: white;
}
.grid.selected {
  border-color: gold;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.25);
}
.grid.disabled {
  border-color: transparent;
  cursor: default;
  background: rgba(0, 0, 0, 0.5);
}
.openHaiku .grid,
.animateLoom .grid {
  transform: translateY(100vh) !important;
  opacity: 0;
}
.haiku {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 5s;
}
.haiku.active {
  opacity: 1;
}
.haiku.active .title {
  transform: translateY(0);
}
.haiku .title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1em;
  font-size: 1.5em;
  font-weight: lighter;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: gold;
  text-align: center;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 5s;
  transition-delay: 1s;
  transform: translateY(100vh);
}
.haiku .slide {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: transform 5s, opacity 10s;
}
.haiku .slide.active {
  opacity: 1;
}
.haiku .slide.active .panel.sidebar {
  transform: translateX(0);
  opacity: 1;
}
.haiku .slide.active .panel.image {
  transform: translateX(0);
  opacity: 1;
}
.haiku .slide.active .panel.text {
  transform: translateY(0);
  opacity: 1;
}
.haiku .slide .panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 5s;
}
.haiku .slide .panel.sidebar {
  right: auto;
  width: 200px;
  transform: translateX(100vw);
  opacity: 0;
  z-index: 99;
}
.haiku .slide .panel.image {
  left: calc(218px);
  transform: translateX(-100vw);
  opacity: 0;
  z-index: 9;
}
.haiku .slide .panel.text {
  top: auto;
  bottom: 200px;
  background: rgba(0, 0, 0, 0.8);
  color: #eee;
  padding: 4em;
  padding-left: calc(300px);
  transform: translateY(-100vh);
  opacity: 0;
  z-index: 999;
}
.haiku .slide .panel.text p {
  white-space: pre;
  line-height: 2;
}
.haiku .slide .panel.text h6 {
  font-weight: normal;
  font-size: 1em;
  color: #999999;
}
#video {
  position: relative;
  z-index: 0;
  height: 100%;
  width: 100%;
  transition-delay: 2s;
  background-color: #000;
  opacity: 0;
}
#video iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 0;
}
#video video {
  min-height: 100%;
  min-width: 100%;
}
.showIntro #video,
.animateLoom #video {
  opacity: 1;
}
#bio {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 5s;
  z-index: 999;
  top: 100vh;
}
.showBio #bio {
  top: 0;
  display: block;
  opacity: 1;
}
#bio .background {
  position: absolute;
  height: 34vh;
  background-size: cover;
  background-position: center center;
  left: 0;
  right: 0;
  top: -200vh;
  opacity: 0;
  transition: top 5s, opacity 10s;
}
.showBio #bio .background {
  opacity: 1;
}
.showBio #bio .background:nth-child(1) {
  top: 0;
}
.showBio #bio .background:nth-child(2) {
  top: 33vh;
}
.showBio #bio .background:nth-child(3) {
  top: 66vh;
}
#bio .globe {
  position: absolute;
  width: 150px;
  right: 2em;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 9999;
  opacity: 0;
  transition: all 5s;
}
.showBio #bio .globe {
  transform: translateY(-50%) rotate(0deg);
  opacity: 1;
}
#bio .globe img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#bio .section {
  position: absolute;
  z-index: 999;
  transition: all 5s;
  width: 100%;
  margin-top: 80px;
  position: relative;
  background-color: transparent;
  padding: 1em 0;
  transform: translateY(100%);
}
#bio .section .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}
.showBio #bio .section {
  background-color: #000;
  transform: translateY(0);
}
#bio .section.active {
  opacity: 1;
}
#bio .section .map {
  flex: 1;
  position: relative;
}
#bio .section .map img {
  width: 100%;
  margin: 0 auto;
  display: block;
}
#bio .section .map .bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1em;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 10s;
}
#bio .section .map .bar:nth-child(2) {
  left: 100%;
}
.showBio #bio .section .map .bar:nth-child(2) {
  left: 10%;
}
#bio .section .map .bar:nth-child(3) {
  left: 0%;
}
.showBio #bio .section .map .bar:nth-child(3) {
  left: 30%;
}
#bio .section .map .bar:nth-child(4),
#bio .section .map .bar:nth-child(5) {
  bottom: auto;
  left: 0;
  right: 0;
  width: auto;
  height: 1em;
  top: 100%;
}
.showBio #bio .section .map .bar:nth-child(4),
.showBio #bio .section .map .bar:nth-child(5) {
  top: 30%;
}
#bio .section .map .bar:nth-child(5) {
  top: 0%;
}
.showBio #bio .section .map .bar:nth-child(5) {
  top: 65%;
}
#bio .section:nth-child(3) {
  margin-top: 300px;
}
.showBio #bio .section:nth-child(3) {
  margin-top: 18px;
}
#bio .section:nth-child(3) .map .bar:nth-child(2) {
  left: 100%;
}
.showBio #bio .section:nth-child(3) .map .bar:nth-child(2) {
  left: 62%;
}
#bio .section:nth-child(3) .map .bar:nth-child(3) {
  left: 0%;
}
.showBio #bio .section:nth-child(3) .map .bar:nth-child(3) {
  left: 82%;
}
#bio .section:nth-child(3) .map .bar:nth-child(4),
#bio .section:nth-child(3) .map .bar:nth-child(5) {
  bottom: auto;
  left: 0;
  right: 0;
  width: auto;
  height: 1em;
  top: 100%;
}
.showBio #bio .section:nth-child(3) .map .bar:nth-child(4),
.showBio #bio .section:nth-child(3) .map .bar:nth-child(5) {
  top: 50%;
}
#bio .section:nth-child(3) .map .bar:nth-child(5) {
  top: 0%;
}
.showBio #bio .section:nth-child(3) .map .bar:nth-child(5) {
  top: 85%;
}
#bio .section:nth-child(3) .right,
#bio .section:nth-child(3) .left {
  padding-top: 4em;
}
#bio .section .left,
#bio .section .right {
  color: white;
  background-color: black;
  padding: 0 1em;
  width: 150px;
  transition: all 5s;
  opacity: 0;
}
.showBio #bio .section .left,
.showBio #bio .section .right {
  opacity: 1;
}
#bio .section .left .image,
#bio .section .right .image {
  height: 3em;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
#bio .section .left p,
#bio .section .right p {
  font-size: .7em;
  line-height: 1.25;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
#bio .section .left h6,
#bio .section .right h6 {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  color: gray;
}
#bio .section .left .person:last-child p,
#bio .section .right .person:last-child p {
  margin-bottom: 0;
}
#bio .section .right {
  right: 0;
}
#info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background-image: url(../img/haiku/embodiment-2.jpg);
  background-size: cover;
  background-position: center center;
  top: 100vh;
  opacity: 0;
  transition: all 5s;
  overflow: auto;
}
.showInfo #info {
  top: 0;
  opacity: 1;
}
#info .info-container {
  display: flex;
  padding: 0 100px;
  background-color: rgba(0, 0, 0, 0.6);
}
#info .info-container .info {
  flex: 1;
  padding: 80px 1em 0;
}
#info .info-container .info h3 {
  font-weight: normal;
  color: #fff;
  margin-top: 0;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
#info .info-container .info p {
  color: #ccc;
  font-size: 0.8em;
  line-height: 1.5;
}
#info .info-container .credits {
  width: 250px;
  padding: 80px 1em 0;
  transform: translateY(100vh);
  transition: all 5s;
}
.showInfo #info .info-container .credits {
  transform: translateY(0);
}
#info .info-container .credits.artist {
  background-color: #000;
}
#info .info-container .credits.artist p {
  font-size: 0.9em;
  line-height: 1.5;
}
#info .info-container .credits:not(.artist) {
  transition-delay: 2.5s;
}
#info .info-container .credits:not(.artist) p {
  margin-bottom: 0;
}
#info .info-container .credits p {
  font-size: .7em;
  line-height: 1.25;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  color: white;
}
#info .info-container .credits a {
  color: gold;
}
#info .info-container .credits h3 {
  margin-top: 0;
  font-weight: normal;
  color: #fff;
}
#info .info-container .credits h6 {
  margin-top: 2em;
  margin-bottom: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: .1em;
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: transparent;
  -webkit-border-radius: 0;
}
::-webkit-scrollbar:hover {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 0;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: white;
}
/*# sourceMappingURL=app.css.map */