
* {
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}

html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-transform: uppercase; 
}

@font-face {
    font-family: 'ABC Walter Alte Unlicensed Trial Normalgrotesk';
    src: url('fonts/ABCWalterAlte-Normalgrotesk.woff2') format('woff2'),
        url('fonts/ABCWalterAlte-Normalgrotesk.woff') format('woff'),
        url('fonts/ABCWalterAlte-Normalgrotesk.ttf') format('truetype'),
        url('fonts/ABCWalterAlte-Normalgrotesk.svg#ABCWalterAlte-Normalgrotesk') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


body {
    position: fixed;
    top: 0px;
    left: 0px;
  color: #000;
  font-family: 'Arial', monospace;
}

canvas {
	position: fixed;
    width: 100%;
    height: 100%;
}

.kimmelmobile {
    display: none;
}

.tvstar {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10;
    animation: rotateme 12s infinite;
    animation-timing-function: linear;
    width: 220px;
    height: auto;
}

@keyframes rotateme {
    0% {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}

.tv {
    position: fixed;
    top: 70px;
    right: 60px;
    z-index: 11;
    width: 120px;
    height: auto;
}

#home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: block;
    top: 0px;
left: 0px;
}

#home.teal {
    animation: teal 3s forwards;
}

@keyframes teal {
    0% {background: transparent}
    100% {background: teal}
}

.dvd {
  display: block;
    opacity: 0;
  left: 0;
  position: fixed;
  top: 0;
    z-index: 0;
}
svg {
  display: block;
}
.logo {
  fill: purple;
}



.opacity {
    animation: opacity 2s forwards;
}

@keyframes opacity {
    0% {opacity: 0}
    100% {opacity: 1}
}


.opacity2 {
    animation: opacity2 2s forwards;
}

@keyframes opacity2 {
    0% {opacity: 1}
    100% {opacity: 0}
}


.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  height: 40px;
    line-height: 40px;
  width: 100%;
    position: fixed;
bottom: -20%;
    right: -20%;
    transform: rotate(-45deg);
    z-index: 10;
  border-radius: 22px;
  box-shadow: 4px 4px 0 #000;
  overflow: hidden;
  background: white;
  white-space: nowrap;
}

.marquee--inner {
  display: block;
    line-height: 40px;
  width: 200%;
    vertical-align: middle;
  position: absolute;
  animation: marquee 60s linear infinite;
}
.marquee--inner:hover {
  animation-play-state: paused;
}

.marquee--inner span {
display: inline-block;
  overflow: hidden;
    vertical-align: middle;
    line-height: 40px;
    margin-right: 40px;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -300%;
  }
}

.fa-play {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    color: #000;
    z-index: 111;
    cursor: pointer;
}

.video-title {
    position: fixed;
    bottom: 30px;
    left:80px;
    padding: 10px;
    color: #000;
    font-size: 0.8rem;
    line-height: 0.8rem;
    text-align: left;
    z-index: 111;
    display: none;
}

a.albumtitle {
    position: fixed;
    top: 110px;
    left: 20px;
    text-align: center;
    z-index: 11;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    color: black;
}

a.albumtitle span {
    display: block;
}

a.albumtitle span.first {
    font-weight: bold;
}

#tour {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0px;
    left: 0px;
    z-index: 1; 
    mix-blend-mode: overlay;
}

.video {
    opacity: 0;
}

.fadein {
    animation: fadein 1.5s forwards;
}

@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}

.tour-container {
    width: 800px;
    display: block;
    margin: 0px auto;
    padding: 100px 0px;
}
  
#c, #myCanvas {
position: absolute;
top: 0px;
left: 0px;
} 


#c {
z-index: 6;

}

#myCanvas {
z-index: 2;
width: 100%;
height: 100%;
}

