
* {
    -webkit-font-smoothing: antialiased;
    outline: none;
    box-sizing: border-box;
}

html, body {
    width:100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    font-family: Jost, sans-serif;
}

body {
    background: #ee1d85;
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    background-size: cover;
}

#loading {
    background-size: 34px;  
    background: #000 url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.title, .bottom {
    display: none;
}

.irl {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 111;
    transform: translate(-100%,100%);
}

.irl img {
    width: 10dvw;
    height: auto;    
}

.irl.irlready {
    animation: irlready 1s forwards;
    animation-delay: 1s;
}

@keyframes irlready {
    0% {transform: translate(-100%,100%)}
    100% {transform: translate(0px,0px)}
}

.menu a:hover, .irl:hover {
    filter: invert(1);
}

.menu.bottom {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 20;
    transform: translateY(100%)
}

.menu.bottom a {
    display: inline;
}

.menu.bottom, .menu.bottom a img {
    height: 5dvw;
    width: auto;
    display: inline;
}

.menu.right {
    position: fixed;
    bottom: 5dvw;
    right: 0px;
    z-index: 20;
    transform: translateX(100%)
}

.menu.right a {
    display: inline;
}

.menu.right, .menu.right a img {
    width: 4.8dvw;
    height: auto;
    display: inline;
}

.menu.bottom.loadbottom {
    animation: loadbottom 1s forwards;
    animation-delay: 0.9s;
}

@keyframes loadbottom {
    0% {transform: translateY(100%)}
    100% {transform: translateY(0%)}
}

.menu.right.loadright {
    animation: loadright 1s forwards;
    animation-delay: 0.9s;
}

@keyframes loadright {
    0% {transform: translateX(100%)}
    100% {transform: translateX(0%)}
}

.bg {
    height: 90dvh;
    width: auto;
    position: fixed;
    bottom: 0px;
    left: 50%;
    z-index: 3;
    transform: translate(30%,100%);
}

.bg.loaded {
    animation: popin 1s forwards;
}

@keyframes popin {
    0% {transform:translate(30%,100%)}
    100% {transform:translate(-50%,0%)}
}

.bgtile {
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    background: url("../img/bgtile.jpg") repeat;
    background-size: 100px;
}

.pandabear {
    position: fixed;
    z-index: 2;
    width: auto;
    left: 0px;
    top: 0px;
    height: 80dvh;
    transform: translateX(-70%);
}

.pandabear.loadpanda {
    animation: loadpanda 1s forwards;
    animation-delay: 0.3s;
}

@keyframes loadpanda {
    0% {transform: translateX(-70%)}
    100% {transform: translateX(0)}
}

.sonicboom {
    position: fixed;
    z-index: 2;
    height: 80dvh;
    transform: translateY(-70%);
    width: auto;
    left: 0px;
    top: 0px;
}

.sonicboom.loadboom {
    animation: loadboom 1s forwards;
    animation-delay: 0.4s;
}

@keyframes loadboom {
    0% {transform: translateY(-70%)}
    100% {transform: translateY(0)}
}


.newalbum {
    position: fixed;
    z-index: 2;
    width: auto;
    left: 0px;
    top: 0px;
    height: 80dvh;
    transform: translateY(70%);
}

.newalbum.loadalbum {
    animation: loadalbum 0.8s forwards;
    animation-delay: 0.7s;
}

@keyframes loadalbum {
    0% {transform: translateY(70%)}
    100% {transform: translateY(0)}
}

h1 {
    font-weight: normal;
    font-size: 10vw;
    line-height: 10vw;
    display: block;
    margin: 30px auto;
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    font-weight: normal;
    font-size: 4vw;
    line-height: 4vw;
    display: block;
    margin: 0px auto;
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

a {
    text-decoration: none;
    color: #fff;
}

#mobile {
    display: none;
}

#lightbox {
  z-index: 50;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url("../img/bgtile2.jpg") repeat;
    background-size: 480px;

  display: none;
}

.close {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 20px 13px 20px;
    color: #fff;
    background: #000;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    z-index: 10003;
    display: block;
    font-size: 28px;
    cursor: pointer;
}

#lightbox.privacy, #lightbox.signup, #lightbox.tour {
    overflow-y: auto;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
    left: 0;
    text-transform: none;
    letter-spacing: 0px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
}

#lightbox.signup {
    overflow-y: auto;
}

.privacy-wrap, .tourcontainer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
}

