@font-face {
	font-family: "Karla";
	src: url("/dependencies/fonts/Karla/Karla-VariableFont_wght.ttf");
}

body {
	background-color: black;
	display: block;
	position: absolute;
	margin: 0 0 0 0;
	width: 100vw;
	overflow-x: hidden;
	top: 0;
	left: 0;
}

.header-logo {
	display: block;
	width: 110px;
	height: 63px;
	background-image: url(/logo.png);
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 0 0 0 0;
	background-color: #27303d;
	border: 15px solid #27303d;
	border-right: 25px solid #27303d;
	border-bottom-right-radius: 15px;
}

#text {
	width: 400px;
	position: relative;
	display: block;
	margin: 150px auto 0 auto;
	color: white;
	font-family: Karla;
	text-align: center;
}

#title {
	margin: 0 0 20px 0;
	font-size: 40px;
	font-weight: 600;
}

#description {
	margin: 0 0 0 0;
	font-size: 20px;
}

.button {
	position: relative;
	color: black;
	font-size: 32px;
	font-family: Karla;
	font-weight: bold;
	text-align: center;
	line-height: 70px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	outline: none;
	border-radius: 30px;
	height: 70px;
	display: none;
	background-color: #1ed760;
}

#login-button {
	width: 220px;
	margin: 60px auto 130px auto;
}

p {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

#playlist-wrap {
	display: none;
	flex-direction: column;
	width: 400px;
	border-radius: 10px;
	border: 5px solid #1ed760;
	outline: none;
	margin: 50px auto;
}

.playlist {
	height: 90px;
	width: 100%;
	background-color: #141414;
	position: relative;
	border-radius: 0;
	border: none;
	outline: none;
	cursor: pointer;
	text-align: left;
}

.playlist-image {
	position: absolute;
	width: 70px;
	height: 70px;
	top: 10px;
	left: 10px;
	outline: none;
	border: none;
	color: white;
	font-family: Karla;
}

.playlist-title {
	position: absolute;
	font-family: Karla;
	font-size: 20px;
	font-weight: bold;
	color: white;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	top: 15px;
	line-height: 20px;
	height: 28px;
	left: 100px;
	width: 280px;
	outline: none;
	border: none;
	margin: 0 0 0 0;
}

.playlist-length {
	position: absolute;
	font-family: Karla;
	font-size: 16px;
	line-height: 16px;
	color: white;
	left: 100px;
	width: 280px;
	top: 38px;
	outline: none;
	border: none;
	margin: 0 0 0 0;
}

.playlist-description {
	position: absolute;
	font-family: Karla;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 16px;
	line-height: 16px;
	height: 22px;
	overflow: hidden;
	color: white;
	left: 115px;
	width: 265px;
	top: 60px;
	outline: none;
	font-weight: extra-light;
	border: none;
	margin: 0 0 0 0;
	padding-right: 1rem;
}

.progress-bar {
	background-color: rgba(30, 215, 58, 0.5);
	height: 100%;
	width: 0px;
	top: 0;
	right: 0;
	position: absolute;
	left: auto;
	z-index: 3;
}

#disclaimer-wrap {
	width: 300px;
	position: relative;
	display: block;
	margin: 60px auto 60px auto;
}

#disclaimer {
	color: white;
	font-family: Karla;
	font-size: 20px;
	font-weight: 300;
	text-align: center;
}

#shield {
	display: none;
	z-index: 10;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(30, 215, 58, 0.5);
}

@media only screen and (max-device-width: 480px) {
	#text {
		margin-top: 130px;
	}
	#title {
		font-size: 35px;
	}
	#playlist-wrap {
		width: calc(100% - 10px);
	}
}
