.common-page__header {
    padding: 10px 16px;
    height: 110px;
    position: relative;
    z-index: 2;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2),0 4px 5px 0 rgba(0, 0, 0, .14),0 1px 10px 0 rgba(0, 0, 0, .12);

    @media (max-width: 468px) {
        gap: 8px;
        padding: 10px 16px;
    }
}

.common-page__header-logo {
    display: inline-block;
    background: url('../image/logo-horizontal.svg') no-repeat center center / contain;
    min-width: 227px;
    height: 70px;
    cursor: pointer;

    @media (max-width: 991px) {
        min-width: 186px;
    }

    @media (max-width: 767px) {
        width: 186px;
        min-width: unset;
    }

    @media (max-width: 680px) {
        background: url('../image/logo-square.svg') no-repeat center center / contain;
        min-width: 60px;
        width: 60px;
    }
}

.common-page__header-new {
    padding: 1rem 24px;
    height: 74px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: var(--white-smoke);
    border-bottom: 1px solid var(--neutral-marble);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;

    @media (max-width: 780px) {
        overflow-x: auto;
        scroll-behavior: smooth;
        justify-content: center;
    }
    @media (max-width: 666px) {
        justify-content: flex-start;
    }

    &::-webkit-scrollbar {
        display: none;
    }
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.common-page__header-logo-new {
    /* transition: all 0.3s ease; */
    flex-shrink: 0;
    min-height: 74px;
    padding: 1rem 2rem;
    background: url('../image/logo_new.svg') no-repeat center center / contain;
    background-size: calc(100% - 4rem);
    width: 239px;
    height: 4.625rem;
    border-bottom: 1px solid var(--neutral-marble);
    cursor: pointer;
/* 
    @media (max-width: 1439px) {
        padding: 36px 2rem 37px 2rem;
        background: url('../image/logo-square-color.svg') no-repeat center center / contain;
        background-size: calc(100% - 5rem);
    } */

    @media (max-width: 1279px) {
        display: none;
    }
}


.common-page__header-right {
    height: 100%;
    font-size: .9rem;
    color: var(--neutral-white);
    display: flex;
    align-items: flex-start;
    flex: 0 0 auto;
    justify-self: flex-end;
    gap: 8px;
        @media (max-width: 780px) {
            width: 100%;
            justify-content: space-between;
        }
        @media (max-width: 700px) {
            width: auto;
            justify-content: space-between;
        }
}

.common-page__top-profile {
    @media (max-width: 480px) {
        margin-left: 0;
    }
}

.common-page__main-manager {
    cursor: unset !important;
    @media (max-width: 1400px) {
        display: none;
    }
}

.common-page__top-profile-info-wrapper .common-page__main-manager {
    display: none;
    @media (max-width: 1400px) {
        display: flex;
    }
}

.common-page__top-profile-info {
    border-radius: 8px;
    box-shadow: 0 4px 6px -2px rgba(13, 17, 28, 0.03), 0 12px 16px -4px rgba(13, 17, 28, 0.08);
    background: var(--secondary-blue);
    width: 224px;
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: none;
    padding: 10px 6px;
}

.common-page__top-profile-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.limit-card.common-page__top-profile.common-page__top-profile-main:hover .common-page__top-profile-info {
    display: block;
}

.common-page__top-profile-menu-link, .common-page__top-profile-menu-link:hover {
    color: var(--neutral-white);
    display: block;
    height: 32px;
    line-height: 32px;
    width: 100%;
    text-align: center;
}

.common-page__side-new--collapsed .common-page__header-logo-new {
    padding: 36px 2rem 37px 2rem;
    background: url('../image/logo-square-color.svg') no-repeat center center / contain;
    background-size: calc(100% - 5rem);
    width: 113px;
}


/* ─── Modal select ─── */
.custom-select {
    position: relative;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--blue-plaza-border);
    border-radius: 12px;
    background: var(--white-smoke-light) url('../image/arrow_down16x16.svg') no-repeat right 12px center / 16px 16px;
    font-family: Commissioner;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--blue-plaza-active);
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.15s;
    box-sizing: border-box;
        @media (max-width: 768px) {
            height: 44px !important;
        }
}

.custom-select__trigger:hover,
.custom-select.open .custom-select__trigger {
    background-color: var(--neutral-white);
}

.custom-select__trigger--placeholder {
    color: var(--blue-plaza-active);
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--neutral-white);
    border: 1px solid var(--blue-plaza-border);
    border-radius: 12px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 4px 4px 8px 0px #0000000D;
    scrollbar-width: none;
    padding: 8px;
}

.custom-dropdown::-webkit-scrollbar {
    display: none;
}

.custom-select.open .custom-dropdown {
    display: block;
}

.custom-option {
    padding: 8px;
    font-family: Commissioner;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    color: var(--blue-plaza-active);
    border-radius: 0;
    transition: background 0.15s;
}

.custom-option:hover {
    background: var(--white-smoke-light);
    border-radius: 8px;
}