﻿body {
    font-family: "Open Sans", sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #fefefe;
}

.late{
    position: absolute;
    left: -1000px;
}

.glyphic {
    font-family: "Red Rose", sans-serif;
}

.header {
    border-bottom: 2px solid #0094C6;
}

.footer {
    border-top: 2px solid #0094C6;
}

.header, .footer{
    flex: none;
}
.footer, .header {
    color: #efefef;
    background-color: #232357;
    padding: 10px 20px;
}

.content{
    flex:1 0 auto;
    margin-top: 30px;
    text-align: center;
}

.content::after {
  content: '\00a0'; /* &nbsp; */
  display: block;
  margin-top: 40px;
  height: 0px;
  visibility: hidden;
}

.row a {
    color: #0094C6;
    /*color: #000;*/
}

.small-spacer{
    margin-top: 50px;
}

.small-spacer-bottom {
    margin-bottom: 50px;
}

.button {
    background-color: #6B7D7D;
    color: #fff;
}

.button:hover {
    background-color: #0094C6;
    color: #000;

}

/* Tiles */
.tile{
    border: 1px solid #0094C6;
    padding: 5px;
    margin: 10px;
    text-align: center;
    width: 100%;
    color: #000;
    background-color: #fff;
    display: table;
}
.tile .tile-info {
    display: inline-block;
    vertical-align: middle;
}

.tile .tile-info.completion {
    padding: 0;
    width: 15%;
}
.tile .tile-info.completion p {
    margin: 0;
    color: #000;
}

.tile .tile-info.name {
    width: 80%;
}

.tile.complete {
    background-color: #efefef;
    border-color: #18F2B2;
}

.tile.complete a{
    color: #a6a6a6;
}
.tile .icon {
    width: 60px;
    display: inline-block;
}

.tile .additional {
    display: table-cell;
    horiz-align: center;
}

.tile .additional span {
    justify-self: center;
    line-height: 100%;
    text-align: center;
}

/* Chart */
.chart-panel {
    min-height: 100vh;
}

.chart-panel .chart-container {
    height: 100%;
}

/* navigation */

nav {
    display: grid;
    grid-auto-flow: column;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    /*text-shadow: 0 -2px 0 black;*/
    cursor: pointer;
    /*box-shadow: 1px 2px 4px rgb(20, 20, 20), 0 4px 12px rgb(10, 10, 10);*/
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.87);
}

.nav-item:not(:first-of-type) {
    border-left: 1px solid rgb(60, 60, 60);
}
.nav-item:not(:last-of-type) {
    border-right: 0.1rem solid black;
}

.nav-item a {
    color: inherit;
    text-decoration: none;
    padding: 1ch;
    
}
.nav-item {
    align-self: center;
    padding: 1ch;
    font-size: 0.8999rem;
    line-height: 1rem;
    min-width: 120px;
    justify-content: space-between;
    transition: all 80ms ease;

}

.nav-item .icon {
    max-width:60px;
    display: inline-block;
}

/* Progress */
.progress {
  height: 50px;
  border: 1px solid #0094C6;
}

.progress-meter {
    background-color:  #18F2B2;
}

.progress-meter-text {
    color: #000;
}

/* Message */
.message-progress{
    width: 0;

    animation: progress 3s linear;
    bottom: 0;
    left: 0;
    position: absolute;
    border-bottom: 1px solid #0094C6;
}

.callout.alert .message-progress {
    border-bottom-color: #FF0000;
}

.callout.success .message-progress {
    border-bottom-color: #0094C6;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}