.navbar {
    height: 73px;
    min-height: 73px;
    padding: 0px;
    background-color: transparent;
    border-radius: 0px;
    border-width: 0 0 0px;
}

.navbar-fixed-top {
    border-width: 0 0 0px;
}

.navbar-header {
    padding:25px 0px 0px 25px;
}

.navbar-brand {
    float: left;
    padding: 0px;
    line-height: 73px;
    height: 73px;
}

.navbar-brand img {
    margin-top: 0px;
    width:220px;
}

#navbar {
    margin-right:20px;
}

.nav li {
    height: 73px;
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
}

.navbar-nav > li > a {
    font-family: 'proximanova-semibold';
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    /*line-height: 43px;
    padding: 25px 0px;*/
    border: 1px solid #fff;
    border-color: rgba(255,255,255,0);
    border-radius:3px;
    margin: 0px 5px;
    padding: 0px 10px;
    margin-top: 35px;
    height: 35px;
    line-height: 35px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    text-decoration: none;
}

.navbar-nav > li > a.active {
    color: #fff;
}

#nav-gettheapp {
    border: 1px solid #fff;
    border-color: rgba(255,255,255,0.2);
    /*padding: 0px 15px;
    margin-top: 25px;
    height:40px;
    line-height:40px;*/
}
#nav-gettheapp:hover {
    background-color: rgba(255,255,255,0.1);
    text-decoration:none;
}

#nav-donate {
    margin-left:15px;
    border: 1px solid #8a61a0;
    border-color: rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
}
#nav-donate:hover {
    background-color: rgba(255,255,255,0.2);
    text-decoration:none;
}

.navbar-toggle {
    margin-top: 18px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggle {
    border-color: rgba(255,255,255,0.2);
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: rgba(255,255,255,0.2);
}

#nav-trigger ~ label
{
    display:none;
}

@media (max-width: 845px) {

    #navbar {
        display:none;
    }

    #nav-trigger ~ label {
        display: block;
    }

}


/* Navigation Menu - Background */
.mobilenavigation {
    /* critical sizing and position styles */
    width: 100%;
    height: 299px;
    position: fixed;
    top: -299px;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* non-critical appearance styles */
    list-style: none;
    background-color: #1f2e3b;
    transition: all 0.2s ease;
}

.mobilenavigation ul {
    border-top: 0px solid #293947;
    margin-left:0px;
    padding-left:0px;
}
.navigation li {
    list-style-type:none;
}

/* Navigation Menu - List items */
.nav-item {
    /* non-critical appearance styles */
    width: 100%;
    border-bottom: 0px solid #293947;
    margin-bottom:0px;
    list-style-type:none;
}

.nav-item a, .nav-item label {
    /* non-critical appearance styles */
    display: block;
    width: 100%;
    height:55px;
    line-height:55px;
    padding-left: 25px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s, background 0.5s;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0px;
    font-weight: normal;
}

.nav-item label {
    background-image: url(../images/hassubmenu.png);
    background-repeat: no-repeat;
    background-position: 260px 15px;
    background-size: auto 16px;
}

.nav-item a:hover, .nav-item label:hover {
    color: #fff;
    background-color: #293947;
}

/* Site Wrapper - Everything that isn't navigation */
.site-wrap {
    /* Critical position and size styles */
    /*min-height: 100%;
    min-width: 100%;*/
    background-color: transparent; /* Needs a background or else the nav will show through */
    position: relative;
    transition: all 0.2s ease;
    top: 0;
    /*bottom: 100%;*/
    left: 0;
    z-index: 1;
    /* non-critical apperance styles */
    /*background-size: 200%;*/
}

/* Nav Trigger */
.nav-trigger, .bannernavx-trigger {
    /* critical styles - hide the checkbox input */
    position: fixed;
    clip: rect(0, 0, 0, 0);
}

label[for="nav-trigger"] {
    /* critical positioning styles */
    position: absolute;
    right: 40px;
    top: 37px;
    z-index: 4;
    transition: bottom 0.2s ease;
    /* non-critical apperance styles */
    height: 30px;
    width: 30px;
    cursor: pointer;
    background-image: url('../images/menu.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Make the Magic Happen */
.nav-trigger + label, .site-wrap, nav {
    transition: all 0.2s ease;
}

.nav-trigger + label {
    right: 40px;
    transition: all 0.2s ease;
}

.nav-trigger:checked + label {
    top: 316px;
}

.nav-trigger:checked ~ .mobilenavigation {
    top:0px;
}

.nav-trigger:checked ~ .site-wrap, .nav-trigger:checked label[for="search-trigger"] {
    top: 275px;
}

body {
    /* Without this, the body has excess horizontal scroll when the menu is open */
    overflow-x: hidden;
}

/* Micro reset */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (max-width: 440px) {

    .navbar-brand img {
        margin-top: 3px;
        width:190px;
    }

}

