/* ************ The Modal Popup ************ */

.Modal {
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	z-index: 1001;
    display: none;
	overflow: auto;
    position: fixed;
	cursor: default !important;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.Modal-Content {
	top: 0%;
	left: 0;
    right: 0;
    margin: auto;
	width:fit-content;
	height:fit-content;
    border: 1px solid #888;
	position: absolute;
	background-color: #fefefe;
	border-radius: 8px;
	-webkit-box-shadow: -3px 2px 28px 1px rgba(0,0,0,0.33);
	-moz-box-shadow: -3px 2px 28px 1px rgba(0,0,0,0.33);
	box-shadow: -3px 2px 28px 1px rgba(0,0,0,0.33);
	border:1px solid rgba(0,0,0, 0.5);
	/* transform: translateY(-50%); */
	
}

.indicator-popup{
	transform: translateY(-50%);
}

.Modal-Title {
	top: 50%;
	left: 20px;
	font-size: 22px;
	font-weight:bold;
	position: absolute;
	transform: translateY(-50%);
	color:rgba(4, 74, 163, 1.0);
}

.Modal-SubTitle {
	font-size: 16px !important;
	font-weight:bold;
	color:rgba(4, 74, 163, 1.0);
}

.Modal-Header {
	padding: 25px 55px 25px 10px;
	font-size: 13px;
	position: relative;
	border-radius: 4px 4px 0px 0px;
	border-bottom: 1px solid #e5e5e5;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(229, 229, 229);
}

.Modal-Body {
    width: 98%;
	padding: 25px 25px;
	font-size: 14px;
	margin-left: -5px;
	overflow-wrap: break-word;
}

.Modal-Body a {
	color: #469FFF;
	font-size: 14px;
}

.Modal-Body p {
	font-size: 14px;
}

.Modal-Body a:hover {
	color: #4682b4;
}

.close-btn {
	top: 55%;
	right: 15px;
	color: #000;
	font-size: 28px;
    font-weight: bold;
	position: absolute;
	transform: translateY(-50%);
}

.close-btn:hover, .close:focus {
    color: #000;
    cursor: pointer;
	opacity: 0.5;
	text-decoration: none;
}

/* ******* End Modal Popup ******* */