html,
body {
    overscroll-behavior: none;
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

* {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


body {
    touch-action: pan-x pan-y;
}

.naps-logo{
    display: none;
}

.naps-main {
    min-height: 100%;
}

.naps-text-album,
.naps-preorder-popin,
.naps-intro {
    transition: all 1s ease;
}

.naps-bottom-middle{
    transition: all 3s 3s ease;
}


.naps-dark {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2022;
    background: black;
    pointer-events: none;
    transition: all 5s ease;
}


.naps-dark.running {
    z-index: 12;
    transition-duration:1s;
    transition-delay: 0;
}

.naps-dark.running.open {
   opacity: .35 !important;
}



.hide {
    opacity: 0;
    pointer-events: none;
}

.naps-note-round {
    position: absolute;
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
}

.naps-circle1 {
    opacity: .25;
}

.naps-circle2 {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
}

.naps-intro {
    display: flex;
}

.naps-intro-text {
    pointer-events: none;
}

.naps-intro.hide {
    transform: scale(.9);
}

.naps-bottom-middle.hide {
    transform: translateY(100%);
}

.naps-sound {
    cursor: pointer;
    transition: all .4s ease;
}

.naps-sound:hover {
    transform: scale(.9);
}


.naps-pause {
    position: absolute;
    width: 36px;
    height: 36px;
    opacity: 0;
    transition: all .4s ease;
}

.naps-note {
    transition: all .4s ease;
}

.naps-swiper {
    width: 100vw !important;
}

.naps-slide {
    justify-content: center;
}

.naps-preorder-popin.hide {
    transform: scale(.9);
}

.naps-cta-order {
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 5px;
    transition: all 1s ease;
}

.naps-cta-order.close {
    width: 52px;
    padding: 14px 0;
}



.naps-cta-order.close .naps-cta-text {
    opacity: 0;
}

.naps-cta-close {
    position: absolute;
    font-size: 45px;
    font-weight: 200;
    width: 20px;
    opacity: 0;
}


.naps-cta-close>div {
    transform: rotate(45deg)
}


.naps-cta-order.close .naps-cta-close {
    opacity: 1;
}


.swiper-pagination {
    bottom: -40px !important;
}

.naps-gradient-large,
.naps-gradient {
    pointer-events: none;
}


.naps-canvas {
    filter: blur(0px);
    transition: all 1s ease;
    cursor: grab;
}

.naps-canvas.none {
    opacity: 0;
}


.naps-canvas.blur {
    filter: blur(20px);
}

.naps-canvas.unblur {
    filter: blur(0px);
    transition: all 3s ease-in-out;
}




.naps-zoom {
    position: absolute;
    z-index: 2022;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 20vw;
    aspect-ratio:470/610;
    box-shadow: 0px 0px 50px black;
    background: black;
    pointer-events: none;
    transition: all 1s ease;
    z-index: 2;
    filter: blur(0)
}

.naps-zoom.blur{
    filter: blur(20px)
}



.naps-zoom.hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.8);
}

.naps-team-img {
    transition: all 1s ease;
    aspect-ratio: 470/610;
}

.naps-info-btext {
    display: flex;
    opacity: 0;
    transition: all .4s ease;
    white-space: nowrap;
    font-size: 13px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    top: 53px;
}


.naps-info-bottom {
    border-color: rgb(255 255 255 / 25%);
    transition: all .4s ease;
}

.naps-info-bottom:hover{
    transform: scale(.9)
}

.naps-bottom-right {
    cursor: pointer;
}

.naps-bottom-right:not(.closed):hover .naps-info-btext {
    opacity: 1;
}

.naps-info-i {
    transition: all .4s ease;
    pointer-events: none;
}

.naps-bottom-right:hover .naps-info-i {
    transform: scale(.8);
}

.naps-bottom-right:hover .naps-info-bottom {
    border-color: rgb(255 255 255 / 50%);
}

.naps-bottom-right:active .naps-info-bottom {
    border-color: rgb(255 255 255 / 100%);
}


.naps-info-popin {
    transition: all 1s ease;
}

.naps-info-popin.hide {
    transform: scale(1.1);
}

