/* Foundational CSS */

html,
body {
    height: 100%;
}

body {
    padding: 74px 0 0 0; /* Make sure this matches .navbar-header height */
}

/* Re-occuring Module Styles */

.members-summary {
    width: 400px;
    background-color: red;
    float: none;
    margin: 0 auto;
}

.members-summary > div {
    width: 200px;
    float: left;
    outline-style: dotted;
    padding-top: 20px;
}

/* Theme Nav Styles */

.navbar-brand {
    padding: 0;
    margin-left: 50px;
}

.navbar-flag {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    margin-left: 0 !important;
    padding: 0;
}

.navbar-header {
    height: 74px;
    padding-top: 0;
}

.navbar-toggle {
    margin-top: 20px;
}

.navmenu-nav {
    margin-top: 50px;
}

.nav > li {
    margin-top: 10px;
}

.navbar-login {
    padding: 6px;
}

/* Jasny Nav Styles */

.navmenu {
    z-index: 9999;
}

.navmenu-fixed-right {
    left: auto !important;
}

.navbar {
    display: block;
    text-align: center;
}

.navbar-toggle {
    display: block !important;
    float: right;
    margin-right: 10px;
}

.navmenu-close-button {
    text-align: right;
    margin-top: 10px;
    margin-right: 10px;
}

/* Bootstrap Media Queries */

@media only screen and (max-width : 1200px) {
    
}

@media only screen and (max-width : 979px) {
    
}

@media only screen and (max-width : 767px) {
    .navbar-flag {
        width: 150px;
        height: auto;
    }
}

@media only screen and (max-width : 480px) {
    .navbar-flag {
        width: 50px;
        height: auto;
    }
    
    .members-summary {
        width: 200px;
    }
    
    .members-summary > div {
        width: 100px;
    }
}

@media only screen and (max-width : 320px) {
    
}