/*
* jQuery FlexSlider v2.4.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 and later license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
* 
*/
/* ====================================================================================================================
* FONT-FACE
* ====================================================================================================================*/
@font-face {
    font-family: 'flexslider-icon';
    src: url('fonts/flexslider-icon.eot');
    src: url('fonts/flexslider-icon.eot#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* ====================================================================================================================
* RESETS
* ====================================================================================================================*/
.flex-container a:hover, .flex-slider a:hover,
.flex-container a:focus, .flex-slider a:focus {
    outline: none;
}

.slides, .slides > li,
.flex-control-nav, .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-pauseplay span {
    text-transform: capitalize;
}

/* ====================================================================================================================
* BASE STYLES
* ====================================================================================================================*/
.flexslider {
    padding: 0;
}

.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
    display: block;
}

.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .flexslider .slides {
    display: block;
}

* html .flexslider .slides {
    height: 1%;
}

.no-js .flexslider .slides > li:first-child {
    display: block;
}

/* ====================================================================================================================
* DEFAULT THEME
* ====================================================================================================================*/
.flexslider {
    position: relative;
    zoom: 1;
    width: 100%;
}

.flexslider .slides {
    zoom: 1;
}

.flex-viewport {
    height: 100%;
    max-height: 2000px;

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.loading .flex-viewport {
    max-height: 300px;
}

.carousel li {
    margin-right: 5px;
}

.flex-direction-nav {
    height: 0;
    overflow: hidden;
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 20px;
    height: 127px;
    margin: -20px 0 0;
    position: absolute;
    top: 10%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flex-direction-nav a.flex-prev:before {
    display: inline-block;
    content: url('fleximages/left-arrow.png');
}

.flex-direction-nav a.flex-next:before {
    content: url('fleximages/right-arrow.png');
}

.flex-direction-nav .flex-prev {
    left: 3px;
}

.flex-direction-nav .flex-next {
    right: 3px;
    text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 2%;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 2%;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}

.flex-direction-nav .flex-disabled {
    opacity: 0!important;
    filter: alpha(opacity=0);
    cursor: default;
}

.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000;
}

.flex-pauseplay a:before {
    font-family: "flexslider-icon";
    font-size: 20px;
    display: inline-block;
    content: '\f004';
}

.flex-pauseplay a:hover {
    opacity: 1;
}

.flex-pauseplay a .flex-play:before {
    content: '\f003';
}

.flex-control-nav {
    display: none;
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center;
}

.flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    cursor: default;
}

.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden;
}

.flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .7;
    cursor: pointer;

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.flex-control-thumbs img:hover {
    opacity: 1;
}

.flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default;
}

/* ====================================================================================================================
* RESPONSIVE
* ====================================================================================================================*/

@media only screen and (max-width: 1550px) {

    .beer-info h2 {
        font-size: 80px;
    }

    h3.top-letter {
        font-size: 38px;
    }

    h3.bottom-letters {
        font-size: 20px;
    }

    .abv-text, .ibu-text {
        margin-left: 5%;
    }

}

@media screen and (max-width: 1450px) {

    .flexslider:hover .flex-direction-nav .flex-prev {
        left: 2%;
    }

    .flexslider:hover .flex-direction-nav .flex-next {
        right: 2%;
    }
}

@media only screen and (max-width: 1460px) {

    #beer-slider.flexslider {
        height: 670px;
    }

    .slider-can {
        width: 320px;
        top: 0;
    }

    .slider-text {
        width: 90%;
        top: 73px;
    }

    ul.beer-slider p {
        font-size: 15px;
    }

    .beer-description {
        padding-right: 2%;
        width: 27%;
    }

    .drinking-tips {
        width: 66%;
    }

    .drinking-tips h2 {
        font-size: 55px;
    }

    .serving-temp h2 img {
        width: 28px;
        height: auto;
    }

    .glass-full, .glass-empty {
        width: 28px;
        margin-top: 5px;
    }

    .beer-info {
        width: 18%;
    }

    .beer-info h2 {
        font-size: 70px;
    }

    .ingredients {
        width: 42%;
    }

    h3.top-letter {
        font-size: 30px;
    }

    h3.bottom-letters {
        font-size: 16px;
    }

}

@media only screen and (max-width: 1375px) {

    .slider-can {
        width: 300px;
        top: 0;
    }

    .beer-info h2 {
        font-size: 55px;
    }

    h3.top-letter {
        font-size: 24px;
    }

    h3.bottom-letters {
        font-size: 15px;
    }

}

