﻿.logo-container {
    padding-left: 12px;
    display: flex;
    flex-grow: 0;
    align-items: center;
    height: 64px
}

.logo-container path {
    fill: white;
}

.main-page {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fafafa;
    display: flex;
    flex-direction: column
}

.main-header {
    position: absolute;
    top: 0;
    height: 64px;
    left: 0;
    right: 0;
    background-color: #000000;
    display: flex;
    flex-direction: row;
}

.main-header.ipl-5 {
    background-color: rgb(0, 88, 124);
}

.main-header-container {
    color: white;
    font: 600 20px/32px Helvetica Neue LT,Arial,sans-serif;
    height: 100%;
    align-items: center;
    flex-grow: 1;
    padding-left: 30px
}

.main-header-container > div {
    display: inline-block;
}

#header-title {
    line-height: 64px;
}

.main-header-end-item {
    position: absolute;
    right: 20px;
    padding-top: 7px;
    font-size: 14px;
    font-weight: normal;
}

.main-header-end-item a:hover, 
.main-header-end-item a:focus {
    color: rgb(0, 88, 124);
}

.main-header-end-item a {
    color: white;
}

.main-content {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content > div:not(:last-child) {
    margin-bottom: 10px
}

.content-icon {
    flex-grow: 0;
    justify-self: center
}

.content-title {
    flex-grow: 0;
    font-size: 24px;
    font-weight: normal;
    color: #bbbbbb;
}

.content-subtitle {
    flex-grow: 0;
    font-size: 18px;
    color: #aaaaaa;
}

.content-text {
    flex-grow: 0;
}

.content-icon > .material-icons {
    font-size: 150px;
    color: #dddddd;
}

.hidden-buttons > a:nth-child(2),
.hidden-buttons > a:first-child {
    margin-top: 0
}

.iden-progress-bar {
    margin-top: 6px;
    height: 4px;
    background-color: rgba(5, 114, 206, 0.2);
    width: 40%;
    overflow: hidden;
}

.iden-progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: rgb(5, 114, 206);
    animation: indeterminateAnimation 1s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }

    40% {
        transform: translateX(0) scaleX(0.4);
    }

    100% {
        transform: translateX(100%) scaleX(0.5);
    }
}
