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

.hulp-nav-container {
    /* Display Properties */
    display: flex;
    visibility: visible;
    opacity: 1;
    
    /* Flexbox */
    flex-direction: row;
    flex-wrap: nowrap;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    flex: 0 1 auto;
    order: 0;
    align-self: auto;
    
    /* Positioning */
    position: relative;
    top: 0px;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    
    /* Dimensions */
    width: 100%;
    height: 80px;
    min-width: 0px;
    min-height: 80px;
    max-width: 1200px;
    max-height: 80px;
    
    /* Spacing */
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 2rem;
    padding-bottom: 0px;
    padding-left: 2rem;
    
    /* 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: transparent;
    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: none;
    text-shadow: none;
    
    /* Overflow */
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    
    /* 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: center;
    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 Container */
@media screen and (max-width: 768px) {
    .hulp-nav-container {
        flex-direction: column;
        height: 100px;
        min-height: 100px;
        max-height: 100px;
        padding-top: 0.5rem;
        padding-right: 1rem;
        padding-bottom: 0.5rem;
        padding-left: 1rem;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hulp-nav-container {
        height: 90px;
        min-height: 90px;
        max-height: 90px;
        padding-top: 0.25rem;
        padding-right: 0.75rem;
        padding-bottom: 0.25rem;
        padding-left: 0.75rem;
        gap: 0.25rem;
    }
}
