/* LOADING INDICATOR */

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 30px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 34px;
    height: 34px;
    margin: 0 !important;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #b3daff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* LAYOUT DESIGN */

#btnIcon>img {
    max-height: 3em;
}

body {
    margin: 0;
    font-family: Verdana, Helvetica, sans-serif;
}


/* h1,
h2,
h3,
p,
em {
    margin-left: 20px;
    margin-right: 20px;
} */

p {
    font-size: 1em;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.3em;
}

.hidden {
    visibility: hidden;
}

.header {
    height: 5em;
}

img.hero {
    background-attachment: fixed;
    width: 100%;
}

.container {
    margin-left: 20px;
    margin-right: 20px;
}

.container img {
    padding: 5px 0;
    max-width: 100%;
}

@media screen and (min-width: 650px) {
    .rowWrap {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .container img {
        padding: 10px 0;
        max-width: calc(50% - 5px);
    }
}

@media screen and (min-width: 768px) {
    .container {
        padding: 0 10px;
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 20px);
        max-width: 1200px;
    }
    /* .container div[data-feature] { */
    /* min-width: 50%; */
    /* } */
    .container img {
        padding: 10px;
        max-width: calc(50% - 20px);
    }
    .footer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: space-between;
    }
    .footer>div {
        width: calc(100% / 2);
        text-align: center;
    }
    /* h1,
    h2,
    h3,
    p,
    em,
    ul.list {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 1000px;
    } */
}

@media screen and (min-width: 950px) {
    .footer {
        display: flex;
        flex-direction: row;
        align-content: space-between;
    }
    .footer>div {
        width: calc(100% / 3);
    }
}


/* MENU and PAGE SWITCHING */

#menu>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#menu a {
    text-decoration: none;
    color: white;
    margin: 10px;
    text-align: center;
}

.window {
    position: absolute;
    width: 0;
    overflow-x: hidden;
    min-height: calc(100% - 5em);
    display: flex;
    flex-direction: column;
    transition: .75s;
}

.window.open {
    width: 100%;
}

.window.close {
    width: 0;
}

.window>div {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    #btnMenu {
        display: none;
    }
    #menu {
        width: 100%;
        height: 3em;
        position: relative;
        padding-top: 0;
        overflow: hidden !important;
    }
    #menu>div {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    #menu a.font-l {
        font-size: 1.5em;
    }
    #menu a:first-child {
        margin-top: 10px;
    }
    .window {
        padding-top: 0;
    }
    .window>div {
        margin: 0;
    }
    .window.open:not(#menu) {
        width: 100%;
        position: absolute;
        transition: 0s;
    }
    .window:not(#menu).close {
        width: 0;
    }
    header {
        display: flex;
        justify-content: center;
    }
    .header {
        height: 10em;
    }
    a.header {
        position: relative;
        display: block;
    }
    #btnIcon>img {
        max-height: 10em !important;
    }
}


/* LISTS */

ul.list {
    list-style: none;
    padding-inline-start: 0;
    /* margin: 1.5em 30px; */
    margin: 1.5em 0;
}

ul.list em {
    margin-left: 0;
    margin-right: 0;
}

ul.list>li {
    margin: 1em 0;
}

ul.list>li>a {
    text-decoration: none;
    width: 100%;
    display: block;
}

@media screen and (min-width: 768px) {
    ul.list {
        margin: 1.5em 30px;
    }
}


/* EFFECTS */

.shadow {
    box-shadow: 0 1px 50px white;
}

.shadow-small {
    box-shadow: 0 1px 5px #b3daff;
}

.round {
    border-radius: 100px;
}


/* FONT */

.font-xl {
    font-size: 3em;
}

.font-l {
    font-size: 2em;
}

.font-s {
    font-size: .8em;
}


/* MARGIN SPACING */