.bg {
  background-image: url(bits/bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: none;
  transition: 3s;
}

.dim {
    animation: dim 3s forwards;
}

@keyframes dim {
    0% {opacity: 1; filter: blur(0px)}
    100% {opacity: 0.5; filter: blur(100px)}
}


.undim {
    animation: undim 1s forwards;
}

@keyframes undim {
    0% {opacity: 0.5; filter: blur(100px)}
    100% {opacity: 1; filter: blur(0px)}
}

.site-wrap {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 10;
}
.panel-wrap {
  height: 100%;
  width: 100%;    
  height: 100vh;
  width: 100vw;
}

.mainlogo {
    position: absolute;
    width: 80%;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 2;
    mix-blend-mode: overlay;
}

.smalllogo {
    position: absolute;
    z-index: 3;
    top: 0px;
    left: 0px;
    padding: 10px;
    width: 150px;
    height: auto;
    -webkit-filter: invert(1);
    filter: invert(1);
}

h1 {
  font-size: 20vmin;
  margin: 0;
}
.panel {
  height: 100%;
  height: 100vh;    
  position: absolute;
  width: 100%;
  width: 100vw;    
    z-index: 3;
}
#loadingwrap, #video, #bg, #logowrap, #color {
	width: 100%;
	height: 100%;
	height: 100vh;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: block;
}

#color {
	mix-blend-mode: multiply;
	background: #000;
	opacity: 0.8;
	z-index: 99
}

#pagewrap {
	opacity: 1;
	z-index: 2;
	height: 100vh;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}


.close {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 0px;
    border-radius: 50%;
    width: 70px;
    text-align: center;
    color: #fff;
    background: #000;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    display: block;
    font-size: 28px;
    cursor: pointer;
}


.close.closeicon {
  z-index: 10004; 
    
}

.close.infoicon {
  z-index: 10003;  
}

.lightboxwrap, .easter1 {
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    width: 100%;
    height: 100%;
    transform: scale(0);
    z-index: 1000;
    mix-blend-mode: exclusion;
}

.easter1 {
    mix-blend-mode: normal;
}

#lightbox {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    z-index: 1000;
    left: 0;
    text-transform: none;
    letter-spacing: 0px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    background:#f6eedd;
    animation: transformtest 10s linear infinite;  
}

.lightboxwrap.tour {
    z-index: 1001;
}

.lightboxwrap.danielofthemonth #lightbox {
    background: powderblue;
    width: 70%;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.lightboxwrap.info #lightbox {
    background: wheat;
}

.lightboxwrap.signup #lightbox {
    background: pink;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}

#lightbox.videopopup {
  background: transparent; 
    animation: none;
    display: none;
}


#lightbox img.packshot {
    position: relative;
    display: block;
    margin: 30px auto;
    height: 50vh;
    filter: invert(1);
}

#lightbox .atlastour {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox .atlastour img {
    height: 90dvh;
    width: auto;
    display: block;
    margin: 0px auto;
}

.lightboxwrap.wee #lightbox {
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: transparent;
    height: auto;
}

.lightboxwrap.wee .wee-title {
    height: 12dvh;
    width: auto;
    display: block;
    margin: 0px auto 50px auto;
}

.lightboxwrap.wee .wee-packshot {
    height: 50dvh;
    width: auto;
    display: block;
    margin: 50px auto;
}

.lightboxwrap.wee .popup-buttons {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
    display: table;
    margin: 50px auto 0px auto;
}

.lightboxwrap.wee .popup-buttons a {
    display: inline-block;
    margin: 0px 10px;
    padding: 10px 20px;
    background: black;
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lightboxwrap.wee .popup-buttons a:hover {
    background: #e42d46;
    color: white;
}

.lightboxwrap.wee {
    mix-blend-mode: unset;
    background: url("bits/paper.jpg");
    background-repeat: repeat;
    background-size: 200px;
}

#lightbox img.realestatedaniel {
    position: relative;
    display: block;
    margin: 0px auto 30px auto;
    width: 250px;
    height: auto;
}


#lightbox img.dannypic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
        height: 60vh;
        width: auto;
        display: block;
        margin: 0px auto;
        filter: invert(1);
    }    

