/* ======================================================================================================================================================
    08/19/19 - GT added this css file. It is not compiled.
====================================================================================================================================================== */

/* removes the author from people pages in blog */
.people-template-default .author {
	display: none !important;
}

.featured-wine h3, .featured-wine p {
    color: #FFF;
}

.popup {
    display: none;
}

.popup--open {
    display: block;
}
/* Popup CSS */
.popup__container {
	bottom: 0;
	left: 0;
	margin: auto;
	position: fixed;
	right: 0;
	top: 0
}
.popup__container {
    display: flex;
    align-items: center;
    justify-content: center;
	table-layout: fixed;
	z-index: 200;
	background-image: url("../assets/img/agegate-veil.png");
	width: 100%;
	min-height: 100%;   
}

.popup__content {
	display: inline-block;
    position: relative;
	text-align: center;
	width: 40%;
	min-width: 400px;
	background: #fff;
    padding: 2em;
}

.popup__field {
    display: block;
    margin: auto;
    width: 70%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.popup__button {
    display: block;
    background-color: rgba(0, 0, 0, 0);
	border: 1px solid;
	padding: 10px 12px;
    text-transform: uppercase;
    margin: 1em auto;
}

.popup__button:focus, .popup__button:hover {
	text-decoration: underline;
	color: #b7b7b7;
}

.popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: #fff 2px solid;
    color: #8b2031;
}

.popup__close:hover {
    border: #000 2px solid;
    color: #000;
}