/* SITEWIDE CHANGES */
body {font-family: 'Open Sans', sans-serif; color:#171717; background-color:#ffffff;}
h1, h2, h3, h4, h5, h6 {font-family: 'Gentium Book Basic', serif;}
p {line-height: 1.6; margin-bottom: 20px; font-size: 14px;}
a {color:#B51129;}
a:hover {color:#98005D; text-decoration:none;}
.btn-primary , .btn-primary:focus{background-color:transparent; border-color:#B51129; margin: .5em 0; color:#B51129; transition-property: background; transition-duration: 1s; transition-timing-function: linear;}
.btn-primary:hover {background-color:#B51129; border-color:#B51129; color:#FFFFFF;}

/* NAV MENU */
.navbar-default {background-color:#ffffff;}
.navbar-brand {padding: 5px 0;}
.navbar-brand img {width:140px;}
.navbar-nav > li > a { 
	padding-top: 15px;
	font-size:15px;
	padding-right:13px;
	padding-left:13px;
}
.navbar-nav > li > a:hover {border-bottom: 2px solid #B51129; padding-bottom:5px;}
.navbar-default .navbar-toggle {
	border:none;
	background-color:#ffffff;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:active, .navbar-default .navbar-toggle:visited, .navbar-default .navbar-toggle:focus {
	background-color:#ffffff;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #171717;
}

@media(max-width:1200px){
	.navbar-default { background-color:rgba(255,255,255,1); border-bottom:1px solid #efefef;}
	.navbar-nav {margin-top:0; margin-bottom:0;}
	.navbar-nav > li > a {color:#171717 !important; text-shadow: none; border-bottom: 1px solid #efefef; padding-top:13px;}
	.navbar-nav > li > a:hover{ 
		color:#ffffff !important;
		background-color: #B51129 !important;
		border-bottom: 1px solid #efefef;
		padding-bottom:10px;
	}
}

/* Internal Header */
.site-wrapper .internal-content {
	margin-top:65px;
}
.site-wrapper .internal-header .title {
	font-size: 8em;
	text-align:center;
}
.site-wrapper .internal-header  .gradient-layer {
}
.site-wrapper .internal-content {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

/* Wine List */
.wine-list .winewrap {
	border: 1px solid #fafafa;
}
.wine-list .wine {
	position: relative;
	margin: 0 0 30px;
	z-index: 1;
	display: block;
	background: #ffffff;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	cursor: pointer;
	cursor: hand;	
}
.wine .thumbnail {
	background: #ffffff;
	overflow: hidden;
	max-height: 520px;
}
.thumbnail {
    padding: 0;
}
.wine:hover .thumbnail img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 1;
}
.wine .thumbnail img {
	display: block;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	opacity: .85;
}
.wine .caption {
	background: #ffffff;
	padding: 0px 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-moz-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-ms-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-o-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
}
.wine .caption .slogan {
	position: absolute;
	top:0;
	left: 0;
	background: #333;
	padding: 10px 15px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
.wine .caption .title {
	margin: 0;
	padding: 0 0 10px;
	color: #333333;
	font-size: 26px;
	font-weight: 700;
}
.wine .caption .description {
	display:block;
	color: #666666;
	font-size: 14px;
	line-height: 1.8em;
	height: 110px;
}
.wine .caption .call-to-action {
	margin: 1em 0 0;
	color: #999999;
}
.wine:hover .call-to-action .btn-primary {
	background-color:#B51129;
	border-color:#B51129;
	color:#FFFFFF;
}

/* INDIVIDUAL WINE PAGE */
.panel-default > .panel-heading {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.panel-default > .panel-heading a:hover, .panel-default > .panel-heading a:active, .panel-default > .panel-heading a:visited {
    color: #ffffff;
	text-decoration: none;
}

.panel-heading {
    border-bottom: 1px solid transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 20px 15px;
}
.previous,
.next{
   position:fixed;
   top:50%;
   -webkit-transform:translateY(-50%);
   -moz-transform:translateY(-50%);
   -ms-transform:translateY(-50%);
   transform:translateY(-50%);
}
.previous {
   left: 0;
 }
.next {
   right: 0;
 }
.pager li > a, .pager li > span {
    background-color: transparent;
	color: #171717;
    border: none;
    padding: 5px 14px;
}
.pager li > a:hover, .pager li > a:focus {
    background-color: transparent;
    text-decoration: none;
}

.tooltip > .tooltip-inner {
    background-color: #171717;
    color: #FFFFFF;
    padding: 15px;
    font-size: 10px;
}

.tooltip.right > .tooltip-arrow {
	border-right-color: #171717;
}

.tooltip.left > .tooltip-arrow {
	border-left-color: #171717;
}

/* WINE CLUB PRICING GRID */
.db-bk-color-one {
    background-color: #ffffff;
}

.db-padding-btm {
    padding-bottom: 50px;
}

.db-pricing-eleven .type .lead {
	font-size:20px;
}

.db-pricing-eleven {
    margin-bottom: 2em;
    margin-top: 2em;
    text-align: center;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.db-pricing-eleven ul {
	list-style: none;
	margin: 0;
	text-align: center;
	padding-left: 0px;
}

.db-pricing-eleven ul li {
	padding: 1em .5em;
	border-bottom: 1px solid #eeeeee;
}

.db-pricing-eleven ul li i {
	margin-right: 5px;
}

.db-pricing-eleven .title {
	background-color: #B51129;
	padding: 1em;
	color: #FFFFFF;
}

.db-pricing-eleven .price small {
	display: block;
	font-size: 12px;
	margin-top: 22px;
}

.db-pricing-eleven .type {
	background-color: #FFFFFF;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	color: #171717;
	padding: 2em 1em 1em;
}

.db-pricing-eleven .pricing-footer {
	padding: .75em;
}

.db-attached > .col-lg-4,
.db-attached > .col-lg-3,
.db-attached > .col-md-4,
.db-attached > .col-md-3,
.db-attached > .col-sm-4,
.db-attached > .col-sm-3 {
    padding-left: 0;
    padding-right: 0;
}

.db-pricing-eleven.popular {
    margin-top: 10px;
}

.db-pricing-eleven.popular .title {
	padding-top: 32px;
}

/*BEGIN Privacy Policy*/
.privacy-policy > .panel-default > .panel-heading {
	background-color: #f5f5f5;
	border-color: rgba(0, 0, 0, 0.1);
	color: #000;
}

.privacy-policy > .panel-default > .panel-heading a:hover, .privacy-policy > .panel-default > .panel-heading a:active, .privacy-policy > .panel-default > .panel-heading a:visited {
	color: #000;
	text-decoration: none;
}
/*END Privacy Policy*/

@media(min-width:992px){
	.db-pricing-eleven ul {
		height: 450px;
	}
	
	.db-pricing-eleven .type {
		height: 200px;
	}

	.db-pricing-eleven .secondary {
		background-color: #9e0f24;
	}	
}

@media(min-width:992px) and (max-width:1200px){
	.db-pricing-eleven .type {
		height: 250px;
	}	
}

@media(min-width:768px) and (max-width:992px){
	.db-pricing-eleven ul {
		height: 650px;
	}

	.db-pricing-eleven .type {
		height: 300px;
	}	
}

@media(max-width:768px){
	.db-pricing-eleven .secondary {
		background-color: #B51129;
	}	
}

/* CONTACT PAGE */

.contact-info p.lead {margin-bottom: 0;}

@media(min-width:992px){
	.contact-info {
		height:150px;
		margin-bottom: 1.5em;
	}
}

@media(max-width:992px){
	.contact-info {
		margin: 2em 0;
	}
}

/* FOOTER */
footer {
	background-color: #171717;
	height: 75px;
	padding: 1.25em 0;
}

footer a, footer a:hover, footer a:visited, .mastfooter a, .mastfooter a:hover, .mastfooter a:visited {
	font-size: 12px;
	color: #CCC;
	margin: 0 20px;
	}