﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    /*--hover-blue: #E6F4FD;*/
    --alternate-background: #e1e2e3;
    --hover-blue: #BCE8FB;
    --kaizen-blue: dodgerblue;
    --background: #eee;
    --border-1: #ddd;
    --border-2: #aaa;
    --green: #32b91d;
    --blue: #0065c8;
    --red: #eb2e2a;
    --yellow: #f5ff53;
    --purple: #B400FF;
    --orange: #FA5B0F;
    --header-height: 65px;
    --text-secondary: #999;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

h3 {
    margin: 0 0 5px 0;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    color: #323338;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 60px 0;
    padding: 0;
    font-size: 14px;
    background: var(--background);
}


header {
    width: 100vw;
    padding: 5px 0;
    margin: 0;
    box-shadow: rgba(0, 0, 0, .5) -1px 0 5px;
    background: white;
    position: fixed;
    top: 0;
    z-index: 10;
}

.footer {
    position: absolute;
    border-top: 1px solid #e5e5e5;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    background: var(--background);
    z-index: -1;
}

    .footer .container {
        max-width: 1200px;
        margin: 0 auto;
    }

.form {
    margin-top: 20px;
}

.w-40 {
    width: 40px;
    display: inline-block;
}

.w-100 {
    width: 100px;
    display: inline-block;
}

.w-120 {
    min-width: 120px;
    display: inline-block;
}

.w-150 {
    display: inline-block;
    width: 150px;
}

.w-200 {
    display: inline-block;
    width: 200px;
}

.w-300 {
    display: inline-block;
    width: 300px;
}


.btn {
    padding: 8px 15px;
    border-radius: 5px;
}

.btn {
    cursor: pointer;
}

.btn-primary {
    background: dodgerblue;
    color: white;
    border: 1px solid #777;
    font-weight: bold;
}

.btn-grey {
    color: #777;
    background-color: #eee;
    border: 1px solid #d9d9d9;
}

    .btn-grey:hover {
        background-color: #ddd;
    }

.btn-primary:hover {
    background: #0e70ff;
}

#top-bar {
    max-width: 1200px;
    margin: 0 auto;
}

#main {
    flex: 1;
    margin: 70px auto;
    padding: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 14px;
    color: #323338;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

input[type=date], input[type=text], input[type=password], textarea {
    padding: 5px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

textarea {
    font-family: 'Open Sans', sans-serif;
}

.material-icons {
    font-size: 18px;
    opacity: .75;
    user-select: none;
}

.material-icons.hide {
    display:none;
}
    .material-icons:hover {
        opacity: 1;
        cursor: pointer;
    }

.ml-20 {
    margin-left: 20px;
}


.form-field {
    display: flex;
    padding: 10px;
    align-items: center;
}

.form-input {
    flex-grow: 1;
    font-size: 14px;
}

.field-label {
    font-weight: bold;
    font-variant-caps: all-small-caps;
    font-size: 14px;
    align-items: center;
    text-align: right;
    padding-right: 10px;
}

.small-form-field {
    display: flex;
    padding: 10px;
}

.hide {
    display: none;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.center-page {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-banner {
    width: 180px
}

.text-button {
    display: inline-block;
    font-weight: 600;
    border: none;
    background: none;
}

    .text-button:hover {
        cursor: pointer;
    }

.text-button-underline {
    border-bottom: 1px solid #ccc;
}

    .text-button-underline:hover {
        border-bottom: 1px solid #777;
    }

.text-button-blue {
    color: dodgerblue;
}

.mt-10 {
    margin-top: 10px;
}

.text-button-grey {
    color: #ddd;
}

.alternate-rows .alternate:nth-child(odd) {
    background: var(--alternate-background);
}

.alternate-rows .alternate:nth-child(even) {
    background: var(--background);
}

.alternate-rows .alternate-hover:hover {
    background: var(--hover-blue);
    cursor: pointer;
}

.flex-outside {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.flex-right {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.flex-end {
    align-items: flex-end;
}

.flex-v-center {
    display: flex;
    align-items: center;
}

.flex-grow {
    flex-grow: 1;
}

.just-right {
    justify-content: right;
    text-align: right;
}

.vertical-center {
    align-items: center;
}

.section {
    margin-bottom: 40px;
    border: 1px solid #ddd;
}

.text-right-align {
    text-align: right;
}


.form-field .hover-icon {
    font-size: 18px;
    width: 20px;
    display: none;
}

.form-field .edit-indicator {
    font-size: 18px;
    width: 20px;
    display: none;
}

.form-field:hover .hover-icon {
    display: inline-block;
}

.form-field:hover .edit-indicator {
    display: inline-block;
}

.show-on-hover {
    visibility: hidden;
}


.hover-show-container:hover .show-on-hover {
    visibility: visible;
}

select {
    padding: 5px;
}

option {
    padding: 5px;
}

.editable:hover {
    background: #e5e5e5;
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

.general-label {
    font-weight: bold;
    font-variant-caps: all-small-caps;
    font-size: 14px;
    margin-right: 5px;
    line-height: 14px;
}

.input-error {
    background: #fcdddc;
    border: 1px solid #777;
}

.associates {
    color: dodgerblue;
    font-weight: bold;
}

.dashboard-item-container {
    width: 150px;
    margin: 5px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, .5) 0 0 3px;
}

.dark-mode .dashboard-item-container {
    box-shadow: rgba(255, 255, 255, .5) 0 0 3px;
}

.dashboard-item-value {
    font-size: 20px;
    font-weight: bold;
}


.red-button {
    color: #dd0000;   
}

    .red-button:hover {
        color: red;
    }