/* 
	presenation.css 
	
	COLOR PALETTE:
	Off White: #fffffe;
	Lt Tan: #fffcf2;
	Md Tan: #f2efdb;
	Dk Tan: #ece0ca;
	Dk Brown: #2b2117;
	Rose: #e8dbd5;
	Gold/green:#b8b251;
	Dk Gold/green:#918c34;
	Dk Burgundy: #531010;
	Fushia: #a21542;
	Aqua/Teal: #204342;
*/

:root {
	--color-gold: #5D5A1D; /* used to be #b8b251 but need to be darker for ADA color contrast */
	--color-gold-dark: #918c34;
	--color-btn-primary: #27292B;
	--color-error: #C62828; /* Red on white does not have enough contrast */
	--color-panel-dark-grey: #525252; /* was #777; */

	/* based on brand guide */
	--color-brand-red: #8E0505;
	--color-brand-logo-burgundy: #6E0C0E;
	--color-brand-dark-burgundy: #4F1418;
	--color-brand-gray-06: #E7E4E2;
}

::-webkit-scrollbar-track {
  width: 8px;
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.25);
}

body
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 76%;
	color: #2b2117;
}


/* DEFAULT & GLOBAL FONT STYLING / DISPLAY STYLING */
h1, caption
{
	margin: 0 0 0.25em 0;
	padding: 0;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 1.7em;
	font-weight: normal;
	color: #531010;
}
h2
{
	margin: 0.5em 0 0.5em 0 ;
	padding: 0;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 1.25em;
	font-weight: 600;
	color: #531010;
}

.H2ReviewNotes
{
	margin: 0.5em 0 0.25em 0;
	padding: 0 0 0 0 ;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 1.25em;
	font-weight:  Normal ;
	color: #531010;
	display: block;
}

.H2ProductDetail
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	font-weight: bolder;
	color: #2b2117;
	display: inline;
}

h2.borderbtm
{
	padding: 0 0 0.25em 0;
	border-bottom: 1px solid #ece0ca;
}


h2.borderADV
{
	border-bottom: 1px solid #ece0ca;
	width: 250px;
}
p
{
	font-size: 1em;
	line-height: 130%;
}
dl 
{
    margin: 0;
    padding: 0;
    float: none;
    clear: both;
    margin-inline-start: -9px;
}
dl dt
{
	display: block;
	margin: 0;
	padding: 0.5em 0 0.5em 0.75em;
	width: 750px;
	float: left;
	clear: left;
	text-align: left;
}
dl dd
{
	margin-left: 9px;
	padding: 0.5em 0.15em;
	clear: right;
}

/* 
	This is empty and is solely because the CSS here is targeting generic html tags...
*/
.stylelessAnchorButton, .stylelessAnchorButton:hover, .stylelessAnchorButton:visited, .stylelessAnchorButton:focus {
	font-size: 13.3px;
	text-decoration: none;
}

.anchorButton {
	box-shadow: none;
	text-decoration: underline;
	padding: 0;
	border: none;
	background-color: transparent;
}

.primaryButton {
	color: #FAF8F8;
	background-color: #27292B; /* for KLMaint IE6/7 compatibility reasons */
	background-color: var(--color-btn-primary);
	box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
	border-radius: 4px;
	border: none;
	padding: 4px 12px;
	font-weight: 700;
}


.primaryButton:hover, .primaryButton:visited, .primaryButton:focus {
	color: #FAF8F8;
}

.goButton {
	width: 33px;
	height: 21px;
	padding: 0px;
	font-size: 1em;
	font-weight: bold;
	box-shadow: none;
	border-radius: 0px;
	text-transform: uppercase;
}

.checkoutButton {
	width: 80px;
	height: 21px;
	padding: 4px 12px;
	font-size: 1em !important;
	box-shadow: none;
	border-radius: 0px;
	text-transform: uppercase;
}

.checkoutButton:hover, .checkoutButton:visited, .checkoutButton:focus {
	text-decoration: none;
	color: #fff;
}

.global-serif {
	font-family: Georgia, "Times New Roman", Times, serif;
}
.global-pop-color
{
	color: #a21542;
}
.global-light-color
{
	color: #999999;
}
.global-medium-color
{
	color: #666666;
}
.smalltxt
{
	font-size: 11px;
}
#content li
{
	padding: 0.3em 0;
}
#content img.floatRight
{
	margin: 0 0 1em 1em;
}
.ErrorText {
	color: #C62828; /* KLMaint compatibility */
	color: var(--color-error, #C62828);
	font-family: arial,helvetica;
	font-size: 0.95em;
}

.validation-summary-errors {
	color: #C62828; /* KLMaint compatibility */
	color: var(--color-error, #C62828);
	font-family: arial,helvetica;
	font-size: 0.95em;
}

.strike
{
	text-decoration: line-through;
}

/* LINK STYLES... for new CSS, DO NOT TARGET HTML ELEMENTS DIRECTLY */
a:not(.stylelessAnchorButton):link {
	color: #204342;
	text-decoration: underline;
}
a:not(.stylelessAnchorButton):visited {
	color: #204342;
	text-decoration: underline;
}
a:not(.stylelessAnchorButton):hover {
	color: #918c34; /* KLMaint compatibility */
	color: var(--color-gold-dark);
	text-decoration: underline;
}
a:not(.stylelessAnchorButton):active {
	color: #204342;
	text-decoration: underline;
}

#cart-nav a:not(.stylelessAnchorButton):link {
	color: #ece0ca;
	text-decoration: none;
}
#cart-nav a:not(.stylelessAnchorButton):visited {
	color: #ece0ca;
	text-decoration: none;
}
#cart-nav a:not(.stylelessAnchorButton):hover {
	color: #918c34; /* KLMaint compatibility */
	color: var(--color-gold-dark);
	text-decoration: none;
}
#cart-nav a:not(.stylelessAnchorButton):active {
	color: #ece0ca;
	text-decoration: none;
}

#content-subnav a:link
{
	color: #2b2117;
	text-decoration: none;
}
#content-subnav a:visited
{
	color: #2b2117;
	text-decoration: none;
}
#content-subnav a:hover
{
	color: #a21542;
	text-decoration: none;
}
#content-subnav a:active
{
	color: #2b2117;
	text-decoration: none;
}

.col-a h3 a:link {
    color: #531010;
    text-decoration: none;
}
.col-a h3 a:visited {
    color: #531010;
    text-decoration: none;
}
.col-a h3 a:hover {
    color: #931c16;
    text-decoration: none;
}
.col-a h3 a:active {
	color: #918c34; /* KLMaint compatibility */
	color: var(--color-gold-dark);
	text-decoration: none;
}

.col-a a:link
{
	text-decoration: none;
}
.col-a a:visited
{
	text-decoration: none;
}
.col-a a:hover
{
	text-decoration: none;
}
.col-a a:active
{
	text-decoration: none;
}

.breadcrumbs a:link, .breadcrumbs-search a:link, .results-block .result-desc .inventory a:link, .result-info .clubs a:link
{
	color: #666666;
	text-decoration: none;
}
.breadcrumbs a:visited, .breadcrumbs-search a:visited, .results-block .result-desc .inventory a:visited, .result-info .clubs a:visited
{
	color: #666666;
	text-decoration: none;
}
.breadcrumbs a:hover, .breadcrumbs-search a:hover, .results-block .result-desc .inventory a:hover, .result-info .clubs a:hover
{
	color: #a21542;
	text-decoration: none;
}
.breadcrumbs a:active, .breadcrumbs-search a:active, .results-block .result-desc .inventory a:active, .result-info .clubs a:active
{
	color: #666666;
	text-decoration: none;
}

#footer-nav a
{
	text-decoration: none;
}
#footer-nav .copyright a
{
	text-decoration: underline;
}



/* DEFAULT FORM STYLES */
.inputField
{
	padding: 3px;
	background-image: url(/images/bg_inputField.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border: 1px solid #999999;
}
.required
{
	color: #531010;
}
#searchFrm
{
	margin-right: 0em;
	float: left;
	vertical-align: middle;
}
#browseFilter select, #browseFilter2 select
{
	margin-left: 0.5em;
}
#ZipLookup fieldset
{
	margin: 1em 0;
	padding: 0.85em;
	border: 1px solid #999999;
}
	#ZipLookup fieldset legend {
		margin-bottom: 0.5em;
		padding: 0.5em;
		font-family: Georgia, "Times New Roman", Times, serif;
		font-weight: bold;
		color: #918c34; /* KLMaint compatibility */
		color: var(--color-gold-dark);
		border: 3px double #999999;
	}
#ZipLookup fieldset label
{
	padding: 0.25em 0;
}
.form-buttons
{
	display: block;
	margin: 0.35em 0;
	padding: 0;
	width: 60%;
	text-align: right;
}
form span.note
{
	display: block;
	font-size: 0.9em;
	color: #666666;
}

form span.note.smalltxt {
  font-size: 0.8em;
}


