﻿@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 5px;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

body.login {
    background-color: lightgray;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.linkblue:link {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s;
}

.linkblue:visited {
    color: #007bff;
}

.linkblue:hover {
    color: #007bff;
    text-decoration: underline;
}

.linkblue:active {
    color: #007bff;
}

.linkwhite {
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.linkwhite:hover, linkwhite:focus {
    color: white;
    text-decoration: underline;
}

.forgotpassword {
    color: blue;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.forgotpassword:hover, forgotpassword:focus{
    text-decoration: underline;
}

.center-screen {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 550px;
    height: 600px;
    border: solid #000000 2px;
    border-collapse: separate;
    border-radius: 6px;
    -moz-border-radius: 6px;
    background-color: white;
}

.errorfont {
    color: red;
    font-size: 12px;
}

.orangefont {
    color: #D76B05;
    font-size: 12px;
}

.greenfont {
    color: #43AD2E;
    font-size: 16px;
}

.grayfont {
    color: #CCCCCC;
    font-size: 16px;
}

.helpfont {
    color: black;
    font-size: 12px;
}

.navbar {
    padding: 0px 0px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.navbar-nav > li {
    margin-left: 20px;
    margin-right: 20px;
}

.navbar .dropdown-item {
    color: #fff;
}

.navbar .dropdown-item:hover {
     background: #EEE8AA;
     color: black;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.breadcrumb {
    height: 35px;
    color: darkgray;
    font-size: 18px;
}

.required {
    border-color: #eda8a8;
}

.portlettitle {
    font-size: 16px;
    font-weight: normal;
    color: #43AD2E;
}

.workbenchtable {
    border-spacing: 2px;
    border: 1px solid gray;
}

.workbenchtable th {
    background-color: #43AD2E;
    font-size: 10px;
    color: white;
}

.workbenchtable td {
        font-size: 10px;
        color: black;
}

.detailtable {
    width: 100%;
    border: none;
}

.detailtable tr {
    padding: 5px;
    align-content: start;
    vertical-align: top;
 }

.detailtabletrheader {
    background-color: darkgray;
    color: white;
}

.detailtable td {
    padding: 5px;
    align-content: start;
}

.detailtablefieldlabel {
    width: 15%;
    background-color: darkgray;
    color: white;
}

.reporttable {
    width: 1250px;
    border: none;
}

.reporttable th {
    color: white;
    background-color: #43AD2E;
    font-size: 12px;
    text-align: center;
}

.reporttable td {
    font-size: 12px;
    text-align: left;
}

.reporttable tr:nth-child(even) {
    background-color: #C9C9C9;
}


