/* Created by Arian Stolwijk <http://www.aryweb.nl> */

.MooDialog {
	position: fixed;
	width: 400px;
	min-width: 400px;
	height: 100px;
	margin: -150px 0 0 -150px;
	top: 50%;
	left: 50%;
	z-index: 50000;

	//background: #eef5f8;
    background: #FFF;
	color: black;
	padding: 10px;
        /*tactic*/ 
	border-top-left-radius: 6px; 
	border-top-right-radius: 6px; 
        border-bottom-left-radius: 2px; 
	border-bottom-right-radius: 2px;
    
	/*border-radius: 7px; */
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.MooDialogTitle {
	padding-top: 30px;
}

.MooDialog .content {
	height: 100px;
}

.MooDialog .title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 3px 10px;
	//background: #b7c4dc;
    background: #EEE;
	border-bottom: 1px solid #a1aec5;
	font-weight: bold;
	text-shadow: 1px 1px 0 #fff;
  	color: black;
        /* tactic */
	border-top-left-radius: 6px; 
	border-top-right-radius: 6px; 
	/*-moz-border-radius: 7px; 
	-webkit-border-radius: 7px; */
}

.MooDialog .close {
	//background: url(dialog-close.gif) no-repeat;
	width: 16px;
	height: 16px;
	display: block;
	cursor: pointer;
    /* tactic */
	top: 2px;
	right: 4px;
	position: absolute;
}

.MooDialog .close::before {
    font-family: "Font Awesome 5 Free";
    content: "\f410"
}

.MooDialog .buttons {
	text-align: right;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}

.MooDialog input {
	margin: 0 5px;
}

.MooDialog .iframe {
	width: 100%;
	height: 100%;
}

.MooDialog .textInput {
	width: 200px;
	float: left;
}

.MooDialog .MooDialogAlert,
.MooDialog .MooDialogConfirm,
.MooDialog .MooDialogPrompt,
.MooDialog .MooDialogError {
	background: url(dialog-warning.png) no-repeat;
	padding-left: 40px;
	min-height: 40px;
}

.MooDialog .MooDialogConfirm,
.MooDialog .MooDialogPromt {
	background: url(dialog-question.png) no-repeat;
}

.MooDialog .MooDialogError {
	background: url(dialog-error.png) no-repeat;
}

.MooDialog .MooDialogInfo {
	background: url(dialog-information.png) no-repeat;
        padding-left: 50px;
	min-height: 46px;
}