/* DEFAULT TABLE STYLES */
table.two-col
{
	display: block;
	margin: 0.25em 0;
	padding: 0;
}
table.two-col th
{
	padding: 0.35em;
}
table.two-col td
{
	padding: 0.15em 0.15em 0.15em 0;
}
table.shiprates
{
	display: block;
	margin: 0.75em 0;
	padding: 0;
}
table.shiprates th
{
	padding: 0.25em;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 0.9em;
	font-weight: bold;
	color: #531010;
	text-align: center;
	background-color: #ece0ca;
	border-right: 1px solid #e8dbd5;
	border-bottom: 1px solid #e8dbd5;
}
table.shiprates td
{
	padding: 0.25em;
	text-align: center;
  border-collapse: collapse;
}
table.shiprates tr.alt td
{
	background-color: #EEEEEE;
}
table.cart
{
	margin: 1em 0;
	padding: 0;
}
table.cart th
{
	margin: 0;
	padding: 0 0.25em 0.25em 0.5em;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 1.25em;
	font-weight: 600;
	color: #531010;
	background-color: transparent;
}
table.cart th.total
{
	margin: 0;
	padding: 0.5em 0.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.25em;
	font-weight: 600;
	color: #2b2117;
}
table.cart th.available-notice
{
	padding: 0.65em 0.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: 600;
	color: #531010;
	background-color: #f2efdb;
	border-bottom: 1px solid #e8dbd5;
}
table.cart th.available-notice span
{
	font-weight: normal;
}
table.cart td
{
	margin: 0;
	padding: 0.25em 0.25em 0.25em 0.5em;
	border-bottom: 1px solid #ece0ca;
}
table.cart td.shadow
{
	margin: 0;
	padding: 0.15em 0;
	height: 21px;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
	border-bottom: none;
}



/* CART NAV STYLES */
#cart-nav a
{
	font-size: 1.15em;
} #cart-nav a.login-link
{
	margin: 0 0.75em 0 0;
	padding: 0 0.75em 0 13px;
	background-image: url(/images/bg_loginkey.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
#cart-nav .login-name {
	font-size: 1em;
	color: #BCB95C; /* A different color-gold variant because the background this is for is not white, so need lighter color for ADA */
}
#cart-nav .login-name a.login-link
{
	padding: 0 0.75em 0 0;
	font-size: 0.9em;
	background-image: none;
}

a.topcart-link
{
	margin-right: 1em;
	padding-left: 18px;
	background-image: url(/images/bg_topcart.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
#cart-nav a.topcart-link span
{
	margin-right: 0.25em;
	font-size: 0.75em;
}

/* TOP MAIN NAV */
#main-nav
{
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: row;
	gap: 24px;
	justify-content: flex-end;
	height: 50px;
	margin-right: 62px;
	align-items: center;
}

#main-nav a.navItem {
	display: block;
	margin: 0;
	padding: 0;
	color: #dacaa9;
	text-decoration: none;
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'Times New Roman', Times, serif;
	position: relative;
}

#main-nav a.navItem:after {
	content: '\00B7';
	color: #dacaa9;
	position: absolute;
	left: -14px;
}

#main-nav a.navItem:first-child:after {
	display: none;
}

#main-nav a.navItem.active {
	color: #D4B073;
}

#main-nav a.navItem:hover, #main-nav a.navItem:focus-within {
	color: #fff;
}

/* CONTENT SUB NAV STYLES */
#content-subnav a {
	margin: 0.25em 0.05em 0 0.2em;
	padding: 0 0.2em 0 0.4em;
	float: Right;
	font-size: 0.9em;
	border-left: 1px solid #2b2117;
}


/* HOME CLASS STYLING */
.home .hp-main-banner
{
	margin-bottom: 0.5em;
}
.home .hp-main-banner img.left-column
{
	display: block;
	margin: 0 1em 8.9px 0;
	padding: 0;
	width: 226px;
}
.home .hp-main-banner img.main
{
	float: right;
}
.home .col-a
{
	margin: 0 -1px 0 0;
	padding: 0 1.3em 0 0;
	width: 17.28em;
	float: left;
	border-right: 1px solid #ece0ca;
}
.home .col-b
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 41.4em;
	min-height: 100%;
	float: left;
	border-left: 1px solid #ece0ca;
}
.home .col-c
{
	margin: 0 0 0 1em;
	padding: 0;
	width: 14.2em;
	float: left;
}
.home .lower-callout
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 56.7em;
	float: left;
	border-left: 1px solid #ece0ca;
}
.home .lower-callout .shadow-block
{
	border-bottom: none;
}
.home .col-a h3 
{
    margin: 0.5em 0 0.5em 0;
    padding: 0.25em 0;
    font-size: 0.95em;
    font-weight: 600;
    color: #3a3a3a;
    background-image: url(/images/bg_h3_nav-title.jpg);
    background-repeat: repeat-x;
    background-position: left top;
    border-top: 1px solid #ece0ca;
    border-bottom: 1px solid #ece0ca;
}
.home .col-a h3 span
{
	display: block;
	padding-left: 1.5em;
	background-image: url(/images/bg_h3_nav-arrow.gif);
	background-repeat: no-repeat;
	background-position: 5% center;
}
.home .col-b .column
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 49.9%;
	float: left;
}
.home .col-b .columnL
{
	padding-right: 1em;
	width: 47.4%;
}
.home .col-b .columnR
{
	padding-left: 1em;
	width: 47.5%;
}
.home .col-b .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.home .col-b .colBorderR
{
	border-right: 1px solid #ece0ca;
}
.home .column .price
{
	display: block;
	margin: 0.15em 0;
	padding: 0;
	font-size: 1em;
}
.scrolllistbox
{
	overflow: auto;
	width: 342px;
	height: 100px;
	border: 1px solid #EFE3CE;
	padding-left: 5px;
}



/* CONTENT CLASS STYLING */
.content .col-a
{
	margin: 0 -1px 0 0;
	padding: 0 1.3em 0 0;
	width: 13.5em;
	float: left;
	border-right: 1px solid #ece0ca;
}

.content .col-b
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 60.5em;
	min-height: 100%;
	float: left;
	border-left: 1px solid #ece0ca;
}

.content .colEmail-a
{
	margin: 0 -1px 0 0;
	padding: 0 1.3em 0 0;
	width: 13.5em;
	float: left;
}
	.content .colEmail-a h3 {
		margin: 0.5em 0 0.5em 0;
		padding: 0.25em 0;
		font-size: 0.95em;
		font-weight: 600;
		color: #918c34; /* KLMaint compatibility */
		color: var(--color-gold-dark);
		border-top: 1px solid #ece0ca;
		border-bottom: 1px solid #ece0ca;
	}
.content .colEmail-a h3 span
{
	display: block;
	padding-left: 1.5em;
	background-image: url(/images/bg_h3_nav-arrow.gif);
	background-repeat: no-repeat;
	background-position: 5% center;
}

.content .col-a h3 
{
	margin: 0.5em 0 0.5em 0;
	padding: 0.25em 0;
	font-size: 0.95em;
	font-weight: 600;
	color: #3a3a3a;
	border-top: 1px solid #ece0ca;
	border-bottom: 1px solid #ece0ca;
}


.content .col-a h3 span
{
	display: block;
	padding-left: 1.5em;
	background-image: url(/images/bg_h3_nav-arrow.gif);
	background-repeat: no-repeat;
	background-position: 5% center;
}
.content .col-b h3
{
	margin: 0.5em 0;
	padding: 0;
	font-size: 1.18em;
	font-weight: 600;
	color: #531010;
}
.content .col-b .column
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 49.9%;
	float: left;
}
.content .col-b .columnL
{
	padding-right: 1em;
	width: 47.4%;
}
.content .col-b .columnR
{
	padding-left: 1em;
	width: 47.5%;
}
.content .col-b .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.content .col-b .colBorderR
{
	border-right: 1px solid #ece0ca;
}
.content .page-filters-block
{
	display: block;
	margin: 0.5em 0;
	padding: 0;
}
.content .page-filters-block a
{
	padding: 0 0.2em;
}
.content .prod-feature-block
{
	display: block;
	margin: 0.5em 0;
	padding: 0 0.5em;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}
.content .prod-feature-Email
{
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}
.content .prod-feature-block .four-column
{
	margin: 0.25em 0;
	padding: 0 0.25em;
	width: 23.8%;
	float: left;
}
.content .prod-feature-block .four-column p
{
	margin: 0 0 0 2.5em;
	padding: 0;
}
.content .prod-feature-block .four-column .price
{
	display: block;
	margin: 0.15em 0;
	padding: 0;
	font-size: 1em;
	font-weight: bold;
}
.content .prod-feature-block .four-column .auctionImg
{
	float: left; 
	padding-right: 0.5em; 
	margin: 0 0.25em;
}
.content .prod-feature-block .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.content .results-block
{
	display: block;
	margin: 0.5em 0;
	padding: 1.25em 0 0 0;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}
.content .results-block .result
{
	display: block;
	margin: 0.75em 0;
	padding: 0;
}
.content .results-block .productImg
{
	margin: 0 0.25em;
	padding: 0.5em 0 0 0;
	width: 4em;
	float: left;
	text-align: center;
}
.content .results-block .auctionProductImg
{
	margin: 0 0.25em;
	padding: 0.5em 0 0 0;
	width: 100px;
	float: left;
	text-align: center;
}
.content .results-block .productImg img
{
	display: block;
	margin: 0 auto;
}

.content .results-block .productImg span
{
	display: inline;
	margin-top: 0.75em;
	text-align: center;
}

.content .results-block .result-desc
{
	margin: 0;
	padding: 0 0.4em;
	width: 42em;
	float: left;
	border-right: 1px solid #ece0ca;
}

.content .results-block .auctionResult-desc
{
	margin: 0;
	padding: 0 0.4em;
	width: 455px;
	float: left;
	border-right: 1px solid #ece0ca;
}

.content .results-block .result-desc p
{
	margin: 0.15em 0 0.35em 0;
}
.content .results-block .result-desc .inventory a
{
	margin: 0 0.4em;
}
.content .results-block .result-info
{
	display: block;
	margin: 0 0 0 -1px;
	margin: 0 0 0 0;
	padding: 0 0 0 48em; /*float: left;*/
}

