@charset "UTF-8";

/* Mensagens de Alerta */
.ssif-body #alert-box {
	display: block;
	position: fixed;
	float: none;
	left: 0px;
	right: auto;
	top: 0px;
	bottom: auto;
	width: 100%;
	height: 100%;
	min-width: 0px;
	min-height: 0px;
	max-width: none;
	max-height: none;
	margin: 0px;
	padding: 0px;
	background: transparent;
	color: #FFF;
	border: none;
	border-radius: 0px;
	box-sizing: border-box;
	box-shadow: none;
	font: inherit;
	line-height: normal;
	text-align: center;
	text-shadow: none;
	z-index: 999999;
}
.ssif-body #alert-box * {
	position: static;
	float: none;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	width: auto;
	height: auto;
	min-width: 0px;
	min-height: 0px;
	max-width: none;
	max-height: none;
	margin: 0px;
	padding: 0px;
	background: transparent;
	color: inherit;
	font: inherit;
	border: none;
	border-radius: 0px;
	box-sizing: border-box;
}

.ssif-body #alert-box #alert-blackout {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	background-color: rgba(0, 0, 0, .75);
	z-index: 0;
}

.ssif-body #alert-box #alert-messagebox {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: auto;
	min-width: 300px;
	min-width: 30vw;
	background: #FFF;
	color: #000;
	border: 1px solid #CCC;
	text-align: left;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.ssif-body #alert-box #alert-titlebox {
	display: block;
	background: #CCC;
	padding: 5px 10px;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
}

.ssif-body #alert-box #alert-textbox {
	display: block;
	padding: 5px 10px;
}
.ssif-body #alert-box #alert-textbox:empty {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	position: absolute !important;
	top: 0px !important;
	left: 0px !important;
	width: 0px !important;
	height: 0px !important;
	overflow: hidden !important;
}
.ssif-body #alert-box #alert-textbox a {
	color: #00F;
}
.ssif-body #alert-box #alert-textbox a:hover {
	color: #F00;
}

.ssif-body #alert-box #alert-buttons {
	display: block;
	padding: 5px 10px;
	text-align: right;
}

.ssif-body #alert-box #alert-close {
	display: inline-block;
	font-weight: bold;
	text-align: center;
	padding: 5px 16px;
	background: #EEE;
	color: #000;
	border: 1px solid #CCC;
	border-bottom-color: #444;
	border-right-color: #444;
	border-radius: 4px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, .25);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, .35);
	text-decoration: none;
	-webkit-transition: all 0.15s linear;
	-moz-transition: all 0.15s linear;
	-ms-transition: all 0.15s linear;
	-o-transition: all 0.15s linear;
	transition: all 0.15s linear;
}
.ssif-body #alert-box #alert-close:hover {
	background: #666;
	color: #FFF;
	border-color: #444;
	border-bottom-color: #000;
	border-right-color: #000;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, .25);
}