#lightbox .blurb {
    opacity: 1;
    transition: 1s;
    z-index: 2;
    background: #f6eedd;
}

#lightbox .blurb .wrap {
    font-size: 14px;
    color: #706f6f;
    text-align: center;
    padding: 0px 30px;
    line-height: 25px;
    top: 50%;
    left: 50%;
    display: block;
    position: absolute; 
    -webkit-transform: translate(-50%,-50%);    
    transform: translateY(-50%,-50%);
}

#lightbox h1 {
    font-size: 20px;
    text-align: center;
    margin: 0;
    color: #706f6f;
}

.lightboxwrap.tour #lightbox h1 {
    font-size: 50px;
    max-width: 350px;
    margin: 0px auto;
    padding-bottom: 50px;
}

#lightbox h2 {
    color: #706f6f;
    font-size: 23px;
    text-align: center;
    margin: 0;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 4px;
}

#play-pause-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: #000;
    z-index: 10001;
    font-size: 35px;
    transform: translate(100px,100px);
    cursor: pointer;
}

#play-pause-button svg {
    display: none;
}

.showaudio {
    animation: showaudio 3s forwards;
}

.hideaudio {
    animation: hideaudio 3s forwards;
}

@keyframes showaudio {
    0% {
     transform: translate(100px,100px);   
    }
    100% {
     transform: translate(0,0);   
    }    
}

@keyframes hideaudio {
    0% {
     transform: translate(0,0);   
    }
    100% {
     transform: translate(100px,100px);   
    }    
}


.arm {
    position: fixed;
    width: 50vh;
    height: 50vh;
    transform: translate(-50vh,-30vh);
    z-index: 1111;
}

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

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

.extend {
    animation: extend 2s forwards ease;
}

.retract {
    animation: retract 2s forwards ease;
}

#socials {
    position: fixed;
    bottom: 25px;
    right: 10px;
    z-index: 100;
}

#socials svg {
    width: 20px;
    height: 20px;
    padding: 5px;
    color: #000;
    display: inline;
}

#socials svg:hover {
    
}

#buttons {
    position: fixed;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
    width: 870px;
    mix-blend-mode: multiply
}

@media (min-width: 800px) and (max-width: 1100px) {
#buttons {
    -webkit-transform: scale(0.8) translateX(-65%);
    transform: scale(0.8) translateX(-65%);
}
}

#buttons a {
    filter: blur(100px);
}

#buttons a span {
    background-color: #000;
    animation: turn-block 5s linear infinite;
    padding: 20px;
    color: #fff;
    font-size: 1.2rem;
    margin: 0px 10px;
    transition: 0.4s;
}

#buttons a:hover span {
    background: rgb(130,221,231);
    color: #000;
    background: linear-gradient(131deg, rgba(130,221,231,1) 0%, rgba(196,228,236,1) 100%);
}

#buttons a:nth-child(1) span {
    animation: transform1 7s linear infinite;
}

#buttons a:nth-child(2) span {
    animation: transform2 5s linear infinite;
}

#buttons a:nth-child(3) span {
    animation: transform3 6s linear infinite;
}

#buttons a:nth-child(4) span {
    animation: transform4 5.5s linear infinite;
}

#buttons a:nth-child(5) span {
    animation: transform5 6s linear infinite;
}

@keyframes turn-block {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 

#buttons a {
    animation: blurme 1.5s linear forwards;    
}

#buttons a:nth-child(1) {
    animation-delay: 0s;
}

#buttons a:nth-child(2) {
    animation-delay: 0.3s;
}

#buttons a:nth-child(3) {
    animation-delay: 0.6s;
}

#buttons a:nth-child(4) {
    animation-delay: 0.9s;
}

#buttons a:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes blurme {
    0% {filter: blur(100px)}
    100% {filter: blur(0px)}
}


