﻿/* Default
----------------------------------------------------------*/

html {
    font-size: 0.8em;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    background-color: white;
    color: black;
}

table {
    border-collapse: collapse;
}

    table th {
        text-align: center;
    }

    table td {
        padding: 0px;
    }

a:link, a:visited {
    color: #00f;
    text-decoration: underline;
}

a:hover, a:active {
    color: #00f;
    text-decoration: none;
}

input[type="text"], input[type="password"], textarea, select {
    max-width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}


/* Heading   
----------------------------------------------------------*/

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}


/* Primary layout element
----------------------------------------------------------*/

.page {
    background-color: white;
    margin: 0px;
}

.page-wide {
    background-color: white;
    margin: 0px 2px;
}

.header {
    position: fixed;
    width: 100%;
    background: white;
    z-index: 1000;
}

.header-master {
    padding: 5px 0px 5px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #e7e7e7;
}

.logo {
    height: 40px;
}

.avatar {
    height: 30px;
    width: 30px;
    object-fit: cover;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.avatar-medium {
    height: 50px;
    width: 50px;
    object-fit: cover;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

.avatar-large {
    height: 100px;
    width: 100px;
    object-fit: cover;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.welcome {
    padding-right: 20px;
}

    .welcome img {
        width: 2.5em;
        height: 2.5em;
        vertical-align: middle;
        border-radius: 50%;
    }

.main {
    position: relative;
    padding: 0px 20px 20px 20px;
}

.title {
    margin: 20px 0px;
    padding: 0px;
}


/* Form
----------------------------------------------------------*/

.editor-label {
    margin-top: 1em;
}

.editor-field {
}

.editor-button {
    margin-top: 2em;
    margin-bottom: 1em;
}


/* Scrollable menu
----------------------------------------------------------*/

ul.scrollable-menu {
    display: inline;
    margin: 0px;
    padding: 0px;
    list-style: none;
    height: auto;
    max-height: 500px;
    overflow-x: hidden;
}

    ul.scrollable-menu li {
        display: inline-block;
        margin: 0px;
        padding: 0px;
        position: relative;
        line-height: 1em;
    }

        ul.scrollable-menu li ul {
            display: none;
            margin: -1em 0px 0px 0px;
            padding: 10px 0px;
            position: absolute;
            top: 1em;
            left: 0px;
            border: 1px solid black;
            box-shadow: 3px 3px 2px gray;
            height: auto;
            max-height: 500px;
            overflow-x: hidden;
            background-color: white;
            opacity: 1;
            z-index: 1000000;
        }

            ul.scrollable-menu li ul li {
                display: block;
                margin: 0px;
                padding: 4px 10px;
                background-color: white;
                white-space: nowrap;
            }

                ul.scrollable-menu li ul li hr {
                    margin: 4px 0px;
                }

                ul.scrollable-menu li ul li:hover {
                    background-color: #136eb7;
                }

                    ul.scrollable-menu li ul li:hover a {
                        display: inline-block;
                        color: white;
                    }

                    ul.scrollable-menu li ul li:hover.no-block a,
                    ul.scrollable-menu li ul li:hover.no-block span.change-on-hover {
                        display: inline-block;
                        color: white;
                    }

        ul.scrollable-menu li.no-style:hover {
            background-color: white;
        }


/* Context menu
----------------------------------------------------------*/

div.context-menu {
    display: none;
    position: absolute;
    margin: 0px;
    padding: 10px 0px;
    border: 1px solid black;
    box-shadow: 3px 3px 2px gray;
    background-color: white;
    opacity: 1;
    z-index: 1000000;
}

    div.context-menu ul {
        margin: 0px;
        padding: 0px;
    }

        div.context-menu ul li {
            display: block;
            margin: 0px;
            padding: 4px 10px;
            background-color: white;
            white-space: nowrap;
            line-height: 1em;
        }

            div.context-menu ul li:hover {
                background-color: #136eb7;
            }

                div.context-menu ul li:hover a {
                    display: block;
                    color: white;
                }

            div.context-menu ul li hr {
                margin: 4px 0px;
            }

            div.context-menu ul li:hover.no-block a,
            div.context-menu ul li:hover.no-block span {
                display: inline-block;
                color: white;
            }

            div.context-menu ul li.no-style:hover {
                background-color: white;
            }


/* MVC validation helper
----------------------------------------------------------*/

.field-validation-error {
    color: #f00;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #f00;
}

input[type="checkbox"].input-validation-error {
    border: none;
}

.validation-summary-errors {
    color: #f00;
}

.validation-summary-valid {
    display: none;
}


/* Tab memo
----------------------------------------------------------*/

div.tab-memo {
    width: 50em;
    max-width: 100%;
}

    div.tab-memo table {
        width: 100%;
    }

    div.tab-memo textarea {
        width: 100%;
        height: 10em;
    }


/* Sticky element
----------------------------------------------------------*/

.sticky-container-layout {
    left: 12px;
    right: 12px;
    background-color: #cff;
    border: 1px outset black;
    box-shadow: 5px 5px 5px #888;
    z-index: 1000;
}

.sticky-container-layout-wide {
    left: 2px;
    right: 2px;
    background-color: #cff;
    border: 1px outset black;
    box-shadow: 5px 5px 5px #888;
    z-index: 1000;
}

.sticky-content {
    padding: 20px;
}

.sticky {
    position: fixed;
    top: 0;
}

.dialog-sticky-container {
    position: absolute;
    width: 100%;
    background-color: #cff;
    border: 1px outset black;
    box-shadow: 5px 5px 5px #888;
    z-index: 1000000;
}

.dialog-sticky-content {
    padding: 20px;
}


/* Box
----------------------------------------------------------*/

.select-box {
    display: inline-block;
    padding: 2px 4px;
    font-weight: bold;
    color: black;
    background-color: #87ceeb;
    border: 1px solid black;
}

.select-box-hover {
    background-color: #a8ac94;
}

.deselect-box {
    display: inline-block;
    padding: 2px 4px;
    font-weight: bold;
    color: black;
    background-color: white;
    border: 1px solid black;
}

.deselect-box-hover {
    background-color: #a8ac94;
}

.color-box {
    font-weight: bold;
}

.check-box-group-box {
    display: inline-block;
    padding: 4px;
    background-color: #e5e5e5;
    border: 1px solid #ccc;
    min-width: 250px;
}

.general-box {
    display: inline-block;
    padding: 0px 4px;
    border: 1px solid black;
}


/* Disabled & read only
----------------------------------------------------------*/

input:disabled, input[type=text]:read-only {
    background-color: #ccc;
}

input.read-only, select.read-only, textarea.read-only {
    background-color: #ccc;
}

div.read-only /* To mimic a readonly input */ {
    float: left;
    min-width: 150px;
    background-color: #ccc;
    border: 1px inset #a9a9a9;
    padding: 2px;
}


/* Profile picture
----------------------------------------------------------*/

.picture-frame {
    display: inline-block;
    width: 160px;
    height: 120px;
    background-color: white;
    border: 1px solid #ccc;
}

.picture-shadow {
    box-shadow: 2px 5px 10px gray;
}

.photo-frame {
    display: inline-block;
    width: 160px;
    height: 120px;
    background-color: white;
    border: 1px solid #ccc;
    text-align: center;
    overflow: hidden;
}

.photo-shadow {
    box-shadow: 2px 5px 10px gray;
}

.photo-frame img {
    max-width: 160px;
    height: 120px;
}


/* My account
----------------------------------------------------------*/

table.my-account {
    width: 100%;
}

    table.my-account td.account-left {
        padding: 20px;
        border: 1px solid #ccc;
        white-space: nowrap;
        min-width: 150px;
        font-size: 1.2em;
        font-weight: bold;
        color: #008000;
    }

    table.my-account td.account-right {
        padding: 20px;
        border: 1px solid #ccc;
        width: 100%;
    }


/* Table (form)
----------------------------------------------------------*/

table.table-form > tbody > tr > td {
    padding: 0px 4px 4px 0px;
    border: none;
}

    table.table-form > tbody > tr > td:first-child {
        white-space: nowrap;
    }


/* Table (data & border)
----------------------------------------------------------*/

table.table-data > tbody > tr > td {
    padding: 4px;
    border: none;
}

/* -- */

table.table-data-border > tbody > tr > td {
    padding: 4px;
    border: 1px solid #ccc;
}

    table.table-data-border > tbody > tr > td.no-border {
        padding: 4px;
        border: none;
    }

    table.table-data-border > tbody > tr > td.no-style {
        padding: 0px;
        border: none;
    }

table.table-data-border > thead > tr > th,
table.table-data-border > tbody > tr > th {
    padding: 4px;
    border: 1px solid #ccc;
    background-color: #136eb7;
    color: white;
    white-space: nowrap;
}

table.table-data-border > tbody > tr.secondary > th {
    background-color: gray;
}

table.table-data-border > thead > tr > th a:link, table.table-data-border > thead > tr > th a:visited, table.table-data-border > thead > tr > th a:hover, table.table-data-border > thead > tr > th a:active,
table.table-data-border > tbody > tr > th a:link, table.table-data-border > tbody > tr > th a:visited, table.table-data-border > tbody > tr > th a:hover, table.table-data-border > tbody > tr > th a:active {
    color: white;
    text-decoration: underline;
}


/* Table (no wrap)
----------------------------------------------------------*/

table.table-no-wrap > tbody > tr > td {
    white-space: nowrap;
}


/* Table (top)
----------------------------------------------------------*/

table.table-top > tbody > tr > td {
    vertical-align: top;
}


/* Table (freeze)
----------------------------------------------------------*/

table.table-freeze > thead > tr.freeze-row > th {
    position: sticky;
    top: 0px;
    z-index: 1;
    /* Fix missing border */
    border: none;
    outline: 1px solid #ccc;
    outline-offset: -1px;
}

    table.table-freeze > thead > tr.freeze-row > th.freeze-column {
        left: 0px;
        z-index: 2;
    }

table.table-freeze > tbody > tr > th.freeze-column,
table.table-freeze > tbody > tr > td.freeze-column {
    position: sticky;
    left: 0px;
    z-index: 1;
    /* Fix missing border */
    border: none;
    outline: 1px solid #ccc;
    outline-offset: -1px;
}

table.table-freeze > tbody > tr > td.no-border {
    outline: none;
}

table.table-freeze > tbody > tr > td.format-as-header {
    color: white;
    background-color: #136eb7;
}


/* Table (wide list)
----------------------------------------------------------*/

table.table-wide-list > tbody > tr > td.border-left {
    border-left: 2px solid black;
}

table.table-wide-list > tbody > tr > td.wide {
    min-width: 250px;
}


/* Table (submittal)
----------------------------------------------------------*/

table.table-submittal > thead.search-result > tr > th {
    background-color: maroon;
}

table.table-submittal > tbody > tr > td.wide {
    min-width: 250px;
}


/* Table (caltrans)
----------------------------------------------------------*/

table.table-caltrans > tbody > tr > td.wide {
    min-width: 250px;
}


/* Chosen
----------------------------------------------------------*/

.chosen-container .chosen-results {
    max-height: 500px !important;
}

.chosen-select-box {
    width: 500px;
    max-width: 100%;
}


/* Input width
----------------------------------------------------------*/

.entry-xxx-small {
    width: 25px;
}

.entry-xx-small {
    width: 45px;
}

.entry-x-small {
    width: 60px;
}

.entry-small {
    width: 100px;
}

.entry-medium {
    width: 150px;
}

.entry-large {
    width: 250px;
}

.entry-x-large {
    width: 300px;
}

.entry-xx-large {
    width: 500px;
}

.entry-xxx-large {
    width: 750px;
}


/* Font
----------------------------------------------------------*/

.font-large {
    font-size: 1.75em;
}


/* Tall content
----------------------------------------------------------*/

.tall-x-fixed {
    height: 75px;
    overflow-y: auto;
}

.tall-xx-fixed {
    height: 150px;
    overflow-y: auto;
}

.tall-xxx-fixed {
    height: 300px;
    overflow-y: auto;
}

.tall-x-max {
    max-height: 75px;
    overflow-y: auto;
}

.tall-xx-max {
    max-height: 150px;
    overflow-y: auto;
}

.tall-xxx-max {
    max-height: 300px;
    overflow-y: auto;
}


/* Indent
----------------------------------------------------------*/

.indent-small {
    padding-left: 20px;
}

.indent-medium {
    padding-left: 40px;
}


/* Background color
----------------------------------------------------------*/

.white-background {
    background-color: white;
}

.light-gray-background {
    background-color: #e5e5e5;
}

.blue-background {
    background-color: #cff;
}

.dark-blue-background {
    background-color: #87ceeb;
}

.light-green-background {
    background-color: #d3ff19;
}

.green-background {
    background-color: #cfc;
}

.light-yellow-background {
    background-color: #ff9;
}

.yellow-background {
    background-color: #ff0;
}

.dark-yellow-background {
    background-color: #fc0;
}

.pink-background {
    background-color: #f9c;
}

.light-orange-background {
    background-color: #fc9;
}

.orange-background {
    background-color: #f90;
}

.steel-blue-background {
    background-color: #b0c4de;
}

/* Reserved BG, which will overwrite other BG */

.highlighted,
.highlighted td {
    background-color: #ff9;
}

.row-hover,
.row-hover td {
    background-color: #a8ac94; /*#b5b5b5;*/
}

.selected,
.selected td {
    background-color: #87ceeb;
}

.drag-hover,
.drag-hover td {
    background-color: #f9c;
}


/* Foreground color
----------------------------------------------------------*/

.white-foreground,
.white-foreground a:link, .white-foreground a:visited, .white-foreground a:hover, .white-foreground a:active,
a.white-foreground:link, a.white-foreground:visited, a.white-foreground:hover, a.white-foreground:active {
    color: white;
}

.black-foreground,
.black-foreground a:link, .black-foreground a:visited, .black-foreground a:hover, .black-foreground a:active,
a.black-foreground:link, a.black-foreground:visited, a.black-foreground:hover, a.black-foreground:active {
    color: black;
}

.gray-foreground,
.gray-foreground a:link, .gray-foreground a:visited, .gray-foreground a:hover, .gray-foreground a:active,
a.gray-foreground:link, a.gray-foreground:visited, a.gray-foreground:hover, a.gray-foreground:active {
    color: gray;
}

.red-foreground,
.red-foreground a:link, .red-foreground a:visited, .red-foreground a:hover, .red-foreground a:active,
a.red-foreground:link, a.red-foreground:visited, a.red-foreground:hover, a.red-foreground:active {
    color: #f00;
}

.green-foreground,
.green-foreground a:link, .green-foreground a:visited, .green-foreground a:hover, .green-foreground a:active,
a.green-foreground:link, a.green-foreground:visited, a.green-foreground:hover, a.green-foreground:active {
    color: #008000;
}

.pink-foreground,
.pink-foreground a:link, .pink-foreground a:visited, .pink-foreground a:hover, .pink-foreground a:active,
a.pink-foreground:link, a.pink-foreground:visited, a.pink-foreground:hover, a.pink-foreground:active {
    color: #f0f;
}

.yellow-foreground,
.yellow-foreground a:link, .yellow-foreground a:visited, .yellow-foreground a:hover, .yellow-foreground a:active,
a.yellow-foreground:link, a.yellow-foreground:visited, a.yellow-foreground:hover, a.yellow-foreground:active {
    color: #999900;
}

.orange-foreground,
.orange-foreground a:link, .orange-foreground a:visited, .orange-foreground a:hover, .orange-foreground a:active,
a.orange-foreground:link, a.orange-foreground:visited, a.orange-foreground:hover, a.orange-foreground:active {
    color: #ff8000;
}

.brown-foreground,
.brown-foreground a:link, .brown-foreground a:visited, .brown-foreground a:hover, .brown-foreground a:active,
a.brown-foreground:link, a.brown-foreground:visited, a.brown-foreground:hover, a.brown-foreground:active {
    color: #930;
}

.blue-foreground, /* Put default color at bottom */
.blue-foreground a:link, .blue-foreground a:visited, .blue-foreground a:hover, .blue-foreground a:active,
a.blue-foreground:link, a.blue-foreground:visited, a.blue-foreground:hover, a.blue-foreground:active {
    color: #00f;
}


/* Printing
----------------------------------------------------------*/

@media print {
    body {
        background-color: white;
        color: black;
    }

    .no-printing {
        display: none;
    }
}


/* Toolbar
----------------------------------------------------------*/

div.toolbar {
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 1000;
}

div.toolbar-line {
    padding: 0px 0px 4px 0px;
}

div.toolbar-group {
    display: inline-block;
    white-space: nowrap;
    padding: 2px 4px;
    margin-right: 4px;
    border: 1px solid black;
    border-radius: 2px;
}

div.toolbar-tab-menu {
    display: inline-block;
    white-space: nowrap;
    padding: 2px 10px;
    margin-right: 4px;
    margin-bottom: 4px;
    background-color: #87ceeb;
    border-top-right-radius: 10px;
    border-top: 2px solid #136eb7;
    border-right: 2px solid #136eb7;
    border-bottom: 2px solid #136eb7;
    border-left: 10px solid #136eb7;
}


/* Checkbox
----------------------------------------------------------*/

input[type=checkbox] {
    margin: 4px;
    /* All browsers except webkit*/
    transform: scale(1.5);
    /* Webkit browsers*/
    -webkit-transform: scale(1.5);
}


/* Upload
----------------------------------------------------------*/

.upload-box {
    display: inline-block;
    width: 500px;
    height: 50px;
    border: 1px solid #a9a9a9;
}

.upload-box-active {
    box-shadow: 0px 0px 2px 2px #7a9cd3;
}

.image-box {
    display: inline-block;
    background-color: white;
    border: 1px solid #ccc;
}


/* Dialog
----------------------------------------------------------*/

.dialog-title-normal {
    color: black;
    background: #ccc; /* background-color does not work */
}

.dialog-title-danger {
    color: white;
    background: #f00; /* background-color does not work */
}

.dialog-body {
    position: relative; /* NOTE: Font Awesome is positioned relative to its closest positioned ancestor. */
    overflow: auto;
    min-height: 100px;
}


/* Bootstrap fix
----------------------------------------------------------*/

label:not(.form-check-label):not(.custom-file-label) {
    margin-bottom: 0px;
    font-weight: 400;
}

fieldset {
    border: 1px solid black;
    padding: 2em 0 1em;
    margin-top: 2em;
    position: relative;
}

legend {
    border: 0;
    background: #fff;
    width: auto;
    transform: translateY(-50%);
    position: absolute;
    top: 0;
    left: 1em;
    padding: 0 .5em;
}

hr {
    margin: 0.5em auto;
    border-top: 1px solid gray;
}

.ui-front {
    z-index: 1000000; /* Fix autocomplete in modal */
}


/* Bootstrap customization
----------------------------------------------------------*/

.my-container {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
}

.my-nav {
    background-color: #e5e5e5;
    border: 1px solid #ccc;
}

    .my-nav a.active,
    .my-nav a.active:hover {
        background-color: #136eb7;
    }

.my-tab-content {
    padding: 20px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.my-col {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .my-equal-row {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
    }
}


/* Signature
----------------------------------------------------------*/

.signature-canvas {
    border: 1px solid #a9a9a9;
}

.signature-box {
    width: 120px;
    height: 30px;
}

.signature-text {
    font-family: Brush Script MT, cursive;
    display: inline-block;
    font-weight: bold;
    font-style: italic;
}


/* Profile
----------------------------------------------------------*/

.profile-left {
    background-color: #136eb7;
}

.profile-left-container {
    padding: 20px;
    word-break: break-all;
}

.profile-left-container,
.profile-left-container a:link, .profile-left-container a:visited, .profile-left-container a:hover, .profile-left-container a:active,
a.profile-left-container:link, a.profile-left-container:visited, a.profile-left-container:hover, a.profile-left-container:active {
    color: white;
}

.profile-left-container hr {
    border-top: 1px solid #ccc;
}

.profile-right {
    background-color: aliceblue;
}


/* Navigation
----------------------------------------------------------*/

.navbar {
    margin: 0px !important;
}

@media (max-width: 768px) {
    .navbar {
        overflow-y: auto !important;
        max-height: 75vh !important;
    }
}

.navbar a:link, .navbar a:visited, .navbar a:hover, .navbar a:active {
    text-decoration: none;
}

.navbar-brand {
    padding-left: 20px !important;
}

.navbar-nav > li > a, .navbar-brand {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    line-height: 40px;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }


/* Flex & grid
----------------------------------------------------------*/

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.gap-all {
    gap: 20px;
}

.gap-row {
    gap: 20px 0px;
}

.gap-column {
    gap: 0px 20px;
}


/* Tooltip
----------------------------------------------------------*/

.bottom-tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

    .bottom-tooltip .bottom-tooltip-text {
        visibility: hidden;
        white-space: normal;
        min-width: 120px;
        font-weight: normal;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        top: 150%;
        left: 50%;
        margin-left: -60px;
    }

        .bottom-tooltip .bottom-tooltip-text::after {
            content: "";
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent black transparent;
        }

    .bottom-tooltip:hover .bottom-tooltip-text {
        visibility: visible;
    }


/* Dashboard
----------------------------------------------------------*/

.dashboard-title {
    font-size: 1.5em;
    font-weight: bold;
}

.dashboard-content {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    background-color: aliceblue;
}


/* HR report
----------------------------------------------------------*/

.hr-report-title {
    font-size: 1.5em;
    font-weight: bold;
}

.hr-report-content {
    padding: 15px;
    width: 800px;
    height: 500px;
    overflow: auto;
}


/* Benefit guide
----------------------------------------------------------*/

.benefit-guide {
    width: 75px;
    text-align: center;
}

    .benefit-guide img {
        width: 75px;
        height: 85px;
    }


/* Miscellaneous
----------------------------------------------------------*/

.float-left {
    float: left;
    max-width: 100%;
}

.float-right {
    float: right;
    max-width: 100%;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.padding-left {
    padding-left: 20px;
}

.padding-right {
    padding-right: 20px;
}

.padding-all {
    padding: 20px;
}

.hide {
    display: none;
}

.lock-off {
    display: none;
    visibility: hidden;
}

.lock-on {
    display: block;
    visibility: visible;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: #f00;
    background-color: #ccc;
    font-weight: bold;
    text-align: center;
    /*padding-top: 20%;*/
    filter: alpha(opacity=75);
    opacity: 0.75;
    z-index: 1000000;
}

.processing-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px; /* Make this half of image/element height */
    margin-left: -25px; /* Make this half of image/element width */
}

.invisible-loading {
    display: none;
}

.heading {
    font-size: 2.5em;
    padding: 4px;
    border: 2px dashed black;
    background-color: #b0c4de;
}

.subheading {
    font-size: 1.5em;
    padding: 4px;
    border: 2px dashed black;
    background-color: #8fbc8f;
}

.heading-in-paging {
    font-weight: bold;
    padding: 4px 0px;
    border: 1px dashed black;
    background-color: #b0c4de;
}

.page-x-of-y-indent {
    float: left;
    width: 40px;
    text-align: center;
    font-weight: bold;
}

.page-x-of-y-text {
    margin-left: 40px; /* Must match with indent */
}

.stop-browser-scrolling {
    height: 100%;
    overflow: hidden;
}

.button-main {
    font-weight: bold;
}

.button-danger {
    font-weight: bold;
    color: red;
}

.cross-out {
    text-decoration: line-through;
}

.comment-indicator {
    font-weight: bold;
    color: red;
}

.profile-full-name {
    font-size: 1.5em;
    font-weight: bold;
}

.special-check-box {
    background-color: #87ceeb; /*#136eb7;*/
    padding: 2px;
}

.role-selection {
    width: 500px;
    max-width: 100%;
}

.full-tab-memo {
    width: 100%;
    height: 10em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.full-text-area {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.dummy-button {
    padding: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    width: 0px;
}

/* Overwrite */
.org-chart-cell {
    width: 190px;
    min-height: 250px;
}

.directory {
    padding: 15px;
    height: 375px;
    overflow-y: auto;
    background-color: aliceblue;
}

.toolbox {
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    background-color: #cff;
}

.no-decoration,
.no-decoration a:link, .no-decoration a:visited, .no-decoration a:hover, .no-decoration a:active,
a.no-decoration:link, a.no-decoration:visited, a.no-decoration:hover, a.no-decoration:active {
    text-decoration: none;
}

.column-filter {
    padding: 20px;
    width: 100%;
    max-height: 300px;
    overflow: auto;
    background-color: #e5e5e5;
}

.request-a-change {
    font-size: 0.5em;
}