body:before {
	content: '';
	position: fixed;
	left: 0; top: 0;
	right: 0; bottom: 0;
	/*background-color: rgba(0,0,0,.8);*/
	z-index: -1;
}

body > ui-view > #container > #main > section {
	z-index: 1;
}

section#artist > .nav {
	text-transform: uppercase;
}

section#artist > .nav.top {
	margin-bottom: 20px;
}

section#artist > #info {
	text-transform: uppercase;
	position: relative;
	margin-bottom: 20px;
	border-top: 1px solid rgba(255,255,255,.25);
	border-bottom: 1px solid rgba(255,255,255,.25);
	padding: 5px 0;
}

section#artist > #info > * {
	vertical-align: middle;
}

section#artist > #info > h1 {
	margin-right: 10px;
	padding-top: 2px;
	display: inline-block;
}

section#artist > #info > #country {
	display: inline-flex;
	align-items: center;
}

section#artist > #info > #country > img {
	height: 30px;
	margin-right: 10px;
}

section#artist > #info > #plays-at {
	display: inline-block;
	margin-bottom: 0;
	padding: 0;
}

section#artist > #info > #plays-at > li {
	display: inline-block;
}

section#artist > #info > #plays-at > li:before {
	content: '';
	height: 15px;
	width: 1px;
	background-color: white;
	display: inline-block;
	vertical-align: middle;
	margin: 0 15px;
}

section#artist > #info > #links {
	font-size: 1.5em;
	position: absolute;
	top: 50%; right: 0;
	display: flex;

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

section#artist > #info > #links > a {
	display: flex;
	text-align: center;
	color: white;
	position: relative;

	-webkit-transition: all .2s;
	transition: all .2s;
}

section#artist > #info > #links > a:not(:last-child) {
    margin-right: 10px;
}

@media(max-width: 768px) {
	section#artist > #info > #plays-at {
		display: block;
	}
	section#artist > #info > #plays-at > li:first-child:before {
		display: none;
	}
}

section#artist > #info > #links > a:hover {
	color: rgba(255, 255, 255, .7);
}

section#artist > #description {
	text-align: justify;
}

section#artist > #images {
	margin-bottom: 20px;
	position: relative;
}

section#artist > #images > #sticker {
	width: 100%;
}

section#artist > #images > #sticker > img {
	width: 100%;
}

section#artist > #images > #photo {
	display: none;
	position: absolute;
	left: 35%; right: 0;
	top: 0; bottom: 0;
	margin-left: 20px;
 	overflow: hidden;
 	border: 1px solid rgba(255,255,255,.5);
}

section#artist > #images > #photo img {
	width: 100%;
	position: absolute;
	left: 50%; top: 50%;

	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

section#artist > #videos {
	margin-top: 20px;
}

section#artist > #videos > .video-container {
	border: 1px solid rgba(255,255,255,.5);
	padding: 1px;
	margin-bottom: 20px;
}

section#artist > #videos > .video-container > .aspect-ratio-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	width: 100%;
}

section#artist > #videos > .video-container > .aspect-ratio-wrapper > iframe {
	position: absolute;
	left: 0; top: 0;
	width: 100%; height: 100%;
	border: none;
}

@media (min-width: 768px) {
	section#artist > #images > #sticker {
		width: 35%;
	}

	section#artist > #images > #photo {
		display: block;
	}

	section#artist > #info > h1 {
		width: auto;
	}

	section#artist > #videos {
		display: flex;
		margin-right: -20px;
		flex-wrap: wrap;
	}

	section#artist > #videos > .video-container {
		flex: 1 0 calc(50% - 20px);
		margin-right: 20px;
	}
}