@charset "utf-8";
/* CSS Document */
body,html { height: 100%; background-color: #41647A;transition: all .4s ease 0s;}
        .plays body { background-color: #193718;;}
        iframe { width: 100vw; height: 100vw; position: fixed; top:50%; left: 50%; transform: translate3d(-50%,-50%,0); transition: all .4s ease 0s;}
        .plays iframe {
   /* transform: translate3d(-50%,0%,0);
    top: 0;*/
            transform: translate3d(-50%,calc( -50% - ((100svh - 100vw) / 2 ) ),0);
}
        
        @media screen and (orientation: landscape) {
  iframe { width: 100svh; height: 100%; transition: all .4s ease 0s; top:0; left:50%; transform: translate3d(-50%,0%,0);}
            .plays iframe { /*left:0;  transform: translate3d(0%,0%,0);*/
            transform: translate3d(calc( -50% - ((100vw - 100svh) / 2 ) ), 0% ,0);
            }
}
        #playButton { position: fixed; top:50%; left: 50%; transform: translate(-50%,-50%); z-index: 999; width: 20vw; height: 20vw; cursor: pointer; text-indent: -9999px; background-image:url("../iframe/img/play.svg"); background-repeat: no-repeat; background-size: contain;}
        .play #playButton { display: none;}
        #stopButton {position: fixed; top:50%; left: 50%; transform: translate(-50%,-50%); z-index: 999; display: none; width: 20vw; height: 20vw; cursor: pointer; text-indent: -9999px; background-image:url("../iframe/img/pause.svg"); background-repeat: no-repeat; background-size: contain; background-position: center; transition: all 0.4s ease 0s;}
        .play #stopButton { display: block;} 
.bomb #stopButton { height: 100%; width: 100%; background-size: cover;}

@media screen and (orientation: landscape) {
    #playButton,#stopButton { width: 10vw; height: 10vw;}
}
        
        .demo-2 {
  --glitch-width: 100vw;
  --glitch-height: 100vh;
  --gap-horizontal: 10px;
  --gap-vertical: 5px;
  --color-title: #fff;
  --time-anim: 4s;
  --delay-anim: 2s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: overlay;
  --blend-mode-5: overlay;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: transparent;
  --blend-color-4: #fb909a;
  --blend-color-5: #1c1cc9;
}

/* Glitch styles */
.glitch { opacity: 1;mix-blend-mode:multiply;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--glitch-width);
  height: var(--glitch-height);
  overflow: hidden;
    
    -moz-transition: opacity 2s ease 0s,filter .6s ease 0s;
    -webkit-transition: opacity 2s ease 0s,filter .6s ease 0s;
    -o-transition: opacity 2s ease 0s,filter .6s ease 0s;
    -ms-transition: opacity 2s ease 0s,filter .6s ease 0s;
    transition: opacity 2s ease 0s,filter .6s ease 0s;
}

.black2 .glitch.show { mix-blend-mode: normal; }

/*.black2 .glitch.show */ .black2 .glitch .glitch__img:nth-child(1) { opacity: .2;
-moz-transition: opacity .6s ease 0s;
    -webkit-transition: opacity .6s ease 0s;
    -o-transition: opacity .6s ease 0s;
    -ms-transition: opacity .6s ease 0s;
    transition: opacity .6s ease 0s;}


.glitch__img { background-position: center;
  position: absolute;
  top: calc(-1 * var(--gap-vertical));
  left: calc(-1 * var(--gap-horizontal));
  width: calc(100% + var(--gap-horizontal) * 2);
  height: calc(100% + var(--gap-vertical) * 2);
  /*background: url(../video/1.jpg) no-repeat 50% 0;*/
  background-color: var(--blend-color-1);
  background-size: cover;
  transform: translate3d(0,0,0);
  background-blend-mode: var(--blend-mode-1);
}
#img1 .glitch__img { background-image:url("../iframe/img/1.jpg");}
#img1 .glitch__img:nth-child(1) { background-image:none;}

.glitch__img:nth-child(n+2) {
  opacity: 0;
}

.imgloaded .glitch__img:nth-child(n+2) {
  animation-duration: var(--time-anim);
  animation-delay: var(--delay-anim);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.imgloaded .glitch__img:nth-child(2) {
  background-color: var(--blend-color-2);
  background-blend-mode: var(--blend-mode-2);
  animation-name: glitch-anim-1;
}

.imgloaded .glitch__img:nth-child(3) {
  background-color: var(--blend-color-3);
  background-blend-mode: var(--blend-mode-3);
  animation-name: glitch-anim-2;
}

.imgloaded .glitch__img:nth-child(4) {
  background-color: var(--blend-color-4);
  background-blend-mode: var(--blend-mode-4);
  animation-name: glitch-anim-3;
}

.imgloaded .glitch__img:nth-child(5) {
  background-color: var(--blend-color-5);
  background-blend-mode: var(--blend-mode-5);
  animation-name: glitch-anim-flash;
}

/* Animations */

@keyframes glitch-anim-1 {
  0% { 
    opacity: 1;
    transform: translate3d(var(--gap-horizontal),0,0);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  2% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  6% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  8% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  10% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  12% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  14% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  18% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal),0,0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0,0,0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes glitch-anim-2 {
  0% { 
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }
  3% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  5% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }
  7% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  9% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }
  11% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }
  13% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  15% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }
  17% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }
  19% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }
  20% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0,0,0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes glitch-anim-3 {
  0% { 
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1,-1,1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }
  1.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }
  2% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }
  2.5% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  3% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }
  5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }
  5.5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  7% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }
  8% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  9% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }
  10.5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }
  11% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }
  13% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }
  14% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }
  14.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  15% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }
  16% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  18% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1,-1,1);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0,0,0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes glitch-anim-text {
  0% { 
    transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0) scale3d(-1,-1,1);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  2% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  4% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  6% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  7% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  8% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  9% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  9.9% {
    transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0) scale3d(-1,-1,1);
  }
  10%, 100% {
    transform: translate3d(0,0,0) scale3d(1,1,1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

/* Flash */
@keyframes glitch-anim-flash {
  0%, 5% { 
    opacity: 0.2; 
    transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0);
  }
  5.5%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}
        
        #body { opacity: 0; overflow: hidden; position: fixed; z-index: -1; left: 0; bottom: 0;
    width: 100%;
    height: calc( 100% - 100vw );
}
        .plays #body { opacity: 1;z-index: 0;}
        .pee #body { opacity: 1; z-index: 999; height: 100%;}
        
        @media screen and (orientation: landscape) {
            #body {  left: auto; right:0;
    width: calc( 100% - 100svh);
    height: 100%;
}
 .pee #body { opacity: 1; z-index: 999; height: 100%;width: 100%;}
}
        
        .plays p {height: 4.166666666666667%; position:absolute; left: 0; width: 100%; top:0;background-color: #FF8BFF; }
        .plays p.p1{top:0%; height: calc( 4.166666666666667% * 0.08);}
.plays p.p2{top:4.166666667%; height:  calc( 4.166666666666667% * 0.12);}
.plays p.p3{top:8.333333333%; height:  calc( 4.166666666666667% * 0.16);}
.plays p.p4{top:12.5%; height:  calc( 4.166666666666667% * 0.20);}
.plays p.p5{top:16.66666667%; height:  calc( 4.166666666666667% * 0.24);}
.plays p.p6{top:20.83333333%; height:  calc( 4.166666666666667% * 0.28);}
.plays p.p7{top:25%; height:  calc( 4.166666666666667% * 0.32);}
.plays p.p8{top:29.16666667%; height:  calc( 4.166666666666667% * 0.36);}
.plays p.p9{top:33.33333333%; height:  calc( 4.166666666666667% * 0.40);}
.plays p.p10{top:37.5%; height:  calc( 4.166666666666667% * 0.44);}
.plays p.p11{top:41.66666667%; height:  calc( 4.166666666666667% * 0.50);}
.plays p.p12{top:45.83333333%; height:  calc( 4.166666666666667% * 0.54);}
.plays p.p13{top:50%; height: calc( 4.166666666666667% * 0.58);}
.plays p.p14{top:54.16666667%; height:  calc( 4.166666666666667% * 0.60);}
.plays p.p15{top:58.33333333%; height:  calc( 4.166666666666667% * 0.64);}
.plays p.p16{top:62.5%; height: calc( 4.166666666666667% * 0.68);}
.plays p.p17{top:66.66666667%; height:  calc( 4.166666666666667% * 0.72);}
.plays p.p18{top:70.83333333%; height:  calc( 4.166666666666667% * 0.76);}
.plays p.p19{top:75%; height: calc( 4.166666666666667% * 0.80);}
.plays p.p20{top:79.16666667%; height:  calc( 4.166666666666667% * 0.84);}
.plays p.p21{top:83.33333333%; height:  calc( 4.166666666666667% * 0.88);}
.plays p.p22{top:87.5%; height:  calc( 4.166666666666667% * 0.92);}
.plays p.p23{top:91.66666667%; height:  calc( 4.166666666666667% * 0.96);}
.plays p.p24{top:95.83333333%; height:  calc( 4.166666666666667% * 1);}
        .plays p:nth-child(2n) {
            /*background-color: #FF8BFF; */
        } 
        .pee.plays p.p1 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#B4B4B4; position:absolute; top:0; left:0;
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p2 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#B4B40C; position:absolute; top:0; left:14.28571428571429vw;
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p3 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#0DB4B4; position:absolute; top:0; left:calc( 14.28571428571429vw * 2 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;}
.pee.plays p.p4 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#0DB40C; position:absolute; top:0; left:calc( 14.28571428571429vw * 3 );
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s; }
.pee.plays p.p5 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#B410B4; position:absolute; top:0; left:calc( 14.28571428571429vw * 4 );
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p6 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#B40F0E; position:absolute; top:0; left:calc( 14.28571428571429vw * 5 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p7 { width:14.28571428571429vw; height:66.66666666666667%; background-color:#0F0FB4; position:absolute; top:0; left:calc( 14.28571428571429vw * 6 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}

