*::-webkit-input-placeholder {
	color: #666;
	opacity: 1;
}
*:-moz-placeholder {
	color: #666;
	opacity: 1;
}
*::-moz-placeholder {
	color: #666;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	
}
body input:required:valid,
body textarea:required:valid {
	
}

html.js .loader {
	background: none repeat scroll 0 0 #ffffff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
html.js .loader_inner {
	background-image: url("../img/preloader.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
	height: 60px;
	width: 60px;
	margin-top: -30px;
	margin-left: -30px;
	left: 50%;
	top: 50%;
	position: absolute;
}

body {
	font-family: sans-serif;
	font-size: 16px;
	min-width: 320px;
	position: relative;
	line-height: 1.6;
	font-family: "RobotoRegular", sans-serif;
	overflow-x: hidden;
}
.hidden {
	display: none;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {clear: both;}

/******* Begin Header *******/

/******* End Header *******/




/******* Begin Main *******/
body {
	overflow: hidden;
	background:#000;
	padding: 5% 15px 15px;
}

h1 {
	color: white;
	position: relative;
	text-align: center;
	z-index: 2;
}
h1 span {
	font-size: 24px;
	font-weight: normal;
}

.mars {
	max-width: 506px;
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
	margin: 0 auto;
	overflow: hidden;
	z-index: 2;
}
.mars img.mars-planet {
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	animation: mars 360s infinite linear;
}

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

.martian-one-hidden {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	margin: 0 auto;
	z-index: 3;
}
.martian-one-hidden img {
	max-width: 120px;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
}

.current-mars-population {
	position: relative;
	text-align: center;
	color: white;
	margin-top: 20px;
	z-index: 2;
}
.current-mars-population h2 {
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 400;
	margin: 0;
}

.stars,
.twinkling {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.stars {
	background: #000 url('../img/stars.png') repeat top center;
	z-index: 0;
}

.twinkling {
	background: transparent url('../img/twinkling.png') repeat top center;
	z-index: 1;

	-moz-animation: move-twink-back 200s linear infinite;
	-ms-animation: move-twink-back 200s linear infinite;
	-o-animation: move-twink-back 200s linear infinite;
	-webkit-animation: move-twink-back 200s linear infinite;
	animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -10000px 5000px;
	}
}

@-webkit-keyframes move-twink-back {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -10000px 5000px;
	}
}

@-moz-keyframes move-twink-back {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -10000px 5000px;
	}
}

@-ms-keyframes move-twink-back {
	from {
		background-position: 0 0;
	}
	to {background-position:-10000px 5000px;}
}


#mars-sound-player {
	visibility: hidden;
	opacity: 0;
}

.mars-sound {
	position: relative;
	z-index: 10;
}

.mars-sound-button {
	position: fixed;
	width: 48px;
	height: 48px;
	top: 20px;
	right: 20px;
	display: block;
	border: 1px solid black;
	z-index: 10;
}
.mars-sound-button.active .eq {
	visibility: visible;
	opacity: 1;
}

.eq {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	display: block;
	width: 20px;
	height: 15px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.eq__bar {
	position: absolute;
	bottom: 0;
	display: block;
	float: left;
	width: 0;
	height: 15px;
	border-left: 2px solid rgba(237, 104, 59, 1);
	transition: height 0.2s ease-out 0.2s;
}
.eq__1 {
	left: 0;
}
.eq__2 {
	left: 4px;
}
.eq__3 {
	left: 8px;
}
.eq__4 {
	left: 12px;
}
.eq__5 {
	left: 16px;
}
.eq--on .eq__bar {
	-webkit-animation-name: eq-play;
	animation-name: eq-play;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.eq--on .eq__1 {
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
}
.eq--on .eq__2 {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}
.eq--on .eq__3 {
	-webkit-animation-duration: 0.58s;
	animation-duration: 0.58s;
}
.eq--on .eq__4 {
	-webkit-animation-duration: 0.52s;
	animation-duration: 0.52s;
}
.eq--on .eq__5 {
	-webkit-animation-duration: 0.56s;
	animation-duration: 0.56s;
}
.eq--off .eq__bar {
	-webkit-animation-name: eq-stop;
	animation-name: eq-stop;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes eq-play {
	0%, 100% {
		height: 8px;
	}
	50% {
		height: 15px;
	}
}

@keyframes eq-play {
	0%, 100% {
		height: 8px;
	}
	50% {
		height: 15px;
	}
}
@-webkit-keyframes eq-stop {
	0% {
		height: 15px;
	}
	100% {
		height: 3px;
	}
}
@keyframes eq-stop {
	0% {
		height: 15px;
	}
	100% {
		height: 3px;
	}
}

.mars-sound-button.active .sound-pulse {
	visibility: hidden;
	opacity: 0;
	transition: all ease-in 0.3s;
}

.sound-pulse {
	visibility: visible;
	opacity: 1;
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	/*background: rgba(237, 104, 59, 1) url("../img/sound-icon.svg") no-repeat center/32px;*/
	/*background: rgba(237, 104, 59, 1);*/

	background-image: url('../img/sound-icon.svg'), url('../img/mars.png') !important;
	background-color: transparent;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;

	cursor: pointer;
	box-shadow: 0 0 0 rgba(237, 104, 59, 0.4);
	animation: pulse 2s infinite;
	z-index: 11;
	transition: all ease-out 0.8s;
}
/*.sound-pulse:hover {*/
	/*animation: none;*/
/*}*/

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(237, 104, 59, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(237, 104, 59, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(237, 104, 59, 0);
	}
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(237, 104, 59, 0.4);
		box-shadow: 0 0 0 0 rgba(237, 104, 59,0.4);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(237, 104, 59, 0);
		box-shadow: 0 0 0 10px rgba(237, 104, 59, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(237, 104, 59, 0);
		box-shadow: 0 0 0 0 rgba(237, 104, 59, 0);
	}
}

/******* End Main *******/




/******* Begin Footer *******/

/******* End Footer *******/

/******* Media Queries *******/

@media screen and (max-width: 767px) {
	.mars-sound-button {
		top: 10px;
		right: 10px;
	}
}
