/*------
AGE GATE
------*/
body.modal-up{
	overflow: hidden;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
}
.modal-container{
	position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	padding: 20px;
	visibility:visible;
	opacity:1;
	-webkit-transition-delay:0s;
	     -o-transition-delay:0s;
	        transition-delay:0s;
}
.modal-container.inactive,
.modal-container.inactive .modal-options,
.modal-container.inactive .modal-option{
	visibility:hidden;
	opacity:0;
	-webkit-transition:visibility 0s linear 0.2s,opacity 0.2s linear;
	-o-transition:visibility 0s linear 0.2s,opacity 0.2s linear;
	transition:visibility 0s linear 0.2s,opacity 0.2s linear;
}
.modal{
	background: #fff;
    max-width: 100%;
    text-align: center;
    padding: 20px 25px 10px 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
}
.modal-logo{
	width: 50%;
	max-width: 180px;
}
.modal h2{
	position: relative;
	color: #8c7258;
	top: auto;
	left: auto;
    margin: 15px 0 0 0;
    font-size: 31px;
}
.modal-options-wrapper{
	position: relative;
	height: 70px;
}
.modal-options,
.modal-error-message-wrapper{
	height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
    position: absolute;
    top: 0;
    width: 100%;
}
.modal-options{
    z-index: 1;
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 0s linear 0s, opacity .2s;
    -o-transition: visibility 0s linear 0s, opacity .2s;
    transition: visibility 0s linear 0s, opacity .2s;
}
.modal-options.completed{
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear .2s, opacity .2s;
    -o-transition: visibility 0s linear .2s, opacity .2s;
    transition: visibility 0s linear .2s, opacity .2s;
}
.modal-option{
	font-size: 18px;
	margin-bottom: 0;
	padding: 11px 26px;
	margin: 0 8%;
}
.modal-error-message-wrapper{
	visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear .2s, opacity .2s;
    -o-transition: visibility 0s linear .2s, opacity .2s;
    transition: visibility 0s linear .2s, opacity .2s;
}
.modal-error-message{
	background-color: #ffcaca;
    border-radius: 2px;
    border: 1px solid #8a0000;
	color: #8a0000;
	margin: 21px 0 20px 0;
	display: inline-block;
	padding: 4px 9px;
}
.modal-error-message-wrapper.active{
	visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 0s linear 0s, opacity .2s;
    -o-transition: visibility 0s linear 0s, opacity .2s;
    transition: visibility 0s linear 0s, opacity .2s;
}
.modal hr.modal-first-hr{
	margin-top: 0;
	padding-top: 0;
}
.modal-career-copy{
	font-size: 16px;
}
.modal hr.modal-second-hr{
	margin-bottom: 0;
    padding-bottom: 6px;
}
.modal-link{
	background: #8c7258;
    color: #eee;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    -webkit-border-radius: 0px;
    -webkit-appearance: none;
    border-radius: 0;
    cursor: pointer;
    line-height: normal;
    padding: 8px 18px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.modal p.modal-drink-responsibly{
	margin-bottom: 0;
	color: #00664e;
}
#noscript-age-alert{
    background-color: #ffcaca;
    border-radius: 2px;
    border: 1px solid #8a0000;
    color: #8a0000;
    padding: 4px 9px;
    margin-top: 10px;
    text-align: center;
}
@media (min-width: 360px) {
    .modal h2{
        font-size: 35px;
    }
    .modal-options-wrapper{
        height: 100px;
    }
    .modal-options,
    .modal-error-message-wrapper{
	    height: 100px;
    }
}
/*----------
END AGE GATE
----------*/