.pee.plays p.p8 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#0F0FB4; position:absolute; top:66.66666666666667%; left:0;
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p9 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#101010; position:absolute; top:66.66666666666667%; left:14.28571428571429vw;
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p10 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#B410B4; position:absolute; top:66.66666666666667%; left:calc( 14.28571428571429vw * 2 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p11 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#101010; position:absolute; top:66.66666666666667%; left:calc( 14.28571428571429vw * 3 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p12 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#0DB4B4; position:absolute; top:66.66666666666667%; left:calc( 14.28571428571429vw * 4 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p13 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#101010; position:absolute; top:66.66666666666667%; left:calc( 14.28571428571429vw * 5 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p14 { width:14.28571428571429vw; height:8.333333333333333%; background-color:#B4B4B4; position:absolute; top:66.66666666666667%; left:calc( 14.28571428571429vw * 6 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}


.pee.plays p.p15 { width:16.66666666666667vw; height:25%; background-color:#081D42; position:absolute; top:75%; left:0;
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p16 { width:16.66666666666667vw; height:25%; background-color:#EBEBEB; position:absolute; top:75%; left:16.66666666666667vw;
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
 }
.pee.plays p.p17 { width:16.66666666666667vw; height:25%; background-color:#2C005C; position:absolute; top:75%; left:calc( 16.66666666666667vw * 2 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p18 { width:16.66666666666667vw; height:25%; background-color:#101010; position:absolute; top:75%; left:calc( 16.66666666666667vw * 3 ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p19 { width:5.555555555555556vw; height:25%; background-color:#070707; position:absolute; top:75%; left:66.66666666666668vw; 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p20 { width:5.555555555555556vw; height:25%; background-color:#101010; position:absolute; top:75%; left:calc( 66.66666666666668vw + ( 5.555555555555556vw * 1 ) ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p21 { width:5.555555555555556vw; height:25%; background-color:#181818; position:absolute; top:75%; left:calc(66.66666666666668vw + ( 5.555555555555556vw * 2 ) ); 
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p22 { width:16.66666666666667vw; height:25%; background-color:#101010; position:absolute; top:75%; left:calc( 66.66666666666668vw + ( 5.555555555555556vw * 3 ) );
-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}
.pee.plays p.p23,.pee.plays p.p24 { opacity: 0;
	-moz-transition: all .4s ease 0s;
-webkit-transition: all .4s ease 0s;
-o-transition: all .4s ease 0s;
-ms-transition:all .6s ease .2s;
transition: all .4s ease 0s;
}