@media only screen and (max-width: 1250px) {

    #beer-slider.flexslider {
        height: 650px;
    }

    .slider-border {
        padding: 1.5%;
    }

    .flex-active-slide .slider-can {
        right: -1%;
    }

    .flex-direction-nav a {
        -webkit-transform: scale(.7);
        -moz-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(.7);
        transform: scale(.7);
    }

    .learn-lingo {
        right: 25%;
    }

}

@media only screen and (max-width: 1170px) {

    .learn-lingo {
        right: 2%;
        top: 0;
    }

    .abv-learn.learn-i, .ibu-learn.learn-i {
        right: auto;
        left: -12px;
        top: -15px;
    }

    #beer-slider.flexslider {
        height: 630px;
    }

    .beer-description {
        padding-right: 1.5%;
    }

    .drinking-tips {
        margin-left: 2.5%;
    }

    .ingredients {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }

    .beer-info {
        padding-left: 2.5%;
    }

    .ingredients .clear {
        margin-bottom: 0;
    }

    .abv-text, .ibu-text {
        float: none;
        margin-left: 0;
        border-bottom: none;
    }

    .abv h2, .ibu h2, .abv-text, .ibu-text {
        width: 100%;
    }

    h3.top-letter, h3.bottom-letters {
        font-size: 15px;
        float: left;
        width: auto;
        line-height: 1em;
    }

    .serving-temp h2 img {
        width: 20px;
    }

}

@media only screen and (max-width: 1065px) {

    .glass-full, .glass-empty {
        width: 20px;
        margin-top: 10px;      
    }

    .serving-temp {
        width: 38%;
    }

}

@media only screen and (max-width: 1000px) {

    .ingredients {
        width: 60%;
        padding-right: 0;
        float: none;
        border-bottom: 1px solid #fff;
        padding: 0;
        margin-left: 2.5%;
    }

    .flex-active-slide .ingredients {
        top: 10px;
    }

    .slider-copy {
        padding-bottom: 10px;
    }

    .beer-info {
        padding-top: 10px;
        border: none;
        width: auto;
    }

    .abv, .ibu {
        border: none;
        padding: 0;
        float: left;
    }

    .ibu {
        margin-left: 20px;
    }

    ul.beer-slider p {
        line-height: 1.6em;
        margin-bottom: 7px;
    }

    .ingredients h3 {
        line-height: 1.5em;
    }

    .gravity-low, .glass-empty {
        display: none;
    }

    .flex-direction-nav a {
        top: 15%;
    }

    .drinking-tips {
        width: 60%;
    }

    .serving-temp {
        padding-right: 0;
        width: 50%;
        box-sizing: border-box;
    }

    .gravity {
        width: 40%;
        padding: 2px 0 2px 10%;
    }

}

@media only screen and (max-width: 930px) {

    #beer-slider.flexslider {
        height: 590px;
    }

    .learn-lingo {
        font-size: 12px;
    }

    .slider-right-col {
        width: 60%;
    }

    .beer-description {
        width: 36%;
    }

    .ingredients, .drinking-tips, .beer-info {
        width: 100%;
    }

    .slider-titles h2 {
        font-size: 65px;
    }

    .gravity {
        padding: 2px 0 2px 5%;
    }

    .drinking-tips h2 {
        font-size: 40px;
    }

    .serving-temp h2 img {
        width: 15px;
        top: -3px;
    }

    .glass-full {
        width: 15px;
        margin-top: 6px;      
    }

    .beer-info h2 {
        font-size: 40px;
    }

    .slider-can {
        display: none;   
    }

}

@media screen and (max-width: 860px) {
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px;
    }

    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px;
    }
}

@media only screen and (max-width: 767px) {

    #beer-slider.flexslider {
        height: 700px;
    }

    .beer-description, .slider-right-col {
        width: 100%;
        padding-right: 0;
        border: none;
    }

    .slider-border {
        padding: 3%;
    }

    .drinking-tips, .ingredients {
        margin-left: 0;
    }

    .beer-info {
        padding-left: 0;
    }

    .beer-style h3, .ingredients h3 {
        font-size: 15px;
    }

    ul.beer-slider p {
        font-size: 14px;
    }

    .flex-direction-nav .flex-prev,
    .flex-direction-nav .flex-next {
        display: none;
    }

    .beer-style {
        height: auto;
    }

}

@media only screen and (max-width: 555px) {

    .hover-show:hover {
        width: 20px;
    }

}

@media only screen and (max-width: 530px) {

    .learn-lingo {
        display: none;
    }

    .slider-titles h2 {
        font-size: 45px;
    }

    .slider-sub-title {
        font-size: 12px;
    }

}

@media only screen and (max-width: 460px) {

    .slider-titles h2 {
        font-size: 35px;
    }

    #beer-slider.flexslider {
        height: 630px;
    }

    .drinking-tips, .slider-links {
        display: none;
    }

}