html, body {
	padding: 0;
	margin: 0;
	background: #0D0D14;
	color: #FFF;
	font-family: "Play", sans-serif;
	text-shadow: 0 1px 2px #000;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Universal */
.centerflex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.centered {
	text-align: center;
}

h1 {
	text-transform: uppercase;
}

.onepage {
    height: calc(100vh - 120px);
}

.fullpage {
	height: auto;
	padding-bottom: 50px;
}

.bg-dark {
	background: #0a0a0a;
}

.inline-break {
	display: inline-block;
	width: 2%;
}

/* Contents */
.main {
	padding-top: 120px;
}

.content {
	max-width: 1218px;
	margin: 0 auto;
}

.top {
	background: #0c0c0c;
	height: 120px;
	line-height: 120px;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

.logo {
	font-family: "Play";
	font-size: 28px;
	display: inline-block;
}

.mobile-top {
	display: none;
    float: right;
    height: 100%;
    margin-left: 20px;
}

.mobile-nav {
    background: url(../img/mobile-menu.png);
    background-size: 100% 100%;
    width: 25px;
    height: 25px;
    filter: invert(1);
    display: inline-block;
    position: relative;
    top: 33%;
}

.nav {
	font-family: "Oswald", sans-serif;
	list-style: none;
	display: inline-block;
	margin: 0;
	text-transform: uppercase;
}

.nav li {
	display: inline-block;
	padding: 0 20px;
}

.logo, .nav li {
	color: #ababab;
	transition: color 0.5s;
	cursor: pointer;
}

.logo:hover, .nav li:hover {
	color: #FFF;
}

.logo, .nav, .top {
	vertical-align: top;
}

.error {
	
}

/* Social */
.social {
	float: right;
	display: inline-block;
}

.social-ico {
	background-size: 100% 100% !important;
	height: 25px;
	width: 25px;
	display: inline-block;
	margin-left: 8px;
	opacity: 0.6;
	transform: opacity 0.5s;
	cursor: pointer;
}

.social-ico:hover {
	opacity: 1;
}

.social-ico.facebook { background: url('../img/social/facebook-r.png'); }
.social-ico.youtube { background: url('../img/social/youtube-r.png'); }
.social-ico.instagram { background: url('../img/social/instagram.png'); }
.social-ico.tiktok { background: url('../img/social/tiktok.png'); }
.social-ico.twitter { background: url('../img/social/twitter.png'); }
.social-ico.web { background: url('../img/social/web.png'); }

.preview {
	width: 100%;
	height: calc(100vh - 120px);
	position: relative;
}

.preview-bg {
	background: url('../img/main_bg_hazes.jpg') !important;
	background-size: 100% auto !important;
	background-position: center 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 10;
}

.preview-dark {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 11;
}

.preview-content {
	width: 900px;
	text-align: center;
	position: relative;
	z-index: 100;
}

.preview-content p {
	font-size: 20px;
	text-align: justify;
    text-align-last: center;
}

/* Albums / singles */
.albums {
	text-align: center;
	margin: 0 auto;
}

.album {
	width: 350px;
	height: auto;
	display: inline-block;
	font-weight: bold;
	margin: 0 25px 25px 25px;
	opacity: 0.7;
	transition: opacity 0.5s;
	cursor: pointer;
}

.album:hover {
	opacity: 1;
}

.album .album-img {
	background: url('../img/uploads/albums/album.png');
	background-size: 100% 100% !important;
	width: 100%;
	height: 350px;
}

.album span {
	text-align: center;
	display: block;
	line-height: 50px;
}

.album span p {
	display: inline-block;
	font-weight: normal;
	font-size: 11px;
}

.album span:nth-child(3) {
    display: inline-block;
    font-weight: normal;
    line-height: 0;
    position: relative;
    top: -18px;
    font-size: 13px;
}

/* Buttons */
.btn {
	font-family: "Oswald", sans-serif;
	text-shadow: 0 1px 3px #000;
	padding: 15px 20px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	display: inline-block;
	text-transform: uppercase;
	border-radius: 5px;
	transition: background 0.5s;
	cursor: pointer;
}

.btn:hover {
	background: #21527c;
}

.btn-centered {
	position: relative;
	margin: 50px auto 0;
}


/* Header */
.header {
	padding: 50px 0;
	font-size: 28px;
	font-weight: bold;
	text-transform: uppercase;
}

/* Tracklist */
.tracklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tracklist li {
	width: 100%;
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.5s;
	cursor: pointer;
}

.tracklist li:hover {
	background: rgba(255, 255, 255, 0.05);
}

.tracklist li span {
	display: inline-block;
	vertical-align: middle;
}

.tracklist li span:nth-of-type(1) {
    width: 15%;
    font-weight: bold;
    display: inline-block;
	padding-left: 20px;
}

.tracklist li span:nth-of-type(2) {
    width: 65%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tracklist li span:nth-of-type(3) {
	width: 9%;
	float: right;
	/*padding-right: 20px;*/
	color: rgba(255, 255, 255, 0.5);
}

/* Listen images */
.listen {
	text-align: center;
}

.listen h3 {
	margin-top: 35px;
	text-transform: uppercase;
}

.listen img {
	max-width: 100px;
	opacity: 0.8;
	transition: opacity 0.5s;
	cursor: pointer;
	margin: 30px 5px;
}

.listen img:hover {
	opacity: 1;
}

/* Footer */
footer {
	background: #ddd;
	color: #000;
	box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.9);
	text-shadow: none;
	padding: 50px 0;
}

footer .footer-tab {
	display: inline-block;
	width: 25%;
	vertical-align: top;
}

footer .footer-tab {
	text-transform: uppercase;
}

footer .footer-tab ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

footer .footer-tab ul li {
	padding-bottom: 10px;
}

footer .social {
	float: left;
	filter: invert(1);
}

footer .copyright {
	margin: 0 auto;
    display: block;
    text-align: center;
    padding-top: 20px;
}

footer .footer-tab input {
	width: 100%;
	padding: 15px;
}

footer .footer-tab .btn {
	display: block;
    margin-top: 10px;
    background: #29669b;
    color: #FFF;
    border-color: #000;
	text-align: center;
	transition: background 0.5s;
}

footer .footer-tab .btn:hover {
	background: #21527c;
}

footer #sub-msg {
	font-size: 12px;
    margin-top: 10px;
    filter: grayscale(1);
	text-align: center;
}

/* Pagination */
.pagination { 
	margin-top: 50px;
	text-align: center;
}

.pagination a {
	display: inline-block;
	margin: 0 10px;
	font-weight: bold;
}

.pagination a.active {
	text-decoration: underline;
}