﻿html, body {
    margin-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
}

.input-validation-error {
    border: 1px solid #ff0039 !important;
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 0px;
    padding-right: 0px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 700px;
}*/
textarea {
    max-width: 100%;
}

.logo {
    padding-top: 5px;
}

.login {
    margin: 20px;
}

.navbar-default {
    background-color: #eee !important;
    border-color: #e7e7e7;
}
.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: red;
}

.dashsquare {
    height: 200px;
    min-height: 200px;
    padding: 10px;
    background-color: #eee;
}

input.input-sm {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position-y: 5px;
    background-position-x: 5px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADbSURBVDhP5ZI9C4MwEIb7//+BEDgICA6C4OQgBJy6dRIEB6EgCNkEJ4e3iT2oHzH9wHbpAwfyJvfkJDnhYH4kHDVKlSAigSAQoCiBKjVGXvaxFXZnxBQYkSlBICII+22K4jM63rbHSthCSdsskVX9Y6KxR5XJSSpVy6GbpbBKp6aw0BzM0ShCe1iKihMXC6EuQtMQwukzPFu3fFd4+C+/cimUNxy6WQkNnmdzL3NYPfDmLVuhZf2wZYz80qDkKX1St3CXAfVMqq4cz3hTaGEpmctxDPmB0M/fCYEbAwZYyVKYcroAAAAASUVORK5CYII=);
}

textarea {
    width: 100%;
    height: 90px;
}

.loader {
    border: 1.5em solid #f3f3f3; /* Light grey */
    border-top: 1.5em solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;   
    position: fixed;
    z-index: 999;
    height: 10em;
    width: 10em;    
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: grey;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.whitelink{
    color:#fff;
}