.message_box {
	box-sizing: border-box;
	position:fixed;
	top:0px;
	left:0px;
	visibility: hidden;
	width:450px;
	height:auto !important;
	text-align:left;
	background-color: #FFFFFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding:20px 20px 80px 20px;
	z-index:1000;
}

.message_box h3 {
	margin-bottom:10px;
}

#overlay {
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color:#000000;
	opacity: 0.6;
	display:none;
	z-index:999;
	cursor:wait;
}

.mb_button_container {
	position:absolute;
	bottom:20px;
	right:20px;
}

.left_side_mb_button_container {
	position:absolute;
	bottom:20px;
	left:20px;
}

.message_box_internal_scroll {
	 overflow-y: auto;
	 overflow-x: hidden;
}