.content .results-block .result-info .price
{
	display: block;
	margin-left: 0.35em;
	margin-bottom: 0.35em;
	float: left;
	font-size: 1.15em;
	width: 10em;
}

.content .results-block .result-info .button
{
	display: block;
	margin-left: 0.35em;
	padding: 0;
	float: left;
	width: 10em;
}

.content .results-block .result-info .allocation
{
	display: block; /*margin-left: 0.35em;*/
	padding: 1em 1em 0 .35em;
	float: left;
	width: 11em;
}

/*
.content .results-block .result-info .clubs
{
	display: block;
	margin: 0 0 0.35em 0;
	padding:  0.7em 0 0.5em 15px;
	background-image: url(/images/icon_bottle.gif);
	background-repeat: no-repeat;
	background-position: 3px center;
	border-bottom: 1px solid #ece0ca;
	float: left;
}
*/

.content .results-block .result-info .clubs
{
	display: block;
	margin: 0.25em 0.1em 0 0.35em;
	padding: 0;
	background-image: url(/images/icon_bottle.gif);
	background-repeat: no-repeat;
	background-position: 3px center;
	width: 10.5em;
	float: left;
	text-align: center;
	border-bottom: 1px solid #ece0ca;
}

.content .results-block .result-info .clubs h3
{
	/*display: block;*/
	margin: 0;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 108%;
	font-weight: 600;
	color: #204342;
	text-transform: uppercase;
}

.content .results-block .result-info .clubs a
{
	text-transform: uppercase;
}

.content .results-block .result-info text
{
	font: h5;
	_font: h6;
	font-weight: bold;
}

.content .results-block .result-info .rating
{
	display: block;
	margin: 0.25em 0.1em 0 0.0em;
	padding: 0;
	width: 3.15em;
	float: left;
	text-align: center;
}
.content .results-block .result-info .rating a
{
	display: block;
	cursor: pointer;
	text-decoration: none;
}
.content .results-block .result-info .rating .rater
{
	display: block;
	margin: 0 0.15em 0 0;
	padding: 0;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	background-color: #FFFFFF;
}
.content .results-block .result-info .rating .rating
{
	display: block;
	margin: 0 auto;
	padding: 0 0 0.25em 0;
	width: 100%;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	background-color: #ece0ca;
}
.content .results-block .added-to-cart
{
	display: block;
	padding: 4px 0;
	border-left: 2px solid #ece0ca;
	border-right: 2px solid #ece0ca;
	border-top: 1px solid #fffcf2;
	border-bottom: 2px solid #ece0ca;
}
.content .results-block .added-to-cart .added-notice
{
	display: block;
	margin: -4px 0 0.5em 0;
	padding: 0.25em 0.75em;
	background-color: #ece0ca;
}
.content .results-block .added-to-cart .cart-link
{
	padding: 0.75em 0 0 0;
	float: right;
}
.content .options
{
	padding: 1.25em 0.75em;
	border-bottom: 1px solid #ece0ca;
}
.content .result-count
{
	padding: 1.5em 0.5em;
}


/* NORESULTS CLASS STYLING */
/* OLD STYLES FOR BACKUP
.content .no-results-block {
	display:block;
	margin:0.5em 0;
	padding:1.65em 0 0.5em 0;
	background-image:url(/images/bg_shadow-block.jpg);
	background-repeat:repeat-x;
	background-position:left top;
	border-top:1px solid #ece0ca;
}
.content .no-results-block  ul {
	margin:0.5em 0 0.5em 1em;
	padding:0;
	list-style-type:none;
}
.content .no-results-block ul li {
	display:block;
	margin:0;
	padding:0.2em 0 0.2em 0.75em;
	background-image:url(/images/bg_h3_nav-arrow.gif);
	background-repeat:no-repeat;
	background-position: left center;
}
*/

.noresults .col-a
{
	display: none; /* 	margin: 0 -1px 0 0; 	padding: 0 1.3em 0 0; 	width:13.5em; 	float:left; 	border-right: 1px solid #ece0ca; 	*/
}
.noresults .col-b
{
	margin: 0;
	padding: 0; /*padding: 0 0 0 0.8em;*/
	width: 76.4em;
	min-height: 100%;
	float: left; /*border-left: 1px solid #ece0ca;*/
}
.noresults .col-a h3 {
	margin: 0.5em 0 0.5em 0;
	padding: 0.25em 0;
	font-size: 0.95em;
	font-weight: 600;
	color: #918c34; /* KLMaint compatibility */
	color: var(--color-gold-dark);
	border-top: 1px solid #ece0ca;
	border-bottom: 1px solid #ece0ca;
}
.noresults .col-a h3 span
{
	display: block;
	padding-left: 1.5em;
	background-image: url(/images/bg_h3_nav-arrow.gif);
	background-repeat: no-repeat;
	background-position: 5% center;
}
.noresults .col-b h3
{
	margin: 0.5em 0;
	padding: 0;
	font-size: 1.18em;
	font-weight: 600;
	color: #531010;
}
.noresults .col-b .column
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 49.9%;
	float: left;
}
.noresults .col-b .columnL
{
	padding-right: 1em;
	width: 47.4%;
}
.noresults .col-b .columnR
{
	padding-left: 1em;
	width: 47.5%;
}
.noresults .col-b .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.noresults .col-b .colBorderR
{
	border-right: 1px solid #ece0ca;
}
.noresults .no-results-block
{
	display: block;
	margin: 0.5em 0;
	padding: 1.65em 0 0.5em 0;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}
.noresults .no-results-block ul
{
	margin: 0.5em 0 0.5em 1em;
	padding: 0;
	list-style-type: none;
}
.noresults .no-results-block ul li
{
	display: block;
	margin: 0;
	padding: 0.2em 0 0.2em 0.75em;
}
.noresults .options
{
	padding: 1.25em 0.75em;
	border-bottom: 1px solid #ece0ca;
}
.noresults .result-count
{
	padding: 1.5em 0.5em;
}
.noresults .shadow-block
{
	border-bottom: none;
}




/* DETAIL CLASS STYLING */
.detail .col-a
{
	margin: 0 -1px 0 0;
	padding: 0 1.3em 0 0;
	width: 13.5em;
	float: left;
	border-right: 1px solid #ece0ca;
}
.detail .col-b
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 60.5em;
	min-height: 100%;
	float: left;
	border-left: 1px solid #ece0ca;
}
.detail .col-a h3 {
	margin: 0.5em 0 0.5em 0;
	padding: 0.25em 0;
	font-size: 0.95em;
	font-weight: 600;
	color: #918c34; /* KLMaint compatibility */
	color: var(--color-gold-dark);
	border-top: 1px solid #ece0ca;
	border-bottom: 1px solid #ece0ca;
}
.detail .col-a h3 span
{
	display: block;
	padding-left: 1.5em;
	background-image: url(/images/bg_h3_nav-arrow.gif);
	background-repeat: no-repeat;
	background-position: 5% center;
}
.detail .col-b h3
{
	margin: 0.5em 0;
	padding: 0;
	font-size: 1.18em;
	font-weight: 600;
	color: #531010;
}
.detail .col-b .column
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 49.9%;
	float: left;
}
.detail .col-b .columnL
{
	padding-right: 1em;
	width: 47.4%;
}
.detail .col-b .columnR
{
	padding-left: 1em;
	width: 47.5%;
}
.detail .col-b .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.detail .col-b .colBorderR
{
	border-right: 1px solid #ece0ca;
}
.detail .breadcrumbs, .detail .breadcrumbs-search
{
	margin: 0 0 0.75em 18.5em;
}
.detail h1
{
	display: block;
	margin: 0.25em 0 0 0;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 1.6em;
}
.detail .SKUInformation
{
	display: block;
	font-size: 0.85em;
	font-weight: normal;
	color: #6a6a6a;
	margin: 0 0 0.5em 0;
}
.detail .productImg
{
	margin: 0 auto;
	padding: 1em 0 0 0;
	text-align: center;
}
.detail .productImg a
{
	display: block;
	margin: 0 0 1em 0;
}
.detail .result
{
	display: block;
	margin: 0 0 0.5em 0;
}
.detail .result-desc
{
	margin: 0;
	padding: 0 1em 0 0;
	width: 47.4em;
	float: left;
	border-right: 1px solid #ece0ca;
}
.detail .result-desc p
{
	margin: 0.15em 0 0.35em 0;
}
.detail .result-desc .result-more-links ul
{
	margin: 0;
	padding: 0 1em;
	list-style-type: none;
}
.detail .result-desc .result-more-links .arrow-link
{
	margin: 0.2em 0;
}
.detail .inventory a
{
	margin: 0 0.4em;
}
.detail .result-desc .review-info-block
{
	margin-top: 1em;
	width: 50%;
	float: left;
}
.detail .result-info
{
	margin: 0 0 0 -1px;
	padding: 0 0 0 0.5em;
	width: 130px;
	float: left;
	border-left: 1px solid #ece0ca;
}
.detail .result-info .price
{
	display: block;
	margin-bottom: 0.35em;
	font-size: 1.15em;
	text-align: center;
}
.detail .result-info .qty
{
	display: block;
	margin: 0.5em 0 0.35em 0;
	padding: 0.5em 0;
	font-size: 1.15em;
	text-align: left;
	border-top: 1px solid #ece0ca;
}
.detail .result-info .clubs
{
	display: block;
	margin: 0.25em auto;
	padding: 0.7em 0 0.5em 15px;
	width: 90px;
	background-image: url(/images/icon_bottle.gif);
	background-repeat: no-repeat;
	background-position: 3px center;
}
.detail .result-info .clubs h3
{
	margin: 0;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 108%;
	font-weight: 600;
	color: #204342;
	text-transform: uppercase;
}
.detail .result-info .clubs a
{
	text-transform: uppercase;
}
.detail .result-info .ratings-block
{
	margin: 1.25em 0 0.25em 0;
	padding: 0.3em 0;
}
.detail .result-info .rating
{
	margin: 0.2em 0.0em;
	padding: 0.1em;
	width: 3em;
	float: left;
	text-align: center;
}
.detail .result-info .rating a
{
	display: block;
	cursor: pointer;
	text-decoration: none;
}
.detail .result-info .rating .rater
{
	display: block;
	margin: 0 0.15em 0 0;
	padding: 0;
	width: 30%;
	text-align: center;
	text-transform: uppercase;
	background-color: #FFFFFF;
}
.detail .result-info .rating .rating
{
	display: block;
	margin: 0.2em 0.1em;
	padding: 0 0 0.25em 0;
	width: 100%;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	background-color: #ece0ca;
}
.detail .inventory
{
	display: block;
	margin: 0.85em 0 0 0;
	padding: 0.5em;
	float: none;
	clear: both; /*width:10em;*/
	border-top: 1px solid #ece0ca;
	background-color: #f2efdb;
}
.detail .inventory h3
{
	margin: 0 0 0.5em 0;
	padding: 0;
	font-size: 1.1em;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-weight: normal;
	
}
.detail .inventory p
{
	margin: 0.25em 0;
}
.detail .inventory .notice
{
	margin: 0.5em 0;
	color: #666666;
}
.detail .prod-feature-block
{
	display: block;
	margin: 0.5em 0;
	padding: 1em 0.5em 0.5em 0.5em;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}
