canvas.deepar {
    border: 0 none;
    background-color: black;
    display: block;
    margin: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#initialisation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    text-align: center;
}

.loader {
    display: inline-block;
    position: relative;
    top: 42%;
    z-index: 1000;
    width: 90px;
    height: 90px;
    margin: auto;
    background-color: #00f;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.5s infinite ease-in-out;
    animation: sk-scaleout 1.5s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% { -webkit-transform: scale(0) }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 100% {
          -webkit-transform: scale(1.0);
          transform: scale(1.0);
          opacity: 0;
      }
}

.hidden {
    display: none;
}





#photoPopup, #videoPopup {
    position: absolute;
    z-index: 10;
    width: 50%;
    left: 25%;
    top: 5%;
    background: white;
    padding: 10px;
    box-sizing: border-box;
}

#photoPopup img, #videoPopup video {
    width: 100%;
    height: auto;
}

#closePhotoPopup, #closeVideoPopup {
    position: absolute;
    z-index: 10;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
}

.buttons-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}