header {
    height: 54px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    font-weight: 700;
    transition: box-shadow 0.2s ease;
}
header.stuck {
    box-shadow: 0 8px 28px 0 color-mix(in srgb, var(--shadow-color), transparent 88%) !important;
}

header img,
#header-offcanvas > .offcanvas-header img {
    height: 38px;
}

header > .nav {
    gap: 1rem;
}

#menu-icon > i {
    font-size: 2rem;
}

header .dropdown-item i {
    width: 1rem;
    text-align: center;
}
header .dropdown-item:active {
    background-color: unset;
}

#header-offcanvas {
    width: 300px;
    min-width: 60%;
    font-weight: 700;
}
#header-offcanvas > .offcanvas-header {
    height: 54px;
}
#header-offcanvas > .offcanvas-body i {
    width: 1.25rem;
}

#header-offcanvas [data-bs-toggle="collapse"] i {
    font-size: 1.25rem;
}

/* responsive */
@media (min-width: 768px) {
    header {
        padding: 0 3rem;
    }
}
