#imgRef{
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10000;
    opacity: 50%;
    display: none;
}

/********** GLOBAL **********/
.code_barre{
    mix-blend-mode: unset;
}

#code_barre_left{
    z-index: 2;
    width: unset;
}

#code_barre_right{
    z-index: 2;
}


/********** NAV Bar **********/
#soundOnOff{
    /*position: fixed;
    top: 12px;
    right: 4px;*/
    cursor: pointer;
    mix-blend-mode: difference;
    /*z-index: 1;*/
    margin-top: 25%;
}

/********** Scene **********/
#scene-wrapper{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 1;
    /*mix-blend-mode: difference;*/
}

#test{
    height: 60000px;
}

.elevator {
    position: fixed;
    mix-blend-mode: difference;
}

.elevator > p{
    margin-bottom: -20%;
}

.elevator-left{
    top: 8%;
    left: 1.2%;
    padding-left: 6px;
    font-family: 'FavoritMonoStd-Book'
}

.elevator-left a:hover{
    font-family: 'FavoritMonoStd-Book';
}

.elevator-right{
    top: 8%;
    right: 0.9%;
}

.progress{
    border-radius: 50%;
    width: 89%;
    height: 5%;
    background: red;
    position: absolute;
    top: 85%;
    z-index: -1;
}    

.elevator-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    bottom: 9px;
    font-family: 'Chungking_Mono-Regular';
    font-size: 1.25vw;
    padding: 0px 1.2%;
}

.elevator-bottom > div:first-child{
    padding-left: 6px;
}

.elevator-bottom > div:last-child{
    padding-right: 7px;
}

.blinking{
    animation-name: blinker;
    animation-duration: 1s;
    animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
}

@keyframes blinker{
    0% {opacity: 1;}
    100% {opacity: 0.3;}
}

/********** Scene - Mobile **********/
@media screen and (max-width: 480px){

    .elevator-bottom{
        font-size: 5vw;
        padding: 0% 5.8%;
    }

    .elevator > p {
        margin-bottom: 0%;
    }

    .elevator-left{
        left: 5.8%;
        padding-left: 0px;
    }

    .elevator-bottom > div:first-child {
        padding-left: 0px;
    }

    #test{
        height: 100000px;
    }
}

/********** Animation **********/
main{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.row-container{
    position: relative;
    left: 0vh;
}

.row-container > *:nth-child(2) {
    position: absolute;
    left:100%;
}

.row-container > *:nth-child(3) {
    position: absolute;
    left:200%;
}

.row-container > *:nth-child(4) {
    position: absolute;
    left:300%;
}

.row-container > *:nth-child(5) {
    position: absolute;
    left:400%;
}

.row-container > *:nth-child(6) {
    position: absolute;
    left:500%;
}

#elevator-floor-01 > video{
    height: 110vh;
}

video{
    object-fit: fill;
}