.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .logo {
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
}

.header .warningMessage {
    width: 100%;
    margin: 0.5rem 0.5rem 0;
}

.header .warningMessage .box {
    border: 1px solid var(--ps-color-dark-blue);
    font-size: 0.75em;
    padding: .5rem;
    display: block !important;
    overflow: auto;
    min-height: 90px;
}

.header .warningMessage .box a {
    float: right;
    margin-top: -10px;
    font-weight: bolder;
}

.header .warningMessage .box p {
    font-size: 10px;
    margin: 3px 0;
}

@media (min-width: 992px) {
    .language-container {
        min-width: 160px;
    }

    header {
        position: relative;
    }

    .header-change-theme {
        position: absolute;
        top: 46px;
        right: 0;
    }

    .header-login-switch {
        position: relative;
        top: 26px;
        right: 0;
        left: 66%;
    }

    .header-login-switch--left {
        left: 52%;
    }

    .header-login-switch--hide {
        display: none;
    }

    .header {
        flex-wrap: nowrap;
    }

    .header .warningMessage {
        max-width: 992px;
    }
}

@media (max-width: 767.98px) {
    .header {
        flex-wrap: wrap;
        margin: .5rem 0;
    }

    .header .warningMessage .box {
        font-size: 0.9em;
    }

    .bigAppDiv {
        right: 0;
        left: unset;
    }
}
