/***********************************************************************************************************************
MessageBox - A jQuery Plugin to replace Javascript's window.alert(), window.confirm() and window.prompt() functions
Author          : Gaspare Sganga
Version         : 3.2.2
License         : MIT
Documentation   : https://gasparesganga.com/labs/jquery-message-box/
***********************************************************************************************************************/
/*
You can customize your MessageBox style directly in this file 
or override some classes/styles using an external CSS file loaded after this.
*/


/* Overlay */
.messagebox_overlay {
	background-color    : rgba(255,255,255,0.6);
	z-index             : 9999;
}
.messagebox_overlay *:focus {
	outline : 0;
}

/* MessageBox */
.messagebox {
	font-family         : verdana, arial, helvetica, sans-serif;
	font-size           : 10pt;
	font-style          : normal;
	font-weight         : normal;
	text-align          : left;
	color               : #303030;
	background-color    : #fcfcfc;
	border              : 1px solid #6cb5b4;
	max-height          : 90%;  /* This value is useful only when "top" option is set to "auto" */
	max-width           : 90%;
	min-width           : 300px;
	border-radius: 7px;;
}

/* Title */
.messagebox_title {
	background-color    : #f5f5f5;
	border-bottom       : 1px solid #c8c8c8;
	padding             : 5px;
	text-align          : center;
	font-weight         : bold;
}

/* Content */
.messagebox_content {
	padding : 20px;
	font-size: 20px;
    color: #6cb5b4;
    font-family: neuehaasunica;
    font-weight: 100;
    line-height: 27px
}

/* Label for input */
.messagebox_content_label {
	width           : 100%;
	font-style      : italic;
	margin-top      : 10px;
	margin-bottom   : -5px;
}


/* Input (it applies to selects and textareas too) */
.messagebox_content_input {
	width           : 100%;
	margin-top      : 10px;
	padding         : 3px;
	color           : #303030;
	border          : 1px solid #909090;
	font-family     : inherit;
	font-size       : inherit;
	font-style      : normal;
	font-weight     : inherit;
	text-align      : left;
}
.messagebox_content_input:hover {
	border-color    : #707070;
}
.messagebox_content_input:focus {
	border-color    : #707070;
	box-shadow      : inset 0px 0px 3px #ffd540;
}
/* Select "fake placeholder" */
.messagebox_content_input_selectplaceholder {
	color   : #909090;
}
/* Textarea */
.messagebox_content_input_textarea {
	overflow-y  : auto;
}
/* Caption */
.messagebox_content_caption {
	width       : 100%;
	margin-top  : 15px;
	padding     : 5px 0;
}

/* Checkbox */
.messagebox_content_checkbox_wrapper {
	width       : 100%;
	margin-top  : 10px;
}
.messagebox_content_checkbox {
	margin-right    : 5px;
	vertical-align  : -2px;
}


/* Error */
.messagebox_content_error {
	background-color    : #fad0d5;
	color               : #a02020;
	margin-top          : 15px;
	margin-bottom       : -10px;
	padding             : 4px 6px;
	border-radius       : 2px;
}

/* Buttons */
.messagebox_buttons {
	background-color    : #f5f5f5;
	border-top          : 1px solid #c8c8c8;
	padding             : 10px 20px 0px 20px;
	text-align          : center;
}
.messagebox_buttons_button {
	font-family         : inherit;
	font-size           : inherit;
	font-weight         : bold;
	text-align          : center;
	min-width           : 75px;
	margin              : 0px 4px 10px 4px;
	padding             : 5px 10px;
	cursor              : pointer;
	color               : #404040;
	border              : 1px solid #c0c0c0;
	border-radius       : 2px;
	background: #6cb5b4;
	color: #fff;
	border-radius: 5px;
	padding: 0px 10px;
	box-shadow: unset !important;
	border: 2px solid #6cb5b4;
	line-height: 31px;
	font-family: neuehaasunica;
	text-transform: none;
	font-weight: bold;
}
.messagebox_buttons_button:hover {
}
.messagebox_buttons_button:active {
}
.messagebox_buttons_button::-moz-focus-inner {
	padding : 0;
	border  : 0;
}