#message_div {
    display: none;
    max-height: 15px;
}
#file {
    margin-right: 8px;
}

.overlay {
    background-color: #EFEFEF;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0px;
    left: 0px;
    opacity: .5; /* in FireFox */
    filter: alpha(opacity=50); /* in IE */
}

.loading-class {
    position: fixed;
    top: 45%;
    left: 43%;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #f28c38;
    width: 150px;
    height: 150px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;

}

form#frmAddTheme ol li span.validation-error {
    top: 27px;
}

form ol li span.custom-validation-error {
    font-size: 12px;
    display: block;
    position: absolute;
    top: 27px;
    left: 150px;
    margin-top: 6px;
    color: #aa4935;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
