/* header.css */

.bg-default {background:rgba(0,0,0,0.05);}

.header {
    padding:0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 100;
    min-width: 300px;
}

.header.fixed {
    padding:0px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 1);
}


.header-row {display:flex; justify-content:space-between; height:100px;}
.header.fixed .header-row { height:60px;}
.header-row > div {margin:auto 0px;}
.header-row-bars {width:32px; font-size:18px;}


.navbar-default {
    min-height: 1px;
    margin-bottom: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    background: none;
    color:#999;
}

h1, h2, h3 {margin-top:0px;}

@media (max-width: 767px) {
    .header-row {height:70px;}
    .header.fixed .header-row { height:60px;}
    .header-row > .header-row-logo {margin-left:0px; margin-right:auto;}

}
