.bt-green {
	color: #fff;
	background: #73b82a;
}

.bt-green:hover {
	background: #4B8728;
	color: #fff;
}

.smartupworld-video-modal-button{
	padding: .5rem 20px;
	border-radius: 1.25rem;
	box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
	line-height: 1.75;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: capitalize;
	transition: border .3s 
	cubic-bezier(.39, .575, .565, 1), box-shadow .3s 
	cubic-bezier(.39, .575, .565, 1), color .3s 
	cubic-bezier(.39, .575, .565, 1), background .3s 
	cubic-bezier(.39, .575, .565, 1), box-shadow .3s 
	cubic-bezier(.39, .575, .565, 1);
	display: inline-block;
}

.white-btn {
	background: #FEFEFE;
	color: #0E0F0C;
}

.white-btn:hover {
	color: #FEFEFE;
	background: rgba(0, 0, 0, 0.3);
	border-color: #FEFEFE;
}
.video-modal {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}

.video-container {
	position: relative;
	background: #000;
	padding: 15px;
	border-radius: 8px;
	max-width: 800px;
	width: 90%;
}

.video-container video {
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.close-btn {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 50%;
	cursor: pointer;
	text-decoration: none;
	text-shadow: 0 0 3px #000;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.video-container {
		width: 100%;	
	}
	.close-btn {
		font-size: 1.5rem;
	}
}
