/************************ HEADER *************************/
header {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 70px;
}
.vertical-center {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}
.header-items-container {
    width: 100%;
    height: 70px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.header-page-logos {
    z-index: 1;
    height: 70px;
    display: flex;
}
.header-left-logo-single {
    width: 200px;
    text-align: center;
}
.header-left-logo-single,
.header-left-logo {
    height: 70px;
}
.header-left-logo + .header-left-logo {
    margin-left: 10px;
}
.header-left-logo img,
.header-left-logo-single img {
    max-height: 70px;
    max-width: 200px;
    padding: 5px;
}
header img {
    cursor: pointer;
}
.header-system-time {
    padding-right: 7px;
}
.header-system-time span {
    font-weight: bolder;
    font-size: 12px;
    color: var(--header-user-items-color)
}
.header-user-items {
    text-align: right;
}
.user-items {
    display: flex;
    float: right;
    height: 50px;
}
.user-info {
    font-size: 13px;
    color: var(--header-user-items-color);
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    padding-top: 4px;
}
.header-user-items i {
    color: var(--header-user-items-color);
    padding: 5px;
    font-size: 3em !important;
}
/************************ FOOTER *************************/
footer {
    width: 100%;
    border: none !important;
    height: 30px;
}
.powered-by {
    display: flex;
    float: right;
    margin-right: 10px;
    height: 100%;
    line-height: 30px;
}
.legal-buttons {
    display: flex;
    float: left;
    margin-right: 10px;
    margin-left: 10px;
    height: 100%;
    white-space: nowrap;
    padding-top: 3px;
}
.legal-button {
    min-width: 180px;
    max-width: 180px;
    cursor: pointer;
}
.legal-button-container + .legal-button-container {
    margin-left: 15px;
}
.footer-text {
    background: none !important;
    border: none !important;
    color: var(--pronexio-footer-text-color);
    float: left;
    margin: 0 5px;
    white-space: nowrap;
}
.footer-link {
    text-decoration: none;
}
.footer-link img {
    cursor: pointer;
}