.detail .prod-feature-block .five-column
{
	margin: 0.25em 0;
	padding: 0 0.25em;
	width: 19%;
	float: left;
}
.detail .prod-feature-block .five-column p
{
	margin: 0 0 0 2.5em;
	padding: 0;
}
.detail .prod-feature-block .five-column .auctionImg
{
	float: left; 
	padding-right: 0.5em; 
	margin: 0 0.25em;
}
.detail .prod-feature-block .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.detail .addtl-info-block
{
	display: block;
	margin: 0.5em 0;
	padding: 1em 0.75em 0.5em 0.75em;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}
.detail .addtl-info-block dl
{
	margin: 0;
	padding: 0;
	float: none;
	clear: left;
	background-color: #f2efdb;
	border-bottom: 1px solid #FFFFFF;
}
.detail .addtl-info-block dl dt
{
	display: block;
	margin: 0;
	padding: 0.5em 0 0.5em 0.75em;
	width: 140px;
	float: left;
	clear: left;
	text-align: left;
	color: #204342;
	background-color: #f2efdb;
}
.detail .addtl-info-block dl dd
{
	margin-left: 150px;
	padding: 0.5em 0.15em;
	clear: right;
	border-left: 5px solid #FFFFFF;
	border-bottom: 1px solid #f2efdb;
	background-color: #FFFFFF;
}
.detail_td1
{
	padding: 0.5em 0 0.5em 0.75em;
	width: 140px;
	text-align: left;
	color: #204342;
	background-color: #f2efdb;
	border-bottom: 1px solid #FFFFFF;
}
.detail_td
{
	padding-left: 5px;
	border-bottom: 1px solid #f2efdb;
	
	line-height: 1.4em;
	vertical-align:middle;	 
}
.detail .review-block
{
	display: block;
	margin: 0.5em 0.5em 2em 0.5em;
	padding: 0;
	border: 2px solid #f2efdb;
}
.detail .review-block .review-title
{
	display: block;
	margin: 0 0 0.5em 0;
	padding: 0.5em 0.75em;
	background-color: #f2efdb;
}
.detail .review-block .review-subtitle
{
	display: block;
	margin: 0 0 0.75em 0;
	padding: 0 0.75em 0.25em 0;
	font-weight: bold;
	border-bottom: 2px solid #f2efdb;
}
.detail .review-block .review-content
{
	display: block;
	margin: 0;
	padding: 0.5em 0.75em;
}
.detail .review-block .review-content .review-info-block div
{
	margin-right: 0.5em;
}
.detail .review-block .review-content dl
{
	margin: 0;
	padding: 0;
	float: none;
	clear: left;
	background-color: transparent;
	border: none;
}
.detail .review-block .review-content dl dt
{
	display: block;
	margin: 0;
	padding: 0.25em 0;
	width: 135px;
	float: left;
	clear: left;
	text-align: right;
	font-weight: bold;
	background-color: transparent;
	border: none;
}
.detail .review-block .review-content dl dd
{
	margin-left: 140px;
	padding: 0.25em 0.15em;
	clear: right;
	background-color: transparent;
	border: none;
}
.detail .review-block .review-content hr
{
	margin: 1em 0;
	padding: 0;
	background-color: #ece0ca;
	height: 2px;
	float: none;
	clear: both;
	border: none;
}

/* MY ACCOUNT CLASS STYLING */
.account .col-a
{
	margin: 0 -1px 0 0;
	padding: 0 1.3em 0 0;
	width: 13.5em;
	float: left;
	border-right: 1px solid #ece0ca;
}
.account .col-b
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 60.5em;
	min-height: 100%;
	float: left;
	border-left: 1px solid #ece0ca;
}
.account h1
{
	margin: 0 0 0.45em 0;
	padding: 0 0 0.15em 0;
	border-bottom: 1px solid #ece0ca;
}
.account .feature-block h1
{
	margin: 0 0 0.25em 0;
	padding: 0;
	border: none;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 21px;
	font-weight: 700;
}
.account h3
{
	margin: 0.5em 0;
	padding: 0;
	font-size: 1.18em;
	font-weight: 600;
	color: #531010;
}
.account h4
{
	margin: 0.5em 0;
	padding: 0;
	font-size: 0.98em;
	font-weight: 500;
	color: #531010;
}
.account .account-menu
{
	margin: 0 0.75em;
}
.account .account-menu h3
{
	margin: 0;
}
.account .account-menu p
{
	margin: 0.05em 0 1.5em 0;
}
.account .column
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 49.9%;
	float: left;
}
.account .columnL
{
	padding-right: 1em;
	width: 47.4%;
}
.account .columnR
{
	padding-left: 1em;
	width: 47.5%;
}
.account .column-shipment
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 48%;
}
.account .receipt
{
	margin-bottom: 2em;
}
.account .receipt-container h2
{
	display: block;
	padding: 1em;
	background-image: url(/images/bg_prod-cat-callout.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}
.account .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.account .colBorderR
{
	border-right: 1px solid #ece0ca;
}
.account .feature-block
{
	margin: 0.75em 0;
	padding: 1em;
	float: none;
	clear: both;
	background-color: #f2efdb;
}

.account .hint-block {
	margin: 0.75em 0;
	padding: 1em;
	float: none;
	clear: both;
	background-color: #E7E4E2
}

.account .shadow-block
{
	margin: 0.75em 0;
	padding: 0 0.5em;
	border-bottom: none;
}
.account .shadow-block h2
{
	margin: 0.85em 0 0 0;
	padding: 0;
}


/* CHECKOUT/CART CLASS STYLING */
.checkout .col-a
{
	margin: 0 -1px 0 0;
	padding: 0 1.3em 0 0;
	width: 13.5em;
	float: left;
	border-right: 1px solid #ece0ca;
}
.checkout .col-b
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 60.5em;
	min-height: 100%;
	float: left;
	border-left: 1px solid #ece0ca;
}
.checkout h3
{
	margin: 0.5em 0;
	padding: 0;
	font-size: 1.18em;
	font-weight: 600;
	color: #531010;
}
.checkout .column
{
	margin: 0 0 0.75em 0;
	padding: 0;
	width: 49.9%;
	float: left;
}
.checkout .columnL, .checkout .login-block .columnL
{
	padding-right: 1em;
	width: 47.2%;
}
.checkout .columnR, .checkout .login-block .columnR
{
	margin-left: -1px;
	padding-left: 1em;
	width: 47.3%;
}
.checkout .colBorderL
{
	border-left: 1px solid #ece0ca;
}
.checkout .colBorderR
{
	border-right: 1px solid #ece0ca;
}
.checkout .cart-title
{
	margin: 1em 0;
	padding: 0;
	border-bottom: 1px solid #ece0ca;
}
.checkout .cart-shipto {
	padding: 1.25em 0.5em;
	border-bottom: none;
    display: flex;
    flex-direction: row-reverse;
}
	.checkout .cart-shipto div {
		margin-right: 0.85em;

	}

