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

body {
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	background-color: #111;
}

.invisible {
	visibility: hidden;
}

/*COMMON*/
iframe {
	position: relative;
}
.center {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.center .embed-responsive {
	width: 100%;
}
.app, .splash, .volume, .portrait {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #111;
	/*overflow: hidden;*/
}

/*SPLASH*/
.splash {
	z-index: 999;
}
.splash img {
	width: 305px;
}
.splash h2 {
	color: #fefefe;
}
/*@media only screen and (min-width : 480px) {
	.splash img {
		width: 305px;
	}
}*/
@media only screen and (min-width : 768px) {
	.splash img {
		width: 559px;
	}
}

/*VOLUME*/
.volume {
	z-index: 998;
}
.volume h2 {
	color: #fefefe;
}

/*PORTRAIT*/
.portrait {
	z-index: 997;
}
.portrait img {
	width: 100%;
	height: 100%;
}
@media screen and (orientation:landscape) {
    .portrait {
		display: none;
	}
}

/*OBJECTS */
#objects {
	position: absolute;
	top: 0;
	left: 0;
}
.object {
	position: absolute;
}

.highlight:hover {
	-webkit-filter: contrast(75%);
	filter: contrast(75%);
}

.noEvents {
	pointer-events: none;
}

#soundcloud {
	width: 0;
	height: 0;
}

.purchaseLinks {
	position: absolute;
	top: 15px;
	z-index: 1;
	width: 100%;
}

.purchaseLinks img {
	height: 25px;
	margin: 0 10px;
}

.bigger {
	margin-top: -6px;
	height: 37px !important;
}

.socialLinks {
	position: absolute;
	bottom: 5px;
	z-index: 1;
	width: 100%;
}

.socialLinks img {
	opacity: 0.7;
}

.socialLinks img {
	margin: 0 2px;
	height: 14px;
	opacity: 0.7;
}

.rhino {
	height: 13px !important;
}

@media only screen and (min-width: 600px) {
	.socialLinks img {
		margin: 0 6px;
		height: 16px;
	}

	.rhino {
		height: 13px !important;
	}
}
@media only screen and (min-width: 768px) {
	.socialLinks img {
		margin: 0 8px;
		height: 20px;
	}

	.rhino {
		height: 18px !important;
	}
}


.blink{
	animation-name: blink;
    animation-duration: 1.5s;
    animation-iteration-count: 3;
	/*animation-timing-function: ease-in-out;*/
	/*animation-timing-function: linear;*/
}

@keyframes blink {
	0%, 100%  {
		-webkit-filter: contrast(100%);
		filter: contrast(100%);
	}
  	50% {
		-webkit-filter: contrast(75%);
		filter: contrast(75%);
	}
}
