/* Icon Fonts - FontAwesome */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/icon-fonts/fontawesome/fontawesome-webfont.eot');
    src: url('../fonts/icon-fonts/fontawesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/icon-fonts/fontawesome/fontawesome-webfont.woff') format('woff'),
         url('../fonts/icon-fonts/fontawesome/fontawesome-webfont.ttf') format('truetype'),
         url('../fonts/icon-fonts/fontawesome/fontawesome-webfont.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class*="icon-"]:before {
    font-family: 'FontAwesome', sans-serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before { content: '\f09a'; }
.icon-instagram:before { content: '\f16d'; }
.icon-twitter:before { content: '\f099'; }
.icon-linkedin:before { content: '\f0e1'; }
.icon-youtube:before { content: '\f167'; }
.icon-pinterest:before { content: '\f0d2'; }

/* External link icon */
.icon-external:before {
    content: '↗';
    font-family: 'Cabin', sans-serif;
}

/* Ensure icons display properly */
.social-links i,
.social-links [class*="icon-"] {
    font-size: inherit;
    vertical-align: middle;
}

/* Glass and Bottle Icons using images */
.icon-glass,
.icon-bottle {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 4px;
}

.icon-glass {
    background-image: url('../images/glass-icon_20px.png');
}

.icon-glass:before {
    content: none;
}

.icon-bottle {
    background-image: url('../images/bottle-icon_20px.png');
}

.icon-bottle:before {
    content: none;
}



