.body > header {
    margin-bottom: 10px;
}

header nav ul {
    height: 35px;
}

nav .indicator > div {
    background-image: url("../gfx/navigationBar/arrow_up.png");
}

.actionButton.save span.icon {
    background-image: url("../gfx/actionButton/ic_outline_save_gray_36dp.png");
}

.actionButton.create span.icon {
    background-image: url("../gfx/actionButton/ic_outline_add_gray_36dp.png");
}

.actionButton.search span.icon {
    background-image: url("../gfx/actionButton/ic_outline_search_gray_36dp.png");
}

.actionButton.print span.icon {
    background-image: url("../gfx/actionButton/ic_outline_print_gray_36dp.png");
}
.actionButton.cancel span.icon {
    background-image: url("../gfx/actionButton/ic_outline_clear_black_36dp.png");
}

.chart {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    border: 1px solid #eeeeee;
    padding: 10px;
}

.chart figure {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    min-height: 300px;
}

.chart figure > h2 {
    text-align: center;
    font-size: 15px;
    color: #494d5f;
}

.pie.chart > section {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.pie.chart figure {
    width: 200px;
}

#portal .input_form {
    margin: 0;
    padding-left: 10px;
    margin-bottom: 10px;
}

#portal .input_form .field_group {
    max-width: 300px;

    margin: 0;
}

#portal .field_group .actionButton {
    align-self: flex-end;
    margin-bottom: 0;
    height: 28px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    box-sizing: border-box;
}

.grid > div:nth-child(2) {
    justify-self: flex-end;
}

#portal .legend h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

#portal .legend li {
    display: flex;
    align-items: center;
}

#portal .legend .swatch {
    height: 20px;
    width: 40px;
    margin: 4px;
    margin-right: 8px;
    border-width: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

#portal .legend li span {
    font-size: 14px;
}

#auth_tenant .tenant_view {
    border: 2px solid #eeeeee;
    border-radius: 4px;
    width: 350px;
    background: rgb(241, 249, 255);
    padding: 10px;
}

#auth_tenant .tenant_view ul {
    padding: 10px;
}

#auth_tenant {
    display: flex;
    flex-direction: row;
}

#portal h1 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#auth_tenant > li {
    display: flex;
    flex-direction: row;
    margin: 20px 20px;
}

#auth_tenant > li:first-child {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}

#auth_tenant .tenant_view ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    padding: 5px 0;
}

#auth_tenant section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#auth_tenant section img {
    height: 40px;
    width: 40px;
    border: 1px solid cadetblue;
    overflow: hidden;
    border-radius: 50%;
    padding: 4px;
    margin-right: 5px;
}

#auth_tenant section h2 {
    font-size: 17px;
    font-weight: 600;
}

.okapi_busy {
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 20px;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
    background-color: rgba(240, 240, 240, 0.8);
}

.okapi_busy > .loading {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 10px;
    background: #f1f1f1;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.okapi_busy > .loading:after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    animation: load 5s infinite;
}

@keyframes load {
    0% {
        width: 0;
        background: #a28089;
    }

    25% {
        width: 40%;
        background: #a0d2eb;
    }

    50% {
        width: 60%;
        background: #ffa8b6;
    }

    75% {
        width: 75%;
        background: #d0bdf4;
    }

    100% {
        width: 100%;
        background: #494d5f;
    }
}

#app_version {
    position: absolute;
    bottom: 5pt;
    right: 5pt;
    font-size: 7pt;
    color: #e0e0e0;
}
