body {
	background-color: #d9d9d9;
}

.d_artistsList {
	max-width: 410px;
	padding: 0 20px;
	margin: 0 auto 65px auto;
}

.d_artistsList_title {
	font-size: 30px;
	line-height: 32px;
	color: #111;
	margin: 50px 0 40px 0;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

@keyframes sk-bounce {
	0%,100% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

.d_artistsList_loadmore {
	margin-top: 35px;
	text-align: center;
	position: relative;
}

.d_artistsList_loader {
	width: 50px;
	height: 50px;
	position: absolute;
	margin-left: -25px;
	top: 4px;
	left: 50%;
	opacity: 0;
	z-index: -1;
}

.d_artistsList_loadmore.loading .d_artistsList_loader {
	opacity: 1;
}

.d_artistsList_loaderCircle1, .d_artistsList_loaderCircle2 {
	animation: sk-bounce 2s infinite ease-in-out;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: .6;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	background-color: #ee7105;
}

.d_artistsList_loaderCircle2 {
	animation-delay: -1s;
}

.d_artistsList_loadmoreBtn {
	height: 50px;
	min-width: 200px;
	box-shadow: 0 3px 5px 0 rgb(0 0 0 / 10%), inset 0 0 0 transparent;
	display: inline-block;
	line-height: 50px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.d_artistsList_loadmore.loading .d_artistsList_loadmoreBtn {
	opacity: 0;
}

@media (min-width: 576px) {
	.d_artistsList {
		max-width: 1320px;
	}

	.d_artistsList_loadmore {
		margin-top: 15px;
		padding-bottom: 15px;
	}
}