.checkout .shadow-block
{
	border-bottom: none;
}
.checkout .shadow-block h2
{
	margin: 0.85em 0 0 0;
	padding: 0;
}
.checkout .login-block
{
	padding: 1.2em 0.5em;
	border-bottom: none;
}
.checkout .login-block h2
{
	margin-bottom: 0.5em;
}
.checkout .will-call-info
{
	margin: 0.75em 0;
	padding: 0.75em;
	width: 45%;
	float: right;
	background-color: #f2efdb;
}
.checkout .will-call-info h2
{
	margin-top: 0;
}
.checkout .payment-info-block
{
	margin: 1.85em 0 1em 0;
	padding: 0.75em 0;
	border-top: 1px solid #ece0ca;
}
.checkout .payment-info-block table.cart td
{
	border-bottom: none;
}
.checkout .payment-info-block .columnL table.cart td
{
	border-bottom: none;
}
.checkout .payment-info-block .columnR table.cart td
{
	padding-bottom: 0.65em;
}
.checkout .payment-info-block .columnL
{
	padding-right: 1em;
	width: 57.2%;
}
.checkout .payment-info-block .columnR
{
	padding-left: 1em;
	width: 39%;
}
.checkout .review-block
{
	display: block;
	margin: 0.5em 0 1.5em 0;
	padding: 0;
	border: 2px solid #f2efdb;
}
.checkout .review-block .review-title
{
	display: block;
	margin: 0 0 0.5em 0;
	padding: 0.5em 0.75em;
	background-color: #f2efdb;
}
.checkout .review-block .review-content
{
	display: block;
	margin: 0;
	padding: 0.5em 0.75em;
}
.checkout .conf-columns .column
{
	margin: 0.25em 0;
	padding: 0 0.5em;
	width: 24%;
	float: left;
}
.checkout .conf-columns .center-column
{
	margin: 0.25em -1px;
	padding: 0 0.5em;
	width: 46%;
	float: left;
}
.checkout .will-call-info-Styro
{
	margin: 0.75em 0;
	padding: 0.75em;
	width: 90%;
	float: right;
	background-color: #f2efdb;
}
.checkout .cart-submit-label {
	font-family: inherit;
	margin: 14px;
	font-weight: 400;
	font-size: 11px;
	cursor: pointer;
}

.checkout .cart-submit-label-disabled {
	font-family: inherit;
	margin: 14px;
	font-weight: 400;
	font-size: 11px;
    color: #767676;
}

.checkout .cart-submit-label:hover {
	text-decoration: underline;
}
.checkout .btn-purchase {
	border-radius: 2px;
	background-color: #27292B; /* for KLMaint IE6/7 compatibility reasons */
	background-color: var(--color-btn-primary);
	color: white;
	font-family: inherit;
	font-size: 13.72px;
	border: none;
	height: 26px;
	width: 125px;
	font-weight: 400;
	margin-left: 24px;
	margin-top: 7px;
}


.btn-placeOrderDesktop {
	border-radius: 4px;
	background-color: #27292B !important; /* for KLMaint IE6/7 compatibility reasons */
	background-color: var(--color-btn-primary) !important;
	color: white;
	font-size: 12.72px;
	font-family: Georgia, serif;
	border: none;
	height: 21px;
	width: 160px;
	font-weight: 500;
	margin-left: 24px;
}



/* REVIEW STARS CLASSES */
.prStars
{
	display: block;
	position: relative;
	margin: 0 0.5em 0.5em 0;
	padding: 0;
	width: 112px;
	height: 20px;
	line-height: 20px;
	float: left;
	overflow: hidden;
	background-image: url(/images/review_stars.gif);
	background-repeat: no-repeat;
}
.prStars div.prStar
{
	position: absolute;
	height: 20px;
	width: 20px;
}
.prStars div.prStar:hover
{
	cursor: pointer;
}
.prStars .prStar .prS2
{
	left: 23px;
}
.prStars .prStar .prS3
{
	left: 46px;
}
.prStars .prStar .prS4
{
	left: 69px;
}
.prStars .prStar .prS5
{
	left: 92px;
}


/* TEMPLATE INDEPENDENT CLASSES */
.breadcrumbs, .breadcrumbs-search
{
	margin: 0;
	padding: 20,20,20,20;
	font-size: 0.85em;
	color: #666666;
	line-height: 150%;
}
.breadcrumbs-search
{
	margin-bottom: 1em;
}
.breadcrumbs ul, .breadcrumbs-search ul
{
	margin: 0 0 0.25em 0;
	padding: 0;
	list-style-type: none;
}
.breadcrumbs ul li
{
	display: inline;
	margin: 0;
	padding: 0 0.25em 0 0;
}
.breadcrumbs-search ul li
{
	display: inline;
	margin: 0;
}

