.mm_lightbox{
	position:absolute;
	width:100%;
	height:100%;
	overflow: hidden;
	opacity:0;
	z-index:999;
}

.mm_lightbox .mM_container {
	width: 100%;
}

.mm_lightbox .mm_lightbox_container{
	position:fixed;
	width:inherit;
	height:inherit;
	z-index:99;
}

.mm_lightbox .mm_lightbox_overlay{
	width:100%;
	height:100%;
	top:0; left:0;
	position:absolute;
	background-color: #000;
	opacity: .8;
}

.mm_lightbox .mm_lightbox_content_main_container{
	width:100%;
	height:100%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.mm_lightbox .mm_lightbox_content_container{
	position:relative;
	width:100%;
	/* height:100%; */
	/* min-height: 600px; */
	max-height: calc(100% - 40px);
	
	background-color: #3746a3;
	padding: 40px 40px 46px;
	border-radius: 45px;
	
	overflow: hidden;
	overflow-y: scroll;
	z-index:999;
}

.mm_lightbox .mm_lightbox_content_close,
.btw_popup_close{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	
	position: absolute;
	right: 20px; top: 20px;
}

.mm_lightbox .mm_lightbox_content_close_btn,
.btw_popup_close_icon {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='b90d1f74-273b-44b9-b74d-dd4bec25aeaa' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 376 391.28'%3E%3Cpath class='cls-1' d='M247.85,9.15C132.87-28.96,24.87,57.26,3.76,169.81c-22.96,105.46,62.32,222.12,172.62,221.46,215.97-5.94,281.67-305.08,71.48-382.12ZM174.05,344.03c-67.46,2.2-114.87-57.53-125.92-119.52-10.41-65.43,42.32-160.31,109.16-175.66,55.35-9.57,116.07,8.84,147.76,57.23,23.3,35.02,30.56,78.32,19.96,119.02-17.3,67.15-80.44,121.07-150.96,118.93h0ZM258.67,110.05c-14.22-11.33-22.72-4.07-29.32,2.89-16.44,17.33-30.49,32.28-47.5,50.59-.87.86-2.28.85-3.14-.02-.01-.01-.03-.03-.04-.04-14.01-14.92-23.24-35.07-39.33-48.13-4.23-4.78-11.04-6.32-16.91-3.81-13.82,5.82-26.87,17.68-16.49,31.42,6.59,8.73,12.9,18.08,19.16,26.33,7.33,9.67,13.66,17,20.82,27.16,4.56,6.46,5.67,4.83-4.16,16.33-10.37,11.22-20.17,22.95-29.36,35.15-4.32,5.47-10.78,10.61-11.8,17.65-1.35,10.96,10.69,22.31,20.16,25.81,10.95,3.76,19.1-6.65,25.96-13.36,9.8-10.22,17.75-21.05,27.34-31.28,4.6-5.07,6.47-.46,11.84,6.21,8.18,10.15,24.45,32.91,35.32,40,6.2,4.37,16.49-.5,21.1-4.69,7.58-6.89,14.39-16.81,6.72-28.15-11.21-16.57-20.02-28.1-30.94-43.77-8.88-12.74-9.53-12.59-2.1-21.44,7.99-9.51,28.2-33.36,41.09-47.74,9.68-10.8,16.42-25.26,1.56-37.11Z' style='fill: %233746a3'/%3E%3C/svg%3E");
	background-size: 45px 45px;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba(121, 147, 226, 0.5);
	
	height: 60px;
	min-height: 60px;
	width: 60px;
	min-width: 60px;
	border-radius: 50%;
	z-index: 999999999;
	cursor: pointer;
	
	transition: background-color .4s;
}

.mm_lightbox .mm_lightbox_content_close_btn:hover,
.btw_popup_close_icon:hover {
	background-color: rgba(121, 147, 226, 1);
}

.mm_lightbox .mm_lightbox_content_scroll_container {
    position: relative;
	height: 100%;
	/* background-color: #7993e2; */
	border-radius: 45px;
	
	max-height: calc(100% - 40px);
}

.mm_lightbox .mm_lightbox_content {
	width: 100%;
	/* height: 100%; */
	padding: 40px 0;
}

@media screen and (max-width: 575px) {
	.mm_lightbox .mm_lightbox_content_container {
		max-height: calc(100% - 100px);
	}
}