.instructor-row {
	position: relative;
	margin: 10px auto;
	width: 471px;
	display: inline-block;
	cursor: pointer;
	background-color: #f0f0f0;
}

.clickable-instructor {
	cursor: pointer;
}

@media (max-width: 1270px) {
	.instructor-row {
		width: 100%;
		display: block;
	}
}

.instructor-row:hover {
	background-color: #e0e0e0;
}

.instructor-row .name {
	color: white;
	/*	font-weight : bold;*/
	position: absolute;
	bottom: 10px;
	left: 10px;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 1px 5px;
	border-radius: 5px;
	max-width: 88%; /* For Yasha */
}

.instructor-row > div {
	display: inline-block;
	vertical-align: top;
}

.instructor-info {
	position: relative;
	width: calc(100% - 193px);
	padding: 5px;
	z-index: 3;
	font-size: 14px;
	line-height: 19px;
}

@media (max-width: 576px) {
	.instructor-row > div {
		display: block;
	}

	.instructor-info {
		width: 100%;
	}
}

.instructor-bio {
	position: absolute;
	left: 188px;
	top: 0px;
	width: calc(100% - 188px);
	padding: 7px 12px;
	z-index: 30;
	background-color: #fff;
	font-size: 14px;
	box-shadow: 2px 2px 5px #888;
}

.instructor-row .instructor-bio {
	display: none;
}

.instructor-row:hover .instructor-bio {
	display: inline-block;
}
/*
.instructor-row:hover .instructor-info {
	display : none;
}*/

.info-heading {
	font-weight: bold;
}

.info-data {
	margin-bottom: 2px;
	padding-left: 8px;
}
