@CHARSET "UTF-8";
.shadow
{
	-webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    4px 4px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         4px 4px 5px 0px rgba(50, 50, 50, 0.75);
}
.centerofscreen
{
	position: fixed;

	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.horizontalcenter
{
	position: fixed;

	left: 50%;
	transform: translate(-50%);
}
.verticalmiddle
{
	position: fixed;

	top: 50%;
	transform: translateY(-50%);
}
.popupcontent
{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height:100%;
	z-index: 9999;

	visibility: hidden;
}
.pagemask
{
	position: fixed;

	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-color: #000000;

	visibility: hidden;
	
	z-index: 9998;
}
.pagemaskloader
{
	position: fixed;

	width: auto;
	border-radius: 5px;
	padding: 2% 2% 2% 2%;
	opacity: 1.0;

	visibility: hidden;
	
	background-color: #ffffff;
	z-index: 9999;
}
.popupouterlarge, .popupoutersmall, .popupoutermedium
{
	position: relative;

	width: 750px;
	padding: 0.5% 0.5% 0.5% 0.5%;

	height: 85%;
/**	max-width: 825px;
	max-height: 800px;*/

	background-color: #ffffff;
	z-index: 9999;
}
.popupoutermedium
{
	width: 400px;

	height: 50%;
}
.popupoutersmall
{
	width: 400px;

	height: 25%;
}
.popupinner
{
	position: relative;

	left: 0%;
	width: 100%;
	border: 2px solid rgba(195, 202, 210, 0.6);
	border-radius: 5px;
	padding: 2% 2% 2% 2%;
	opacity: 1.0;
	
	height: 100%;
/**	min-width: 745px;
	max-width: 825px;
	min-height: 680px;
	max-height: 100%;*/

	overflow-y: auto;
	
	background-color: #ffffff;
	z-index: 9999;
}
.popupinner hr
{
	margin: 8px 0px 8px 0px;
}
.popupinner p
{
	margin: 0.8%px 0px 4px 0px;
}
.headerLoading, .headerLoadingSolid
{
	position: fixed;
	top: 0px;
	left: 100%;
	width: 100%;
	border-top: 2px solid #FF0000;
}
.headerLoadingSolid
{
	left: 0%;
	border-color: #337ab7;
}

.notifications{
    position: fixed;
    right: 15px;
    bottom: 15px;
    max-height: 200px!important;
    min-width: 320px;
    z-index: 9999;
    overflow: auto;
	padding: 5px;
}

.notifications>div{
    margin-bottom: 10px;
    position: relative;
    max-height: 200px!important;
    min-width: 320px;
    z-index: 9999;
    overflow: auto;
    
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    padding: 12px;
    border-radius: 10px;
	
	background: #fff;
}

.notifications>div:last-child{
	margin-bottom: 0px;
}

.messageok,
.messagefail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.messageok:before,
.messagefail:before {
    content: "";
    display: block;
    width: 5px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    
    background: #88aa00;
}

.messagefail:before {
  background: #ffbb00;
}

.messageok>img,
.messagefail>img{
	
}

.messageok p,
.messagefail p{
	margin: 0;
	font-size: 14px!important;
	    color: #000;
}