@keyframes transform1 {
    0%,
  100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
   10% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
   24% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   47% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   55% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   73% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   80% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

@keyframes transform2 {
    0%,
  100% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   7% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
   32% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   40% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   70% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
   60% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   80% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

@keyframes transform3 {
    0%,
  100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
   20% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
   38% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   72% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   46% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   60% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   84% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
}

@keyframes transform4 {
    0%,
  100% { border-radius:  40% 60% 54% 46% / 49% 60% 40% 51%;} 
   24% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
   20% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   32% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;} 
   46% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;  } 
   80% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   94% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
}

@keyframes transform5 {
    0%,
  100% { border-radius:  46% 54% 50% 50% / 35% 61% 39% 65%;} 
   18% { border-radius:  40% 60% 54% 46% / 49% 60% 40% 51%;} 
   22% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;} 
   62% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;} 
   40% { border-radius:  63% 37% 54% 46% / 55% 48% 52% 45%; } 
   60% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;  } 
   74% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
}

@keyframes transformtest {
    0%,
  100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
   10% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
   24% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   47% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   55% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   73% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   80% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.buttons .row {
    display: table;
}

.buttons {
    display: table;
    margin: 30px auto 0px auto;
    text-align: center;
    position: relative;
}

.buttons a {
    font-size: 15px;
    text-decoration: underline;
    padding: 10px 25px;
    display: table-cell;
    color: white;
    background: #706f6f;
    text-decoration: none;
    letter-spacing: 0px;
    margin: 0px 10px;
}

.buttons a:hover {
    color: white;
    background: black;
}



#lightbox iframe {
    border: 0px;
    top: 50%;
    position: relative;
    -webkit-transform: translateY(-50%);    
    transform: translateY(-50%);
}



.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 {
    animation: zoomin 1s forwards ease;
    animation-delay: .5s;
}


@keyframes zoomin {
    0% {opacity: 0; transform: scale(0.3,0.1);}
    100% {opacity: 1; transform: scale(1,1)}
}


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

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

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

	a {
		text-decoration: none;
	}

	a:hover {
        text-decoration: none;
	}



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

#signup form {
    margin-top: 50px;
}

#signupform, #mobilenotice {
	color: #000;
	margin: 0px auto;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	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: rgba(0,0,0,0.3);
    border: none;
	width: 470px;
	padding: 20px;
	font-size: 20px;
	color: #000;
	line-height: 20px;
    text-align: center;
	vertical-align: bottom;
	margin: 0px;
    font-weight: normal;
    font-family: 'arial', sans-serif, sans-serif;
}

#signupform .signupbutton {
    color: #000;
    border: 0px;
    font-size: 20px;
    line-height: 20px;
    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: 'arial', sans-serif, sans-serif;
}

#signupform .signupbutton:hover {
    color: turquoise !important;
}

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


a {
	opacity: 1;
}

ul li, canvas {
    cursor: default !important;
}

a.inactive {
    cursor: default !important;
}

a.active {
    cursor: pointer !important;
}


.loading {
    position: absolute;
    background: url(bits/loading.gif) #fff; 
    background-size: 32px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh; 
    z-index: 9999;
    }  

#color {
	z-index: 11111;
}

.disappear {
    -webkit-animation: 1s disappear ease forwards;
}


@-webkit-keyframes disappear {
    0% {opacity: 1}
    100% {opacity: 0}    
}

.mobile {
    display: none;
}

.danielofthemonth-mobile {
    display: none;
}


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


@media (max-width: 800px) {

    body {-webkit-overflow-scrolling: touch;}  
    
#cloud .button {
    padding: 9px 0px 8px 0px;
    top: calc(0% + 18px);    
}   
    
