/* ------général------ */
/* reset css, pas utilisé mais mis au cas ou */
@font-face{
    font-family: "RootBeer";
    src: url(../font/Root-Beer.otf);
}
html{
    background-size: cover;
    background: url("../images/background.jpg") fixed;
    font-family: "RootBeer";
}

body{
    margin : 0;
    padding : 0;
    background-color: transparent;
}

#nav-bar{
    z-index: 10;
    background-image: url("../images/foam.jpg");
    background-size: cover;
    text-align: center;
    width:100%;
    height:100px;
    line-height:100px;
    position: fixed;
}

#site-title{
    font-size: 80px;
}

#counter{
    line-height:100px;
    position: absolute;
    top:0;
    right: 20px;
    font-size: 50px;
}

@media (max-width:1409px) {
    #counter{
        visibility: hidden;
    }
}

#counter-text{
    font-size: 30px;
    padding:20px;
}

/* options */
.md-button{
    min-width: 70px !important;
}

.md-tooltip{
    font-size: 14px !important;
}

#option-title{
    font-weight: bold;
    margin: 10px;
    font-size: 40px;
    text-align: center;
}

#options{
    position: fixed;
    float: left;
    text-align: center;
    left: 50px;
    top: 150px;
    height: 540px;
    width: 300px;
    border-radius: 10px;
    background-image: url("../images/foam.jpg");
    background-size: cover;
}

#slider_section{
    width:100%;
    margin-top: 20px;
}

md-input-container:not(.md-input-invalid).md-input-focused .md-input, md-input-container.md-input-focused label, md-input-container label  {
    color: black !important;
    border-color: black !important;
    border-width: 0 0 1px 0 !important;
}

md-input-container{
    margin: 10px 0 !important;
}

#search_bar{
    margin-top:20px;
}

/* main container */
#beers-container{
    z-index: 1;
    display: inline-block;
    position: absolute;
    float: right;
    top: 130px;
    left: 400px;
    right: 30px;
}

/* beer tile with infos */
.beer-tile{
    display: inline-block;
    width:450px;
    height:450px;
    margin:20px;
    background-image: url("../images/foam.jpg");
    background-size: cover;
    border-radius: 10px;
}

.sub-tile{
    width:100%;
    height:100%;
}

.beer-image{
    display: inline-block;
    width: 170px;
    height: 450px;
    margin:0;
    top:0;
    left:0;
    border-radius: 10px 0 0 10px;
}

.beer-info-block{
    display: inline-block;
    vertical-align: top;
    text-align: right;
    width:270px;
    height:450px;
    margin:0;
    right:0;
    top:0;
}

.beer-name{
    position: absolute;
    font-weight: bold;
    margin: 10px;
    font-size: 40px;
    overflow: auto;
    width:250px;
    text-align: center;
}

.beer-infos{
    padding-top: 130px;
}

.beer-info {
    padding: 10px;
    font-size:25px;
}

.beer-exposed{
    top:-460px;
    left:410px;
    width:55px;
    height:55px;
    position:relative;
    background-image: url("../images/exposed.png");
    background-size: cover;
}