.breadcrumbs-search span
{
	padding: 0 11px 0.25em 0;
	background-image: url(/images/btn_breadcrumb_x.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
.breadcrumbs-search ul li.first, .breadcrumbs-search ul li.last
{
	display: inline;
	margin: 0;
}
.breadcrumbs-search ul li.first a, .breadcrumbs-search ul li.last a
{
	padding: 0 0.25em 0.2em 0;
	background-image: none;
}
.col-a ul
{
	margin: 0 0 0 1.75em;
	padding: 0;
	list-style-type: none;
}
.col-a ul li
{
	margin: 0;
	padding: 0.05em 0;
	font-size: 1em;
}
.col-a ul ul
{
	margin: 0 0 0 0.75em;
	padding: 0;
	list-style-type: none;
}
.col-a ul ul li
{
	margin: 0;
	padding: 0.05em 0;
}

.col-a ul li ul li {
  font-size: 1em;
}

.col-a > ul > li > a, .col-a > ul > li > ul > li > a
{
	display: block;
	margin: 0;
	padding: 0;
}
.col-a ul ul ul
{
	margin: 0 0 0 1.2em;
	padding: 0;
	list-style-type: none;
}
.col-a ul ul ul li
{
	margin: 0;
	padding: 0.05em 0;
	font-size: 1em;
}
.col-a hr, .col-b hr
{
	margin: 0.75em 0 0 0;
	padding: 0;
	background-color: #ece0ca;
	height: 1px;
	float: none;
	clear: both;
	border: none;
}
.col-a p
{
	margin: 0.5em 0;
	padding: 0;
}
.shadow-block
{
	margin: 0.75em 0;
	padding: 0.75em 0 0 0;
	float: none;
	clear: both;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
	border-bottom: 1px solid #ece0ca;
}
.shadow-block h2
{
	margin: 0;
	padding: 0.25em 0 0.25em 1em;
}
.shadow-block .inner-content
{
	margin: 0;
	padding: 0 1em;
}
.shadow-block .localevent_content
{
	margin: 0;
	padding: 0 2em;
}
.shadow-block .localevent-caption
{
	margin-left: 5em;
	font-weight: bold;
}
.shadow-block .localevent-book-button {
	display: inline-block;
	margin-left: 5em;
	margin-bottom: 1.5em;
}
.shadow-block .column {
	margin: 0 0;
	padding: 0 0;
}

.localevent-open-cellar-banner {
	border-radius: 3px;
	background-color: #330100;
	color: white;
	padding: 16px 18px;
	margin: 24px 24px 12px 24px;
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
	font-style: italic;
	line-height: 1.25;
}
.localevent-open-cellar-banner a.ocLink {
    color: white;
}
#content .shadow-block img.floatRight
{
	margin: 1.25em 0 1em 1em;
}

.feature-block
{
	margin: 0.75em 0;
	padding: 2.75em;
	float: none;
	clear: both;
	background-color: #f2efdb;
}
.home .feature-block
{
	padding: 0.35em 0.6em;
}
.home .feature-block ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.home .feature-block ul li
{
	margin: 0.2em;
	padding: 0 0.2em; /*width:31%; 	float:left;*/
}
/*GiftCard class*/
.giftcard .table.cart {
margin:0px 0px;
}
.giftcard .table.cart td {
margin:0px 0px;
}
.feature-block .col-a
{
	margin: 0;
	padding: 0 1.3em 0 0;
	width: 16.13em;
	float: left;
}
.feature-block .col-b
{
	margin: 0;
	padding: 0 0 0 0.8em;
	width: 39.65em;
	min-height: 100%;
	float: left;
	border-left: 1px solid #ece0ca;
}
.col-b .column .productImg
{
	margin: 0 0.25em;
	padding: 0.15em 0 0 0;
	float: left;
	clear: left;
	text-align: center;
}
.productList
{
	display: block;
	margin: 0;
	padding: 0 0 1em 0;
}
.productList .productImg
{
	margin: 0;
}
.productList p
{
	margin: 0;
	padding-left: 36px;
}
.arrow-link
{
	display: block;
	padding-left: 0.75em;
	background-image: url(/images/bg_h3_nav-arrow.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.elist-option
{
	margin: 0 0 0.75em 0;
	padding: 0.4em 0 1.35em 0;
	border-bottom: 1px solid #ece0ca;
}
.elist-option h3
{
	margin: 0;
	padding: 0;
	width: 225px;
	float: left;
	font-size: 1em;
	color: #531010;
}
.elist-option span.smalltxt
{
	display: block;
	margin-left: 22em;
}
ul.subscriptions
{
	list-style-type: none;
}

#category-overview
{
	display: block;
	margin: 0;
	padding: 0.9em 0 0.7em 0.9em;
	background-image: url(/images/bg_prod-cat-callout.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}

.award-block
{
	display: block;
	margin: 0.5em 0;
	padding: 0.5em;
	background-image: url(/images/bg_shadow-block.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top: 1px solid #ece0ca;
}

.award-block .award-logo
{
	margin: 1em 0 0.65em 1em;
	padding: 0;
	float: right;
}


.pop-container
{
	position: absolute;
	margin: 0;
	padding: 0;
	top: 10px;
	left: 10px;
	background-color: #FFFFFF;
	border-top: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
	border-right: 2px solid #d2d2d5;
	border-bottom: 2px solid #d2d2d5;
	z-index: 1000;
}
.pop-prodZoom
{
	width: 400px;
	top: -44px;
	left: 0px;
}
.pop-inventory
{
	left: 210px;
	width: 500px;
}
.pop-ratings
{
	left: 230px;
	width: 500px;
}
.pop-container .pop-content {
	display: block;
	margin: 0;
	padding: 0;
	border-color: #5D5A1D; /* KLMaint compatibility issues */
	border-left: 2px solid var(--color-gold); /* ADA color constrast */
	border-right: 2px solid var(--color-gold); /* ADA color constrast */
	border-top: 2px solid var(--color-gold); /* ADA color constrast */
	border-bottom: 2px solid var(--color-gold); /* ADA color constrast */
}
	.pop-container .pop-content .pop-title {
		display: block;
		margin: 0;
		padding: 1px 0.75em;
		background-color: #5D5A1D /* KLMaint compatibility issues */;
		background-color: var(--color-gold); /* ADA color constrast */
	}
.pop-container .pop-content .pop-title h2
{
	color: #FFFFFF;
}
.pop-container .pop-content .pop-title a.close {
	margin: 10px 0 0 6px;
	padding: 0 14px 0 0;
	float: right;
	background-image: url(/images/icon_pop-x.gif);
	background-repeat: no-repeat;
	background-position: right center;
	opacity: 1;
	text-shadow: none;
}
.pop-container .pop-content .pop-title a:link.close
{
	color: #FFFFFF;
	text-decoration: none;
}
.pop-container .pop-content .pop-title a:visited.close
{
	color: #330100;
	text-decoration: none;
    opacity: 1;
}
.pop-container .pop-content .pop-title a:hover.close
{
	color: #531010;
	text-decoration: none;
}
.pop-container .pop-content .pop-title a:active.close
{
	color: #FFFFFF;
	text-decoration: none;
}
.pop-container .pop-content .inner-content
{
	display: block;
	margin: 0;
	padding: 0.35em;
}
.pop-inventory .pop-content .inner-content
{
	display: block;
	margin: 0;
	padding: 0.5em 1.5em;
}
.pop-ratings .pop-content .inner-content
{
	display: block;
	margin: 0;
	padding: 0.5em 1em;
}
.pop-container .pop-content .inner-content .productImg
{
	display: block;
	margin: 0 auto;
}
.pop-container .pop-content .inner-content .notice
{
	font-size: 0.9em;
	color: #575757;
}
.pop-inventory .pop-content .inner-content table
{
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
}
.pop-inventory .pop-content .inner-content table th
{
	margin: 0;
	padding: 0.35em;
	font-size: 1.1em;
	font-weight: bold;
	text-align: left;
	color: #531010;
	background-color: #efe8da;
	border-bottom: 1px solid #FFFFFF;
}
.pop-inventory .pop-content .inner-content table td
{
	margin: 0;
	padding: 0.5em;
	border-top: 1px solid #ece0ca;
}
.pop-inventory .pop-content .inner-content table td.shadow-block
{
	border-bottom: none;
}
.pop-ratings .pop-content .inner-content .shadow-block
{
	margin: 0;
	width: 50%;
	float: left;
	clear: none;
	border-bottom: none;
}
.pop-ratings .pop-content .inner-content .shadow-block dl
{
	display: block;
	margin: 0 2px;
	padding: 0.5em 0;
	border-bottom: 1px solid #ece0ca;
}
.pop-ratings .pop-content .inner-content .shadow-block dl dt
{
	display: block;
	margin: 0;
	padding: 0;
	width: 36px;
	float: left;
	clear: left;
	text-align: left;
}
.pop-ratings .pop-content .inner-content .shadow-block dl dd
{
	margin-left: 40px;
	padding: 0;
	clear: right;
}


/* VCARD STYLING */
.vcard
{
	margin: 0 0 1.5em 0;
	padding: 0;
}
.vcard .org
{
	margin-bottom: 0.5em;
}
.vcard .org h2 a:link.url
{
	color: #531010;
	text-decoration: none;
	cursor: text;
}
.vcard .org h2 a:visited.url
{
	color: #531010;
	text-decoration: none;
	cursor: text;
}
.vcard .org h2 a:hover.url
{
	color: #531010;
	text-decoration: none;
	cursor: text;
}
.vcard .org h2 a:active.url
{
	color: #531010;
	text-decoration: none;
	cursor: text;
}
.vcard .adr
{
	margin: 0 0 0.65em 0;
}
.vcard .note
{
	margin: 1em 0 0 0;
}



/* FOOTER STYLES */
#footer-nav .floatRight
{
	padding: 0 0.65em;
}
.copyright
{
	display: block;
	margin: 0.35em 0;
	font-size: 0.9em;
}

/* OVERWRITE CLASSES */
#content-subnav a.first
{
	border: none;
}


.ReviewScoreImagesBio
{
	padding: .5em 1em .5em 0em;
	float: left;
}

.ReviewTextBio
{
	padding: .5em .5em .5em 0em;
}
.StaffPriceAlign
{
	float: right;
	padding: 0em 0em 0em .3em;
}

.ReviewTopYNDrinkFromToTextBio
{
	padding: 0em .5em .5em 0em;
	font-style: italic;
}

.ReviewScoreImagesDetail
{
	padding: .5em 1em .5em 0.2em;
	float: left;
}

.ReviewTextDetail
{
	padding: .5em .5em .5em .3em;
}
.ReviewTopYNDrinkFromToTextDetail
{
	padding: 0em .5em .5em .3em;
	font-style: italic;
}


.bioTable
{
	margin: 5;
	padding: 0 0 0 0.8em;
	width: 44em;
	min-height: 100%;
	float: left;
	border-right: 1px solid #ece0ca;
}

.bioImage
{
	float: left;
	padding: 0 .5em .5em 0;
}
.emailheight
{
	height: 22px;
}
.emailpadding
{
	padding-left: 20px;
}
.emailpaddingHypLnks
{
	padding-bottom: 8px;
	padding-left: 20px;
}

.emailcontentpadding
{
	padding-left: 40px;
}
.emailwidth
{
	width: 182px;
}
.emailPictureAlign
{
	float: left;
	width: 57px;
	height: 75px;
}
.CellarPictureAlign
{
    text-align:center;
	width: 33px;
	height: 80px;
}

/* ...........Sommolier Wines Club Landing Page Styles........... */

.tbl_left
{
	width: 425px;
	background-color: #F2EFDB;
}
.tbl_right
{
	width: 300px;
}
.cell_empty_left
{
	width: 15px;
}
.cell_empty_contact
{
	width: 25px;
}
.tbl_signup
{
	width: 410px;
}
.tbl_contact
{
	width: 250px;
}
.contact_border
{
	border: 1px solid;
	border-color: #EBDEC6;
	border-left: none;
	border-right: none;
	padding-bottom: 20px;
	padding-top: 20px;
}

/* ........... New Sommolier Wines Club Landing Page Styles........... */

.logo_stl
{
	border: 1px solid;
	border-color: #DECFD6;
	border-left: none;
	border-right: none;
	border-top: none;
	text-align: center;
	vertical-align: top;
	width: 366px;
}

.Address_stl
{
	border: 7px solid;
	border-color: #EADADA;
	border-left: none;
	border-right: none;
	border-top: none;
	background-color: #FFFCF3;
}
.sign_up_left
{
	border: 1px solid;
	border-color: #704B45;
	border-right: none;
	border-top: none;
}
.sign_up_top
{
	border: 1px solid;
	border-color: #704B45;
	border-bottom: none;
	border-right: none;
	border-top: none;
}
.sign_up_bottom
{
	border: 1px solid;
	border-color: #704B45;
	border-left: none;
	border-right: none;
	border-top: none;
}
.sub_header
{
	border: 1px solid;
	border-color: #704B45;
	border-left: none;
	border-right: none;
	background-color: #FFFFF7;
	height: 25px;
	padding-top: 5px;
	padding-left: 15px;
}
.text_indent
{
	padding-left: 15px;
}


.middle_border
{
	border: 1px solid;
	border-color: #E9E5E6;
	border-left: none;
	border-bottom: none;
	border-top: none;
}
.align_contactus
{
	padding-left: 30px;
	text-align: left;
}
.txt_contactus
{
	font-family: Verdana,Arial;
	font-size: 14px;
    color: #521010;
}
.padd_existing
{
	padding-left: 28px;
}
.padd_sign_up
{
	padding-right: 35px;
	padding-left: 30px;
}
.height_existing
{
	height: 38px;
	vertical-align: bottom;
}
.height_links
{
	height: 22px;
}
.bg_color_signup
{
	background-color: #FFFFF7;
}
/* ........... Best Buy Wines Club Landing Page Styles........... */


.padd_header
{
	padding-top: 5px;
}
.padd_logo
{
	padding-right: 37px;
}
.Padd_middle_border
{
	padding-right: 70px;
	border: 1px solid;
	border-color: #E9E5E6;
	border-left: none;
	border-bottom: none;
	border-top: none;
	width: 300px;
}
.wineAll_logo_stl
{
	border: 1px solid;
	border-color: #DECFD6;
	border-left: none;
	border-right: none;
	border-top: none;
	vertical-align: top;
}
.wineAll_contact_stl
{
	border: 1px solid;
	border-color: #E9E5E6;
	border-left: none;
	border-bottom: none;
}
.padd_allwines
{
	padding-right: 50px;
	padding-left: 50px;
}
.detail_h2
{
	margin: 0.5em 0;
	padding: 0;
	font-family: Georgia, "Times New Roman" , Times, serif;
	font-size: 1.25em;
	font-weight: 600;
	color: #531010;
}
.H3ProductDetail_detail
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	font-weight: bolder;
	color: #2b2117;
	display: inline;
}

.blockgraphic_BuyPath
{
	border-top: 1px solid #ece0ca;
}

.staff-listings h2
{
	display: block;
	margin: 2em 0 1em 0;
	padding: 0;
	float: none;
	clear: both;
}
.staff-listings .staff-member
{
	margin: 0 0.3em 0.3em 0;
	padding: 0;
	width: 350px;
	height: 110px;
	float: left;
}
.staff-listings .staff-member img
{
	margin: 0 0.3em 0.3em 0;
	padding: 0;
	float: left;
}
.result-Staffdesc
{
	margin: 0;
	padding: 0 0.4em;
	width: 47em;
	float: left;
	border-right: 1px solid #ece0ca;
}

.staff-listings .Detail-member
{
	vertical-align:text-top;
	padding: 0;
	width: 250px;
	float: left;
}
.DetailTextDetail
{
	padding: .5em .5em .5em .0em;
}
/**CSS class to Wrap the Gicard Message*/
.wrapword{
white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
white-space: -webkit-pre-wrap; /*Chrome & Safari */ 
white-space: -pre-wrap;      /* Opera 4-6 */
white-space: -o-pre-wrap;    /* Opera 7 */
white-space: pre-wrap;       /* css-3 */
word-wrap: break-word;       /* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
}

/*Hide paypal button before loading all paypal scripts*/
.paypal-button-hidden
{
    visibility: hidden;
}

.italic {
  font-style: italic;
}

.bold {
    font-weight: bold;
}

/* Local Delivery Rate Page classes */
.delivery-van {
  height: 75px;
  width: 182px;
  max-width: 100%;
  max-height: 100%;
  float: left;
  padding-right: 8px;
}

#delivery-wrapper {
  width: 700px;
  height: 150px;
}

#delivery-faq {
  width: 300px;
  height: 135px;
  display: block;
  float: left;
}

#delivery-desc {
  width: 300px;
  height: 135px;
  display: block;
  float: left;
}

#delivery-desc p {
  font-size: 14px;
  font-style: italic;
}

.delivery-lookup {
  width: 450px;
  display: block;
  float: left;
  padding: 10px;
}

.delivery-lookup span {
  font-weight: bold;
}

.delivery-lookup input[type="text"] {
  width: 9.5em;
}

#delivery-rate-lookup {
  width: 360px;
  height: 140px;
  display: block;
  float: right;
  border: 1px solid #e8dbd5;
  padding: 0 0 10px 10px;
}

#delivery-rate-lookup input[type="text"] {
  width: 10em;
  padding-right: 25px;
  margin: 0;
  padding-bottom: 2px;
  padding-left: 4px;
  float: left;
  display: inline-block;
}

