/* HULP NAVBAR HEADER CONTAINER - COMPLETE SPECIFIC STYLES */

.hulp-header {
    /* Display Properties */
    display: block;
    visibility: visible;
    opacity: 1;
    
    /* Positioning */
    position: relative;
    top: 0px;
    left: 0px;
    right: auto;
    bottom: auto;
    z-index: 10;
    
    /* Dimensions */
    width: 100%;
    height: 80px;
    min-width: 0px;
    min-height: 80px;
    max-width: none;
    max-height: none;
    
    /* Spacing */
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    
    /* Border */
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0px;
    
    /* Outline */
    outline: none;
    outline-width: 0px;
    outline-style: none;
    outline-color: transparent;
    outline-offset: 0px;
    
    /* Background */
    background-color: #FFFFFF;
    background-image: none;
    background-repeat: repeat;
    background-position: 0% 0%;
    background-size: auto;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    
    /* Shadow */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    text-shadow: none;
    
    /* Overflow */
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    
    /* Box Model */
    box-sizing: border-box;
    
    /* Typography */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1.6;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    text-indent: 0px;
    text-shadow: none;
    
    /* Color */
    color: #000000;
    
    /* Cursor */
    cursor: default;
    
    /* User Selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Pointer Events */
    pointer-events: auto;
    
    /* Transform */
    transform: none;
    transform-origin: 50% 50% 0px;
    
    /* Transition */
    transition: none;
    
    /* Animation */
    animation: none;
    
    /* Filter */
    filter: none;
    
    /* Backdrop */
    backdrop-filter: none;
    
    /* Mask */
    mask: none;
    mask-image: none;
    mask-repeat: repeat;
    mask-position: 0% 0%;
    mask-size: auto;
    
    /* Clip */
    clip: auto;
    clip-path: none;
}

/* Mobile Responsive for Header */
@media screen and (max-width: 768px) {
    .hulp-header {
        height: 100px;
        min-height: 100px;
    }
}

@media screen and (max-width: 480px) {
    .hulp-header {
        height: 90px;
        min-height: 90px;
    }
}
