﻿.site-header {
    display: flex;
    width: 100%;
    padding: 12px 32px 12px 60px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--Themes-border-default, #CED4DA);
    background: #FFFFFF;
    gap: 8px;
}

.header-logo {
    max-width: 128px;
    max-height: 56px;
}

.header-user-photo {
    width: 40px;
    height: 40px;
    object-fit: fill;
    transition: 0.2s ease;
    border-radius: 64px;
    border: 1px solid #ADB5BD;
}

.header-lastupdate {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.header-welcome {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.header-timestamp {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.header-dropdown .dropdown-toggle::after {
    display: none !important;
}

.header-dropdown-menu {
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--Themes-border-default, #CED4DA);
    background: #FFFFFF;
}

    .header-dropdown-menu.dropdown-menu::before,
    .header-dropdown-menu.dropdown-menu::after {
        display: none !important; /* remove arrow from popup */
    }

    .header-dropdown-menu li {
        padding: 10px 16px;
        color: var(--base-color);
    }

        .header-dropdown-menu li .header-icon-menu {
            color: var(--Text-Text-Secondary, rgba(33, 37, 41, 0.67));
        }

        .header-dropdown-menu li a {
            text-decoration: none;
            display: flex;
            justify-content: start;
            align-items: center;
            align-self: stretch;
            gap: 8px;
        }

            .header-dropdown-menu li:hover,
            .header-dropdown-menu li a:hover {
                background-color: #E9EDF1;
            }

@media (max-width: 667.98px) {
    .header-center {
        display: none !important;
    }

    .header-left {
        max-width: 160px !important;
        min-width: 160px !important;
    }
}

@media (max-width: 1180px) {
    .header-left {
        max-width: 160px !important;
        min-width: 160px !important;
    }
}