.tourwrapper {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

h3 {
    font-size: 3rem;
    line-height: 3.1rem;
    text-align: center;
    margin: 50px auto;
    color: #fff;
    text-transform: uppercase;
    max-width: 400px;
    font-weight: normal;
}

.privacy-wrap {
    background: transparent;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
}

.privacy-container {
    background: transparent;
    position: relative;
    top: 0px;
    width: 700px;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    box-sizing: border-box;
    word-wrap: break-word;
    padding: 0px 40px;
}

.privacy-container p {
    font-family: Jost, sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    text-align: left;    
}

.privacy-container ul li {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-align: left;   
    margin: 10px 0px;
}

.privacy-container h1 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
    margin: 40px auto;
    max-width: 500px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.play {
    position: fixed;
    bottom: 12px;
    left: 12px;
    color: #fff;
    opacity: 0.8;
    z-index: 14;
    transition: 0.3s;
    padding: 15px;
}

.play span {
    position: relative;
    top: -7px;
    left: 20px;
    font-size: 14px;
    transition: 0.3s;
    opacity: 0;
}

.play svg {
    height: 25px;
    width: auto;
    fill: #fff;
    color: #fff;
}

.play:hover {
    opacity: 1;  
}

.play:hover span {
    opacity: 1;
}

.privacy-link {
    position: fixed;
    padding: 15px;
    top: 5px;
    right: 10px;
    color: #fff;
    opacity: 0.5;
    font-size: 12px;
    z-index: 14;
    height: 30px;
    transition: 0.3s;
}

.privacy-link:hover {
    opacity: 1;   
}

#socials {
    position: fixed;
    display: table;
    top: 30px;
    right: 30px;
    z-index: 15;  
    height: 50px;
}

#socials a {
    color: #fff;
    opacity: 1;
    font-size: 16px;  
    padding: 10px;
    opacity: 0.7;
}

#socials a svg {
    height: 15px;
    width: auto;
    fill: #fff;
    color: #fff;
}

#socials a:hover {
    opacity: 1;
}

h4 {
    font-size: 17px;
    letter-spacing: 3px;
    line-height: 35px;
    display: block;
    margin: 0px auto 50px auto;
    text-align: center;
    font-weight: normal;
    width: auto;
    text-transform: uppercase;
    font-family: Jost, sans-serif;
}

.signup iframe {
    width: 500px;
    height: 400px;
    display: block;
    margin: 0px auto;
}

#signupwrap {
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;  
}

#standaloneform form {
    color: #000;
    margin: 40px auto 0px auto;
    font-weight: normal;
    text-align: center;
    position: relative;
    display: inline-flex;
    z-index: 10;
    vertical-align: middle;
    left: 50%;
    transform: translateX(-50%);
}

#standaloneform form input {
	outline: none;
    -webkit-appearance: none;
    margin: 0px;
    padding: 0px;
    border: none;
    padding: 10px;
}

#standaloneform form .email {
    display: inline-block;
    color: #000;
    background: rgba(255,255,255,0.7);
    width: 250px;
    font-size: 14px;
    font-family: Jost, sans-serif;
}

#standaloneform form .signupbutton {
    color: #fff;
    background: rgba(0,0,0,0.7);
    cursor: pointer;
    display: inline;
    font-size: 14px;
    margin-left: -6px;
    padding: 9px 10px;
    vertical-align: middle;
    font-family: Jost, sans-serif;
}

.webkit #standaloneform form input {
    padding: 10px 10px 7px 10px;
}

.webkit #standaloneform form .signupbutton {
    padding: 9px 10px 8px 10px;
}

#standaloneform form .signupbutton:hover {
    background: #000;
}


#signupwrap {
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: transparent;  
}

#signupwrap {
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

#signupform, #mobilenotice {
	color: #000;
	margin: 0px auto;
	font-weight: normal;
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#signupform input {
	display: inline-block;
	outline: none;
    -webkit-appearance: none;
}

#signupform .email {
	background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
	width: 370px;
	padding: 0px 10px 5px 10px;
	font-size: 14px;
	color: #fff;
	line-height: 17px;
    text-align: center;
	vertical-align: bottom;
	margin: 0px;
    font-weight: normal;
    font-family: Jost, sans-serif;
    text-transform: uppercase;
}

#signupform .signupbutton {
    color: #fff;
    border: 0px;
    font-size: 15px;
    line-height: 15px;
    vertical-align: bottom;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 7px;
    display: table;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 10px auto 0px auto;
    cursor: pointer;
    background: transparent;
    font-family: Jost, sans-serif;
}

#mcbutton.white {
    color: #fff !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif;
}
:-moz-placeholder { /* Firefox 18- */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif;
}


.movedown {
    -webkit-animation: movedown 2s ease forwards;
    animation: movedown 2s ease forwards;
}

@-webkit-keyframes movedown {
    0% {
        -webkit-transform: translateY(-100px);
    }
    100% {
        -webkit-transform: translateY(0);
    }    
}

@keyframes moveup {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0);
    }    
}

.moveup {
    -webkit-animation: moveup 2s ease forwards;
    animation: moveup 2s ease forwards;
}

@-webkit-keyframes moveup {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100px);
    }    
}

@keyframes moveup {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }    
}


.zoomin {
    -webkit-animation: zoomin 2s forwards ease;
    animation: zoomin 2s forwards ease;
}

@-webkit-keyframes zoomin {
    0% {-webkit-transform: scale(0)}
    100% {transform: scale(1)}
}

@keyframes zoomin {
    0% {transform: scale(0)}
    100% {transform: scale(1)}
}


.zoomout {
    -webkit-animation: zoomout 2s forwards ease;
    animation: zoomout 2s forwards ease;
}

@-webkit-keyframes zoomout {
    0% {transform: scale(1)}
    100% {transform: scale(0)}
}

