#header {
    padding: 15px 0;
}

#header-logo-wrapper {
    justify-content: center;
    display: flex;
}

#header .logo-img {
    width: 80px;
    height: 80px;
}

#header .off-canvas-toggle {
    display: none;
}

#header-info-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#cart-btn {
    position: relative;
    margin-right: 24px;
    margin-bottom: -5px;
}

#cart-btn-count,
#cart-btn-floating-count,
#wishlist-floating-count {
    position: absolute;
    right: -25%;
    top: -25%;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    background-color: #ed6663;
}

#cart-btn-count.empty,
#cart-btn-floating-count.empty {
    background-color: #ccc;
    font-weight: bold;
}

@media (max-width: 992px) {
    #header {
        padding: 10px 0;
    }
    #header-logo-wrapper {
        justify-content: flex-start;
        padding-left: 10px;
    }
    #header-logo-wrapper .logo-img {
        width: 60px;
        height: 60px;
    }
    #header .np-logo-container-header {
        display: none;
    }
    #header-info-wrapper {
        justify-content: flex-end;
        padding-left: 0;
        padding-right: 0;
    }
    #header-search-wrapper {
        padding-right: 0;
    }
}

@media (max-width: 768px) {

    /* Sticky header */

    #header.sticky {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: #fff;
        padding: 8px 0;
        border-bottom: 1px solid #137d7a;
    }

    #header.sticky #header-search-wrapper {
        padding-left: 0;
    }

    #header.sticky #cart-btn {
        margin-right: 10px;
    }

    #header.sticky #cart-btn img {
        height: 28px;
        margin-top: 5px;
    }

    #header.sticky #cart-btn #cart-btn-count {
        top: -15%;
    }

    #header.sticky .logo-img {
        display: none;
    }

    #header.sticky .off-canvas-toggle {
        display: inline-block;
        color: #137d7a;
        border-color: #137d7a;
    }
}