/* ol:/ui/extranet-2/style/api/p-header.css */
.p-header {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    height: var(--header-height);
    font-size: 14px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, .1), 0 0 1px 0 rgba(0,0,0,.1);
    transition: box-shadow .05s;
}

.overflowHidden .p-header {
    position: static;
}

.p-header--up {
    /*box-shadow: 0 1px 0 0 rgba(0, 0, 0, .07), 0 2px 0 1px rgba(0,0,0,.07);*/
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.15);
}

.p-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.p-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.p-header a {
    text-decoration: none;
    color: inherit;
    /*cursor: pointer;*/
}

.header__section:first-child {
    overflow: hidden;
    white-space: nowrap;
}

.header__logo {
    display: inline-block;
    vertical-align: middle;
    max-height: 2em;
    margin-right: .5rem;
    font-size: 1em;
}

.header__logo img {
    display: block;
    width: 100%;
    max-height: 2em;
}

.header__title {
    display: inline-block;
    transform: translateY(10%);
    opacity: .5;
}

.header__menu {
    display: flex;
    gap: 1rem;
}

@media (min-width: 900px) {
    .header__title {
        font-size: 140%;
    }
}

/**
 * Buttons in header
 */

.p-header button {
    height: 26px;
    width: auto !important;
    padding-inline: 1em !important;
    border: 1px solid transparent;
    border-radius: .7em !important;
    font: normal 1em/1em var(--fam-regular);
    color: #000;
    background: inherit;
}

.p-header button:hover,
.p-header .open > button,
.p-header .open > .header-pm-hint {
    color: inherit !important;
    background: #F6F5FA;
    box-shadow: none !important;
}

.p-header .open > button:hover,
.p-header .open > button,
.p-header .open > .header-pm-hint {
    background: #d4d0e069;
}

.p-header .account-login-icon,
.p-header .open .account-login-icon,
.p-header .account-login-icon:hover     {
    width: 26px !important;
    margin-left: 0.5rem;
    padding-inline: 0 !important;
    border-radius: 100% !important;
    color: #fff !important;
}

.header-pulldown-menu.open:before,
.header-pulldown-menu.open:after {
    display: none;
}

.header-pm-bubble {
    border: 1px solid #d4d0e0;
    border-radius: 0.7rem;
    background: #F6F5FA;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-pm-bubble li:first-child {
    margin-top: 10px;
}

.header-pm-bubble li:last-child {
    margin-bottom: 10px;
}

.header-pm-bubble a {
    display: block;
    padding: 4px 20px;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}

.header-pm-bubble a:hover {
    background: #d4d0e069;
}