.naps-pinch {
    position: absolute;
    z-index: 3000;
    width: 20vh;
    max-width: 180px;
    top: 50%;
    left: 50%;
    margin-top: 5vh;
    transform: translate(-50%, -50%) scale(1);
    animation: turn 1s alternate infinite ease-in-out;
    opacity: 1;
    transition: opacity 1s ease
}

.naps-mouse {
    position: absolute;
    z-index: 3000;
    width: 6vh;
    max-width: 180px;
    top: 50%;
    left: 50%;
    margin-top: 5vh;
    transform: translate(-50%, -50%) scale(1);
    animation: updown 1s alternate infinite ease-in-out;
    opacity: 1;
    transition: opacity 1s ease
}



@keyframes turn {
    0% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) scale(.95);
    }
}


@keyframes updown {
    0% {
        transform: translate(-50%, -55%) ;
    }

    100% {
        transform: translate(-50%, -45%) ;
    }
}



@keyframes rota {
    0% {
        transform: rotate(0) ;
    }

    100% {
        transform: rotate(360deg) ;
    }
}


.preloader{
    animation:rota 1s infinite linear;
    margin-top: -42px;
    transition: opacity .4s ease;
}


.naps-pinch.hide {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
}

.naps-mouse.hide {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
}


.naps-cta-close-info {
    position: absolute;
    font-size: 45px;
    font-weight: 200;
    width: 20px;
    opacity: 0;
    transition: all .4s ease;
    transform: translate(1px, -3px);
}

.closed .naps-cta-close-info {
    opacity: 1;
}

.closed .naps-info-i {
    opacity: 0;
}

.naps-cta-close-info>div {
    transform: rotate(45deg);
    color: white;
    font-size: 42px;
    font-style: normal;
}

.naps-cta-small {
    text-decoration: none;
}

.text-intro-member {
    display: none;
}


.naps-text-album{
    white-space:nowrap;
}

.download_debug{
    position: absolute;
    z-index: 8000;
}

.naps-share-svg{
    width: 30px;
    position: absolute;
    transition: all .2s ease;
}

.naps-people-svg{
    width: 34px;
    position: absolute;
    transition: all .2s ease;
}


.closed .naps-share-svg{
    opacity: 0;

}



.naps-share-popin {
    position: absolute;
    z-index: 200;
    transition:all 1s ease;
}

.naps-share-popin .naps-cta-order{
        margin: 20px;
        text-decoration: none;
}


.arrow-right {
    position: absolute;
    right: 10px;
    width: 30px;
    z-index: 3000;
    cursor: pointer;
    transition: all .4s ease;
}

.arrow-left {
    position: absolute;
    left: 10px;
    width: 30px;
    z-index: 3000;
    cursor: pointer;
    transition: all .4s ease;
}

.arrow-right:hover,
.arrow-left:hover {
transform:scale(1.5);
}

.naps-cd{
    transform:scale(1.25);
}

.image-2{
    min-height:100px;
}


.naps-popin-member {
    position: absolute;
    display: flex;
    flex-direction: column;
    transition: all 1s ease;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 540px;
    padding: 20px;
    color: white;
}

.naps-popin-member{
    margin-top: 30px;
}

.naps-popin-member .naps-pack {
    width: 28vh;
    margin-bottom: 10px;
}

.naps-popin-member p {
    font-family: 'Playfair Display', sans-serif;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
}

.naps-popin-member .naps-link{
    cursor:pointer;
    display: block !important;
}


@media screen and (max-width: 1366px) {
.naps-intro {
    font-family: 'Playfair Display', sans-serif;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
}

.image-2 {
    height: 100px;
    width:100px;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

}

@media screen and (max-width: 479px) {
    .naps-pack {
        width: 240px;
        margin-bottom: 10px;
    }

    .naps-link,
    .naps-product-text {
        display: none;
    }

    .naps-preorder-popin {
        margin-bottom: 40px;
    }

    .naps-zoom {
        width: 66vw;
    }

    .naps-bottom {
    padding-right: 10px;
    padding-left: 10px;
    }

    .naps-text-album {
    -webkit-transform: translate(0px,  -6vh);
    -ms-transform: translate(0px,  -6vh);
    transform: translate(0px, -6vh);
    }

    .naps-cd{
        transform:scale(1.5);
    }

.image-2 {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.naps-bottom-middle.hide {
    transform: translateY(0%);
}


.naps-popin-member p {
    font-size: 21px;
    line-height: 29px;
}

}
