html, body, .container, .console, .panel { height: 100%; }

.container {
    position: fixed;
    max-width: 100%;
    overflow-y: auto;
    padding-bottom: 30px;
}

.breadcrumb {
    padding: 0;
    margin-top: 15px;
    background-color: inherit;
}

.loading {
    position: fixed;
    display: none;
    bottom: 30px;
    left: 10px;
    line-height: 20px;
    vertical-align: middle;
    z-index: 1001;
}

.modal .loading {
    position: absolute;
    left: 15px;
    bottom: 20px;
}

.loading > svg {
    width: 20px; height: 20px; 
    -webkit-animation:spin 0.5s linear infinite;
    -moz-animation:spin 0.5s linear infinite;
    animation:spin 0.5s linear infinite;
}

.loading > svg > path {
    fill: none;
    stroke: #007bff;
    stroke-width: 2;
    d: path("M10,0 a10,10 0 0,1 10,10");
}

@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

.modal {
    display: none;
}

.alert {
    display: none;
}

.logo {
    width: 113px;
    height: 170px;
    margin-left: calc(50% - 56px);
    transition: all .5s ease-out;
}

#logo-row {
    margin-bottom: 15px;
    text-align: left;
}

.no-nav {
    height: 55px;
}

#auth-check-users {
    position: fixed;
    display: none;
    top: 15px;
    right: 15px;
    padding: 5px;
    font-weight: bold;
    border-radius: 5px;
}

.user-f8th {
    display: inline-block;
    margin: 5px;
    text-align: center;
}

.user-f8th-pic {
    width: 50px;
    height: 50px;
    border: 4px red solid;
    margin-bottom: 5px;
    border-radius: 5px;
}

.user-f8th-name {
    font-size: 12px;white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50px;    
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: white;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
}

.panel {
    overflow-y: auto;
}

.console {
    background-color: #2E3436;
    overflow-y: scroll;
}

#console {
    display: block;
    color: #fff;
    line-height: 1.1;
    margin: 15px 0;
}

#console a {
    color: #00ff15;
}

#recording {
    position: fixed;
    top: 10px;
    right: 10px;
    animation: blinker 1s linear infinite;
    z-index: 1000;
    line-height: 16px;
    vertical-align: middle;
}

#recording > .recording-light {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: red;
    border-radius: 16px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.button-row > button {
    margin: 5px;
}


#score-svg {
    position: absolute;
    width: 200px;
    height: 200px;
    margin: 25px;
}
#score-svg > .bg {
    fill: none;
    stroke-width: 10px;
    stroke: #1A2C34;
}
#score-svg > .meter {
    fill: none;
    stroke-width: 10px;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 596;
    stroke-dashoffset: 596;
    stroke: rgb(15, 98, 254);
    transition: stroke-dashoffset 1s ease-out;
}
#score-img {
    display: inline;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    margin: 25px;
}

#risk-score {
    position: absolute;
    display: none;
    z-index: 2010;
    width: 180px;
    height: 180px;
    border-radius: 100px;
    vertical-align: bottom;
    text-align: center;
    margin-left: -215px;
    margin-top: 35px;
    padding-top: 40px;
    font-size: 25px;
    font-weight: bold;
    background-color: rgba(0,0,0,0.8);
}

#risk-level {
    line-height: 30px;
    text-transform: uppercase;
}

#score-counter {
    font-size: 75px;
    line-height: 80px;
}

#message-risk {
    font-weight: bold;
}

#message-risk > span {
    text-transform: uppercase;
    color: rgb(15, 98, 254);
}


/* For the account page */
.logo-small {
    margin-left: 0%;
    width: 56px;
    height: 85px;
}

#balance {
    margin-top: 7px;
    font-weight: bold;
}

#account-row {
    position: absolute;
    height: 50px;
    display: none;
}

#account-row > div {
    display: inline-block;
    height: 50px;
}

#account-row span {
    color: rgb(15, 98, 254);
    font-weight: bold;
}

#account-row img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    vertical-align: top;
    border: 2px rgb(15, 98, 254) solid;
}