@font-face {
    font-family: 'immortalregular';
    src: url('./fonts/immortalregular/immortal-webfont.eot');
    src: url('./fonts/immortalregular/immortal-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/immortalregular/immortal-webfont.woff') format('woff'),
         url('./fonts/immortalregular/immortal-webfont.ttf') format('truetype'),
         url('./fonts/immortalregular/immortal-webfont.svg#immortalregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

h1 {
  font-size: 40px;
  text-align: center;
  font-family: 'immortalregular', serif;
  color: white;
  padding-bottom: 10px;
  padding-top: 8px;
  text-shadow: -3px -3px 0 #000,
  			    3px -3px 0 #000,
  			    -3px 3px 0 #000,
  			     3px 3px 0 #000;
  background-color: #fff;
}

h2 {
  font-family: 'Alegreya SC', serif;
}

body {
  margin: 0;
}

html, body {
  height: 100%;
}

strong {
    font-weight: bold;
}

#frame {
    height: 100%;
    overflow: hidden;
    background: #ffb140;
    -webkit-transition: background 2s ease;
    transition: background 2s ease;
}

/* Sort/Filter controls
************************/
#controls {
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-family: 'Alegreya SC', serif;
}

#controls button {
    font-family: 'Alegreya SC', serif;
    font-size: 18px;
    -webkit-appearance: none;
    background-color: #fff;
    font-weight: bold;
    font-size: 24px;

}

#controls label {
    font-family: 'Alegreya SC', serif;
    font-size: 20px;
}

#controls select {
    font-size: 16px;
    font-family: 'Alegreya SC', serif;
}

#controls #filter-choice button {
    font-size: 12px;
    padding: 10px;

}

#sort-options,
#filter-options {
    margin-top: 0.5em;
    display: none;
}

#controls ol {
    text-align: left;
}

.bsmListItemLabel {
    width: 80%;
}

@media screen and (min-width: 426px) {
    #controls ol {
        text-align: center;
    }
    .bsmListItemLabel {
        width: 100%;
    }
}



/* Beer List
************************/

#header {
    position: fixed;
    height: 60px;
    top: 0;
    width: 100%;
    z-index: 40;
}

#container {
    margin-top: 60px;
    padding: 10px 8px 0;
    height: 100%;
    overflow-y: scroll;
    background-color: transparent;
}

ul {
    overflow: hidden;
}

.beer-item {
    float: left;
    list-style: none outside none;
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
    background-color: white;
    font-family: 'Alegreya', serif;
    min-height: 60px;
    position: relative;
}

.beer-item .essential {
    border: 4px solid #666;
    position: relative;
    min-height: 60px;
}

.beer-item div {
}

.beer-item .colour {
    height: 100%;
    text-indent: -9999px;
    width: 10%;
    float:left;
    position: absolute;
}

.beer-item .desc {
    display: none;
    padding: 5px;
}

.beer-item .brewery {
    margin-top: 5px;
    font-family: 'Alegreya SC', serif;
    left: 12%;
    position: relative;
    width: 60%;
}

.beer-item .name {
    font-weight: bold;
    left: 12%;
    position: relative;
    font-size: 20px;
    width: 60%;
}

.beer-item .percent {
    text-align: center;
    font-family: 'Alegreya SC', serif;
    right: 2%;
    top: 0;
    margin-top: 5px;
    width: 22%;
    height: 100%;
    position: absolute;
}

@media screen and (min-width: 290px) {
    .beer-item .percent {
        width: 15%;
    }
}

@media screen and (min-width: 395px) {
    .beer-item .percent {
        right: 1%;
        width: 10%;
    }
}

@media screen and (min-width: 500px) {
    .beer-item .percent {
        right: 0;
    }
}

#filter-choice .selected {
    color: white;
}

#app:last-child {
    padding-bottom: 70px;
}

h2.style-header {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 10px;
}