#delivery-rate-lookup input[type="image"] {
  float: right;
  padding-top: 7px;
  display: inline-block;
  padding-right: 15px;
}

#delivery-rate-lookup h2 {
  font-family: "Segoe UI", Calibri, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	line-height: 26.4px;
}

#delivery-rate-lookup p {
	font-family: "Segoe UI", Candara, Calibri, Arial, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 20px;
}

#delivery-rate-lookup div.validation-summary-errors li {
  font-size: 10px;
}

table.local-delivery td input {
  width: 10em;
}

table.local-delivery td label {
  font-weight: bold;
  padding-right: 5px;
}

#local-delivery-rates span {
  font-weight: bold;
}

#local-delivery-rates li {
  padding: 0.3em 0;
  width: 95%
}

/* Delivery Scheduler */


.gradient-header-section {
 	display: block;
	margin: 0.9em 0 0.7em 0;
	padding: 0.9em 0 0.7em 0.9em;
	background-image: url(/images/bg_prod-cat-callout.jpg);
	background-repeat: repeat-y;
	background-position: left top; 
}

.gradient-header-section p {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1px;
}

.order-section-header p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 40px;
}

.section-float-right {
  display: block;
  float: right;
  font-family: Arial, Helvetica;
  font-size: 12px;
  font-weight: normal;
}

.scheduler-header div {
  margin-left: 10px;
}

/* Tab Overrides */

.nav-tabs > li {
  margin-top: -9px;
  margin-left: -6px;
}

.nav-tabs > li > a {
  margin-bottom: -4px;
}

.nav > form > li {
  position: relative;
  display: block;
}

.nav-tabs > form > li {
  margin-top: 3px;
  margin-left: -6px;
}

.nav-tabs li.disabled a:hover { 
	border-color: transparent; 
}

.panel.with-nav-tabs .panel-heading{
  padding: 5px 5px 0 5px;
  margin-left: 0;
  background-color: #F7F3E8;
  font-size: 90%;
}
.panel.with-nav-tabs .nav-tabs{
	border-bottom: none;
}
.panel.with-nav-tabs .nav-justified{
	margin-bottom: -1px;
}
/********************************************************************/
/*** PANEL DEFAULT ***/
.with-nav-tabs.panel-default .nav-tabs > li > a,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
	color: #525252 /* KLMaint compatibility */;
	color: var(--color-panel-dark-grey);
	text-decoration: none;
}

.with-nav-tabs.panel-default .nav-tabs > form > li > a {
	color: #525252 /* KLMaint compatibility */;
	color: var(--color-panel-dark-grey);
	text-decoration: none;
}

.with-nav-tabs.panel-default .nav-tabs > li.disabled a {
	color: #d3d3d3;
}

.with-nav-tabs.panel-default .nav-tabs > .open > a,
.with-nav-tabs.panel-default .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-default .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-default .nav-tabs > form > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > form > li > a:focus
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
	color: #525252 /* KLMaint compatibility */;
	color: var(--color-panel-dark-grey);
	background-color: #ddd;
	border-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.active > a,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:focus {
	color: #555;
	background-color: #fff;
	border-color: #ddd;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f5f5f5;
    border-color: #ddd;
}
	.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a {
		color: #525252 /* KLMaint compatibility */;
		color: var(--color-panel-dark-grey);
	}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #555;
}

.scheduler-header > .tab-content {
  margin-left: -20px;
}

/* Radio Button Elements */
.radio, .checkbox {
  position: relative;
  display: block;
  padding: 5px;
  border-bottom: 1px solid #ddd;
}

.form-control {
  display: block;
  width: 100%;
  color: #555;
  padding: 2px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  -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;
}

.delivery-label {
  display: block;
  width: 180px;
  clear: left;
  line-height: 1.9em;
  font-weight: bold
}

.delivery-checkbox-label {
  font-size: 90%
}

.delivery-btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0 0 5px 5px;
  font-family: Georgia, "Times New Roman" , Times, serif;
  font-size: 16px;
  color: #ffffff;
  background: #B8B33D;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  line-height: 5px;
}

a.delivery-btn {
  color: #ffffff;
}

a.delivery-btn:link {
  background: #B8B33D;
  text-decoration: none;
}

a.delivery-btn:hover {
  background: #968a19;
  text-decoration: none; 
}

.disabled-btn {
  color: #c0c0c0;
  background-color: #ffffff;
}

.schedule-delivery-btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-family: Georgia, "Times New Roman" , Times, serif;
  font-size: 24px;
  color: #ffffff;
  background: #B8B251;
}

a.schedule-delivery-btn {
  color: #ffffff;
}

a.schedule-delivery-btn:link {
  text-decoration: none;
}

a.schedule-delivery-btn:hover {
  background: #968a19;
  text-decoration: none; 
}

.vertical-center {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.delivery-edit {
  top: calc(10% + 35px);
  left: calc(10% + 35px);
}

.delivery-edit-address-form input {
  width: 100px;
}

.delivery-orders.table tr > td {
  padding: 0;
}

.delivery-orders.table > thead > tr > th {
  padding: 0;
  text-align: left;
  border: none;
}


#delivery-order-totals {
  display: block;
  float: right;
  font-style: italic;
  font-weight: normal;
}

#delivery-status {
  display: block;
  float: right;
  font-style: italic;
  font-weight: normal;
}

.delivery-order-totals {
  display: block;
  float: right;
  font-style: italic;
  font-weight: normal;
}

  {
  margin-left: -20px;
}

#delivery-address,
#delivery-address-edit,
#delivery-address-select {
    margin-left: -20px;
}

.delivery-banner {
    border: 1px solid #ece0ca;
}

.delivery-banner-message {
    color: #5B060B;
    font-family: "Segoe UI", Calibri, Arial, sans-serif;
    font-size: 11px;
}

.delivery-window-email {
  padding: 15px;
}

#delivery-threshold-amount h1 {
  font-family: "Segoe UI", Calibri, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold; 
  color: #5A0606;
  border: none;
}

.modal-footer {
  border: none;
}

table.cart td.delivery-order-item {
    border-bottom: 1px solid transparent;
}

table.cart tr.delivery-header {
    background-color: #EEE0C7;
    color: #641619;
    font-style: italic;
}

