/* CSS Document */

.TestSize{
    /*background-color: #c5c5c5;*/
    width: 100%;
}
.PasswordValidation_NoMatch
{
	background-color:#F00;
	font-weight:bold;
	width:50%;
	text-align:center;
	color:#FFFFFF;
}
.PasswordValidation_Match
{
	background-color:#0F0;
	font-weight:bold;
	width:50%;
	text-align:center;
	color:#000000;
}

.custom_invalid {
    background:url(../img/cancel.png) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:#ec3f41;
}
.custom_valid {
    background:url(../img/accept.png) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:#3a7d34;
}

#validate_email
{
    position: fixed;
    top: 1em;
    right: 1em;
    padding:15px;
    background:#FBC1C2;
    font-size:.875em;
    border-radius:5px;
    box-shadow:0 1px 3px #ccc;
    border:1px solid #ddd;
}

#validate_email h4 
{
    margin:0 0 10px 0;
    padding:10px;
    font-weight:normal;
}


#pswd_info
{
    position: fixed;
    top: 1em;
    right: 1em;
    padding:15px;
    background:#FBC1C2;
    font-size:.875em;
    border-radius:5px;
    box-shadow:0 1px 3px #ccc;
    border:1px solid #ddd;
}

#pswd_info h4 
{
    margin:0 0 10px 0;
    padding:10px;
    font-weight:normal;
}

#success
{
    position: fixed;
    top: 1em;
    right: 1em;
    padding:15px;
    background:#AAF3AD;
    font-size:.875em;
    border-radius:5px;
    box-shadow:0 1px 3px #ccc;
    border:1px solid #ddd;
}

#success h4 
{
    margin:0 0 10px 0;
    padding:10px;
    font-weight:normal;
}

.Notify_Container 
{
    display: flex;
    height: 50px;
    align-items: center;
}
.Notify_Icon {
    flex: 0 0 50px;
}
.Notify_Text 
{
    flex: 1;
    text-align: left;
    align-items: center;
}

/*
.Notify_Container
{
    height: 50px;
    vertical-align: text-bottom;
    border: #ccc thin solid;
}
.Notify_Icon 
{
    float: left;
    width: 50px;
    height: 50px;
    text-align: right;
    vertical-align: text-bottom;
    display: inline;
}

.Notify_Text 
{
    font-size:12px;
    padding-left:10px;
    float: left;
    text-align: left;
    display: inline;
    height: 50px;
    line-height: auto;
    vertical-align:middle;
}
*/
.A31HD_Notify_Success_Modal
{
    font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;
    padding: 50px 30px;
    
    font-size: 12px;
    position: fixed;
    top: 40%;
    right: 26%;
    z-index: 2147483647;
    font-weight:bold;
    
    background:#AAF3AD;
    
    border: 1px solid #c5c5c5;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}