#lightbox .atlastour img {
    height: auto;
    width: 90dvw;
    display: block;
    margin: 0px auto;
}    
    
    #socials {
        bottom: auto;
        top: 10px;
    }  
    
    .tvstar, .tv {
        display: none;
    }    
    .lightboxwrap.wee {
        overflow-y: auto;
    }
    
    .lightboxwrap.wee #lightbox {

    }
    
    .lightboxwrap.wee .popup-buttons {
        display: block;
        width: 200px;
    }    
    
    .lightboxwrap.wee .popup-buttons a {
        display: block;
        margin: 5px auto;
        text-align: center;
    }
    
    .lightboxwrap.wee .wee-title {
        height: auto;
        width: 70%;
    }
    
    .lightboxwrap.wee .wee-packshot {
        height: auto;
        width: 70%;
    }
    
.kimmelmobile {
    display: block !important;
}    
    
    .marquee {
    bottom: 5%;
    right: -25%;  
        height: 25px;
        line-height: 25px;
        font-size: 0.8rem;
    }  
    
.marquee--inner {
  animation: marquee 30s linear infinite;
    width: 400vw;
    line-height: 25px;
}    
    
    .marquee--inner span {
        line-height: 25px;
        vertical-align: top;
    }
    
    h3 {
        width: 70%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7rem;
    }
    
    #signupform {
        width: 85%;
    }   
        
    #signupform .email {
        width: 80%;
    }    

    .lightboxwrap.danielofthemonth #lightbox,  .lightboxwrap.signup #lightbox{
        width: 100%;
    }

    .lightboxwrap.info #lightbox {
        background: wheat;
    }

    .tour-container {
        width: 100%;
    }
    
    .lightboxwrap.tour #lightbox h1 {
        font-size: 2rem;
        line-height: 2rem;
        max-width: 60%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    #lightbox img.dannypic {
        height: auto;
        width: 70%;
    }    
    
    #buttons {
        width: auto;
        display: table;
        margin: 0 auto;
        width: 100%;
    }    
    
    #buttons a span {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    #buttons a {
        display: table-cell;
    }
    
    .danielofthemonth-mobile {
        position: fixed;
        display: block;
        font-size: 0.7rem;
        text-align: center;
        color: white;
        font-weight: bold;
        padding: 5px;
        bottom: 0px;
        z-index: 111;
        left: 50%;
        transform: translateX(-50%);
    }
    
    a.albumtitle {
            position: fixed;
    top: 30px;
    right: 20px;
    text-align: right;
    z-index: 11;
    }  
    
    .fa-play {
        width: 20px;
        height: 20px;
        top: 5px;
        left: 10px;
    }    
    
#buttons a.danielofthemonth-link {
    display: none;
}    


.lightboxwrap.info #lightbox img, #lightbox .blurb {
    position: relative;
    height: auto;
    width: 100%;
    top: auto;
    left: auto;
    -webkit-transform: none;    
    transform: none;
    margin: 10px auto;
    display: block;
}


#lightbox .blurb {
    opacity: 1;
    transition: 1s;
    z-index: 2;
    background: #f6eedd;
    overflow: overlay;
    position: relative;
}

#lightbox .blurb .wrap {
font-size: 12px;
letter-spacing: 0px;
color: #706f6f;
text-align: center;
padding: 0px 10px;
line-height: 14px;
transform: none;
-webkit-transform: none;
top: auto;
position: relative;
}

#lightbox .blurb:hover {
    opacity: 1;
}

body:hover .blurb {
    opacity: 1;
}
    
    #lightbox-controls, #close-lightbox, #close-lightbox:before, #close-lightbox:after {
        position: fixed;
    }
    
    .loading {
    position: absolute;
    background: url(bits/loading.gif) #fff; 
    background-size: 32px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh; 
    z-index: 9999;
    }      
    
}




@media (min-width: 800px) and (max-height: 650px) {
    
#lightbox .blurb .wrap {
    font-size: 13px;
    line-height: 20px;
}    
    
}



@media (min-width: 800px) and (max-height: 600px) {
    
#lightbox .blurb .wrap {
    font-size: 12px;
    line-height: 15px;
}        
    
}




@media (max-width: 400px) {
    #buttons a {
        margin: 0px;
    }
    #buttons a span {
        font-size: 0.8rem;
    }
}