.header {
    width: 100%;
    background-color: var(--header-bg-color, #101f30);
}
.header-content {
    color: var(--header-text-color, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    width: 100%;
}

.header-content .left-section,
.header-content .middle-section,
.header-content .right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content .left-section {
    justify-content: flex-start;
    width: 150px;
}

.header-content .middle-section {
    flex: 2;
}

.header-content .right-section {
    justify-content: flex-end;
}

.header-content a:not(.back-button) {
    text-decoration: none;
}
.header-content a:hover {
    color: var(--header-link-color-hover, #a3a3a3);
}
.header-content .disclosure {
    font-size: 0.75rem;
    font-family: Lato;
    font-weight: 400;
    color: var(--Grays-lt-gray-lighten-1, #C6CDD0);
}

.header-content .header-logo {
    display: block;
    height: 45px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 767px) {
   .header-content .right-section {
        padding-top: 16px;
    }
}