.course-list {
	margin:50px 0;
	padding-bottom:50px;
	display:-ms-grid;
	display:grid;
	grid-auto-rows:300px;
	-moz-column-gap:25px;
	column-gap:25px;
	row-gap:45px;
	grid-template-columns:repeat(auto-fill,minmax(300px,1fr))
}
.course-list:after,.course-list:before {
	content:"";
	display:none
}
.course {
	font-weight:400!important;
	cursor:pointer;
	text-align:center!important
}
.course .course__title {
	background-color:#ff00ff;
	padding:0;
	margin:0 0 10px;
	width:10%;
	position:relative;
	top:10px;
	right:-100;
	display:block;
}

.course .course__data {
	background-color:#fff;
	box-shadow:0 10px 21px #e7eeef;
	padding:20px;
	border-radius:20px;
	width:96%;
	margin:0 auto;
	position:relative;
	top:-50px;
	display:block;
	transition:transform .6s cubic-bezier(.2,.8,.2,1);
	box-sizing:border-box;
	height:150px
}
.course .course__data .course-listing-title {
	font-size:18px!important;
	padding:0;
	margin:0 0 10px;
	font-weight:600!important
}
.course .course__data .course-listing-subtitle {
	color:#333;
	max-height:none;
	overflow:visible;
	font-size:16px;
	padding:0;
	font-weight:400!important
}
.course .course__data .course-progress {
	font-size:16px!important;
	display:block;
	padding-top:45px
}
.course .course__data .progressbar {
	height:15px;
	width:100%;
	display:block;
	background-color:#e7eff7;
	margin-top:20px;
	margin-bottom:0!important;
	border-radius:10px;
	overflow:hidden
}
.course .course__data .progressbar .progressbar-fill {
	height:15px;
	width:auto;
	float:left;
	border-radius:20px;
	background-image:linear-gradient(-45deg,#0575e6,#021b79);
	-webkit-animation:bgAnim 1.5s linear infinite;
	animation:bgAnim 1.5s linear infinite;
	background-size:400% 400%
}
.course .course__background,.course .course__background img {
	transition:transform .6s cubic-bezier(.2,.8,.2,1),box-shadow .6s cubic-bezier(.2,.8,.2,1)
}
.course .course__background {
	height:200px;
	border-radius:20px;
	overflow:hidden;
	box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07);
	display:flex;
	align-items:flex-start;
	justify-content:center;
	width:100%
}
.course .course__background img {
	max-width:100%
}
.course .course-bundle {
	display:none
}
.course .course-bundle a:hover {
	color:inherit
}
.course:hover .course__background {
	box-shadow:rgba(0,0,0,.35) 0 30px 60px;
	transform:translateY(-5px)
}
.course:hover .course__background img {
	transform:scale(1.1)
}
.course:hover .course__data {
	transform:translateY(-10px)
}
.course-listing,.course-listing:hover,.view-directory .course-listing,.view-directory .course-listing:hover {
	background:0 0!important;
	border:0;
	box-shadow:none!important
}


