﻿body {
    background-color: #D7E2EA;
    min-width: 1200px !important;
}


#nav {
    background-color: #547b98;
}


#header {
    background-color: #547b98;
    border-bottom: 1px solid #05420e;
    padding-bottom: 5px;
}


.navbar .brand {
    display: inline-block;
    font-size: 18pt;
    color: #e9f5ee;
    text-shadow: 0 1px 0 #183724;
    margin-left: 20px;
    margin-top: 4px;
}




#header #nav {
    display: inline-block;
    margin-left: 20px;
    vertical-align: top;
}

    #header #nav div {
        display: inline-block;
        padding: 10px 15px;
        color: #ffffff;
        font-size: 11pt;
        margin: 0px 2px;
        margin-top:5px;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
    }

    #header #nav .highlight {
        border-left: 1px solid rgba(255,255,255,.4);
        border-right: 1px solid rgba(255,255,255,.4);
        background-color: rgba(255,255,255,.1)
    }

    #header #nav div:hover {
        border-left: 1px solid rgba(255,255,255,.4);
        border-right: 1px solid rgba(255,255,255,.4);
        background-color: rgba(255,255,255,.15);
        cursor: pointer;
    }



/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* 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: 280px;
}




.base-container {
    background-color: #F5F8FA;
}

.container {
    margin-right: 5px;
    margin-left: 5px;
}

@media (min-width: 1200px) {
    .container {
        width: auto;
        min-width: 1170px;
    }
}


.ToDo {
    font-size: 30pt;
    color: rgba(0,0,0,.2);
    position: absolute;
}

.panel {
    padding-bottom: 20px;
    margin-bottom: 5px;
}

.panel-shaded {
    background-color: #FFF9EA;
}



.navbar-brand {
    margin-top: -15px;
}

.sectionCell, .MDEsectionCell { max-width:10px;}

.reviewCell.Pass, .sectionCell.Pass { background-color: #aec3ad; }
.reviewCell.NotPass, .sectionCell.NotPass {background-color: #e5b7b7;}
.reviewCell.InProgress, .sectionCell.InProgress {background-color: #e5ecf2;}
.reviewCell.SeeComment, .sectionCell.SeeComment { background-color: #f7cf9f;}

.MDEreviewCell.accepted, .MDEreviewCell.Pass, .MDEsectionCell.accepted, .MDEsectionCell.Pass { background-color: #81aa6b;}
.MDEreviewCell.rejected, .MDEreviewCell.NotPass, .MDEsectionCell.rejected, .MDEsectionCell.NotPass { background-color: #ce6161;}
.MDEreviewCell.InProgress, .MDEsectionCell.pending { background-color: #e5ecf2; }

button.bi-x-circle{
    cursor: pointer;
    border:none;
    padding:0px;
    margin:0px;
    background-color: transparent;  

}


button.bi-x-circle:hover {
        color: #ce6161;
}





#siteBubble {
    margin-top: 2px;
    margin-right: 5px;
    color: #345E7E;
}

    #siteBubble a {
        font-size: 9pt;
        color: #345E7E !important;
    }


#logoutForm a {
    font-size: 9pt;
    color: #345E7E !important;
    margin-top: 12px;
    margin-left: 10px;
}


.row-main {
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 10px;
    margin-bottom: 20px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}



.trHover {
    cursor: pointer;
}

    .trHover:hover {
        background-color: #dcdfc5 !important;
    }

.trHighlight {
    background-color: #7AB69B !important;
}


.bar {
    fill: steelblue;
}


.dim {
    background-color: #eee;
    pointer-events: none;
}


.loader {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    border: 5px solid #ccc;
    border-bottom-color: #666;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 