﻿.input-validation-error {
    border: 1px solid #AC004A !important;
}

.field-validation-error, .field-validation-error span {   
    color: #AC004A !important;
    display: none;
    font-size: 14px;    
}
.field-validation-error {
    display: block;
}

/*.valid {    
    border: 1px solid #ddd !important;
}*/

.validation-summary-errors > ul {
    color: #AC004A;
    font-weight: bold;
    list-style: none outside none;
    text-align: center;
    font-weight: normal;
    font-size: 22px;
}

.sucessmsg
{
     background: none repeat scroll 0 0 #57D740;
     border-radius: 5px;
     color: #FFFFFF;
     opacity: 1;
     min-height: 30px;
     margin-bottom: 5px;
     text-align: center;
     width: 50%;
}

.errormsg
{
     background: none repeat scroll 0 0 #AC004A;
     border-radius: 5px;
     color: #FFFFFF;
     opacity: 1;
     min-height: 30px;
     margin-bottom: 5px;
     text-align: center;
     width: 50%;
}

input[type='text'].error{
    border: 1px solid #AC004A !important;
}

.error{
    color: #AC004A;
}

.field-validation-error {
    display: inline-block !important;
    background-color: #CE5454;
     /*background-color: #510a65;*/
    padding: 10px;
    color: #fff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
}

.field-validation-error:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
     border-bottom: 10px solid #CE5454;
    /*border-bottom: 10px solid #CE5454;*/
    position: absolute;
    left: 15px;
    top: -8px;
    content: '';
}

.field-validation-error, .field-validation-error span {
    color: #fff !important;
    display: none;
    font-size: 14px;
}
  
input.valid 
{
    background: url("/images/ico_validation.png") no-repeat scroll right -55px #FFFFFF;
    border: 1px solid #ddd !important;
}

input.error,
input.input-validation-error {
    border: 1px solid #AC004A !important;
    background: url("/images/ico_validation.png") no-repeat scroll right 12px #FFFFFF;
}

label.error {   
    display: inline-block;
    background-color: #e64444;
    padding: 10px;
    color: #ffffff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
    font-weight: normal;
}

label.error:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    /*border-bottom: 10px solid #510a65;*/
     border-bottom: 10px solid #e64444;
    position: absolute;
    left: 15px;
    top: -8px;
    content: '';
}

.login_error{
    color: #AC004A;
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
}

.login_error_text{
    font-size: 16px;
}

.login_error_box strong {
    font-size: 16px;
}

.login_logo{
    width: 200px !important;
    height: auto;
}
.hidden{
    display: none;
}

span.error {
    display: inline-block;
    background-color: #e64444;
    padding: 10px;
    color: #ffffff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
    font-weight: normal;
}

span.error:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    /* border-bottom: 10px solid #510a65; */
    border-bottom: 10px solid #e64444;
    position: absolute;
    left: 15px;
    top: -8px;
    content: '';
}
.field-validation-error1 {
    color: red;
}

span.error1 {
    display: inline-block;
    background-color: #ce5454;
    padding: 10px;
    color: #ffffff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
    font-weight: normal;
}

span.error1:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    /* border-bottom: 10px solid #510a65; */
    border-bottom: 10px solid #ce5454;
    position: absolute;
    left: 15px;
    top: -8px;
    content: '';
}

.validation-summary-errors ul > li {
    color: #CE5454;
    font-size: 18px;
    font-weight: 500;
}

#overlay {
    background: rgba(255,255,255,0.7);
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
}

.spinner {
    margin: 0 auto;
    height: 64px;
    width: 64px;
    animation: rotate 0.8s infinite linear;
    border: 5px solid #4eb8f3;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}