﻿.overlayBox {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0,0,0,0.8);
	z-index: 9999999;
	left: 0px;
	top: 0px;
	display: none;
}

.videoPopupBox {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.videoPopup {
	width: 750px;
	padding: 20px;
	height: auto;
	position: relative;
	background: #fff;
	border-radius: 10px;
}

.videoBox {
	width: 100%;
	overflow: hidden;
}

	.videoBox video {
		width: 100%;
		height: 420px;
	}

.closeButton {
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	right: 1px;
	top: 1px;
	background: url("../images/close-button.svg") no-repeat 0px 0px;
	background-size: 100%;
	cursor: pointer;
	z-index:9999999;
}



.spotlightImg img {
	width: 194px;
	/*height: 363px;*/
	border-radius: 14px;
	/*object-fit: cover;*/
	background: #222;
	box-shadow: 0 4px 24px #0008;
	border: 2px solid transparent;
	flex-shrink: 0;
	transition: all 0.4s ease;
	opacity: 0.7;
	transform: scale(0.95);
}
@media (max-width: 676px) {
	.videoPopup {
		width: 96%;
		padding: 10px;
		box-sizing: border-box;
	}

	.videoBox video {
		width: 100%;
		height: 380px;
	}
	.mentorProfile {
		position: relative;
	}

		.mentorProfile::after {
			content: '';
			border: solid #fff;
			border-width: 0 3px 3px 0;
			display: inline-block;
			padding: 3px;
			transform: rotate(-45deg);
			position: absolute;
			right: 12px;
			top: 34px;
		}

	.profilePopUp .mentorProfile::after {display:none!important;}
	.highlight-section {
		padding-top: 30px !important;
	}
	.highlight-desc {
		padding-top: 20px !important;
	}
}

	.openVideo {
	cursor:pointer;
	
}
