/**********************************
Responsive navbar-brand image CSS
- Remove navbar-brand padding for firefox bug workaround
- add 100% height and width auto ... similar to how bootstrap img-responsive class works
***********************************/
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }

.navbar-brand {
    padding: 0px;
}
.navbar-brand>img {
    height: 100%;
    padding: 5px;
    width: auto;
}

/* tohle je pozadi, prusvitnot a obrazek na cele strance */
html {
    min-width:100%;
    min-height:100%;
    /*  background: radial-gradient(circle farthest-side at 100% 0, #e8f7fe,#bfe2fe) no-repeat;*/
}
html:after {
    content : "";
    display: block;
    position: fixed;
    top: 0px;
    left: -50px;
    background-image: url(../assets/page_background.png);
    background-color: #bfe2fe;
    width: 110%;
    height: 100%;
    opacity : 0.1;
    z-index: -1;
}





/*************************
EXAMPLES 2-7 BELOW
**************************/

/* EXAMPLE 2 (larger logo) - simply adjust top bottom padding to make logo larger */

.example2 .navbar-brand>img {
    padding: 7px 15px;
}


/* EXAMPLE 3

line height is 20px by default so add 30px top and bottom to equal the new .navbar-brand 80px height  */

.example3 .navbar-brand {
    height: 80px;
}

.example3 .nav >li >a {
    padding-top: 30px;
    padding-bottom: 30px;
}
.example3 .navbar-toggle {
    padding: 10px;
    margin: 25px 15px 25px 0;
}


/* EXAMPLE 4 - Small Narrow Logo*/
.example4 .navbar-brand>img {
    padding: 7px 14px;
}


/* EXAMPLE 5 - Logo with Text*/
.example5 .navbar-brand {
    display: flex;
    align-items: center;
}
.example5 .navbar-brand>img {
    padding: 7px 14px;
}


/* EXAMPLE 6 - Background Logo*/
.example6 .navbar-brand{
    background: url(http://disputebills.com/wp-content/themes/disputebills-theme/assets/images/dispute-bills-logo.png) center / contain no-repeat;
    width: 200px;
}





/* EXAMPLE 8 - Center on mobile*/
@media only screen and (max-width : 768px){
    .example-8 .navbar-brand {
        padding: 0px;
        transform: translateX(-50%);
        left: 50%;
        position: absolute;
    }
    .example-8 .navbar-brand>img {
        height: 100%;
        width: auto;
        padding: 7px 14px;
    }
}


/* EXAMPLE 8 - Center Background */
.example-8 .navbar-brand {
    background: url("//www.unimonitor.cz/assets/U_logo250x90.png") center / contain no-repeat;
    width: 200px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
}





/* EXAMPLE 9 - Center with Flexbox and Text*/
.brand-centered {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}
.brand-centered .navbar-brand {
    display: flex;
    align-items: center;
}





/* CSS Transform Align Navbar Brand Text ... This could also be achieved with table / table-cells */
.navbar-alignit .navbar-header {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    height: 50px;
}
.navbar-alignit .navbar-brand {
    top: 50%;
    display: block;
    position: relative;
    height: auto;
    transform: translate(0,-50%);
    margin-right: 15px;
    margin-left: 15px;
}