.margin-vertical {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.margin-left {
    margin-left: .5em;
}

.margin-left-big {
    margin-left: .8em;
}

.margin-top {
    margin-top: .5em;
}

.margin-right {
    margin-right: .5em;
}

.margin-bottom {
    margin-bottom: .5em;
}

.right {
    position: absolute;
    right: 0;
}

.left {
    position: absolute;
    left: 0;
}

.top {
    position: absolute;
    top: 0;
}

.center-vertically {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

img.small {
    max-width: 200px;
}


/* CONTACT US */

a div.space-evenly {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a div.space-evenly i {
    width: 2em;
    text-align: center;
}


/* @media screen and (min-width: 768px) {
    a.contact {
        max-width: 300px;
    }
} */


/* SOCIAL MEDIA */

a.socialMedia {
    font-size: 2em;
    margin: 10px;
}


/* BEER LISTS */

.beerTitle,
.beerBrewery,
.beerStyle,
.beerABV {
    display: inline-block;
    vertical-align: bottom;
}

.beerTitle,
.beerStyle,
.beerABV {
    margin-bottom: 5px;
}

.beerTitle {
    font-size: 1.1em;
    font-weight: bold;
}

.beerBrewery {
    font-size: .9em;
    font-weight: normal;
}

.list .row div:not(:first-child) {
    padding-left: 10px;
}

.line {
    margin: .2em 0;
}

div[data-feature="ourBrews"] ul.list li,
div[data-feature="currentTapList"] ul.list li {
    margin: 1.5em 0;
}


/* TEXT IMAGES */


/* .heroImage_container {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
    padding: 4em 0;
} */

.textImage_container,
.heroImage_container {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
    padding: 4em 0;
}

.textImage_content {
    position: relative;
    z-index: 2;
}

.textImage_container:before {
    background: rgba(0, 0, 0, 0.8);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.textImage_centered {
    position: absolute;
    width: calc(100% - 40px);
    text-align: center;
    transform: translate(0, -100%);
}

@media screen and (min-width: 768px) {
    .heroImage_container {
        padding: 20em 0;
    }
    .textImage_container {
        padding: 10em 0;
    }
}


/* SELECT DROP DOWN LIST */

select.selectList {
    display: none;
}

a.selectListItem {
    margin-top: 1em;
    border-radius: 5px;
    display: block;
}

a.selectListItem,
.selectList {
    text-decoration: none;
    /* margin-left: 30px; */
    font-size: 1em;
}

a.selectListItem,
div.selectList a {
    padding: 5px 10px;
    width: 300px;
    max-width: calc(100% - 20px);
}

a.selectListItem i {
    float: right;
}

div.selectList {
    display: none;
    position: absolute;
    border-top: 1px solid;
    width: 320px;
    max-width: calc(100% - 20px);
}

div.selectList a {
    display: block;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    a.selectListItem,
    .selectList {
        margin-left: 30px;
    }
}


/* EVENTS */

.eventContainer {
    margin: 20px 10px;
}

.eventTitle {
    font-size: 1.3em;
    padding: 10px 20px;
}

.eventRow {
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.eventRow:last-child {
    border-top-style: outset;
    border-top-width: 1px;
}

.eventHalf {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.eventHalf:last-child {
    border-left-style: outset;
    border-left-width: 1px;
}

.eventRow i.withDiv {
    width: 30px;
    text-align: center;
}

.eventRow div.withI {
    width: calc(100% - 30px);
}


/* .eventHalf div.withI {
    text-align: center;
} */

.eventHalf {
    padding: 0 5px;
    height: 100%;
    width: 50%
}

.eventHalf>div:first-child {
    font-size: .8em;
}

@media screen and (min-width: 768px) {
    [data-feature="events"]>div {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .eventContainer {
        width: calc(50% - 20px);
        position: relative;
        margin: 10px;
    }
    .eventBottom {
        position: absolute;
        bottom: 0;
        width: calc(100% - 20px);
        height: 40px;
    }
    .eventContainer>.eventFull:nth-last-child(2) {
        margin-bottom: 61px;
    }
}

@media screen and (min-width: 1000px) {
    .eventContainer {
        width: calc(33.3% - 20px);
    }
}