:root {
    --first: #2B2F3E;
    --hover: #1e87f0;
    --second: #6C85AE;
    --strong: #222;
    --strong-contrast: #EEE9ED;
    --alarm: #f0506e;
    --stand-out: #FFBA3E;
    --side-color: #EFEFEF;
    --background: #fafafa;
    --orange: #EBAB39;
    --light-orange: #FFBA3E;
    --dark-gray: #666;
}

/*Tags*/

body {
    height: 100%;
}

form {
    background-color: white;
}

label {
    font-size: 1rem;
    color: var(--strong);
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 13px;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #5eb5e0;
    #background-color: #1e87f0;
    color: #ffffff;
    text-align: left;
}

.styled-table thead tr a:hover{
    background-color: #5eb5e0;
    #background-color: #1e87f0;
    color: #ffffff;
}

.styled-table th {
    padding: 10px 15px;
    font-weight: bold;
}
.styled-table td {
    padding: 10px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #5eb5e0;
    #border-bottom: 2px solid #1e87f0;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.styled-table td:first-child, .styled-table th:first-child {
    padding-left: 5px;
}


label.required::after {
    content: " *";
    color: var(--alarm);
    font-weight: bold;
}

nav {
    max-height: 4rem;
}

textarea {
    min-height: 120px;
}

/*Classes*/
.app-container {
    display: grid;
    grid-template-areas:
    "topbar"
    "content"
    "footer";
    align-items: start;
}

.app-content {
    grid-area: content;
    padding: 10px 20px;
    height: 100%;
}

.attachment-link {
    color: var(--orange);
}

.attachment-link:hover {
    color: var(--light-orange);
}

.branding {
    color: #333;
    /*color: #fafafa;*/
    font-size: 1.6rem;
}

.branding:hover {
    color: var(--hover);
}

.ck-editor__editable {
    min-height: 250px;
}

.file-field {
    color: var(--orange);
    line-height: 1.5rem;
    font-size: 1rem;
}

.file-field:hover {
    color: var(--light-orange);
}

.file-field::before {

}

.footer {
    position:fixed;
    bottom: 2px;
    z-index: 100;
    background-color: white;
    min-width: 100%;
}

.field-edit-renderer label {
    font-size: 1rem;
}

.field-form-label {
    font-size: 1rem;
}

.form-row {
    padding: 1rem 0.5rem;
}

.field-render {

}

.field-render .field-prompt {

}

HEAD
.form-information h4 {
    color: var(--dark-gray);
    font-weight: 500;
}

.logo {
    max-height: 100%;
    padding: 15px;
}

.group-bookmark {
    border-left: 2px solid;
    margin-right: 2px;
}

.section-header {
    /*max-height: 5rem;*/
}

.section-subheader {
    font-size: 1rem;
    color: var(--second);
}

.section-header > .section-title {
    margin: 0;
}

.section-title {
    font-size: 2.25rem;
    color: var(--first);
}

.side-nav {
    grid-area: side;
    height: 100vh;
    background-color: var(--side-color);
    border-right: var(--first) 1px solid;
}

.side-nav .side-nav-header{
    color: var(--first);
    text-transform: uppercase;
    margin: 10px 0;
    padding-top: 1rem;
    border-top: var(--second) double 1px;
}

.side-nav a {
    color: var(--first);
}

.side-nav a:hover {
    color: var(--hover);
}

.step-definition {
    height: 50px;
    width: 150px;
    border: #726F6F 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.top-bar {
    grid-area: topbar;
    border-bottom: var(--first) 1px solid;
}

.workflow-level {
    display: grid;
    grid-row-gap: 100px;
    align-content: center;
    margin-bottom: 70px;
}

.workflow-step-1 {
    grid-template-columns: repeat(1, 200px);
}

.workflow-step-2 {
    display: grid;
    grid-template-columns: repeat(2, 200px);
}

.normal-text {
    font-size: 1rem;
}

.tag {

    border-radius: 3px 0 0 3px;

    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}


.tag:hover {
    background-color: crimson;
    color: white;
}

.tag:hover::after {
    border-left-color: crimson;
}

.stand-out {
    color: var(--orange);
}

.first {
    color: var(--first);
    font-family: Impact, Charcoal, sans-serif;
}

.menu-item > a {
    font-size: 1rem !important;
}

.colorblue {
    color: var(--hover);
}

.heigthauto {
    height: auto;
}

.heigthauto input[type=checkbox] {
    clear: left;
    float: left;
}

.heigthauto label {
    clear: right;
    float: left;
}

.quote-text {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.underline {
    text-decoration: underline;
}

.font-one {
    font-size: 1rem;
}

.step-title {
    color: var(--orange);
    font-weight: bold;
    font-style: italic;
}

.project-title {
    color: var(--first);
}

.category-label {
    font-size: 1rem;
    color: var(--dark-gray);
    padding: 0.5rem;
    border: 1px solid var(--dark-gray);
    background-color: white;
}