.custom_modal {
	font-family: "Times New Roman";
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 1000;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	display: none;
}

.custom_modal_content {	
	position: relative;
	background-color: transparent;
	top: 25%;
	width: 330px;
	margin: auto; padding: 0;
	-webkit-animation-name: animate_modal;
    -webkit-animation-duration: 0.4s;
    animation-name: animate_modal;
    animation-duration: 0.6s;
    box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
    background:#b8d2c7;
}

.custom_modal_header {
	background-color: #d65106;
	color: #fff;
	font-size: 14px;
	/*line-height: 40px;*/
	padding: 8px 0;
	padding-left: 12px;
	border-bottom: 1px solid #eee;
}

.custom_modal_header .img_close {
	float: right;
	margin: 5px 2px 0 0;
	background: transparent;
	opacity: 0.5;
	padding: 0 10px;
	border: none;
	cursor: pointer;
	width: 20px;
	height: 20px;
	background-image:url("/assets/_sc_campus/img/home-close-icon.png");
	background-repeat: no-repeat;
	display: block;
}

.custom_modal_header .img_close:hover {
	opacity: 0.7;
}

.custom_modal_body {
	padding: 10px 10px 10px 10px;
	font-size: 12px;
	background-color: #fff;
}

.custom_modal_body label {
	font-weight: 100;
}

.custom_modal_footer {
	position: absolute;
	background-color: #eff3f8;
	width: 100%; height: 40px;
	left: 0;
	bottom: -40px;
	padding: 5px 8px 0 0;
	border-top: 1px solid #eee;
}


/*- - - - - - - - - -*/
.user_info_modal_content {
	position: relative;
	background-color: transparent;
	top: 50px;
	width: 460px;
	margin: auto; padding: 0;
	-webkit-animation-name: animate_modal_top;
    -webkit-animation-duration: 0.4s;
    animation-name: animate_modal_top;
    animation-duration: 0.4s;
    box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
    background:#b8d2c7;
}

.user_info_modal_body {
	font-size:13px;
	border-top:1px solid #eee;
	width:100%;
	height:525px;
	overflow-y:scroll;
	padding: 5px 10px 10px 10px;
	background-color: #fff;
}


/*- - - - - - - - - -*/
[id^=present_modal] .custom_modal_content {
	position: relative;
	background-color: transparent;
	top: 50px;
	width: 570px;
	margin: auto; padding: 0;
	-webkit-animation-name: animate_modal_top;
    -webkit-animation-duration: 0.4s;
    animation-name: animate_modal_top;
    animation-duration: 0.4s;
    box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
    background:#b8d2c7;
}

[id^=present_modal] .custom_modal_content td {
	border:1px solid #ccc;
	font-size:15px;
}

[id^=present_modal] .custom_modal_header {
	text-align: left;
	color: #fff;
	font-size: 14px;
	padding-left: 12px;
	background-color: #e43a45;
	border-top: 1px solid #ccc;
}

[id^=present_modal] .custom_modal_body {
	font-size:13px;
	border-top:1px solid #eee;
	height:523px;
	overflow-y:scroll;
	padding: 5px 10px 10px 10px;
}

[id^=present_modal] .custom_modal_footer {
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -2px;
	padding: 5px 8px 0 0;
	border-top: 1px solid #eee;
}


@-webkit-keyframes animate_modal {
    from {top:-300px;} 
    to {top:25%; }
}

@keyframes animate_modal {
    from {top:-300px;}
    to {top:25%;}
}


@-webkit-keyframes animate_modal_top {
    from {top:-300px;} 
    to {top:50px; }
}

@keyframes animate_modal_top {
    from {top:-300px;}
    to {top:50px;}
}

.title_icon_pos {
    position: absolute;
    top: 5px;
    font-size: 22px;
    font-weight: bold;
    opacity: 0.6;
}