body {
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
    
    background-color: #FFF;
    
    -moz-text-size-adjust: auto;
    -webkit-text-size-adjust: auto; 
    -ms-text-size-adjust: auto;
    text-size-adjust: auto;
    
    -webkit-font-smoothing: antialiased;
}

html.loading,
html.loading * {
    cursor: wait !important;
}


/* DOCUMENT PERS
 * ------------------------------------------------------------ */
 
/* selection */
::-moz-selection {
    color: #FFF;
    background: #eb212e;
}
::selection {
    color: #FFF;
    background: #eb212e;
}

/* scrollbar */
::-webkit-scrollbar{
    width: 12px;
    background-color: #FFF;
    border-left: 2px solid rgba(0,0,0.0.5);
}

::-webkit-scrollbar-button {}
::-webkit-scrollbar-button:hover {}

::-webkit-scrollbar-track {
}
::-webkit-scrollbar-track-piece{
}

::-webkit-scrollbar-thumb {
    background-color: #333; 
    border: 4px solid #FFF;
}
::-webkit-scrollbar-thumb:hover {
    background: #000;
}
::-webkit-scrollbar-corner{}

/* resizer */
::-webkit-resizer{}


/* HEADINGS
 * ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6{
    margin-top: 10px;
    margin-bottom: 35px;
    
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

h2 {
    font-size: 29px;
    line-height: 36px;
}
h5 {
    font-size: 15px;
    line-height: 22px;
}
 

/* TEXT
 * ------------------------------------------------------------ */
p {
    margin-bottom: 15px;
    padding-right: 10px;
}
 

/* LINKS
 * ------------------------------------------------------------ */
a {
    color: #eb212e;
    text-decoration: none !important;
    outline: none !important;
    transition: color .3s ease, background-color .3s ease;
}
html.no-touch a:hover{
    color: #000;
}
button {
    outline: none !important;
    border: none !important;
    background: none;
}


/* FORM
 * ------------------------------------------------------------ */
form {
    
}
form fieldset{
    margin-bottom: 15px;
}
form .form-control{
    height: auto;
    
    padding: 0 15px;
    
    color: #888888;
    font-size: 13px;
    line-height: 43px;
    background-color: #f9f9f9;
    
    border: 1px solid #f9f9f9;
    outline: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    
    transition: border-color .3s ease;
}
form textarea.form-control {
    padding: 15px;
    line-height: 22px;
    resize: vertical;
}
form .form-control:focus{
    border-color: #DDD;
}
form .form-control.error{
    border-color: #eb212e;
}
form .form-control::-webkit-input-placeholder {transition: opacity .3s ease;}
form .form-control:-moz-placeholder {transition: opacity .3s ease;}
form .form-control::-moz-placeholder {transition: opacity .3s ease;}
form .form-control:-ms-input-placeholder {transition: opacity .3s ease;}
form .form-control:focus::-webkit-input-placeholder {opacity: 0;}
form .form-control:focus:-moz-placeholder {opacity: 0;}
form .form-control:focus::-moz-placeholder {opacity: 0;}
form .form-control:focus:-ms-input-placeholder {opacity: 0;}


/* ALERT
 * ------------------------------------------------------------ */
.alert{
    border: none !important;
    border-radius: 0 !important;
}
.alert.alert-success{
    color: #FFF;
    background-color: #79b346;
}
.alert.alert-warning{
    color: #FFF;
    background-color: #d2525b;
}


/* BREADCRUMB
 * ------------------------------------------------------------ */
.breadcrumb{
    display: block;
    position: relative;
    float: right;
    max-width: 100%;
    margin: 0;
    
    padding: 0;
    border-radius: 0;
    
    list-style: none;
    background: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.breadcrumb li {
    display: inline;
    
    margin: 0 0 0 3px;
    
    line-height: 34px;
    vertical-align: middle;
}
.breadcrumb li,
.breadcrumb li a {
    color: #999999;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.breadcrumb li a {
    color: #444;
}


/* BUTTONS
 * ------------------------------------------------------------ */
.btn {
    padding: 8px 48px;
    
    font-size: 14px;
    text-transform: uppercase;
    
    border: 3px solid #e2e2e2 !important;
    border-radius: 20px;
    outline: none!important;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.btn:active{
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.btn-xs {
    padding: 3px 12px;
    font-size: 10px;
}

/* default */
.btn-default {
    color: #999;
    border-color: #e2e2e2 !important;
    background-color:#FFF !important;
}
html.no-touch .btn-default:hover,
html.no-touch .btn-default:focus,
.btn-default:active,
.btn-default:active:focus{
    color: #FFF;
    background-color: #eb212e !important;
    border-color: #eb212e !important;
}

/* primary */
.btn-primary {
    color: #FFF;
    background-color:#eb212e !important;
    border-color: #eb212e !important;
}
html.no-touch .btn-primary:hover,
html.no-touch .btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus{
    color: #eb212e;
    background-color: #FFF !important;
    border-color: #FFF !important;
}

/* control */
.btn.btn-control{
    display: block;
    height: 30px;
    line-height: 30px;
    
    padding: 0 10px;
    
    color: #FFF;
    background: #eb212e;
    border: none !important;
    border-radius: 0 !important;
    
    text-align: center;
    vertical-align: middle;
}
.btn.btn-control i {
    margin-left: 5px;
}


/* COLUMNS
 * ------------------------------------------------------------ */
.col-md-separed-right:after,
.col-md-separed-left:after {
    content:  '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    border-right: 1px solid #EEE;
}
.col-md-separed-right:after {
    right: 0;
}
.col-md-separed-left:after {
    left: -1px;
}
@media (max-width: 991px){
    .col-md-separed-right:after,
    .col-md-separed-left:after {
        content: none;
        display: none;
    }
}


/* OFFCANVAS
 * ------------------------------------------------------------ */
 
/* main */
.beers-offcanvas .beers-offcanvas-bar .beers-offcanvas-content ul.nav.nav-main{
}

/* social */
.beers-offcanvas .beers-offcanvas-bar .beers-offcanvas-content ul.nav.nav-social{
    border-top: 1px solid #EEE;
}
.beers-offcanvas .beers-offcanvas-bar .beers-offcanvas-content ul.nav.nav-social li{
    display: inline-block;
}


/* GOOGLE MAPS
 * ------------------------------------------------------------ */
.gm-style {
    line-height: 15px;
    font-size: 13px;
}
.gm-style h4{
    margin: 0 0 10px;
} 