/* Paging indexes */
.paging
{
    text-align: center;
    margin-top: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.paging-buttons
{
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.paging-next
{
    float: right;
    margin-right: -5px;
}

.paging-prev
{
    float: left;
    margin-left: -5px;
}

.paging-number
{
    padding: 10px 20px;
}

.screenreader {
    position: absolute !important; /* Outside the DOM flow */
    height: 1px;
    width: 1px; /* Nearly collapsed */
    overflow: hidden;
    clip: rect(1px 1px 1px 1px); /* IE 7+ only support clip without commas */
    clip: rect(1px, 1px, 1px, 1px); /* All other browsers */
}

/* Spinner */
/* Absolute Center CSS Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* New Product listing styles*/
.tf-product {
    padding: 13px 10px;
    display: inline-block;
}
.tf-product-detail {
    padding: 0px 0px;
    display: inline-block;
}

    .tf-product .tf-product-content .tf-product-header {
        color: #104442;
        font-size: 16px;
        line-height: 18px;
        font-family: Arial;
        font-weight: bold;
        padding-bottom: 10px;
        text-decoration: none;
    }

        .tf-product .tf-product-content .tf-product-header a:link {
            text-decoration: none;
        }

        .tf-product .tf-product-content .tf-product-header a:visited {
            text-decoration: none;
        }

    .tf-product .tf-product-content {
        overflow: hidden;
        position: relative;
        display: inline-block;
        float: left;
        max-width: 548px;
    }

.added-to-cart .tf-product-content {
    margin-left: 0px;
}

.tf-product .tf-product-content .tf-product-image {
    text-align: center;
    width: 55px;
    display: inline-block;
    vertical-align: middle;
}

    .tf-product .tf-product-content .tf-product-image img {
        max-width: 55px;
    }

.tf-product .tf-product-content .tf-product-description {
    display: inline-block;
    width: 476px;
    vertical-align: middle;
    margin-left: 12px;
}

.tf-product .tf-product-addon {
    display: inline-block;
    float: left;
    width: 155px;
    margin-left: 10px;
}
.tf-product-detail .tf-product-detail-addon {
    display: inline-block;
    float: left;
    width: 151px;
    margin-left: 0px;
}

    .tf-product .tf-product-addon .tf-price {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 4px;
    }
.tf-product-detail .tf-product-detail-addon .tf-price {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 4px;
}
.tf-price {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 4px;
}

/* This is why you avoid targeting html elements */
.tf-product .tf-product-addon button:not(.anchorButton) {
	background-color: #27292B; /* for KLMaint IE6/7 compatibility reasons */
	background-color: var(--color-btn-primary); /* for ADA color contrast */
	border-radius: 5px;
	padding: 5px 0px;
	text-align: center;
	border: none;
	width: 100%;
	font-size: 12px;
	color: white;
	font-weight: bold;
	font-family: Arial;
}

.tf-product .tf-product-addon .anchorButton {
	text-decoration: none;
	vertical-align: middle;
}

.tf-product-detail .tf-product-detail-addon button {
	background-color: #27292B; /* for KLMaint IE6/7 compatibility reasons */
	background-color: var(--color-btn-primary); /* for ADA color contrast */
	border-radius: 5px;
	padding: 5px 0px;
	text-align: center;
	border: none;
	width: 98%;
	font-size: 12px;
	color: white;
	font-weight: bold;
	font-family: Arial;
}
.tf-detail-button {
	background-color: #27292B; /* for KLMaint IE6/7 compatibility reasons */
	background-color: var(--color-btn-primary); /* for ADA color contrast */
	border-radius: 5px;
	padding: 5px 0px;
	text-align: center;
	border: none;
	width: 98%;
	font-size: 12px;
	color: white;
	font-weight: bold;
	font-family: Arial;
}
.tf-product .tf-pill-container {
    margin-top: 8px;
}
.tf-product-detail .tf-pill-container {
    margin-top: 8px;
}

.tf-product .tf-pill-container a {
        text-decoration: none;
        vertical-align: middle
}
.tf-product-detail .tf-pill-container a {
    text-decoration: none;
    vertical-align: middle
}
.tf-product .tf-pill {
    background-color: #EBEBEB;
    border-radius: 18px;
    padding: 5px 0px;
    font-size: 11px;
    font-weight: bold;
    line-height: 12px;
    display: inline-block;
    width: 49px;
    margin-bottom: 5px;
    text-align: center;
    color: #204342;
    cursor: pointer;
}
.tf-product-detail .tf-pill {
    background-color: #EBEBEB;
    border-radius: 18px;
    padding: 5px 0px;
    font-size: 11px;
    font-weight: bold;
    line-height: 12px;
    display: inline-block;
    width: 47px;
    margin-bottom: 5px;
    text-align: center;
    color: #204342;
    cursor: pointer;
}

    .tf-product .tf-pill:hover {
        color: #a21542;
    }
.tf-product-detail .tf-pill:hover {
    color: #a21542;
}

.tf-product .tf-product-footer {
    margin-top: 15px;
    margin-left: 5px;
}

    .tf-product .tf-product-footer .tf-inventory {
        color: #626262;
        font-size: 12px;
        line-height: 20px;
        float: left;
    }

        .tf-product .tf-product-footer .tf-inventory label {
            font-weight: bold;
        }

        .tf-product .tf-product-footer .tf-inventory .tf-items {
            color: #2B2117;
        }

.tf-auction-information {
    display: inline-block;
    width: 100%;
}

.tf-auction-information strong {
    color: #2B2117;
    font-size: 12px;
    line-height: 20px;
    float: left;
}

.tf-auction-information strong.tf-auction-end-time {
	float: right;
	color: #393939;
	font-size: 11px;
	margin-right: 8px;
}

.tf-auction-information strong.tf-auction-end-time.past-due {
	color: #A30000;
}

/* Should use the ".tf-product .tf-product-footer .tf-inventory .anchorButton" selector */
.tf-product .tf-product-footer .tf-inventory a {
    margin-left: 6px;
    color: #626262;
    cursor: pointer;
}
/* Might be outdated */
.tf-product .tf-product-footer .tf-inventory a:hover {
    color: #a21542;
}

.tf-product .tf-product-footer .tf-inventory .anchorButton {
	margin-left: 6px;
	color: #626262;
	font-size: 1em;
}

.tf-product .tf-product-footer .tf-inventory .anchorButton:hover {
	color: #a21542;
}

.tf-product .tf-product-footer .read-more {
    float: right;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    color: #104442;
    margin-right: 8px;
}

.tf-clubs {
    display: block;
    margin: 0.25em 0.1em 6px 0.35em;
    padding: 0;
    background-image: url(/images/icon_bottle.gif);
    background-repeat: no-repeat;
    background-position: 3px center;
    float: left;
    text-align: center;
    width: 100%;
}

    .tf-clubs a {
        text-decoration: none;
        text-transform: uppercase;
    }

.owl-recommendations.owl-carousel {
    width: 96%;
    margin-left: 2%;
    position: relative;
}

.owl-recommendations .owl-stage-outer {
    z-index: 100;
}

.owl-recommendations .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl-recommendations .owl-prev span,
.owl-recommendations .owl-next span {
    font-size: 16px;
    position: relative;
    top: -2px;
}

.owl-recommendations .owl-prev:hover,
.owl-recommendations .owl-next:hover {
    background: #eee3cf !important;
}

    .owl-recommendations .owl-prev:hover span,
    .owl-recommendations .owl-next:hover span {
        color: black;
    }

.owl-recommendations .owl-prev, .owl-recommendations .owl-next {
    top: 17px;
    position: absolute;
    width: 16px;
    height: 16px;
    background: #F2EFDB !important;
    outline: none !important;
}

    .owl-recommendations .owl-prev span,
    .owl-recommendations .owl-next span {
        color: #63624e;
    }

.owl-recommendations .owl-prev {
    left: -25px;
}

.owl-recommendations .owl-next {
    right: -25px;
}

.owl-recommendations.owl-carousel .owl-item img {
    width: 33px;
}

.owl-recommendations.owl-carousel .owl-item {
    left: -1px;
}

    .owl-recommendations.owl-carousel .owl-item .colBorderL {
        min-height: 80px;
        position: relative;
    }

.owl-recommendations.owl-carousel .owl-dots button {
    margin-top: 5px;
    outline: none !important;
}

.owl-recommendations.owl-carousel .owl-dots span {
    background: #d7d7d7 !important;
}

    .owl-recommendations.owl-carousel .owl-dots span:hover,
    .owl-recommendations.owl-carousel .owl-dots .active span,
    .owl-recommendations.owl-carousel .owl-dots .active span:hover {
        background: #570c0e !important;
    }

.owl-recommendations.owl-carousel .owl-dots {
    position: relative;
    z-index: 1000;
}

.owl-recommendations.owl-carousel .owl-item p {
    margin-top: 0px;
    margin-bottom: 0px;
}

/*Store Details*/
.store-details-container {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 25px;
}

.store-details-container div:not(:first-child) {
	border-left: 2px solid black;
    border-color: black;
}

.store-details {
    width: 170px;
    text-align: left;
    padding-left: 5px;
    max-height: auto;
}

.store-details h4 {
	margin-top: 0;
	font-weight: bold;
}

.klFeatureImageWrapper {
	padding-left: 16px;
}

.klFeatureImage {
	width: 100%;
	max-width: 322px;
	max-height: 215px;
}

.auctionFilterBlock {
	margin-top: 12px;
	margin-bottom: 0px;
	padding-block: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
	border-top: 2px solid var(--color-brand-logo-burgundy);
	border-bottom: 2px solid var(--color-brand-logo-burgundy);
}

.auctionFilterTitle {
	color: var(--color-brand-logo-burgundy);
	font-weight: bold;
}

.auctionFilterButton {
	padding-inline: 12px;
	padding-block: 8px;
	border: 1px solid var(--color-brand-red);
	border-radius: 4px;
	background: var(--color-brand-gray-06);
	color: var(--color-brand-red) !important;
	text-decoration: none !important;
}

.delivery-destination__products {
	margin-bottom: 15px;
}

.delivery-destination__products .cta__row {
	display: flex;
	flex-direction: row;
	gap: 5px;
}

.delivery-destination__products .cta__icon {
    flex: 0 0 auto;
    line-height: 0;
    padding-top: 2px;
}

.delivery-destination__products .shipping-settings-deliver {
	display: flex;
	flex-direction: column;
}

.delivery-destination__products .change-shipping-settings {
	color: #204342;
	text-decoration: underline;
	cursor: pointer;
	width: fit-content;
}
.delivery-destination__products .change-shipping-settings:hover {
	color: var(--color-gold-dark);
}

.delivery-destination__products .cta__title {
	font-weight: 500;
	font-size: 1em;
	line-height: 1.5em;
	color: #2b2117;
}

.delivery-destination__products .cta__title .is-link {
	color: #204342;
	cursor: pointer;
}

.delivery-destination__products .cta__title .is-link:hover {
	color: var(--color-gold-dark);
}

