/* u-navigation-updates.css */

#nygov-universal-navigation {
    min-height: 90px !important;
}

.skiptoContent a {
    position: absolute;
    left: auto;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skiptoContent a:focus {
    margin-top: 2px;
    left: 10px;
    width: auto;
    height: auto;
    z-index: 1050;
    display: block;
}

.pac-container {
    /* if you click "location", then type in input box, a Google pop up appears. The bottom border / shadow of the pop up will remain and overlap all content on page even after closing locations menu. Simple fix below ... */
    border-top: none;
}

/* This is the width at which the navigation disappears (if hideSearch is set to "true") */
@media(max-width:767px){
    #nygov-universal-navigation {
        min-height: 81px !important;
    }

    /* corrects the "top" position to display the closed nav */
    .nygov-hide-search header#nygov-header {
        /*top: 72px;*/ /* 2016-06-24 - CG - changed from 76px to 72px */
        /*top: 137px;*/ /* 2019-06-12 - CG - changed from 72px to 137px */
        top: 76px; /* 2019-07-20 - CG - changed from 137px to 76px */
    }

    /* sets it back to how it was, so it isn't "opened too far" */
    .nygov-hide-search header#nygov-header.nav-open {
        top:0;
    }

}