html, body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
}

html, body, #container {
    background: #ececec;
    height: 100%;
}

body > #container {
    height: auto;
    min-height: 100%;
}

#footer {
    clear: both;
    position: relative;
    z-index: 10;
    height: 35px;
    background-color: transparent;
}

#content {
    padding-bottom: 60px;
}

#header {
    width: 100%;
    height: 60px;
    background-color: black;
    color: #CECECE;
}

#glass-set {
    width: 100%;
    height: 30px;
    background-color: black;
    color: #CECECE;
}

.list-container, .foot-container, .glass-container {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
}

.foot-container {
    background: transparent;
    box-shadow: 0px 2px 1px rgba(0, 0, 0, .5) inset;
}

.list-item, .foot-item {
    -webkit-flex: 1;
    flex: 1;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
}

.glass-item {
    -webkit-flex: 1;
    flex: 1;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;

}

.foot-item {
    color: rgb(180, 182, 189);
    margin: 5px;
    line-height: 23px;
    box-shadow: 1px 1px 1px 0 rgba(24, 24, 24, 0.5);
    background-color: rgba(0, 0, 0, 1);
}

.list-item.on, .glass-item.on {
    background-color: #353535;
    color: rgb(147, 247, 255);
}

.cocktail {
    display: block;
    margin: 10px;
    border: 1px solid #171717;
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
    background: #FAFAFA;
}

.cocktail-title {
    padding: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.cocktail-details {
    border-top: 1px solid #171717;
    position: relative;
}

.cocktail-method {
    height: 20px;
    background-color: #A5A5A5;
    padding: 10px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2) inset;
    color: #F7F7F7;
    font-weight: lighter;
}

.cocktail-ingredients {
    margin-left: 60px;
    padding: 10px;
    font-weight: lighter;
    font-size: 16px;
}

.cocktail-garnishes {
    text-align: right;
    padding: 10px;
}

.cocktail-glass {
    position: absolute;
    left: 10px;
    top: 50px;
}

.cocktail-glass:before {
    font-size: 40px;
}

.cocktail-modifiers {
    float: right;
    padding: 10px;
}

.modifier {
    text-align: right;
    font-size: 14px;
    font-weight: lighter;
    color: rgb(128, 49, 187);
    font-style: italic;
}

.mix {
    color: orange;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.list-item .note {
    height: 20px;
    line-height: 10px; 
    font-size: 8px;
    vertical-align: top;
    font-weight: 100;
}

.list-item .title {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-family: 'Bad Script', cursive;
}

.glass-item:before {
    line-height: 30px !important;
    font-size: 20px;
}

.cocktail-glass.bar-shot:before {
    font-size: 24px;
}
.cocktail-glass.bar-shot {
    left: 18px;
    top: 64px;
}

/*@media only screen and (min-width: 800px) {*/
/*    #content {*/
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*        justify-content: center;*/
/*    }*/
/*    .cocktail {*/
/*        width: 45%;*/
/*        margin: 10px 2%;*/
/*    }*/
/*}*/
@media print {
    #content {
    }
    .cocktail {
        width: 45%;
        margin: 10px 2%;
        page-break-inside: avoid;
        display: inline-block;
        vertical-align:top;
        position: relative;
    }
    #header, #glass-set, #footer {
        display: none;
    }
    .cocktail-details {
        display: block !important;
    }
}