@charset "UTF-8";
/* CSS Document */
/*	+++++++++++++++++++++++++++++			*/
/* 	BANNERS & ALERT WINDOWS					*/


.show-floatingStatusTextContainer{
	position: fixed;	
	background-color: #fff;
	opacity: 1.0;
	/*bottom: 0px;*/
	z-index: 9999999; 
	
	height: 40px;
	width: 30%;
	margin-left: 35%;
	margin-right: 35%;
	display: none;
	letter-spacing:  0px;
	
	
	/*line-height: 100%;*/
	box-shadow: 0px 8px 10px rgba(0,0,0,0.2);
	/*top: 20%;*/
}

	.floatingStatusText {
		color: var(--grayColor-dark);
		text-align: center;
		font-size: 0.9em;
		font-style: italic;
		height: 100%;
		}
	
	
		/*Success (checkbox) or Unsuccessful */
		.floatingStatusIcon-Success {
			color: #fff;
			background-color: var(--submediantColor-light);
		}	


		.floatingStatusIcon-Error {
			color: #fff;
			background-color: var(--dominantColor-dark);
		}	
		
				



/*positive Confirmations banners/windows 	*/
.alert-secondary {
	background-color: var(--tonicColor-dark);
	color: var(--whiteColor);
}

/*positive Error banners/windows */
.alert-danger {
	background-color: var(--dominantColor);
	color: var(--whiteColor);
}

.alert-Window-Header {
font-size: 2.5rem;

}

/*dropdown banner */
.show-Banner{
	position: fixed;	
	/* bottom: 0px;*/
	z-index: 999999; 
	width: 100%;
	display: none;
	letter-spacing:  0px;
	line-height: 100%;
	box-shadow: 0px 8px 10px rgba(0,0,0,0.2);
}


/*alert window */
.alert-Window {
	position: fixed; 
	z-index: 999999; 
	width: 35%;
	height: auto;
	margin: 4% auto;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0px 8px 10px rgba(0,0,0,0.2);
	letter-spacing:  0px;
	line-height: 100%;
	display: none;
}

	
		