.multimodal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #031c24c4;
	left: 0px;
	top: 0px;
	z-index: 100000;
}

.multimodal > div {
	width: 90%;
	background: rgb(248, 248, 248);
	height: 90%;
	margin: auto;
	border-radius: 3px;	
}

.multimodal-title {
	width: 100%;
	background: linear-gradient(to top, rgb(27, 147, 187), #24b2d8);
	font-family: montserrat;
	color: white;
	text-align: center;
	font-size: 16px;
    border-bottom: 1px solid #00000052;
    position: relative;
}

.multimodal-title .fa-times {
	background: #000;
	border-radius: 50px;
	color: #aed0db;
	font-size: 20px;
	padding: 4px 8px;
    position: absolute;
    cursor: pointer;
	right: -8px;
	top: -8px;
	opacity: 0.6;
}

.multimodal-title .fa-times:hover { opacity: 1; }

.multimodal-content { overflow: hidden; }