@keyframes zoomout {
    0% {transform: scale(1)}
    100% {transform: scale(0)}
}


/****  MEDIA QUERIES ****/ 


@media (max-width: 800px) {
    
    html, body {
        overscroll-behavior-y: none;
    }
	
	#desktop {
		display: none;
	}	
    
    #mobile {
        display: block;
    }
    
.irl img {
    width: 25dvw;
    height: auto;  
}    
    
    .irl {
        bottom: auto;
        top: 0px;
        left: -2dvw;
        transform: translate(-100%,-100%) rotate(10deg);
    }
    
    .irl.irlready {
        animation-delay: 1.4s;
    }
    
    @keyframes irlready {
        0% {transform: translate(-100%,-100%) rotate(10deg)}
        100% {transform: translate(0px,0px) rotate(10deg)}
    }
    

.title {
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 10dvh;
    text-align: center;
    color: white;
    font-size: 8dvw;
    letter-spacing: -0.7dvw;
    line-height: 8dvw;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-50%);
}    
    
    .title.titleready {
        animation: titleready 1s forwards;
        animation-delay: 0.3s;
    }  
    
    @keyframes titleready {
        0% {opacity: 0;transform: translateY(-50%)}
        100% {opacity: 1;transform: translateY(0px)}
    }
    
    .bottom {
        position: fixed;
        bottom: 5vh;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-size: 5dvw;
        line-height: 5dvw;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: -0.4dvw;
        display: block;
        width: 100%;
        z-index: 10;
    }
    
    .bottom span {
        display: block;
        margin: 0px auto 30px auto;
        opacity: 0;
        color: #e5d9ce;
        transform: translateY(10px);
    }
    
    .bottom a {
        display: inline-block;
        margin-bottom: 0px;
        font-size: 7dvw;
        line-height: 7dvw;
        letter-spacing: -0.5dvw;
        text-decoration: none;
        padding: 10px;
        opacity: 0;
        transform: translateY(10px);
    }
    
    .bottom a.mobile-preorder {
        color: indigo;
    }
    
    .bottom a.mobile-signup {
        color: #c2d908;
    }
    
    .bottom a.mobile-tourdates {
        color: #0f9dcf;        
    }
    
    .bottom a.mobile-store {
        color: #1a4a33;
    }
    
    .bottom.bottomready span, .bottom.bottomready a {
        animation: bottomready 1s forwards;
    }
        
.bottom.bottomready span { animation-delay: 1s }
.bottom.bottomready a.mobile-preorder { animation-delay: 1.1s }
.bottom.bottomready a.mobile-signup { animation-delay: 1.2s }
.bottom.bottomready a.mobile-tourdates { animation-delay: 1.3s } 
.bottom.bottomready a.mobile-store { animation-delay: 1.4s } 
    
    @keyframes bottomready {
        0% {opacity: 0; transform: translateY(10px)}
        100% {opacity: 1; transform: translateY(0px)}
    }
    
.bg {
    width: 100dvw;
    height: auto;
    top: 45%;
    left: auto;
    right: 0px;
    transform: translate(20%,-30%);
}

@keyframes popin {
    0% {transform:translate(20%,-30%)}
    100% {transform:translate(00%,-50%)}
}    


.menu.bottom, .menu.bottom a img, .menu.right, .menu.right a img, .pandabear, .sonicboom, .newalbum  {
    display: none;
}

    
    .signup iframe {
        width: 90%;
        height: 450px;
    }
    
    h1 {
        font-size: 15vw;
        line-height: 15vw;
    }
    
    h2 {
        font-size: 7vw;
        line-height: 7vw;
    }
    
    .privacy-container {
        width: 100%;
    }
    
    .play {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 90px;
        opacity: 0.6;
    }
    
    .play span {
        display: none !important;
    }
    
    #standaloneform form {
        left: 50%;
        width: 100%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #standaloneform form .email {
        width: calc(100vw - 150px);
        border-radius: 0px;
        line-height: 20px;
        vertical-align: middle;
        box-sizing: border-box;
        color: #fff;
    }
    
    #socials {
        top: 10px;
        left: 50%;
        display: flex;
        right: auto;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #socials a {
        font-size: 15px;
        opacity: 0.7;
        flex: 1;
    }

    .privacy-link {
        right: auto;
        bottom: -10px;
        left: 50%;
    -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 10px;
        font-family: Jost, sans-serif;
        font-weight: normal;
        text-transform: uppercase;
    }
    
    h3 {
        padding-top: 30px;
        font-size: 40px;
        line-height: 44px;
    }
    
    #tour h3 {
        font-size: 30px;
        line-height: 35px;
    }
    
    #signupform .email {
        width: 70vw;
    }
    
    #signupform {
        width: 80%;
    }
    

}

@media (max-width: 335px) {
    .menu a, .webkit .menu a {
        padding-left: 10px;
        padding-right: 10px;
    }
    .menu, .webkit .menu {
        width: 255px;
    }
}

@media (min-width: 800px) and (max-aspect-ratio: 1.3/1) {
    .bg {

}

    
}