.d_artistBox {
	position: relative;
	max-width: 100%;
}

.d_artistBox_inner {
	max-width: 370px;
	background: #fff;
	box-shadow: 0 3px 5px 0 rgb(0 1 1 / 10%);
	margin-bottom: 20px;
	line-height: 1.375;
	position: relative;
	display: block;
}

.d_artistBox a {
	-webkit-tap-highlight-color: transparent;
}

.d_artistBox_slider {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	display: block;
}

.d_artistBox_imageContainer {
	position: relative;
	display: flex;
	transition: 0.6s;
	touch-action: pan-y;
}

.d_artistBox_slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}

.d_artistBox_img {
	width: 370px;
	height: 278px;
	object-fit: cover;
}

.d_artistBox_caption {
	height: 38px;
	padding: 6px 20px 0 20px;
	display: flex;
	font-size: 14px;
	color: #5e5e5e;
}

.d_artistBox_caption > span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	align-self: center;
}

.d_artistBox_captionText img {
	margin-bottom: -2px;
	width: 14px;
	height: 15px;
	filter: invert(35%) sepia(0%) saturate(1315%) hue-rotate(257deg) brightness(101%) contrast(90%);
	margin-right: 3px;
}

.d_artistBox_caption .d_fontAwesomeIcon:not(:first-of-type) img, .d_artistBox_caption > div:not(:first-of-type) img {
	margin-left: 15px;
}

.d_artistBox_desc {
	display: flex;
	justify-content: space-between;
	width: 100%;
	overflow: visible;
}

.d_artistBox_spec {
	max-width: calc(100% - 100px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.d_artistBox_icon {
	display: flex;
}

.d_artistBox_icon img {
	margin-right: 7px;
	margin-top: -1px;
	align-self: center;
}

.d_artistBox_iconCourse img {
	width: 18px;
}

.d_artistBox_iconBook img {
	width: 14px;
}

.d_artistBox_box {
	padding: 14px 20px 25px 20px;
	display: block;
}

.d_artistBox_title {
	font-weight: 800;
	color: #111;
	margin: 0  0 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: left;
	font-size: 22px;
	line-height: 30px;
	max-width: calc(100% - 120px);
	height: 60px;
	display: flex;
	align-items: center;
}

.d_artistBox_details {
	color: #3b3a3a;
	text-transform: uppercase;
	padding: 13px 20px;
	font-size: 14px;
	border: 1px solid #3b3a3a;
	border-radius: 3px;
	width: 100px;
	text-align: center;
	margin-left: auto;
	display: block;
	margin-top: -65px;
	transition: all .2s ease-in-out;
	position: relative;
	z-index: 99;
	font-weight: 600;
	text-decoration: none;
}

.d_artistBox_details:hover {
	background: #3b3a3a;
	color: white;
}

.d_artistBox .d_shared_sliderLeft, .d_artistBox .d_shared_sliderRight {
	width: 30px;
	height: 30px;
	background: #fff;
	display: none;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: all .2s ease-in-out;
	box-shadow: 0 0 3px 1px #afafaf;
	cursor: pointer;
	position: absolute;
	top: 125px;
}

.d_artistBox .d_shared_sliderLeft.disabled, .d_artistBox .d_shared_sliderRight.disabled {
	display: none!important;
}

.d_artistBox .d_shared_sliderLeft img, .d_artistBox .d_shared_sliderRight img {
	filter: invert(70%) sepia(0%) saturate(1566%) hue-rotate(184deg) brightness(95%) contrast(86%);
	width: 10px;
	height: 10px;
}

.d_artistBox .d_shared_sliderLeft {
	left: 25px;
}

.d_artistBox .d_shared_sliderRight {
	right: 25px;
}

.d_artistBox .d_shared_paginate {
	pointer-events: none;
}

@media (min-width: 576px) {
	.d_artistsList_loop {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

@media (min-width: 992px) {
	.d_artistsList_loop {
		flex-wrap: wrap;
		flex-direction: row;
	}

	.d_artistBox {
		padding: 0 15px;
	}

	.d_artistBox_inner {
		margin-bottom: 30px;
	}

	.d_artistsList_title {
		font-size: 36px;
		margin: 65px 0 55px 0;
	}

	.d_artistBox .d_shared_paginate {
		width: calc(100% - 30px);
		pointer-events: auto;
	}

	.d_artistBox:hover .d_shared_sliderLeft, .d_artistBox:hover .d_shared_sliderRight {
		display: flex;
	}
}