/**
* CONTENTS
*
* GENERIC
* Box-sizing............Better default `box-sizing`.
* Sticky Footer.........Make Footer always stick to bottom.
* Image Aligns..........WP specific img aligns.
*
* BASE
* Typography............@fontfaces, base text and vertical rhythem setup.
*
* COMPONENTS
* Wrappers..............Wrapping and constraining elements.
* Grid System...........Bootstrap based grid.
* Clearfix..............Properly clear floats.
* Flexbox...............Emulate modern flexbox layout.
*
* Objects
* Icons.................Icon Elements.
* Buttons...............Button elements.
* Block-list............Create big blocky lists of content.
* Matrix................Table like layouts for lists.
* Multi-list............Multiple column lists.
* Tables................Table Styles.
* Forms.................Form Elements.
* Breadcrumbs...........Breadcrumbs.
* Tabs..................Tabs.
*
* UI
* Page head.............The main page header.
* Navigation............Navigation elements.
* Highlight.............Highlight banner.
* Masthead..............Page title/image/slideshow header block.
* Page footer...........The main page footer.
* Image buttons ........Image buttons.
* Callouts (HP) ........Homepage callout with background
*
* TRUMPS
* Images................Round, Circle, Square Images.
* Visiblity.............Make items visible.
* Hiding................Make items invisible/hidden.
* Screen Readers........Display for screen readers.
* Print.................Display for printing.
* Clears................Clearing floats.
* Text alignment........Align text.
* Font weights..........Adjust font weights.
* Borders...............Add borders.
* Add/remove margins....Remove margins.
* Add/remove paddings...Remove padding.
* Positioning...........float, center, and stick items.
*/

/*------------------------------------*\
Generic
\*------------------------------------*/

/**
* Box-sizing
*/

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}



/**
* Global
*/

html {
	position: relative;
	min-height: 100%;
	overflow-x: hidden;
}

	html[data-marquee] {
		margin-top: 44px; /* For highlight banner */
	}

	.highlight-banner-container {
		position: absolute;
		width: 100%;
		top: -44px;
	}

    .highlight-banner-container p {
        margin: 0;
    }

	.highlight-banner { display: block !important; }

body { margin: 0; }

@media (max-width: 768px) {

	html[data-marquee] { margin-top: 38px; }

}

@media (max-width: 599px) {
    
    .highlight-banner-container p,
    .highlight-banner-container p span {
        font-size: 15px !important;
    }
    
}



/**
* Images
*
* These selectors are hard cast because they are only used
* by wordpress wyswyg when adding images to content
*/

img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
	height: auto;
	max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
	height: auto;
	max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter { margin: 0 0 22px 0; }

img.alignright,
.wp-caption.alignright {
	float: right;
	margin: 0 0 22px 30px;
}

img.alignleft,
.wp-caption.alignleft {
	float: left;
	margin: 0 30px 22px 0;
}

img.aligncenter,
.wp-caption.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.full-width-responsive-image {
	float: right;
	margin: 0 0 22px 30px;
	max-width: 50%;
}

@media (max-width: 520px) {

	.full-width-responsive-image {
		margin: 0 0 22px 0;
		max-width: 100%;
	}

}



/*------------------------------------*\
Typography
\*------------------------------------*/

body {
	font-family: 'PT Serif', serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #262c3c !important;
}

h2:first-child { margin-top: 0; }

h1 {
	font-size: 42px;
	line-height: 54px;
}

h2 {
	font-size: 30px;
	line-height: 42px;
}

h3 {
	font-size: 20px;
	line-height: 32px;
	margin: 0;
}

.cms-page-view h3 {
	margin-top: 48px;
	margin-bottom: 24px;
}

h4 {
	font-size: 18px;
	font-weight: 400 !important;
	line-height: 1.4;
}

p,
ul,
ol { margin-bottom: 24px; }

hr {
	border: 0;
	margin-bottom: 12px;
	margin-top: 12px;
	border-top: 1px solid #c1a566;
}

hr.gray-hr {
	border: 0;
	margin-bottom: 12px;
	margin-top: 12px;
	border-top: 1px solid #c5c6ca;
}

a {
	color: #c1a566 !important;
	text-decoration: none !important;
}

a:hover {
	color: #6ec3c0 !important;
	text-decoration: none;
}

small {
	display: block;
	line-height: 1.5;
}


@media (min-width: 1025px){

	h1 {
		font-size: 68px;
		line-height: 80px;
	}

	h2 {
		font-size: 42px;
		line-height: 54px;
	}

	h3 {
		font-size: 30px;
		line-height: 42px;
	}

	h4 { font-size: 22px; }

	p,
	ul,
	ol { margin-bottom: 24px; }

}




/*------------------------------------*\
COMPONENTS
\*------------------------------------*/


/**
* Wrappers
*/

.container,
.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 12px;
	padding-right: 12px;
}

@media (min-width: 600px) {
	.container { width: 580px; }
}

@media (min-width: 768px) {
	.container { width: 740px; }
}

@media (min-width: 992px) {
	.container { width: 990px; }
}

@media (min-width: 1200px) {
	.container { width: 1160px; }
}

/* TODO: if usign a max-width fluid layout remove above media
queries and uncomment below */

/* .container { max-width: 1160px; }

/**
* Grid System
*
* Bootstrap v3.3.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
* Base setup 20px gutters
*
* Phones         - xxs - <  600px    ** Default **
* Small Tablets  - xs - >=  600px
* Tablets        - sm - >= 768px
* Desktop        - md - >= 1025px
* Large Desktop  - lg - >= 1200px
* --------------------------------------------------------------------------
* Learn more here: http://getbootstrap.com/css/#grid
* -------------------------------------------------------------------------- */

.row {
	margin-left: -12px;
	margin-right: -12px;
}

[class*="col-"] {
	position: relative;
	min-height: 1px;
	padding-left: 12px;
	padding-right: 12px;
}

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] { float:left; }

.col-xxs-12 { width: 100%; }
.col-xxs-11 { width: 91.66666667%; }
.col-xxs-10 { width: 83.33333333%; }
.col-xxs-9  { width: 75%; }
.col-xxs-8  { width: 66.66666667%; }
.col-xxs-7  { width: 58.33333333%; }
.col-xxs-6  { width: 50%; }
.col-xxs-5  { width: 41.66666667%; }
.col-xxs-4  { width: 33.33333333%; }
.col-xxs-3  { width: 25%; }
.col-xxs-2  { width: 16.66666667%; }
.col-xxs-1  { width: 8.33333333%; }

.col-xxs-pull-12 { right: 100%; }
.col-xxs-pull-11 { right: 91.66666667%; }
.col-xxs-pull-10 { right: 83.33333333%; }
.col-xxs-pull-9  { right: 75%; }
.col-xxs-pull-8  { right: 66.66666667%; }
.col-xxs-pull-7  { right: 58.33333333%; }
.col-xxs-pull-6  { right: 50%; }
.col-xxs-pull-5  { right: 41.66666667%; }
.col-xxs-pull-4  { right: 33.33333333%; }
.col-xxs-pull-3  { right: 25%; }
.col-xxs-pull-2  { right: 16.66666667%; }
.col-xxs-pull-1  { right: 8.33333333%; }
.col-xxs-pull-0  { right: auto; }

.col-xxs-push-12 { left: 100%; }
.col-xxs-push-11 { left: 91.66666667%; }
.col-xxs-push-10 { left: 83.33333333%; }
.col-xxs-push-9  { left: 75%; }
.col-xxs-push-8  { left: 66.66666667%; }
.col-xxs-push-7  { left: 58.33333333%; }
.col-xxs-push-6  { left: 50%; }
.col-xxs-push-5  { left: 41.66666667%; }
.col-xxs-push-4  { left: 33.33333333%; }
.col-xxs-push-3  { left: 25%; }
.col-xxs-push-2  { left: 16.66666667%; }
.col-xxs-push-1  { left: 8.33333333%; }
.col-xxs-push-0  { left: auto; }

.col-xxs-offset-12 { margin-left: 100%; }
.col-xxs-offset-11 { margin-left: 91.66666667%; }
.col-xxs-offset-10 { margin-left: 83.33333333%; }
.col-xxs-offset-9  { margin-left: 75%; }
.col-xxs-offset-8  { margin-left: 66.66666667%; }
.col-xxs-offset-7  { margin-left: 58.33333333%; }
.col-xxs-offset-6  { margin-left: 50%; }
.col-xxs-offset-5  { margin-left: 41.66666667%; }
.col-xxs-offset-4  { margin-left: 33.33333333%; }
.col-xxs-offset-3  { margin-left: 25%; }
.col-xxs-offset-2  { margin-left: 16.66666667%; }
.col-xxs-offset-1  { margin-left: 8.33333333%; }
.col-xxs-offset-0  { margin-left: 0%; }

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
	[class*="col-xs-"] {float:left;}

	.col-xs-12 { width: 100%; }
	.col-xs-11 { width: 91.66666667%; }
	.col-xs-10 { width: 83.33333333%; }
	.col-xs-9  { width: 75%; }
	.col-xs-8  { width: 66.66666667%; }
	.col-xs-7  { width: 58.33333333%; }
	.col-xs-6  { width: 50%; }
	.col-xs-5  { width: 41.66666667%; }
	.col-xs-4  { width: 33.33333333%; }
	.col-xs-3  { width: 25%; }
	.col-xs-2  { width: 16.66666667%; }
	.col-xs-1  { width: 8.33333333%; }

	.col-xs-pull-12 { right: 100%; }
	.col-xs-pull-11 { right: 91.66666667%; }
	.col-xs-pull-10 { right: 83.33333333%; }
	.col-xs-pull-9  { right: 75%; }
	.col-xs-pull-8  { right: 66.66666667%; }
	.col-xs-pull-7  { right: 58.33333333%; }
	.col-xs-pull-6  { right: 50%; }
	.col-xs-pull-5  { right: 41.66666667%; }
	.col-xs-pull-4  { right: 33.33333333%; }
	.col-xs-pull-3  { right: 25%; }
	.col-xs-pull-2  { right: 16.66666667%; }
	.col-xs-pull-1  { right: 8.33333333%; }
	.col-xs-pull-0  { right: auto; }

	.col-xs-push-12 { left: 100%; }
	.col-xs-push-11 { left: 91.66666667%; }
	.col-xs-push-10 { left: 83.33333333%; }
	.col-xs-push-9  { left: 75%; }
	.col-xs-push-8  { left: 66.66666667%; }
	.col-xs-push-7  { left: 58.33333333%; }
	.col-xs-push-6  { left: 50%; }
	.col-xs-push-5  { left: 41.66666667%; }
	.col-xs-push-4  { left: 33.33333333%; }
	.col-xs-push-3  { left: 25%; }
	.col-xs-push-2  { left: 16.66666667%; }
	.col-xs-push-1  { left: 8.33333333%; }
	.col-xs-push-0  { left: auto; }

	.col-xs-offset-12 { margin-left: 100%; }
	.col-xs-offset-11 { margin-left: 91.66666667%; }
	.col-xs-offset-10 { margin-left: 83.33333333%; }
	.col-xs-offset-9  { margin-left: 75%; }
	.col-xs-offset-8  { margin-left: 66.66666667%; }
	.col-xs-offset-7  { margin-left: 58.33333333%; }
	.col-xs-offset-6  { margin-left: 50%; }
	.col-xs-offset-5  { margin-left: 41.66666667%; }
	.col-xs-offset-4  { margin-left: 33.33333333%; }
	.col-xs-offset-3  { margin-left: 25%; }
	.col-xs-offset-2  { margin-left: 16.66666667%; }
	.col-xs-offset-1  { margin-left: 8.33333333%; }
	.col-xs-offset-0  { margin-left: 0%; }

}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	[class*="col-sm-"] {float:left;}

	.col-sm-12 { width: 100%; }
	.col-sm-11 { width: 91.66666667%; }
	.col-sm-10 { width: 83.33333333%; }
	.col-sm-9  { width: 75%; }
	.col-sm-8  { width: 66.66666667%; }
	.col-sm-7  { width: 58.33333333%; }
	.col-sm-6  { width: 50%; }
	.col-sm-5  { width: 41.66666667%; }
	.col-sm-4  { width: 33.33333333%; }
	.col-sm-3  { width: 25%; }
	.col-sm-2  { width: 16.66666667%; }
	.col-sm-1  { width: 8.33333333%; }

	.col-sm-pull-12 { right: 100%; }
	.col-sm-pull-11 { right: 91.66666667%; }
	.col-sm-pull-10 { right: 83.33333333%; }
	.col-sm-pull-9  { right: 75%; }
	.col-sm-pull-8  { right: 66.66666667%; }
	.col-sm-pull-7  { right: 58.33333333%; }
	.col-sm-pull-6  { right: 50%; }
	.col-sm-pull-5  { right: 41.66666667%; }
	.col-sm-pull-4  { right: 33.33333333%; }
	.col-sm-pull-3  { right: 25%; }
	.col-sm-pull-2  { right: 16.66666667%; }
	.col-sm-pull-1  { right: 8.33333333%; }
	.col-sm-pull-0  { right: auto; }

	.col-sm-push-12 { left: 100%; }
	.col-sm-push-11 { left: 91.66666667%; }
	.col-sm-push-10 { left: 83.33333333%; }
	.col-sm-push-9  { left: 75%; }
	.col-sm-push-8  { left: 66.66666667%; }
	.col-sm-push-7  { left: 58.33333333%; }
	.col-sm-push-6  { left: 50%; }
	.col-sm-push-5  { left: 41.66666667%; }
	.col-sm-push-4  { left: 33.33333333%; }
	.col-sm-push-3  { left: 25%; }
	.col-sm-push-2  { left: 16.66666667%; }
	.col-sm-push-1  { left: 8.33333333%; }
	.col-sm-push-0  { left: auto; }

	.col-sm-offset-12 { margin-left: 100%; }
	.col-sm-offset-11 { margin-left: 91.66666667%; }
	.col-sm-offset-10 { margin-left: 83.33333333%; }
	.col-sm-offset-9  { margin-left: 75%; }
	.col-sm-offset-8  { margin-left: 66.66666667%; }
	.col-sm-offset-7  { margin-left: 58.33333333%; }
	.col-sm-offset-6  { margin-left: 50%; }
	.col-sm-offset-5  { margin-left: 41.66666667%; }
	.col-sm-offset-4  { margin-left: 33.33333333%; }
	.col-sm-offset-3  { margin-left: 25%; }
	.col-sm-offset-2  { margin-left: 16.66666667%; }
	.col-sm-offset-1  { margin-left: 8.33333333%; }
	.col-sm-offset-0  { margin-left: 0%; }

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	[class*="col-md-"] {float:left;}

	.col-md-12 { width: 100%; }
	.col-md-11 { width: 91.66666667%; }
	.col-md-10 { width: 83.33333333%; }
	.col-md-9  { width: 75%; }
	.col-md-8  { width: 66.66666667%; }
	.col-md-7  { width: 58.33333333%; }
	.col-md-6  { width: 50%; }
	.col-md-5  { width: 41.66666667%; }
	.col-md-4  { width: 33.33333333%; }
	.col-md-3  { width: 25%; }
	.col-md-2  { width: 16.66666667%; }
	.col-md-1  { width: 8.33333333%; }

	.col-md-pull-12 { right: 100%; }
	.col-md-pull-11 { right: 91.66666667%; }
	.col-md-pull-10 { right: 83.33333333%; }
	.col-md-pull-9  { right: 75%; }
	.col-md-pull-8  { right: 66.66666667%; }
	.col-md-pull-7  { right: 58.33333333%; }
	.col-md-pull-6  { right: 50%; }
	.col-md-pull-5  { right: 41.66666667%; }
	.col-md-pull-4  { right: 33.33333333%; }
	.col-md-pull-3  { right: 25%; }
	.col-md-pull-2  { right: 16.66666667%; }
	.col-md-pull-1  { right: 8.33333333%; }
	.col-md-pull-0  { right: auto; }

	.col-md-push-12 { left: 100%; }
	.col-md-push-11 { left: 91.66666667%; }
	.col-md-push-10 { left: 83.33333333%; }
	.col-md-push-9  { left: 75%; }
	.col-md-push-8  { left: 66.66666667%; }
	.col-md-push-7  { left: 58.33333333%; }
	.col-md-push-6  { left: 50%; }
	.col-md-push-5  { left: 41.66666667%; }
	.col-md-push-4  { left: 33.33333333%; }
	.col-md-push-3  { left: 25%; }
	.col-md-push-2  { left: 16.66666667%; }
	.col-md-push-1  { left: 8.33333333%; }
	.col-md-push-0  { left: auto; }

	.col-md-offset-12 { margin-left: 100%; }
	.col-md-offset-11 { margin-left: 91.66666667%; }
	.col-md-offset-10 { margin-left: 83.33333333%; }
	.col-md-offset-9  { margin-left: 75%; }
	.col-md-offset-8  { margin-left: 66.66666667%; }
	.col-md-offset-7  { margin-left: 58.33333333%; }
	.col-md-offset-6  { margin-left: 50%; }
	.col-md-offset-5  { margin-left: 41.66666667%; }
	.col-md-offset-4  { margin-left: 33.33333333%; }
	.col-md-offset-3  { margin-left: 25%; }
	.col-md-offset-2  { margin-left: 16.66666667%; }
	.col-md-offset-1  { margin-left: 8.33333333%; }
	.col-md-offset-0  { margin-left: 0%; }

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	[class*="col-lg-"] {float:left;}

	.col-lg-12 { width: 100%; }
	.col-lg-11 { width: 91.66666667%; }
	.col-lg-10 { width: 83.33333333%; }
	.col-lg-9  { width: 75%; }
	.col-lg-8  { width: 66.66666667%; }
	.col-lg-7  { width: 58.33333333%; }
	.col-lg-6  { width: 50%; }
	.col-lg-5  { width: 41.66666667%; }
	.col-lg-4  { width: 33.33333333%; }
	.col-lg-3  { width: 25%; }
	.col-lg-2  { width: 16.66666667%; }
	.col-lg-1  { width: 8.33333333%; }

	.col-lg-pull-12 { right: 100%; }
	.col-lg-pull-11 { right: 91.66666667%; }
	.col-lg-pull-10 { right: 83.33333333%; }
	.col-lg-pull-9  { right: 75%; }
	.col-lg-pull-8  { right: 66.66666667%; }
	.col-lg-pull-7  { right: 58.33333333%; }
	.col-lg-pull-6  { right: 50%; }
	.col-lg-pull-5  { right: 41.66666667%; }
	.col-lg-pull-4  { right: 33.33333333%; }
	.col-lg-pull-3  { right: 25%; }
	.col-lg-pull-2  { right: 16.66666667%; }
	.col-lg-pull-1  { right: 8.33333333%; }
	.col-lg-pull-0  { right: auto; }

	.col-lg-push-12 { left: 100%; }
	.col-lg-push-11 { left: 91.66666667%; }
	.col-lg-push-10 { left: 83.33333333%; }
	.col-lg-push-9  { left: 75%; }
	.col-lg-push-8  { left: 66.66666667%; }
	.col-lg-push-7  { left: 58.33333333%; }
	.col-lg-push-6  { left: 50%; }
	.col-lg-push-5  { left: 41.66666667%; }
	.col-lg-push-4  { left: 33.33333333%; }
	.col-lg-push-3  { left: 25%; }
	.col-lg-push-2  { left: 16.66666667%; }
	.col-lg-push-1  { left: 8.33333333%; }
	.col-lg-push-0  { left: auto; }

	.col-lg-offset-12 { margin-left: 100%; }
	.col-lg-offset-11 { margin-left: 91.66666667%; }
	.col-lg-offset-10 { margin-left: 83.33333333%; }
	.col-lg-offset-9  { margin-left: 75%; }
	.col-lg-offset-8  { margin-left: 66.66666667%; }
	.col-lg-offset-7  { margin-left: 58.33333333%; }
	.col-lg-offset-6  { margin-left: 50%; }
	.col-lg-offset-5  { margin-left: 41.66666667%; }
	.col-lg-offset-4  { margin-left: 33.33333333%; }
	.col-lg-offset-3  { margin-left: 25%; }
	.col-lg-offset-2  { margin-left: 16.66666667%; }
	.col-lg-offset-1  { margin-left: 8.33333333%; }
	.col-lg-offset-0  { margin-left: 0%; }

}


/**
* Clearfix
* Apply clearing without adding additional markup
*/

.clearfix:before, .clearfix:after,
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
.row:before, .row:after {
	content: " ";
	display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after { clear: both; }


/**
* Flexbox
* Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate
* it, in a way
*
* Demo: jsfiddle.net/inuitcss/ufUh2
*/

.flexbox {
	display: table;
	width: 100%;
}

/**
* Nasty hack to circumvent Modernizr conflicts.
*/
html.flexbox {
	display: block;
	width: auto;
}

.flexbox-item {
	display: table-cell;
	vertical-align: middle;
}

/*--------------------------------------------------------------*\
OBJECTS
Objects are independent generic stylibf classes or UI peices.
All styles for objects should be self contained.

e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/


/**
* Buttons
*/

a.btn,
.action.primary,
a.action.primary,
.action.action-remind,
.action.action-update,
.action.action-cancel,
.btn,
.btn:focus,
.cart-summary .actions-toolbar > .primary button,
.actions-toolbar .primary button,
.actions-toolbar .primary [type="submit"] {
	font-family: 'PT serif', serif;
	font-weight: 400;
	border-radius: 0;
	border: none;
	display: inline-block;
	font-size: 16px !important;
	line-height: 1em !important;
	background: #262c3c;
	color: #fff !important;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	padding: 18px 24px !important;
}

a.btn.secondary,
.action.action-cancel { background:#6ec3c0; }

a.btn:before,
.action.primary:before,
.action.secondary:before,
.action-secondary:before,
.action-primary:before,
.action-remind:before,
.action-update:before,
.action-cancel:before {
	content: '';
	position: absolute;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #fff;
	top: 4px;
	left: 4px;
}

a.btn:hover,
.action.primary:hover,
.action-primary:hover,
.action.primary:focus,
.action.primary:active,
.action-secondary:hover,
.action.secondary:hover,
.action.secondary:focus,
.action.secondary:active,
.action-show-popup:hover,
.action-show-popup:focus,
.action-show-popup:active,
[type="submit"]:hover,
.action-select-shipping-item:hover,
.action-show-popup:hover,
.action-edit-address:hover,
.actions-toolbar .primary button,
.actions-toolbar .primary [type="submit"] {
	background: #c1a566;
	color: #fff !important;
	border-color: #fff;
	border: none;
}

.action-select-shipping-item,
.action-show-popup,
.action-edit-address { margin: 5px 0 !important; }

.btn.gold{
	background:#c1a566;
	margin-bottom: 12px;
	border:1px solid #c1a566;
}

.btn.gold:hover{
	background: #fff;
	border:1px solid #fff;
	color: #c1a566 !important;
}

.btn.gold:hover:before { border-color: #c1a566; }
.btn.gold:hover span{
	color: #c1a566;
}

a.btn.secondary:hover{
	background:#262c3c;
	border: none !important;
}

a.btn--white {
	color: #262c3c !important;
	background-color: #fff;
}

a.btn--white:before { border-color: #262c3c; }
a.btn--white:hover { color: #fff !important; }
a.btn--white:hover:before { border-color: #fff; }

a {
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

a.btn,
a.btn:before,
.action.primary,
.action.primary:before,
.action.secondary:before,
.action.action-remind:before,
.action-secondary:before,
.btn,
.btn:focus,
.cart-summary .actions-toolbar > .primary button,
a.btn span,
button span,
.product-card .wishlist-icon:after,
.img-button-container:after,
.img-button-container:before {
	-webkit-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn--popup { height: auto !important; }



/**
* Fonts
*/

@font-face {
	font-family: 'parisienneregular';
	src: url('../../frontend/dover/doverjewelry2017/en_US/fonts/parisienne.regular-webfont.woff2') format('woff2'),
	url('../../frontend/dover/doverjewelry2017/en_US/fonts/parisienne.regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}



/**
* Icons
*/

@font-face {
	font-family: 'icomoon';
	src:  url('../../frontend/dover/doverjewelry2017/en_US/fonts/icomoon.eot?s1r5rd');
	src:  url('../../frontend/dover/doverjewelry2017/en_US/fonts/icomoon.eot?s1r5rd#iefix') format('embedded-opentype'),
	url('../../frontend/dover/doverjewelry2017/en_US/fonts/icomoon.ttf?s1r5rd') format('truetype'),
	url('../../frontend/dover/doverjewelry2017/en_US/fonts/icomoon.woff?s1r5rd') format('woff'),
	url('../../frontend/dover/doverjewelry2017/en_US/fonts/icomoon.svg?s1r5rd#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"], .nav-wishlist-hover:before {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
	content: "\e932";
}
.icon-print:before {
	content: "\e930";
}
.icon-transparency:before {
	content: "\e919";
}
.icon-sell:before {
	content: "\e928";
}
.icon-down-arrow:before {
	content: "\e929";
}
.icon-shipping:before {
	content: "\e92b";
}
.icon-timely:before {
	content: "\e92c";
}
.icon-trust:before {
	content: "\e92d";
}
.icon-brokerage:before {
	content: "\e913";
}
.icon-certified:before {
	content: "\e914";
}
.icon-cosign:before {
	content: "\e915";
}
.icon-education:before {
	content: "\e916";
}
.icon-evaluation:before {
	content: "\e917";
}
.icon-find:before {
	content: "\e918";
}
.icon-help:before {
	content: "\e91a";
}
.icon-insurance:before {
	content: "\e91b";
}
.icon-jewelry:before {
	content: "\e91c";
}
.icon-legal:before {
	content: "\e91d";
}
.icon-outright-sale:before {
	content: "\e91e";
}
.icon-pay-more:before {
	content: "\e91f";
}
.icon-pay-over-time:before {
	content: "\e920";
}
.icon-payment:before {
	content: "\e921";
}
.icon-sell-fast:before {
	content: "\e922";
}
.icon-selling:before {
	content: "\e923";
}
.icon-shipping-truck:before {
	content: "\e924";
}
.icon-verify:before {
	content: "\e925";
}
.icon-document-edit:before {
	content: "\e926";
}
.icon-map-pin:before {
	content: "\e927";
}
.icon-telephone:before {
	content: "\e912";
}
.icon-mail:before {
	content: "\e904";
}
.icon-diamond:before {
	content: "\e905";
}
.icon-consignment:before {
	content: "\e92a";
}
.icon-bubbles:before {
	content: "\e911";
}
.icon-share:before {
	content: "\e909";
}
.icon-search2:before {
	content: "\e90a";
}
.icon-heart:before {
	content: "\e90b";
}
.icon-twitter:before {
	content: "\e90c";
}
.icon-google-plus:before {
	content: "\e90d";
}
.icon-facebook:before {
	content: "\e90e";
}
.icon-youtube:before {
	content: "\e90f";
}
.icon-instagram:before {
	content: "\e910";
}
.icon-arrow-down:before {
	content: "\e92e";
}
.icon-search:before {
	content: "\e92f";
}
.icon-arrow_up:before {
	content: "\e900";
}
.icon-arrow_right:before {
	content: "\e901";
}
.icon-arrow_left:before {
	content: "\e902";
}
.icon-arrow_down:before {
	content: "\e903";
}
.icon-rss:before {
	content: "\e906";
}
.icon-shopping-bag:before {
	content: "\e907";
}
.icon-pinterest:before {
	content: "\e908";
}
.icon-yelp:before {
	content: "\e931";
}


/** Icon Styles **/

.icon-gold {
	font-size: 62px;
	color: #796b42;
}

.icon-white {
	font-size: 58px;
	color: #fff;
}

/**
* Block-list / Matrix
* Create big blocky lists of content
*
* Demo: jsfiddle.net/inuitcss/hR57q
*/

.block-list,
.matrix,
.block-list > li,
.matrix > li { border: 0 solid #ccc; }

.block-list,
.matrix {
	list-style: none;
	margin-left: 0;
	border-top-width: 1px;
}

.block-list > li,
.matrix > li {
	border-bottom-width: 1px;
	padding: 12px;
}

.block-list-link,
.matrix-link {
	display: block;
	padding: 12px;
	margin: -12px;
}



/**
* Matrix
*
* Demo: jsfiddle.net/inuitcss/Y2zrU
*/

.matrix { border-left-width: 1px; }

.matrix > li {
	float: left;
	border-right-width: 1px;
}


/**
* Multi-list
*
* Stack lists into columns
* Demo: jsfiddle.net/inuitcss/Y2zrU
*/

.multi-list {
	list-style: none;
	margin-left: 0;
}

.multi-list > li        { float: left; }
.multi-list-padded > li { padding-left: 10px; padding-right: 10px; } /* TODO: update to match container padding */

/**
* Apply these classes alongside the `.matrix` or `.multi-list` classes on
* lists to determine how wide their columns are.
*/

.two-cols > li   { width: 50%; }
.three-cols > li { width: 33.333%; }
.four-cols > li  { width: 25%; }
.five-cols > li  { width: 20%; }

/**
* Unfortunately we have to qualify this selector in order to bring its
* specificity above the `.[number]-cols > li` selectors above.
*/
.matrix > .all-cols,
.multi-list > .all-cols { width: 100%; }





/**
* Tables
*/

table {
	border-collapse:collapse;
}




/**
* Forms
*/

label {
	padding-bottom: 6px;
	display: inline-block;
	font-weight: 700;
	font-family:'PT Serif', serif !important;
}

.form-shipping-address .control { width: 100%; }
.form-shipping-address .control select { width: 100%; }

select {
	border: 1px solid #c5c6ca ;
	font-family:'PT Serif', serif ;
	border-radius: 0 ;
	height: 44px ;
	position: relative;
}

textarea {
	background: #efefef;
	border: 1px solid #c5c6ca ;
	font-family:'PT Serif', serif;
	border-radius: 0 ;
	position: relative;
}

select#sorter {
	background: transparent;
}


/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
	-webkit-appearance: none;
}
/*overrides for the form*/

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"] {
	background: #efefef !important;
	border: 1px solid #c5c6ca !important;
	font-family:'PT Serif', serif !important;
	border-radius: 0 !important;
	height: 44px !important;
	position: relative;

}


/* Default Submit Button Style */
[type="submit"],
.action-select-shipping-item,
.action-show-popup,
.action-edit-address {
	font-family:'PT Serif', serif !important;
	font-weight: 400 !important;
	display: inline-block;
	font-size: 16px !important;
	line-height: 1em;
	background: #262c3c;
	color: #fff;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	padding: 18px;
	margin-top: -6px;
	border: 0;
	border-radius: 0 !important;
	-webkit-transition: background-color .5s ease-in;
	-o-transition: background-color .5s ease-in;
	transition: background-color .5s ease-in;
}

[type="submit"]:before,
.action-select-shipping-item:before,
.action-show-popup:before,
.action-edit-address:before {
	content: '';
	position: absolute;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #fff;
	top: 4px;
	left: 4px;
}

.block-search .action.search:before { display: none; }

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border: none;
	padding: 0;
}

.fieldset > .field.required > .label:after,
.field.required > .label:after,
.fieldset > .fields > .field.required > .label:after,
.fieldset > .field._required > .label:after,
.fieldset > .fields > .field._required > .label:after{
	color: #6ec3c0 !important;
	font-family: 'PT Serif', serif !important;
	font-size: 14px !important;
	content: '*';
}

.fieldset #remember-me-box {
	margin-left: 13px;
	clear: both;
}


/**
* Tabs
*/

.tabs-nav li {
	display: block;
	width: 100%;
	margin-bottom: 0;
}

.tabs-nav li a {
	display: block;
	font-size: 14px;
	letter-spacing: .1em;
	padding: 10px 15px;
	text-transform: uppercase;
	border-top: 1px solid #c1a566;
}

.tabs-nav li.active a,
.tabs-nav li:hover a {
	color: #fff !important;
	background-color: #c1a566;
}

.tabs-nav {
	padding: 0;
	border-bottom: 1px solid #c1a566;
}

.tabs-content {
	display: none;
	padding: 15px;
}

.tabs-content.active { display: block; }


@media (min-width: 769px) {

	.tabs-nav li {
		width: auto;
		float: left;
		border-bottom: 1px solid #c1a566;
		margin-bottom: -1px;
	}

	.tabs-nav li:hover,
	.tabs-nav li.active {
		border-bottom: 1px solid #262c3c;
	}

	.tabs-nav li a {
		padding: 10px 15px;
		border-top: none;
	}

	.tabs-nav li,
	.tabs-nav li a { display: inline-block }

	.tabs-nav li:hover a,
	.tabs-nav li.active a {
		color: #262c3c !important;
		background-color: transparent;
	}
}

@media (min-width: 1025px) {
	.tabs-nav li a {
		font-size: 16px;
		padding: 15px 20px;
	}

	.tabs-content { padding: 25px; }
}

@media (min-width: 1201px) {
	.tabs-nav li a { padding: 15px 30px; }
}



/**
* Press Card
*/

.press-card {
	display: block;
	position: relative;
}

.press-card:before {
	background-color: rgba(38, 44, 60, .5);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.press-card br {
	display: none;
}

.press-card p,
.press-card span {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	margin: 0;
	line-height: 1.3;
}

.press-card img {
	display: block;
	height: auto;
	width: 100%;
}

@media (min-width: 400px) {

	.press-card {
		float: left;
		width: 50%;
	}

}

@media (min-width: 600px) {

	.press-card {
		width: 33.333%;
	}

}

@media (min-width: 768px) {

	.press-card p,
	.press-card span {
		font-size: 20px;
	}

}

@media (min-width: 1025px) {

	.press-card {
		cursor: pointer;
		width: 25%;
	}

	.press-card p,
	.press-card span {
		font-size: 24px;
	}

	.press-card:before,
	.press-card p,
	.press-card span {
		opacity: 0;
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
	}

	.press-card:hover:before,
	.press-card:hover p,
	.press-card:hover span {
		opacity: 1;
	}

	.press-card:before {
		background-color: rgba(38, 44, 60, .9);
	}

	.press-card:after {
		content: '';
		background-color: #c1a566;
		height: 1px;
		width: 0;
		position: absolute;
		left: 50%;
		margin-left: -30px;
		top: 30px;
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
	}

	.press-card:hover:after {
		width: 60px;
	}
}

@media (min-width: 1200px) {
	.press-card {
		width: 20%;
	}
}

@media (min-width: 1400px) {
	.press-card {
		width: 16.6667%;
	}
}


/**
* Exhibition Card
*/

.exhibition-cards {
	margin-bottom: 30px;
}

.exhibition-card,
.exhibition-card:before,
.exhibition-card__learn-more,
.exhibition-card__learn-more:before {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.exhibition-card {
	background-size: 100%;
	display: table;
	height: 400px;
	width: 100%;
	position: relative;
	padding: 20px;
	margin-bottom: 10px;
}

.exhibition-card:before {
	background-color: rgba(38, 44, 60, .6);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.exhibition-card__content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
}

.exhibition-card__name {
	display: block;
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 30px;
}

.exhibition-card__learn-more {
	display: block;
	font-size: .8em;
	text-transform: uppercase;
	position: relative;
	margin-top: 10px;
}

.exhibition-card--flyer-1 {
	background: url('/media/wysiwyg/Flyer 1.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-2 {
	background: url('/media/wysiwyg/Flyer 2.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-3 {
	background: url('/media/wysiwyg/Flyer 3.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-4 {
	background: url('/media/wysiwyg/Flyer 4.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-5 {
	background: url('/media/wysiwyg/Flyer 5.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-6 {
	background: url('/media/wysiwyg/Flyer 6.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-7 {
	background: url('/media/wysiwyg/Flyer 7.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-8 {
	background: url('/media/wysiwyg/Flyer 8.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-9 {
	background: url('/media/wysiwyg/Flyer 9.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-10 {
	background: url('/media/wysiwyg/Flyer 10.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-11 {
	background: url('/media/wysiwyg/Flyer 11.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-12 {
	background: url('/media/wysiwyg/Flyer 12.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-13 {
	background: url('/media/wysiwyg/Flyer 13.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-14 {
	background: url('/media/wysiwyg/Flyer 14.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-15 {
	background: url('/media/wysiwyg/Flyer 15.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-16 {
	background: url('/media/wysiwyg/Flyer 16.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-17 {
	background: url('/media/wysiwyg/Flyer 17.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-18 {
	background: url('/media/wysiwyg/Flyer 18.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-19 {
	background: url('/media/wysiwyg/Flyer 19.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-20 {
	background: url('/media/wysiwyg/Flyer 20.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-21 {
	background: url('/media/wysiwyg/flyer-HKTDC.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-22 {
	background: url('/media/wysiwyg/flyer-hong-kong.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--flyer-23 {
	background: url('/media/wysiwyg/the wedding salon.jpg') no-repeat center center / cover;
	background-size: 100%;
}

.exhibition-card--lookbook-1 {
	background: url('/media/wysiwyg/lookbook-1.jpg') no-repeat center center / cover;
	background-size: 100%;
}


@media (min-width: 600px) {

	.exhibition-card {
		float: left;
		width: 50%;
	}

}

@media (min-width: 768px) {

	.exhibition-card {
		height: 500px
	}

	.exhibition-card__name {
		font-size: 24px;
	}

	.exhibition-card__learn-more {
		font-size: 1em;
	}

}

@media (min-width: 1025px) {

	.exhibition-card {
		padding: 30px;
	}

	.exhibition-card:hover {
		background-size: 120%;
	}

	.exhibition-card:hover:before {
		background-color: rgba(38, 44, 60, .9);
	}

	.exhibition-card__name {
		font-size: 32px;
	}

	.exhibition-card__learn-more {
		opacity: 0;
	}

	.exhibition-card:hover .exhibition-card__learn-more {
		opacity: 1;
	}

	.exhibition-card__learn-more:hover {
		color: #6ec3c0;
	}

	.exhibition-card__learn-more:before {
		display: none;
	}

}

@media (min-width: 1400px) {

	.exhibition-card {
		float: left;
		height: 400px;
		width: 25%;
	}

}

@media (min-width: 1600px) {
	.exhibition-card {
		height: 450px;
	}
}

@media (max-width: 1024px) {
	.magnifier-preview { display: none !important }
}

@media (min-width: 1025px) {
	.magnifier-preview {
		top: 0 !important;
		left: 100% !important;
		width: 100% !important;
		max-width: 500px !important;
		height: 295px !important;
		border: 1px solid #c1a566;
		z-index: 1;
	}

	.magnifier-preview img {
		max-width: none !important;
	}
}

@media (min-width: 1200px) {
	.magnifier-preview {
		height: 400px !important;
	}
}

@media (min-width: 1366px) {
	.magnifier-preview {
		height: 500px !important;
	}
}


/**
* Checkout > Payment Page
*/

.opc-estimated-wrapper { display: none; }

.checkout-payment-method .payment-option-title {
	padding-right: 22px;
}

.checkout-payment-method .credit-card-types img {
	-webkit-filter: none;
}

label[for="braintree_cc_number"] { width: 100% !important; }

label[for="braintree_expiration"],
label[for="braintree_cc_cid"] {
	width: 100% !important;
}

.field.number.required:nth-of-type(3),
.field.cvv.required {
	float: left;
	width: 50%;
}

.payment-method-braintree .hosted-control#braintree_cc_number {
	width: 100%;
	border: 0;
	height: auto;
	padding: 0;
}

#braintree_cc_type_cvv_div .field-tooltip { top: 0; }
#braintree_cc_type_cvv_div .field-tooltip { top: 0; }

.payment-method-braintree .hosted-control.hosted-date:first-of-type:after { right: -15px; }
.payment-method-braintree .hosted-control.hosted-date:first-of-type { margin-right: 25px; }

#billing-new-address-form label,
#billing-new-address-form .label { width: 100% !important; }

#billing-new-address-form .field.street .control .field.true > .label { display: inline; }

.checkout-billing-address .actions-toolbar .action-cancel { margin-top: 16px; }

.checkout-success {
	margin-bottom: 72px;
}

.checkout-success,
.checkout-success + #registration,
.form.password.reset {
	padding-left: 12px;
	padding-right: 12px;
}

.checkout-success > p:first-of-type > span { font-weight: bold; }

.checkout-success__buttons {
	overflow: hidden;
}

.checkout-success__buttons a {
	float: left;
	margin-bottom: 12px;
	margin-right: 5px;
}

.checkout-success + #registration {
	background-color: #fbf8ef;
	padding: 24px 24px 48px 24px;
	margin-bottom: 72px;
	border-top: 1px solid #ccc;
	margin-left: 12px;
	margin-right: 12px;
}

@media (min-width: 768px) {

	.block-authentication .actions-toolbar > .secondary {
		margin-right: 0;
		padding-top: 0;
	}

	.actions-toolbar .secondary a.action {
		margin-top: 0;
	}

}

@media (min-width: 1025px) {
	.form.password.reset {
		width: 83.33333333%;
		margin-left: 8.33333333%;
	}
}


/**
* Checkout > Success Page
*/

.checkout-success__social {
	background-color: #fbf8ef;
	margin-top: 36px;
	padding: 24px;
	margin-bottom: 48px;
}

.checkout-success__social-label {
	text-transform: uppercase;
	font-weight: bold;
}

.checkout-success__social .social-icons {
	padding: 0;
	font-size: 14px;
	line-height: 18px;
}

.checkout-success__social .social-icons li {
	background: #c1a566;
	height: 27px;
	width: 27px;
	text-align: center;
	padding-top: 5px;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 0;
}

.checkout-success__social .social-icons li:hover {
	background: #262c3c;
}

.checkout-success__social .social-icons a {
	color: #fff !important;
}



/*
* Anchor Links
* Compensate for sticky header
*/

@media (min-width: 1025px) {

	.anchor:before {
		content: "";
		display: block;
		height: 117px;  /* this is the height of your sticky header*/
		margin: -117px 0 0; /* this is negative the height of your sticky header */
	}

	.anchor {
		position: relative;
		z-index: -100;
	}

}



/*
* Popups - Magnific
*/

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a {
	color: #CCC;
}
.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-ms-touch-action: manipulation;
	    touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}
.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
	margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}
.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}
.mfp-arrow-left:after {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}
.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
	right: 0;
}
.mfp-arrow-right:after {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}
.mfp-arrow-right:before {
	border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.customer-account-create .field.password,
.customer-account-create .field.confirmation,
.customer-account-login .field.password{
	position: relative;
}
.customer-account-create .field.password .control,
.customer-account-login .field.password .control,
.customer-account-create .field.confirmation .control{
	position: relative;
}
.customer-account-create .show-pwd,
.customer-account-create .show-conf-pwd,
.customer-account-login .show-pwd  {
    position: absolute;
    right: 0;
    z-index: 9;
    cursor: pointer;
    margin-top: 10px;
    top: 0;
}
.customer-account-create  .show-pwd.show:before,
.customer-account-create .show-conf-pwd.show:before,
.customer-account-login  .show-pwd.show:before{
	background-image: url(../../frontend/dover/doverjewelry2017/en_US/images/eye-show.svg);
}
.customer-account-create .show-pwd span,
.customer-account-create .show-conf-pwd span,
.customer-account-login .show-pwd span{
	font-size: 0;
}
.customer-account-create .show-pwd:before,
.customer-account-create .show-conf-pwd:before,
.customer-account-login  .show-pwd:before {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(../../frontend/dover/doverjewelry2017/en_US/images/eye-hide.svg);
    width: 24px;
    height: 19px;
        padding-right: 12px;
}
.mfp-figure {
	line-height: 0;
}
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}
.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
/**
* Remove all paddings around the image on small screen
*/
.mfp-img-mobile .mfp-image-holder {
	padding-left: 0;
	padding-right: 0;
}
.mfp-img-mobile img.mfp-img {
	padding: 0;
}
.mfp-img-mobile .mfp-figure:after {
	top: 0;
	bottom: 0;
}
.mfp-img-mobile .mfp-figure small {
	display: inline;
	margin-left: 5px;
}
.mfp-img-mobile .mfp-bottom-bar {
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	margin: 0;
	top: auto;
	padding: 3px 5px;
	position: fixed;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.mfp-img-mobile .mfp-bottom-bar:empty {
	padding: 0;
}
.mfp-img-mobile .mfp-counter {
	right: 5px;
	top: 3px;
}
.mfp-img-mobile .mfp-close {
	top: 0;
	right: 0;
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	text-align: center;
	padding: 0;
}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		-ms-transform: scale(0.75);
		    transform: scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		-ms-transform-origin: 0;
		    transform-origin: 0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		-ms-transform-origin: 100%;
		    transform-origin: 100%;
	}
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}


.white-popup {
	background-color: #fff;
	padding: 30px;
}

@media (min-width: 768px) {

	.white-popup {
		padding: 40px;
		max-width: 800px;
		margin: 0 auto;
	}

}

@media (min-width: 800px) {

	.white-popup .mfp-close {
		right: 50%;
		margin-right: -400px;
	}

}

@media (min-width: 1025px) {

	.white-popup {
		padding: 50px;
	}

}


/**
* Inquire Popup
*/

.mfp-bg {
	background-color: rgba(38,44,60,.9);
	opacity: 1;
}

#inquire-popup {
	position: relative;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.inquire-popup {
	padding: 60px 20px;
	background-color: #fff;
	border: 15px solid rgba(255,255,255,.05);
	background-clip: padding-box;
}

.inquire-popup label {
	padding-bottom: 2px;
	font-size: 13px;
	line-height: 1;
}

.inquire-popup input { width: 100%; }

.inquire-popup .social-icons { margin-bottom: 0; }
.inquire-popup .field { margin-bottom: 10px; }
.inquire-popup button[type="submit"] { margin-top: 20px; }
.contact-form__img-container h3:not(:first-of-type) { margin-top: 25px; }

.contact-form__img-container {
	background-color: #fbf8ef;
	padding: 35px 30px;
}

#inquire-popup .mfp-close {
	margin-top: -44px;
	color: #fff;
}

@media (max-width: 768px) {
	#inquire-popup {
		margin-top: 25px;
		padding: 25px;
	}

	#inquire-popup .mfp-close { margin-top: -25px; }

	.inquire-popup {
		padding: 30px 0;
		border: none;
	}

	.inquire-popup .field { margin-bottom: 5px; }

	.inquire-popup input {
		height: auto !important;
		line-height: 2 !important;
	}

	.contact-form__img-container {
		margin-top: 25px;
		padding: 20px 15px;
	}
}



/**
* Image Button
*/

.img-button-container {
	position: relative;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-bottom: 20px;
	background-position: 50% 50%;
	background-size: cover;
}

.img-button-container:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(38,44,60,.75);
}

.img-button {
	border: 1px solid #d0ba76;
	display: block;
	text-align: center;
	position: relative;
	padding: 24px;
	z-index: 1000;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.img-button-container:hover .img-button {
	border-color: #fff;
	color: #fff !important;
}

@media (min-width: 600px) {
	.img-button {
		font-size: 20px;
	}
}

@media (min-width: 769px) {
	.img-button-container {
		border: solid #fff;
		border-width: 0 12px;
		padding: 0;
	}

	.img-button-container:hover:after {
		background: rgba(38,44,60,.9);
	}

	.img-button-container:before {
		content: '';
		position: absolute;
		top: 10px;
		left: 10px;
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		border: 1px solid #c1a566;
		z-index: 1;
	}

	.img-button-container:hover:before { border-color: #fff; }

	.img-button {
		padding: 20px 10px;
		font-size: 14px;
		line-height: 1.6;
		border-width: 0;
	}
}

@media (min-width: 1025px) {
	.img-button {
		font-size: 18px;
		padding: 75px 20px;
	}
}


/**
* Breadcrumbs
*/

.catalog-product-view .breadcrumbs{
	font-size: 14px;
	text-transform: uppercase;
	margin: auto;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-left: 12px;
	padding-right: 12px;
	line-height: 1.2em;
}

.catalog-product-view .breadcrumbs .items,
.catalog-product-view .breadcrumbs a{
	color: #262c3c !important;
	vertical-align: top;

}

.breadcrumbs strong {font-weight: 700 !important;}

.catalog-product-view .breadcrumbs .item:not(:last-child):after{
	content: '|' !important;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	line-height: 14px;
	margin: 0;
	vertical-align: initial !important;
	display: inline-block;
	font-weight: normal;
	overflow: hidden;
	speak: none;
	text-align: center;
	color: #262c3c !important;
	padding-top: 0px;
	padding-right: 6px;
	padding-left: 6px;

}

.catalog-product-view .breadcrumbs {
	padding-top: 24px;
}


/*Amazon things*/
.footer.amazon-payments-footer,
.customer-account-create .block-amazon-login,
.block-minicart #minicart-amazon-pay-button {
	display: none;
}

.page-bottom .content > p {
	display: none;
}

.page-bottom .half-and-half .half-and-half__text {
	padding-bottom: 120px;
}

/*Cart popup*/

#btn-minicart-close {
	z-index: 999 !important;
}

.minicart-wrapper .block-minicart{
	padding: 0px !important;
}

/*.minicart-wrapper:hover  .mage-dropdown-dialog{
display: block !important;

}*/

.minicart-wrapper .block-minicart{
	position: absolute;
}

.minicart-wrapper .action.showcart .counter.qty{
	background:#c1a566;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 10px;
	border-radius: 15px;
	top: 10px;
	font-size: 14px;
}

.minicart-items .action.edit:before{
	display: none;
}

.minicart-items .product-item-name {
	font-size: 18px;
	min-height: auto;
}

.block-minicart .items-total {
	float: left;
	margin: 12px;
}

.block-minicart .subtotal {
	margin: 12px 12px 24px 12px;
	text-align: right;
	display: inline-block;
	float: right;
}

.minicart-items-wrapper{
	margin: 0 !important;
	padding: 12px;
	border-top: 1px solid #c1a566;
	border-bottom: 1px solid #c1a566;
	border-left: none !important;
	border-right: none !important;
}

.minicart-items .product-item-pricing .label,
.minicart-items .item-qty{
	display: none;
}

.block-minicart .block-content > .actions > .primary {
	margin: 12px;
}


.minicart-wrapper .block-minicart{
	border: 1px solid #c1a566;
}

.minicart-wrapper .block-minicart:after{
	border-color: transparent transparent #c1a566 transparent;
}

.block-minicart .amount .price-wrapper:first-child .price{
	color: #262c3c;
	font-size: 20px;
	font-weight: 700;
	line-height: 1em;
}

.block-minicart .block-content > .actions > .primary .action.primary{
	margin-bottom: 24px !important;
}

.block-minicart a.action.viewcart {
	text-transform: uppercase;
}

.block-minicart .block-content > .actions{
	margin-top: 24px;
}

.minicart-items .product-item-details .price{
	font-size: 16px;
}

.minicart-items .product-item-details .price-including-tax,
.minicart-items .product-item-details .price-excluding-tax {
	margin: 24px 0 0 0;
}


/*checkout progress bar*/

.opc-progress-bar-item._active > span:before,
.opc-progress-bar-item._active:before{
	background: #c1a566;
}

.opc-progress-bar-item._active > span:after{
	color: #c1a566;
}

.opc-progress-bar-item:before,
.opc-progress-bar-item > span:before{
	background: #C5C6CA;
}

.opc-progress-bar-item:last-child:before,
.opc-progress-bar-item:first-child:before {
	border-radius: 0;
}

.opc-progress-bar-item > span:after{
	color: #fff;
}


@media(min-width: 600px){
	.minicart-items-wrapper{
		padding: 24px;
	}

	.block-minicart .block-content > .actions > .primary{
		margin:12px 24px 24px 24px;
	}

	.block-minicart .subtotal,
	.block-minicart .items-total {
		margin:12px 24px 24px 24px;
	}

	.minicart-items .product-item{
		padding-bottom:0px;
	}
}



/*Checkout Sidebar */

.opc-block-summary .items-in-cart > .title {
	border-bottom: 1px solid #c1a566;
	padding: 12px 36px 12px 0;
	cursor: pointer;
	display: block;
	text-decoration: none;
	margin-bottom: 0;
	position: relative;
}

.opc-block-summary .items-in-cart > .title:after {
	-webkit-font-smoothing: antialiased;
	font-size: 20px;
	line-height: 1em;
	color: inherit;
	content: '\e903';
	font-family: 'icomoon';
	margin: 6px 0 0;
	vertical-align: middle;
	display: inline-block;
	font-weight: normal;
	overflow: hidden;
	speak: none;
	text-align: center;
	color: #262c3c
}

.opc-block-summary .items-in-cart.active > .title:after {
	content: '\e900';
}

.product-image-container {
	float: none !important;
	display: block;
	width: 115px !important;
	height: 115px !important;
	max-width: 100%;
	margin-bottom: 20px;
}

.product-image-container img {
	width: 100%;
	height: auto;
}

.checkout-product { margin-top: 24px; }
.checkout-product-item-details .details-qty{ display: none; }
.checkout-product-item-details .checkout-cart-price { color: #c1a566; }

.checkout-product-item-details .product-item-name {
	min-height: 0;
	font-size: 16px !important;
}

.opc-block-summary .product-item .product-item-name-block,
.opc-block-summary .product-item .subtotal,
.opc-block-summary .product-item .product-item-inner { display: block; }

.opc-block-summary .product-item .subtotal {
	text-align: left;
	margin-top: 10px;
}

.page-layout-checkout .items-in-cart .product-item,
.opc-block-summary .product-item .product-item-inner {
	margin-bottom: 0;
	padding-bottom: 0;
}

.subtotal .price-excluding-tax .price {
	font-weight: 700;
}

@media (min-width: 600px) {
	.product-image-container {
		float: left !important;
		width: 135px;
		height: 135px;
		margin: 0 10px 0 0;
	}

	.checkout-product-item-details {
		float: left;
		width: calc(100% - 130px);
	}

}



/* Checkout CSS **/

.checkout-cart-index .column.main > .row > .col-lg-offset-2 { margin-left: 8.33333333% !important; } /* Force layout change on cart page */

.checkout-cart-index .column.main > .row > .col-lg-offset-2 { width: 83.33333333% !important; } /* '' */

.cart-summary {
	background: #fbf8ef;
	margin-top: 50px;
	margin-bottom: 0;
	z-index: 10;
}

.cart-summary .summary { font-size: 30px; }
.cart-summary .block > .title { border-top: 1px solid #c1a566; }
.cart-summary .block > .title:after { top: inherit; }
.cart-totals { border-top: 0; }

.column.main .cart-summary .block > .title strong {
	font-size: 16px;
	font-weight: 600;
}
.abs-discount-block.active > .title:after,
.cart-summary .block.active > .title:after,
.paypal-review-discount .block.active > .title:after {
	content: '\e900';
	font-family: 'icomoon';
	font-size: 30px;
	font-size: 20px;
	font-weight: 400;
}

.fieldset.fieldset.rate {
	border-bottom: 1px solid #c1a566;
	margin-bottom: 0;
}

.cart-summary .block .fieldset .methods .field > input {
	float: left;
	margin: 7px 10px 0 0;
}

.cart-summary .block .fieldset .methods .field > .label {
	display: block;
	font-weight: 400;
	font-size: 18px;
	float: left;
	width: calc(100% - 23px);
}

.cart.table-wrapper .col,
.price-excluding-tax .price {
	font-weight: 400;
}

button.action.clear,
button.action.update {
	background: transparent;
	color: #c1a566;
	font-weight: 700 !important;
	border: 0;
	letter-spacing: 0;
}

button.action.clear:hover,
button.action.update:hover {
	color: #6ec3c0 !important;
}

.abs-shopping-cart-items .action.update:before,
.block-cart-failed .action.update:before,
.cart-container .form-cart .action.update:before {
	display: none;
}

.subtotal .price-excluding-tax .price { color: #c1a566; }

.checkout-payment-method { list-style-type: none; }

.action.action-delete:before {
	content: '\e604';
	font-family: 'icons-blank-theme';
	font-size: 28px;
	line-height: 28px;
	color: #8f8f8f;
}

.cart-container .form-cart .action.continue { float: right; }

.cart-container .form-cart .action.continue {
	float: right;
	background: #c1a566;
	font-family: 'PT serif', serif;
	border-radius: 0;
	border: 1px solid #c1a566;
	color: #fff !important;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	padding: 18px 50px !important;
	-webkit-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
	margin-top: 23px;
	clear: both;
}

.cart-container .form-cart .action.continue:hover {
	border-color: #c1a566;
	background-color: #fff;
	color: #c1a566 !important;
}

.cart-container .form-cart .action.continue:before {
	content: '';
	position: absolute;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #fff;
	top: 4px;
	left: 4px;
	-webkit-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}

.column.main .block.crosssell {
	background-color: #f9f9fa;
	clear: both !important;
	overflow: hidden;
}

.authentication-wrapper {
	float: none;
	margin-top: 0;
	max-width: 100%;
}

.form-login { border-bottom: 1px solid #ccc; }

.cart.table-wrapper .actions-toolbar > .action:last-child {
	font-size: 0;
	background: transparent;
	border: 0;
}

.cart.table-wrapper .item-actions .actions-toolbar { text-align: right; }
.cart.table-wrapper .item-actions td { padding: 0; }
.cart.table-wrapper .actions-toolbar .action { margin-bottom: 0; }

.cart.table-wrapper .cart.item {
	border-top: 1px solid #c1a566;
	border-bottom: 1px solid #c1a566;
}

.column.main .block .title strong {
	font-size: 30px;
	font-weight: normal;
}

.items-in-cart strong {
	font-size: 16px !important;
}

.form-shipping-address .fieldset > .field {
	width: 46%;
	float: left;
	margin-left: 0;
}

.form-shipping-address .fieldset > .field:nth-child(2),
.form-shipping-address .fieldset > .field:nth-child(6),
.form-shipping-address .fieldset > .field:nth-child(8),
.form-shipping-address .fieldset > .field:nth-child(10) { margin-left: 28px }

.form-shipping-address .fieldset > .field:nth-child(6) { width: 30% }

.form-shipping-address .fieldset > .field:nth-child(5),
.form-shipping-address .fieldset > .field:nth-child(8) { width: 27% }
/* .checkout-index-index .form-shipping-address .fieldset > .field {
    max-height: 71px;
} */
.checkout-index-index fieldset.field.street.admin__control-fields.required {
    max-height: 120px;
}
.wishlist-index-index .main .form-wishlist-items .actions-toolbar button.action.tocart:before {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #fff;
    top: 4px;
    left: 4px;
}
.minicart-wrapper .affirm-as-low-as {
    display: inline-block;
    padding: 0 12px;
    text-align: center;
}
.customer-address-index .block.block-addresses-list ol.items.addresses .item.actions a {
    width: 100%;
    display: inline-block;
    margin: 12px 0 0;
}
.form-shipping-address .fieldset > .field:nth-child(3) { width: 100% }

.form-shipping-address .fieldset > .field:nth-child(2),
.form-shipping-address .fieldset > .field:nth-child(10),
.form-shipping-address .fieldset > .field:nth-child(8) { float: right; }

fieldset.field.street.admin__control-fields.required { width: 100%; }
.form-shipping-address .fieldset > .field:not(.choice) > .label { width: initial; }
.checkout-shipping-method { clear: both; }

.view-ssl {
	text-align: center;
	margin-top: 10px;
}

.column.main .product-item { min-height: 300px; }
.page-layout-checkout .items-in-cart .product-item { min-height: auto; }
.field .control._with-tooltip input { width: inherit; }
.field-tooltip { top: -28px; }
.opc { padding: 0 15px; }

.opc#checkoutSteps > li { list-style: none; }

.message.error {
	margin-left: 12px;
	margin-right: 12px;
	text-align: left;
	clear: both;
}

.cart.item .col.item,
.cart.item .col.price,
.cart.table-wrapper .product-item-details { vertical-align: middle; }

.cart.table-wrapper .product-item-name { min-height: auto; }
.cart.main.actions .need-help { padding-top: 50px; }

.shipping-address-item {
	border: 1px solid #fbf8ef;
	background-color: #fbf8ef;
	padding: 24px;
	margin-bottom: 24px;
	position: relative;
	-webkit-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}

.shipping-address-item.selected-item {
	border: 1px solid #c1a566;
}

.shipping-address-item button:focus,
.shipping-address-item.selected-item button,
.shipping-address-item.selected-item button:focus {
	background: #c1a566;
	color: #fff !important;
	border-color: #fff;
	border: none;
}

.checkout-index-index .opc-block-shipping-information {
	padding: 0;
	margin-top: 72px;
}

.checkout-payment-method .payment-option._collapsible {
	border: 1px solid #cccccc;
	margin-top: 72px;
}

.checkout-payment-method .payment-option._collapsible .payment-option-title {
	border: 0;
}

.checkout-payment-method .payment-option._collapsible .payment-option-content {
	padding: 0px 24px;
}

 .cart.table-wrapper .product-item-photo {
		display: table-cell;
		max-width: 100%;
		padding-right: 20px;
		position: static;
		vertical-align: top;
		width: 30%;
	}

@media (min-width: 600px) {
	.message.error {
		margin-left: calc(8.33333333% + 12px);
		margin-right: calc(8.33333333% + 12px);
	}

	.shipping-address-item button {
		position: absolute;
		right: 24px;
		bottom: 24px;
	}
}

@media (min-width: 768px) {

	.checkout-payment-method .payment-method-content .fieldset > .field.type .control {
		margin-left: 0;
	}

	.checkout-billing-address .actions-toolbar .action-cancel {
		margin: 0 20px 0 0;
	}

	.authentication-wrapper {
		text-align: left;
		width: 100%;
	}

	.cart.main.actions .need-help { padding-top: 75px; }

	.cart-container .form-cart { width: 65%; }

	.cart-summary { width: 30%; }

    .cart.table-wrapper .product-item-photo {
		display: table-cell;
		max-width: 100%;
		padding-right: 20px;
		position: static;
		vertical-align: top;
		width: 30%;
	}

}

@media (min-width: 769px) {
	.checkout-container > .row:before,
	.checkout-container > .row:after { display: none !important }
}

@media (min-width: 1025px) {
	.block .title {
		padding-top: 50%;
	}

	.block-order-details-view .box-content .payment-method .title {
		padding-top: 0;
	}

	.cart.table-wrapper .item .col.item {
		padding: 16px 8px 10px;
	}

	.fieldset > .field:not(.choice) > .label {
		display: block;
		float: none;
		padding: 0;
		text-align: left;
	}

	.fieldset > .field:not(.choice) > .control {
		width: 100%;
		float: left;
	}

	.authentication-wrapper {
		width: 100%;
		text-align: left;
	}

	.cart-summary .summary { font-size: 42px; }
}

@media (min-width: 1201px) {
	.cart-summary {
		padding-top: 15px;
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media only screen and (max-width: 1023px) {

    .cart-summary { top: auto !important; }

	.cart-container .form-cart .action.clear,
	.cart-container .form-cart .action.update{
		display: inline-block;
		float: right;
	}

	.item-actions { position: relative; }
	.cart.item .item-info { border-bottom: 0; }

	.abs-shopping-cart-items-mobile .actions,
	.cart-container .form-cart .actions { padding-right: 10px; }

	.block.crosssell .title {
		text-align: center;
		margin-top: 20px;
	}

	.cart.table-wrapper .item .col.item { padding: 10px 0 10px 10px; }

	.form-shipping-address .fieldset > .field,
	.form-shipping-address .fieldset > .field:not(.choice) > .control,
	.form-shipping-address .fieldset > .field:nth-child(5),
	.form-shipping-address .fieldset > .field:nth-child(6),
	.form-shipping-address .fieldset > .field:nth-child(8) { width: 100%; }

	.form-shipping-address .fieldset > .field label,
	.form-shipping-address .fieldset > .field legend {
		display: block;
		text-align: left;
		width: 100%;
	}

	.form-shipping-address .fieldset > .field:nth-child(2),
	.form-shipping-address .fieldset > .field:nth-child(6),
	.form-shipping-address .fieldset > .field:nth-child(8),
	.form-shipping-address .fieldset > .field:nth-child(10) {
		margin-left: 0;
	}

	.field .control._with-tooltip input { width: 100%; }

	.form-shipping-address .fieldset > .field span { font-size: 14px; }
}

@media only screen and (max-width: 767px) {

	.cart.table-wrapper .item .col.price {
		display: block;
		width: 100%;
		padding: 0 0 10px 10px;
		text-align: left;
	}
.minicart-items-wrapper{
	max-height: 310px;
}
.customer-account-login .message.error {
    margin: 0;
    padding: 12px 0;
}
.customer-account-login .message.error div {
    display: flex;
}
	.cart.table-wrapper .col.price:before,
	.cart.table-wrapper .price-excluding-tax {
		display: inline-block;
	}

	.cart.table-wrapper .price-excluding-tax {
		margin-left: 5px;
	}

	.cart-container .form-cart .actions button.action {
		float: none;
		font-size: 13px !important;
		padding: 12px;
		margin: 0;
	}

	.cart-container .form-cart .action.continue {
		float: none;
		padding: 18px 30px !important;
		width: auto;
	}

}

@media only screen and (max-width: 600px) {
	.cart.table-wrapper .col { padding-top: 49px; }
	.form-shipping-address .fieldset > .field:nth-child(even) { margin-left: 0; }

	.form-shipping-address .fieldset > .field:nth-child(3),
	.form-shipping-address .fieldset > .field:nth-child(5),
	.form-shipping-address .fieldset > .field:nth-child(8),
	.form-shipping-address .fieldset > .field:nth-child(6) { width: 100%; }

	.form-shipping-address .fieldset > .field { margin-left: 0 !important; }
	.checkout-shipping-method { margin-bottom: 31px; }
}

.opc-sidebar {
	margin: 70px 16.66666667% 0 0;
	width: 25%;
}

@media (max-width: 1024px) {
	.opc-sidebar {
		float: right;
		width: calc(33.33333333% - 24px);
		margin-right: 12px;
	}
}

@media (max-width: 768px) {
	.opc-sidebar {
		float: none;
		clear: both;
		width: 100%;
		margin-left: 12px;
	}
}




/* --------------------------------------------------*\
UI
UI peices are site specific non generic styles.
eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/

/**
* Page-head
*/

.page-header {
	position: absolute;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1000;
}

.page-wrapper .page-header .panel.wrapper { border-bottom: none; }
/*.page-wrapper:not(.homepage-wrapper) { margin-top: 142px; }*/
.page-wrapper.js-nav-fixed--prep { margin-top: 138px; }
.homepage-wrapper .page-main > .container-fluid { padding: 0 12px; }

.header.content {
	position: relative;
	max-width: 1600px !important;
	padding-left: 12px !important;
	padding-right: 12px !important;
}

.page-layout-checkout .header.content {
	max-width: 100% !important;
}

marquee {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 50px;
}

marquee p { margin-bottom: 0; }

/**
* Navigation
*/
.mobile-cta-buttons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.mobile-cta-buttons .btn {
    width: calc(50% - 2px);
    text-align: center;
}


.nav-sections,
.navigation { background-color: transparent; }

.header.content { padding-top: 0 }

.nav-sections {
	display: block;
	max-width: 1600px;
	max-height: 63px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-left: 12px;
	padding-right: 12px;
	line-height: 1;
	z-index: 999;
}

.nav--top-left,
.nav--top-right {
	width: calc(50% - 200px);
	border-top: 1px solid #f1ead6;
}

.nav--top-left { float: left; }
.nav--top-right { float: right; }
.nav--top-right .ves-megamenu .level0 { float: none; }
.nav--top-right > .navigation > .ves-megamenu { text-align: right; }
.ves-megamenu .level1.nav-dropdown { text-align: left; }
.ves-megamenu { background-color: transparent; }
.ves-megamenu .dropdown.submenu-left { position: relative; }

.navigation .level0 .submenu,
.nav-sections .ves-menu .navigation .level0 > .submenu {
	background-color: #ebebeb;
	padding: 0;
	border: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.ves-menu .navigation .level0 > .submenu a { color: #fff !important; }
.ves-megamenu .mega-col { padding: 0; }
.ves-megamenu .row { margin: 0; }

.ves-megamenu li.level0 > a {
	padding: 20px 15px 25px;
	font-weight: normal;
	font-size: 18px;
	line-height: 1;
	/*color: #262c3c !important;*/
	color: rgba(38,44,60,1) !important;
}

.ves-megamenu .dropdown.submenu-left { margin-right: 0; }

.ves-megamenu li.active > a,
.ves-megamenu li > a:hover,
.ves-megamenu li.level0:hover > a {
	color: #c1a566 !important;
	background: transparent;
}

.ves-menu .navigation .level0 .submenu a {
	padding: 15px 22px;
	font-weight: normal;
	font-size: 15px;
	line-height: 1.4;
	text-transform: uppercase;
	color: #262c3c !important;
	border-bottom: 1px solid #3c4250;
	border-left: none;
}

.ves-menu .mega-col-level-2 { border-bottom: 1px solid #3c4250; }

.ves-menu .navigation .level0 .submenu a:hover {
	background-color: transparent;
	color: #c1a566 !important;
}

.ves-megamenu.menu-hover .subhover:hover .dropdown-menu { padding: 0; }

.navigation .ves-megamenu .level0 .submenu .submenu {
	position: relative;
	left: 0 !important;
}

.ves-megamenu .level1:hover .nav-anchor { color: #c1a566 !important; }
.ves-megamenu .level0 .submenu .submenu a { text-transform: none }
.ves-megamenu .level1 .nav-item { clear: both; }

.ves-menu .navigation .level0 .submenu .level2 a {
	padding: 15px 18px;
	border-bottom: none;
}

.navigation .ves-megamenu .level0 .submenu-left > .submenu {
    right: 0 !important;
    left: auto !important;
    position: unset;
    top: 71px !important;
    width: 100%;
}

.navigation .ves-megamenu .level2 .nav-item {
    display: block !important;
    width: 100% !important;
}

@media( max-width: 1024px ) {
    .navigation .ves-megamenu .level2 .nav-item { padding-left: 25px; }
    .ves-megamenu.menu-hover .nav-item:hover>.submenu { display: none; }
}

.page-wrapper:not(.homepage-wrapper) .page-main { border-top: 2px solid #c1a566; }
.logo-block .logo--checkout { display: none; }
.page-layout-checkout .logo-block .logo--checkout { display: block; }
.page-layout-checkout .logo-block .logo--innerpage { display: none; }

.page-layout-checkout .logo-block {
	position: static;
	margin-top: 22px;
	margin-left: 8.3333%;
	max-width: 83.3333%;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.page-wrapper:not(.homepage-wrapper) .aw-rbslider-placeholder { display: none; }

@media (max-width: 1200px) {
	.page-layout-checkout .logo-block {
		margin-left: 12px;
	}
}

@media (max-width: 1024px) {
	.page-layout-checkout .logo-block {
		float: none;
		top: 0;
		width: 500px;
		max-width: 100%;
		margin: 20px 0;
	}
}

@media(min-width: 1025px){
	/*ADD BACK IN*/

	.nav-sections{
		z-index: 104;
	}
    
	html[data-marquee] .js-nav-fixed--shift .header.content {
	    top: 24px !important;
	}
    
	html[data-marquee] .js-nav-fixed--shift .nav-sections {
        top: 102px;
        z-index: 99;
    }

    .js-nav-fixed--shift .above-nav__right.fxright,
    .js-nav-fixed--shift .fxheader .above-nav__left {
        top: 7px;
    }
    
	.js-nav-fixed--prep .header.content {
	    height: 78px !important;
	}
    
	.fxheader .above-nav__left {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    position: relative;
	    top:0px;
	    padding-bottom: 10px;
	    -webkit-box-align: center;
	        -ms-flex-align: center;
	            align-items: center;
	    -webkit-box-pack: justify;
	        -ms-flex-pack: justify;
	            justify-content: space-between;
	}

	.fxheader form {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-flex: 1;
	        -ms-flex-positive: 1;
	            flex-grow: 1;
	    position: relative;
	    -webkit-box-align: center;
	        -ms-flex-align: center;
	            align-items: center;
	    margin-right: 20px;
	}

	.fxheader form .nav-search {
	    position: absolute;
	    right: 0;
        top: 7px;
	}

	li.menu-level0-item6 {
	    display: none;
	}

	.above-nav__right.fxright {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-pack: end;
	        -ms-flex-pack: end;
	            justify-content: flex-end;
	    -webkit-box-align: center;
	        -ms-flex-align: center;
	            align-items: center;
	    position: relative;
	    top:-8px;

	    padding-bottom: 10px;
	}

	.minicart-wrapper {
	    right: 51px !important;
	    top: 8px !important;
	}

	.js-nav-fixed--prep .minicart-wrapper{
		top:23px !important;
		right: 51px !important
	}

	.authorization-link a.btn{
		font-style: normal;
	}

}


/* Horizontal Sub Menus */

@media (min-width: 1025px) {
	.section-item-content.nav-sections-item-content { position: relative; }

	.navigation,
	.navigation ul,
	.ves-megamenu .dropdown.submenu-left,
	.ves-megamenu .dropdown.submenu-right { position: static; }

	.navigation .level0 .submenu,
	.nav-sections .ves-menu .navigation .level0 > .submenu {
		width: 100%;
	}

	.ves-menu .mega-col-level-2 { border-bottom: 0; }

	.ves-megamenu .row,
	.ves-megamenu .level1 .nav-item { display: inline-block; }

	.ves-megamenu .level1 .nav-item:hover > .submenu { display: block; }

	.nav--top-left .ves-megamenu .level1.nav-dropdown { text-align: left; }
	.nav--top-right .ves-megamenu .level1.nav-dropdown { text-align: right; }

	.ves-megamenu .mega-col { float: none; }
	.ves-megamenu li.level0 > a { position: relative; }

	.ves-megamenu li.level0 > a:after {
		display: none;
		content: '';
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 6px 8px 6px;
		border-color: transparent transparent #ebebeb transparent;
		bottom: 0;
		left: 50%;
		margin-left: -6px;
	}

	.ves-megamenu li.level0.menu-aim-hover > a:after { display: block; }

	.ves-menu .navigation .level0 .submenu a {
		border-bottom: 0;
		font-size: 14px;
		padding: 26px 15px;
	}

	.navigation .ves-megamenu .level0 .submenu .submenu {
		background-color: #ddd;
		position: absolute;
		top: 71px !important; /* height of 2nd level */
	}


	/* Services Menu (.level1.nav-0 */

	.navigation .ves-megamenu .js-menu-hovered:after {
		background-color: #ddd;
		content: '';
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		height: 48px;
	}

	.navigation .ves-megamenu .level1.nav-0 {
		position: relative;
	}

	.navigation .ves-megamenu .submenu .level1.nav-0 .submenu {
		text-align: left;
	}

	.ves-megamenu .nav-0.level1 .nav-item { position: relative; }

	.ves-menu .level1 .nav-0 .mega-col-level-2 {
		width: 300% !important;
		border: 0;
		/*height: 48px;*/
	}

	.ves-megamenu .level2 .nav-0 .nav-item {
		float: left;
		clear: none;
	}

	.ves-menu .level2 .nav-0 .mega-col-level-2:before {
		content: '';
		background-color: #ddd;
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

@media (min-width: 1200px) {

	.ves-menu .navigation .level0 .submenu a {
		padding: 26px 20px;
	}

}



/**
* Highlight banner
*/

.highlight-banner {
	padding: 10px 5px;
	font-size: 14px;
    line-height: 1.3;
	text-align: center;
	color: #fff;
	background-color: #262c3c;
	display: none; /* Client requested this area be hidden 8/22/17 */
}

.highlight-banner a {
	font-weight: 700;
	font-style: italic;
	color: #c1a566;
}

@media (min-width: 600px) {
	.highlight-banner { font-size: 18px; }
}

@media (min-width: 1025px) {
	.js-nav-fixed .highlight-banner {
		position: fixed;
		width: 100%;
	}
}



/**
* Testimonials
*/

.testimonial-box-row {
	padding-top: 40px;
	padding-bottom: 40px;
}

.testimonial-box-row:nth-child(odd) {
	background-color: #fbf8ef;
}

.testimonial-author {
	font-size: 16px;
	text-transform: uppercase;
	margin-top: 10px;
}

.testimonial-item-id {
	color: #c1a566;
	font-size: 14px;
	margin-top: 10px;
}

.cms-testimonials blockquote {
	font-size: 1.1em;
}

.cms-testimonials .logo-image {
	width: 215px;
}

.cms-testimonials .logo-image-col {
	text-align: center;
}

.cms-testimonials .logo-image-col a:hover img{
	opacity: 0.6;
}

.ratings-row {
	margin-left: -12px;
	margin-right: -12px;
}

.ratings-row .rating-item {
	float: left;
	width: 50%;
	margin-bottom: 20px;
	padding-left: 12px;
	padding-right: 12px;
	text-align: center;
}

.ratings-row .rating-item:nth-child(2n+1) {
	clear: left;
}

.ratings-row .rating-stars {
	text-align: center;
	margin-top: 5px;
}

.ratings-row .rating-star {
	display: inline-block;
	color: #ebebeb;
}

.ratings-row .rating-star-highlighted {
	color: #6ec3c0;
}

@media (min-width: 600px) {

	.ratings-row .rating-item {
		width: 33.3333%;
	}

	.ratings-row .rating-item:nth-child(2n+1) {
		clear: none;
	}

	.ratings-row .rating-item:nth-child(3n+1) {
		clear: left;
	}

}

@media (min-width: 768px) {

	.testimonial-box-row__text {
		font-size: 1.2em;
		line-height: 1.5;
	}

}

@media (min-width: 1025px) {

	.ratings-row .rating-item {
		width: 20%;
	}

	.ratings-row .rating-item:nth-child(3n+1) {
		clear: none;
	}

}

@media (min-width: 1200px) {

	.testimonial-box-row {
		padding-left: 40px;
		padding-right: 40px;
	}

}

@media (min-width: 1400px) {

	.testimonial-box-row {
		padding-left: 80px;
		padding-right: 80px;
	}

}

@media (min-width: 1600px) {

	.testimonial-box-row {
		padding-left: 120px;
		padding-right: 120px;
	}

}

@media (min-width: 1800px) {

	.testimonial-box-row {
		padding-left: 160px;
		padding-right: 160px;
	}

}

.testimonial-grid-item {
	width: 100%;
	margin-bottom: 20px;
}

.testimonial-grid-item-wrapper {
	border: 1px solid #f1ead6;
	padding: 20px;
}

@media (min-width: 600px) {

	.testimonial-grid-item {
		width: 50%;
		padding-left: 12px;
		padding-right: 12px;
	}

}

@media (min-width: 768px) {

	.testimonial-grid-item {
		width: 33.3333%;
	}

}

@media (min-width: 1025px) {

	.testimonial-grid-item {
		width: 25%;
	}

}




/**
* Masthead
*/

.aw-rbslider-container a,
.aw-rbslider-container img { display: block; }
.aw-rbslider-container li > div { height: 100%; }
.aw-rbslider-placeholder.aw-rbslider-container.banner_home_content_top { display: none; }

@media (max-width: 768px) {
	.uk-slidenav-position .uk-slidenav {
		top: auto;
		bottom: 5px;
		margin-top: 0;
	}

	.uk-slidenav-previous,
	.uk-slidenav-next {
		width: 32px;
		height: 32px;
		line-height: 1
	}

	.uk-slidenav-previous:before,
	.uk-slidenav-next:before {
		position: absolute;
		font-size: 32px;
		color: #fff;
	}
}




/**
* Site-footer
*/

.site-footer {
	background: url('/media/wysiwyg/gold-footer.jpg') no-repeat left top;
	background-size: cover;
}

.top-footer-wrapper { margin-top: -90px; }

.top-footer {
	background: #fff;
	border-top: 1px solid #d0ba76;
	padding: 12px;
}

.top-footer-wrapper { margin-top: 18px; }

.right-footer{
	font-size: 14px;
	line-height: 18px;
}

.right-footer .footer-phone{
	color: #6ec3c0 !important;
	font-weight: 600;
}

.right-footer .footer-email { color: #262c3c !important; }

.right-footer .footer-email:hover,
.right-footer .footer-phone { text-decoration: none; }

.right-footer__certifications {
	margin-top: 12px;
}

.left-footer .social-icons{
	padding:0;
	list-style: none;
	margin-bottom: 0;
	margin-top: 15px;
}

.left-footer .social-icons li{
	background: #c1a566;
	height: 27px;
	width: 27px;
	text-align: center;
	padding-top: 5px;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 0;
}

.left-footer .social-icons li:hover { background: #262c3c; }
.left-footer .social-icons li:hover a { text-decoration: none; }
.left-footer .social-icons a { color: #fff !important; }

/* Contact Page Social Icons */
.social-icons--contact-us {
	list-style: none;
	padding: 0;
}

.social-icons--contact-us li {
	border-left: 1px solid #f1ead6;
	display: inline-block;
	margin-left: 5px;
	padding-left: 5px;
}

.social-icons--contact-us li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

.social-icons--contact-us a {
	color: #262c3c !important;
	padding: 5px;
}

.left-footer [class^="icon-"],
.left-footer [class*=" icon-"] { font-size: 16px; }

.tiny-footer{
	margin: auto;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1em;
	letter-spacing: .02em
}

.tiny-footer ul{
	list-style: none;
	padding: 0;
	margin-top: 12px;
	margin-bottom: 12px;
}

.tiny-footer li{
	display: inline-block;
	color: #fff;
	border-right: 1px solid #fff;
	padding-left: 6px;
	padding-right: 6px;
	margin-bottom: 0;
}

.tiny-footer li:last-child { border-right: none; }
.tiny-footer a { color: #fff !important; }

.left-footer {
	font-size: 14px;
	text-transform: uppercase;
	line-height: 18px;
}

.left-footer ul {
	list-style: none;
	padding:0;
	margin-top: 24px;
	margin-bottom: 15px;
}

.left-footer li {
	width: 50%;
	float: left;
}

.left-footer a { color: #262C4E !important; }

.block.newsletter { margin-top: 20px; }

.block.newsletter .field .control:before {	display: none; }

.block.newsletter input { padding-left: 6px; }


@media(min-width: 600px){
	.tiny-footer ul{
		margin-top: 24px;
		margin-bottom: 24px;
	}

	.left-footer li{ width: 33.33%; }
}

@media(min-width: 768px){

	.left-footer .footer-nav {
		margin-top: 0px;
		text-align: right;
	}

	.left-footer .footer-nav li {
		width: auto;
		float: none;
		display: inline-block;
		border-right: 1px solid #c1a566;
		padding-left: 6px;
		padding-right: 6px;
		line-height: 1em;
	}

	.left-footer .footer-nav li:last-child{
		border-right: none;
		padding-right: 0;
	}

}

@media (min-width: 768px) and (max-width: 1024px) {
	.block.newsletter {
		width: 100%;
	}
}

@media (min-width: 992px) {

	.left-footer .social-icons { float: right; }

}

.joshtest { display:none; }

@media(min-width: 1025px){
	.top-footer-wrapper { margin-top: -90px; }

	.block.newsletter {
		width: 100%;
		float: right;
		margin-bottom: 0;
		margin-top: 0;
		max-width:100% !important;
	}

	.block.newsletter .field .control {
		width: 150px;
		float: right;
		position: relative;
		right: -20px;
	}

	.block.newsletter .form.subscribe {
		display: inline-block !important;
		width: auto;
		float: right;
	}

	.block.newsletter .field,
	.block.newsletter .actions,
	.block.newsletter .field .control {
		display: inline-block !important;
	}

	.block.newsletter label{
		overflow: visible !important;
		position: relative !important;
		display: inline-block;
		font-size: 14px;
		text-transform: none !important;
		width: auto !important;
		text-align: right;
		font-weight: 600;
		top: 13px;
	}

	.right-footer__certifications { margin-top: 0; }

}

@media(min-width: 1366px){
	.top-footer { padding: 36px;}
	.block.newsletter .field .control { width: 230px !important; }
}

@media (min-width: 1800px) {

	.left-footer .social-icons {
		position: absolute;
		left: 40px;
	}

}

/**
* Slider Styles
*/

.uk-slideshow { cursor: pointer; }

.slider-wrapper {
	position: relative;
}

.slider-wrapper .slick-dots {
	bottom: 25px;
}

.slider-wrapper .slick-dots li button:active {
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.slider-wrapper .slick-dots li button:before {
	color: #fff;
	font-size: 10px;
}

.slider-wrapper .slick-dots li.slick-active button:before {
	color: #fff;
}

/* Hide mobile slider on homepage */
.page-header + .slider-wrapper .scroll-arrow {
	display: none !important;
}

@media (min-width: 1024px) {
	.uk-slidenav-position { margin-top: 0; }
}




/**
* Image Buttons
*/

.img-button__wrapper{
	position: relative;
	display: block;
	margin-bottom: 24px;
	text-align: center;
	border: 1px solid #262c3c;
}

.img-button__wrapper span { display: block } /* Fix TinyMCE issue on backend */

.img-button__start {
	position: relative;
	bottom: 0;
	width: 100%;
	padding: 12px;
}

.img-button__start h3 {
	line-height: 1.2em;
	margin-bottom: 24px;
}

.img-button__start span { display: block; }
.text-caps { text-transform: uppercase; }
.text-big { font-size: 30px; }

.img-button__overlay { padding-bottom: 25px; }
.img-button__overlay p { display: none; }

.img-button__image img {
    width: 100%;
}

@media (min-width: 600px) {
	.img-button-row {
		display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
		margin-bottom: 24px;
	}

	.img-button-row > .col-xxs-12 {
		float: none;
	}

	.img-button__overlay {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 10px;
		padding-bottom: 0;
		padding-left: 10px;
		padding-right: 10px;
	}

	.img-button__wrapper {
		/*height: 100%;*/
		margin-bottom: 2px; /* fix border being cut off on certain sizes */
		padding-bottom: 60px;
	}
}

@media (min-width: 600px) and (max-width: 768px) {
	.img-button__start .text-big { font-size: 26px; }
	.img-button__start .btn {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.img-button__overlay .btn {
		padding: 18px 10px !important;
		font-size: 11px !important;
	}
}

@media (min-width: 768px){
	.img-button__start { padding: 12px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.img-button__overlay .btn { font-size: 14px !important; }
}

@media (min-width: 1025px) {
	.img-button__overlay,
	.img-button__image,
	.img-button__start,
	.img-button__wrapper:after {
		-webkit-transition: all .6s ease-out;
		-o-transition: all .6s ease-out;
		transition: all .6s ease-out;
	}

	.img-button__wrapper {
		padding-bottom: 0;
		overflow: hidden;
	}

	.img-button__wrapper:after {
		content: '';
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(38,44,60,0);
	}

	.img-button__wrapper:hover:after {
		top: 0;
		background-color: rgba(38,44,60,.85);
	}

	.img-button__overlay p {
		display: block;
		margin-bottom: 15px;
		font-family: 'parisienneregular';
		font-size: 32px;
		color: #fff !important;
		line-height: 1.2;
	}

	.img-button__start h3 { margin-bottom: 0; }

	.img-button__overlay {
		top: 100%;
		left: 50%;
		right: auto;
		bottom: 0;
		display: table;
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: 1000;
	}

	.img-button__wrapper:hover .img-button__overlay {
		top: 50%;
		-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}

	.text-big { font-size: 42px; }
	.img-button__start { padding: 24px; }
}

@media (min-width: 1200px){
	.img-button__start { padding: 16px 36px 36px; }
	.text-big {
		font-size: 55px;
		line-height: 1em;
	}

	.img-button__overlay {
		padding-left: 35px;
		padding-right: 35px;
	}

	.img-button__overlay p { font-size: 50px; }
}

@media (min-width: 1440px) {
	.text-big { font-size: 60px; }
}


/**
* Image Right Text Left
*/

.cms-page-view .half-and-half { margin-top: 48px; }

.half-and-half { float: left; }

.half-and-half,
.half-and-half__text {
	display: block;
	width: 100%;
}

.half-and-half h2 { font-weight: 400; }

.half-and-half__text-wrapper {
	padding-left: 48px; /*12*/
	padding-right: 48px;
}

.half-and-half__image,
.half-and-half__text {
	padding-top: 48px;
	padding-bottom: 48px;
}

.testimonial .half-and-half__text,
.footer-padding > .half-and-half__text {
	padding-bottom: 120px !important;
}

.half-and-half__image {
	/*padding-bottom: 50% !important;*/
	background-size: cover !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat !important;
	min-height: 350px;
}

.half-and-half__video {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.half-and-half--cream { background-color: #fbf8ef; }
.half-and-half.testimonial .half-and-half__image { padding-bottom: 220px; }
.half-and-half__text-wrapper h3 { margin-bottom: 24px; }
.footer-padding { padding-bottom: 120px; }

@media (min-width: 768px) {
	.half-and-half__image { min-height: 450px; }
	.cms-page-view .half-and-half { margin-top: 72px; }
}

@media (min-width: 1025px) {
	.half-and-half {
		display: table;
		width: 100%;
	}

	.half-and-half__image,
	.half-and-half__text {
		padding-top: 72px;
		padding-bottom: 72px;
		display: table-cell;
		vertical-align: middle;
		width: 50%;
	}

	.half-and-half__image {
		position: relative;
		display: table-cell;
		padding-bottom: 48px;
	}

	.half-and-half__text--right {
		position: relative;
		left: 50%;
	}

	.half-and-half__text-wrapper{
		padding-left: 12px;
		padding-right: 12px;
	}

	.half-and-half__text--right + .half-and-half__image { left: -50%; }
	.half-and-half.testimonial .half-and-half__image { margin-bottom: 0; }
	.half-and-half.testimonial .half-and-half__text { padding-bottom: 120px !important; }
	.cms-page-view .half-and-half { margin-top: 96px; }

	.footer-padding { padding-bottom: 220px; }
}

@media (min-width: 1025px) and (max-width: 1500px) {

	.half-and-half {
		background-color: #fbf8ef;
		padding: 72px 24px 100px 24px;
	}

	.cms-home .half-and-half {
		padding-top: 0;
	}

	.cms-home .half-and-half:nth-child(1) {
		padding-top: 72px;
	}

	.half-and-half .half-and-half,
	.cms-home .half-and-half:nth-child(1) .half-and-half,
	.cms-home .half-and-half .half-and-half:nth-child(1) {
		padding: 0;
	}

	.half-and-half h2 {
		font-size: 32px;
		line-height: 1.3;
	}

	.half-and-half__image,
	.half-and-half__text {
		padding-top: 0;
		padding-bottom: 0;
	}

	.half-and-half__text--left .half-and-half__text-wrapper {
		padding-right: 24px;
	}

	.half-and-half__text--right .half-and-half__text-wrapper {
		padding-left: 24px;
	}

}

@media (min-width: 1200px){

	.testimonial .half-and-half__text,
	.footer-padding > .half-and-half__text { padding-bottom: 220px !important; }

}

@media (min-width: 1366px){

	.half-and-half.testimonial .half-and-half__text { padding-bottom: 220px !important; }

}

@media (min-width: 1500px){

	.half-and-half__image,
	.half-and-half__text {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.half-and-half__text-wrapper {
		margin: auto;
		width: 80%;
	}

}


/**
* Callouts (HP)
*/

.callout-with-bg {
	position: relative;
	padding: 40px 15px 0;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.callout-with-bg__text,
.callout-with-bg__img-container { width: 100%; }

.callout-with-bg__text {
	margin-bottom: 25px;
	font-family: 'Parisienne', cursive, sans-serif;
	font-size: 32px;
	line-height: 1.25;
	text-align: center;
	color: #fff;
}

.callout-with-bg__img {
	display: block;
	width: 100%;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.callout-with-bg {
		display: table;
		padding-top: 0;
	}

	.callout-with-bg__text,
	.callout-with-bg__img-container { display: table-cell; }

	.callout-with-bg__text { vertical-align: middle; }

	.callout-with-bg__text {
		width: 66.66666667%;
		margin-top: 50px;
		margin-bottom: 50px;
		text-align: left;
	}

	.callout-with-bg__img-container {
		width: 33.33333333%;
		height: 100%;
		vertical-align: bottom;
	}
}

@media (min-width: 1201px) {
	.callout-with-bg {
		padding-left: 10%;
		padding-right: 10%;
	}

	.callout-with-bg__text {
		padding-top: 25px;
		padding-bottom: 25px;
		font-size: 40px;
	}
}

@media (min-width: 1400px) {
	.callout-with-bg__text {
		padding-top: 60px;
		padding-bottom: 60px;
		font-size: 62px;
	}
}

.selling-callout {
	background-color: #262c3c;
	margin-top: 48px;
	margin-bottom: 48px;
	color: #fff;
	padding: 48px 24px 24px 24px;
	text-align: center;
}

.selling-callout h4,
.selling-callout h4 a {
	color: #6ec3c0 !important;
	text-transform: uppercase;
}

.selling-callout hr {
	margin-top: 24px;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.selling-callout {
		padding: 48px;
		margin-bottom: 72px;
		margin-top: 72px;
	}

	.selling-callout hr {
		margin-top: 48px;
		margin-bottom: 48px;
	}
}

@media (min-width: 1200px) {
	.selling-callout { padding: 72px; }
}


/**
* Blockquotes
*/

blockquote {
	border-left: 0;
	margin: 0 0 24px 0;
	padding: 48px 10%;
	color: #262c3c;
	font-family: 'PT Serif', serif;
	text-align: center;
	font-size: 1.8em;
	position: relative;
}

blockquote:before,
blockquote:after {
	content:'';
	background-color: #d0ba76;
	position: absolute;
	left: 50%;
	margin-left: -50px;
	height: 1px;
	width: 100px;
}

blockquote:before { top: 24px; }
blockquote:after { bottom: 24px; }

@media (min-width: 1025px) {
	blockquote { padding: 72px 10%; }
}


/**
* Content Callout
*/

.content-callout {
	background-color: #262c3c;
	padding: 24px 24px 0 24px;
	margin-top: 24px;
	margin-bottom: 24px;
	text-align: center;
	overflow: hidden; /* clearfix */
}

.content-callout h3,
.selling-callout h3 {
	margin-top: 0;
	position: relative;
}

.content-callout h3,
.content-callout p { color: #fff; }

.content-callout h4 { color: #c1a566; }

@media (min-width: 768px) {
	.content-callout {
		background-color: #262c3c;
		padding: 48px 48px 24px 48px;
		margin-top: 48px;
		margin-bottom: 48px;
	}

	.content-callout h3:before,
	.selling-callout h3:before {
		content:'';
		background-color: #d0ba76;
		position: absolute;
		left: 50%;
		margin-left: -50px;
		height: 1px;
		width: 100px;
		top: -12px;
	}
}

@media (min-width: 1200px) {
	.content-callout {
		background-color: #262c3c;
		padding: 72px 72px 48px 72px;
		margin-top: 72px;
		margin-bottom: 72px;
	}
}

.modal-slide._show, .modal-popup._show{
	z-index: 99999!important;
	background-color:rgba(38, 44, 60, 0.90);
}

.modal-popup._show .modal-inner-wrap{
	width: 100%;
	max-width: 320px;
	margin: auto;
	margin-top: 10%;
}

/* Checkout "change shipping address" popup */
.checkout-index-index .modal-popup._show .modal-inner-wrap {
	margin-left: -400px;
	width: 800px;
	left: 50%;
	max-width: 100%;
	margin-top: 2%;
}

@media only screen and (max-width: 768px) {

	.checkout-index-index .modal-popup._show .modal-inner-wrap {
		width: 100%;
		left: 0;
		margin-left: 0;
	}

}


/**
* Home Welcome Text
*/

.welcome-text{
	background: url('/media/wysiwyg/welcome-text-background.jpg') no-repeat left top / cover;
	color: #fff;
	font-family: 'Parisienne', cursive;
	font-size: 32px;
	line-height: 1.25em;
	text-align: center;
	padding-top: 36px;
	padding-bottom: 36px;
}

.welcome-text p {
	margin-bottom: 0px;
	max-width: 800px;
}

@media (min-width: 600px){
	.welcome-text {font-size: 42px;}

}

@media (min-width: 768px){
	.welcome-text{ background-position: 65% top;}
}

@media (min-width: 1366px){
	.welcome-text{
		font-size: 52px;
		padding-top: 72px;
		padding-bottom: 72px;
	}
}


/* Main Content*/

.main-content {
	padding-top: 24px;
	padding-bottom: 120px;
}


@media(min-width: 768px){
	.main-content {
		padding-top: 38px;
	}

}

/* Page Title Wrapper*/

.page-title-wrapper {
	margin-bottom: 0;
	padding-top: 24px;
	padding-bottom: 24px;
	background: url('/media/wysiwyg/gold-footer.jpg') no-repeat left top;
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.checkout-onepage-success .page-title-wrapper {
	clip: initial;
	height: auto;
	margin: 0;
	overflow: visible;
	width: auto;
	position: static;
	padding-top: 24px;
	padding-bottom: 24px;
}

.page-title-wrapper .page-title { margin-bottom: 20px; }

.page-title-wrapper .breadcrumbs {
	margin-bottom: 0;
	font-size: 16px;
	text-transform: uppercase;
}

.page-title-wrapper .breadcrumbs a,
.page-title-wrapper .breadcrumbs strong { color: #fff !important; }

.breadcrumbs .item:not(:last-child):after {
	content: '';
	width: 1px;
	height: 15px;
	margin: 0 10px;
	background-color: #fff;
	vertical-align: text-top;
}

.scroll-arrow { display: none !important; }

@media (min-width: 1366px) {

	.scroll-arrow {
		border-bottom: 1px solid #c1a566;
		font-size: 32px;
		padding: 0 5px 10px 5px;
		position: absolute;
		bottom: 10%;
		right: 5%;
		z-index: 1;
	}

	.page-bottom .scroll-arrow {
		display: none !important;
	}

	.page-title-wrapper .scroll-arrow {
		border-bottom: 1px solid #fff;
		color: #fff !important;
	}

}



/**
*	Header image styling
*/

.cms-contact-us .page-title-wrapper,
.checkout-cart-index .page-title-wrapper,
.cms-about-us .page-title-wrapper,
.cms-consign-my-jewelry .page-title-wrapper,
.cms-sell-my-jewelry .page-title-wrapper,
.cms-jewelry-appraisals .page-title-wrapper,
.cms-testimonials .page-title-wrapper,
.cms-our-team .page-title-wrapper,
.cms-newsletter-thank-you .page-title-wrapper,
.cms-faq .page-title-wrapper,
.cms-terms-conditions .page-title-wrapper,
.cms-jewelers-mutual .page-title-wrapper,
.cms-authenticity-guarantee .page-title-wrapper,
.cms-layaway-plan .page-title-wrapper,
.category-specially-priced-selections .page-title-wrapper,
.category-recently-sold .page-title-wrapper,
.cms-press .page-title-wrapper,
.cms-free-shipping-returns .page-title-wrapper,
.category-new-arrivals .page-title-wrapper,
.category-what-s-on-hold .page-title-wrapper,
.cms-exhibitions .page-title-wrapper,
.category-our-archive .page-title-wrapper,
.cms-lookbooks .page-title-wrapper,
.cms-services .page-title-wrapper {
	display: table;
	position: relative;
	padding: 24px;
	width: 100%;
}

.cms-contact-us .page-title-wrapper:before,
.checkout-cart-index .page-title-wrapper:before,
.cms-about-us .page-title-wrapper:before,
.cms-consign-my-jewelry .page-title-wrapper:before,
.cms-sell-my-jewelry .page-title-wrapper:before,
.cms-jewelry-appraisals .page-title-wrapper:before,
.cms-testimonials .page-title-wrapper:before,
.cms-our-team .page-title-wrapper:before,
.cms-newsletter-thank-you .page-title-wrapper:before,
.cms-faq .page-title-wrapper:before,
.cms-terms-conditions .page-title-wrapper:before,
.cms-jewelers-mutual .page-title-wrapper:before,
.cms-authenticity-guarantee .page-title-wrapper:before,
.cms-layaway-plan .page-title-wrapper:before,
.category-specially-priced-selections .page-title-wrapper:before,
.category-recently-sold .page-title-wrapper:before,
.cms-press .page-title-wrapper:before,
.cms-free-shipping-returns .page-title-wrapper:before,
.category-new-arrivals .page-title-wrapper:before,
.category-what-s-on-hold .page-title-wrapper:before,
.cms-exhibitions .page-title-wrapper:before,
.category-our-archive .page-title-wrapper:before,
.cms-lookbooks .page-title-wrapper:before,
.page-title-wrapper.has-background-image:before,
.cms-services .page-title-wrapper:before {
	content: '';
	background: rgba(0, 0, 0, .1);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.cms-contact-us .page-title-wrapper-inner,
.checkout-cart-index .page-title-wrapper-inner,
.cms-about-us .page-title-wrapper-inner,
.cms-consign-my-jewelry .page-title-wrapper-inner,
.cms-sell-my-jewelry .page-title-wrapper-inner,
.cms-jewelry-appraisals .page-title-wrapper-inner,
.cms-testimonials .page-title-wrapper-inner,
.cms-our-team .page-title-wrapper-inner,
.cms-newsletter-thank-you .page-title-wrapper-inner,
.cms-faq .page-title-wrapper-inner,
.cms-terms-conditions .page-title-wrapper-inner,
.cms-jewelers-mutual .page-title-wrapper-inner,
.cms-authenticity-guarantee .page-title-wrapper-inner,
.cms-layaway-plan .page-title-wrapper-inner,
.category-specially-priced-selections .page-title-wrapper-inner,
.category-recently-sold .page-title-wrapper-inner,
.cms-press .page-title-wrapper-inner,
.cms-free-shipping-returns .page-title-wrapper-inner,
.category-new-arrivals .page-title-wrapper-inner,
.category-what-s-on-hold .page-title-wrapper-inner,
.cms-exhibitions .page-title-wrapper-inner,
.category-our-archive .page-title-wrapper-inner,
.cms-lookbooks .page-title-wrapper-inner,
.cms-services .page-title-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}

.cms-contact-us .page-title-wrapper .page-title,
.checkout-cart-index .page-title-wrapper .page-title,
.cms-about-us .page-title-wrapper .page-title,
.cms-about-us .page-title-wrapper .breadcrumbs,
.cms-consign-my-jewelry .page-title-wrapper .page-title,
.cms-consign-my-jewelry .page-title-wrapper .breadcrumbs,
.cms-sell-my-jewelry .page-title-wrapper .page-title,
.cms-sell-my-jewelry .page-title-wrapper .breadcrumbs,
.cms-jewelry-appraisals .page-title-wrapper .page-title,
.cms-jewelry-appraisals .page-title-wrapper .breadcrumbs,
.cms-testimonials .page-title-wrapper .page-title,
.cms-testimonials .page-title-wrapper .breadcrumbs,
.cms-our-team .page-title-wrapper .page-title,
.cms-our-team .page-title-wrapper .breadcrumbs,
.cms-newsletter-thank-you .page-title-wrapper .page-title,
.cms-newsletter-thank-you .page-title-wrapper .breadcrumbs,
.cms-faq .page-title-wrapper .page-title,
.cms-faq .page-title-wrapper .breadcrumbs,
.cms-terms-conditions .page-title-wrapper .page-title,
.cms-terms-conditions .page-title-wrapper .breadcrumbs,
.cms-jewelers-mutual .page-title-wrapper .page-title,
.cms-jewelers-mutual .page-title-wrapper .breadcrumbs,
.cms-authenticity-guarantee .page-title-wrapper .page-title,
.cms-authenticity-guarantee .page-title-wrapper .breadcrumbs,
.cms-layaway-plan .page-title-wrapper .page-title,
.cms-layaway-plan .page-title-wrapper .breadcrumbs,
.category-specially-priced-selections .page-title,
.category-specially-priced-selections .breadcrumbs,
.category-recently-sold .page-title,
.category-recently-sold .breadcrumbs,
.cms-press .page-title,
.cms-press .breadcrumbs,
.cms-free-shipping-returns .page-title,
.cms-free-shipping-returns .breadcrumbs,
.category-new-arrivals .page-title,
.category-new-arrivals .breadcrumbs,
.category-what-s-on-hold .page-title,
.category-what-s-on-hold .breadcrumbs,
.cms-exhibitions .page-title,
.cms-exhibitions .breadcrumbs,
.category-our-archive .page-title,
.category-our-archive .breadcrumbs,
.cms-lookbooks .page-title,
.cms-lookbooks .breadcrumbs,
.page-title-wrapper.has-background-image .page-title,
.page-title-wrapper.has-background-image .breadcrumbs,
.cms-services .page-title,
.cms-services .breadcrumbs {
	z-index: 1;
	position: relative;
}

.cms-about-us .page-title-wrapper {
	background: url(/media/wysiwyg/header-about-us.jpg) no-repeat center center / cover;
}

.cms-consign-my-jewelry .page-title-wrapper {
	background: url(/media/wysiwyg/header-consign.jpg) no-repeat center center / cover;
}

.category-what-s-on-hold .page-title-wrapper {
	background: url(/media/wysiwyg/header-whats-on-hold.jpg) no-repeat center center / cover;
}

.cms-sell-my-jewelry .page-title-wrapper {
	background: url(/media/wysiwyg/header-sell.jpg) no-repeat center center / cover;
}

.cms-jewelry-appraisals .page-title-wrapper {
	background: url(/media/wysiwyg/header-appraisals.jpg) no-repeat center center / cover;
}

.cms-testimonials .page-title-wrapper {
	background: url(/media/wysiwyg/header-testimonials.jpg) no-repeat center center / cover;
}

.cms-our-team .page-title-wrapper {
	background: url(/media/wysiwyg/header-our-team.jpg) no-repeat center center / cover;
}

.cms-newsletter-thank-you .page-title-wrapper {
	background: url(/media/wysiwyg/header-thank-you.jpg) no-repeat center center / cover;
}

.cms-faq .page-title-wrapper {
	background: url(/media/wysiwyg/header-faq.jpg) no-repeat center center / cover;
}

.cms-terms-conditions .page-title-wrapper {
	background: url(/media/wysiwyg/header-terms-conditions.jpg) no-repeat center center / cover;
}

.cms-jewelers-mutual .page-title-wrapper {
	background: url(/media/wysiwyg/header-fully-insured.jpg) no-repeat center center / cover;
}

.cms-authenticity-guarantee .page-title-wrapper {
	background: url(/media/wysiwyg/header-authenticy-guarantee.jpg) no-repeat center center / cover;
}

.cms-layaway-plan .page-title-wrapper {
	background: url(/media/wysiwyg/header-layaway-plan.jpg) no-repeat center center / cover;
}

.category-specially-priced-selections .page-title-wrapper {
	background: url(/media/wysiwyg/header-specialty-priced-selections.jpg) no-repeat center center / cover;
}

.category-recently-sold .page-title-wrapper {
	background: url(/media/wysiwyg/header-recently-sold.jpg) no-repeat center center / cover;
}

.cms-press .page-title-wrapper {
	background: url(/media/wysiwyg/header-press.jpg) no-repeat center center / cover;
}

.cms-free-shipping-returns .page-title-wrapper {
	background: url(/media/wysiwyg/header-free-shipping-and-returns.jpg) no-repeat center center / cover;
}

.category-new-arrivals .page-title-wrapper {
	background: url(/media/wysiwyg/header-new-arrivals.jpg) no-repeat center center / cover;
}

.cms-exhibitions .page-title-wrapper {
	background: url(/media/wysiwyg/header-exhibitions.jpg) no-repeat center center / cover;
}

.category-our-archive .page-title-wrapper {
	background: url(/media/wysiwyg/header-archive.jpg) no-repeat center center / cover;
}

.checkout-cart-index .page-title-wrapper {
	background: url(/media/wysiwyg/header-cart.jpg) no-repeat center center / cover;
}

.cms-contact-us .page-title-wrapper {
	background: url(/media/wysiwyg/header-contact.jpg) no-repeat center center / cover;
}

.cms-lookbooks .page-title-wrapper {
	background: url(/media/wysiwyg/header-lookbooks.jpg) no-repeat center center / cover;
}

.cms-services .page-title-wrapper {
	background: url(/media/wysiwyg/header-services.jpg) no-repeat center center / cover;
}


@media(min-width: 600px){

	.cms-contact-us .page-title-wrapper,
	.checkout-cart-index .page-title-wrapper,
	.cms-about-us .page-title-wrapper,
	.cms-consign-my-jewelry .page-title-wrapper,
	.cms-sell-my-jewelry .page-title-wrapper,
	.cms-jewelry-appraisals .page-title-wrapper,
	.cms-testimonials .page-title-wrapper,
	.cms-our-team .page-title-wrapper,
	.cms-newsletter-thank-you .page-title-wrapper,
	.cms-faq .page-title-wrapper,
	.cms-terms-conditions .page-title-wrapper,
	.cms-jewelers-mutual .page-title-wrapper,
	.cms-authenticity-guarantee .page-title-wrapper,
	.cms-layaway-plan .page-title-wrapper,
	.category-specially-priced-selections .page-title-wrapper,
	.category-recently-sold .page-title-wrapper,
	.cms-press .page-title-wrapper,
	.cms-free-shipping-returns .page-title-wrapper,
	.category-new-arrivals .page-title-wrapper,
	.category-what-s-on-hold .page-title-wrapper,
	.cms-exhibitions .page-title-wrapper,
	.category-our-archive .page-title-wrapper,
	.cms-lookbooks .page-title-wrapper,
	.cms-services .page-title-wrapper {
		height: 300px;
	}

}

@media(min-width: 768px){

	.page-title-wrapper,
	.checkout-onepage-success .page-title-wrapper {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.cms-contact-us .page-title-wrapper,
	.checkout-cart-index .page-title-wrapper,
	.cms-about-us .page-title-wrapper,
	.cms-consign-my-jewelry .page-title-wrapper,
	.cms-sell-my-jewelry .page-title-wrapper,
	.cms-jewelry-appraisals .page-title-wrapper,
	.cms-testimonials .page-title-wrapper,
	.cms-our-team .page-title-wrapper,
	.cms-newsletter-thank-you .page-title-wrapper,
	.cms-faq .page-title-wrapper,
	.cms-terms-conditions .page-title-wrapper,
	.cms-jewelers-mutual .page-title-wrapper,
	.cms-authenticity-guarantee .page-title-wrapper,
	.cms-layaway-plan .page-title-wrapper,
	.category-specially-priced-selections .page-title-wrapper,
	.category-recently-sold .page-title-wrapper,
	.cms-press .page-title-wrapper,
	.cms-free-shipping-returns .page-title-wrapper,
	.category-new-arrivals .page-title-wrapper,
	.category-what-s-on-hold .page-title-wrapper,
	.cms-exhibitions .page-title-wrapper,
	.category-our-archive .page-title-wrapper,
	.cms-lookbooks .page-title-wrapper,
	.cms-services .page-title-wrapper {
		height: 400px;
	}

}

@media(min-width: 1025px){

	.page-title-wrapper,
	.checkout-onepage-success .page-title-wrapper {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.cms-contact-us .page-title-wrapper,
	.checkout-cart-index .page-title-wrapper,
	.cms-about-us .page-title-wrapper,
	.cms-consign-my-jewelry .page-title-wrapper,
	.cms-sell-my-jewelry .page-title-wrapper,
	.cms-jewelry-appraisals .page-title-wrapper,
	.cms-testimonials .page-title-wrapper,
	.cms-our-team .page-title-wrapper,
	.cms-newsletter-thank-you .page-title-wrapper,
	.cms-faq .page-title-wrapper,
	.cms-terms-conditions .page-title-wrapper,
	.cms-jewelers-mutual .page-title-wrapper,
	.cms-authenticity-guarantee .page-title-wrapper,
	.cms-layaway-plan .page-title-wrapper,
	.category-specially-priced-selections .page-title-wrapper,
	.category-recently-sold .page-title-wrapper,
	.cms-press .page-title-wrapper,
	.cms-free-shipping-returns .page-title-wrapper,
	.category-new-arrivals .page-title-wrapper,
	.category-what-s-on-hold .page-title-wrapper,
	.cms-exhibitions .page-title-wrapper,
	.category-our-archive .page-title-wrapper,
	.cms-lookbooks .page-title-wrapper,
	.cms-services .page-title-wrapper {
		height: 600px;
	}

	.page-title-wrapper.has-background-image {
		padding-top: 150px;
		padding-bottom: 150px;
	}

}

@media (min-width: 1366px) {

	.page-title-wrapper.has-background-image {
		padding-top: 250px;
		padding-bottom: 250px;
	}

}

@media (min-width: 1366px) {

	.page-title-wrapper.has-background-image .scroll-arrow,
	.cms-contact-us .page-title-wrapper .scroll-arrow,
	.checkout-cart-index .page-title-wrapper .scroll-arrow,
	.cms-about-us .page-title-wrapper .scroll-arrow,
	.cms-consign-my-jewelry .page-title-wrapper .scroll-arrow,
	.cms-sell-my-jewelry .page-title-wrapper .scroll-arrow,
	.cms-jewelry-appraisals .page-title-wrapper .scroll-arrow,
	.cms-testimonials .page-title-wrapper .scroll-arrow,
	.cms-our-team .page-title-wrapper .scroll-arrow,
	.cms-newsletter-thank-you .page-title-wrapper .scroll-arrow,
	.cms-faq .page-title-wrapper .scroll-arrow,
	.cms-terms-conditions .page-title-wrapper .scroll-arrow,
	.cms-jewelers-mutual .page-title-wrapper .scroll-arrow,
	.cms-authenticity-guarantee .page-title-wrapper .scroll-arrow,
	.cms-layaway-plan .page-title-wrapper .scroll-arrow,
	.category-specially-priced-selections .page-title-wrapper .scroll-arrow,
	.category-recently-sold .page-title-wrapper .scroll-arrow,
	.cms-press .page-title-wrappe .scroll-arrowr,
	.cms-free-shipping-returns .page-title-wrapper .scroll-arrow,
	.category-new-arrivals .page-title-wrapper .scroll-arrow,
	.category-what-s-on-hold .page-title-wrapper .scroll-arrow,
	.cms-exhibitions .page-title-wrapper .scroll-arrow,
	.category-our-archive .page-title-wrapper .scroll-arrow,
	.cms-lookbooks .page-title-wrapper .scroll-arrow,
	.cms-services .page-title-wrapper .scroll-arrow,
	.cms-home .slider-wrapper .scroll-arrow {
		display: block !important;
	}

	.page-header + .slider-wrapper .scroll-arrow {
		display: none !important;
	}

}


/*
* My Account
*/

@media only screen and (max-width: 767px) {
	.account .page-main,
	.cms-privacy-policy .page-main {
		padding-top: 0;
	}
}

/* My Account Sidebar */

.my-account-nav {
	font-family: 'PT Serif', serif;
}

.my-account-nav a{
	color: #262c3c !important;
	line-height: 1.5em;
}

.my-account-nav li{
	border-bottom: 1px solid #c1a566;
	padding: 6px 0px;
	font-size: 14px;
}

.my-account-nav li:hover{
	font-weight: 700;
}

.my-account-nav li:hover a{
	line-height: 1.5em;
}

.my-account-nav li.current{
	font-weight: 700;
	line-height: 1.5em;
}

.my-account-nav li:first-child{
	padding-top: 0px;
}

.my-account-nav li:last-child{
	border-bottom: none;
	padding-bottom: 0px;
}


/* My Account Toolbar */

.actions-toolbar {
	background-color: #fbf8ef;
	padding: 12px;
	margin-top: 24px;
	margin-bottom: 24px;
}

.actions-toolbar .primary button,
.actions-toolbar .primary [type="submit"],
.actions-toolbar .secondary .action {
	border-radius: 0;
	font-family: 'PT Serif', serif;
	font-weight: 400 !important;
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1;
	text-transform: uppercase;
	padding: 18px;
}

.actions-toolbar .primary button,
.actions-toolbar .primary [type="submit"] {
	background-color: #262c3c;
	border: none;
	color: #fff !important;
}

.actions-toolbar .primary button:hover,
.actions-toolbar .primary [type="submit"]:hover {
	background-color: #c1a566;
	border: none;
}

.actions-toolbar .secondary .action,
.actions-toolbar .secondary .action-cancel,
.checkout-payment-method .checkout-billing-address .action-cancel {
	background: #c1a566;
	color: #fff !important;
}

.actions-toolbar .secondary .action:hover,
.actions-toolbar .secondary .action-cancel:hover,
.checkout-payment-method .checkout-billing-address .action-cancel:hover {
	background: #c1a566;
}

.account .column.main .block:not(.widget) .block-content .box,
.account .column.main .block:not(.widget) .block-content .box:nth-child(even) {
	width: auto;
	float: none;
}


/* My Account - Wishlist */

.wishlist .product-item-info {
	text-align: center;
}

.wishlist .product-item-info .box-tocart .qty {
	display: none;
}

.products-grid.wishlist .product-item-actions {
	overflow: hidden;
	font-size: .9em;
	padding: 12px;
	margin-top: 12px;
	border-top: 1px solid #ccc;
}

.wishlist .product-item-info .box-tocart .product-item-actions {
	font-size: 1em;
	float: left;
	padding: 0;
	margin-top: 0;
	border: 0;
}


/* My Account Addresses */

.block-addresses-list {
	margin-top: 24px;
}

@media (min-width: 600px) {

	.block-addresses-default .box-address-billing,
	.block-addresses-default .box-address-shipping {
		float: left;
		padding-right: 24px;
	}

}


/* My Account Orders */

.account .order-status {
	display: block;
}

.account .order-actions-toolbar {
	position: absolute;
	width: 100%;
}

.account .order-details-items .product-item-name {
	font-size: 16px !important;
	min-height: auto !important;
}

.account .order-details-items .price-including-tax,
.account .order-details-items .price-excluding-tax {
	font-size: 16px;
	line-height: inherit;
}

.account .block-reorder { display: none; }


/* My Account - Print Orders */

.sales-order-print .logo-block {
	top: 0;
}

.sales-order-print .order-details-items,
.sales-order-print .block-order-details-view {
	padding-left: 12px;
	padding-right: 12px;
}

.sales-order-print .actions-toolbar {
	display: none;
}

.sales-order-print .js-nav-fixed--shift .nav-sections {
	position: static;
}

@media (min-width: 768px) {

	.order-actions-toolbar .action.print {
		display: inline-block;
		float: none;
	}

	.block-order-details-view .block-content .box {
		padding-left: 12px;
		padding-right: 12px;
		width: 50% !important;
		float: left !important;
	}

	.block-order-details-view .block-content .box:nth-child(2n+1) {
		clear: left;
	}

}

@media (min-width: 1024px) {

	.products-grid.wishlist .product-item .box-tocart .actions-primary { display: block; }

}


@media only screen and (max-width: 1023px) {

	.products-grid.wishlist { margin-right: 0; }

	.products-grid.wishlist .product-item { padding: 24px; }

	.products-grid.wishlist .product-item-name {
		min-height: auto;
	}

	.products-grid.wishlist .product-item-photo {
		margin-right: 0;
		float: none;
		margin-bottom: 0;
	}

	.products-grid.wishlist .product-item .price-box {
		margin-left: 0;
	}

	.products-grid.wishlist .product-item .box-tocart {
		float: none;
	}

	.wishlist .product-item-info .box-tocart .product-item-actions {
		margin-top: 0;
	}

}

.checkout-payment-method .payment-option-title .action-toggle { color: #262c3c; }


/*Product Parent Page */

.product-card {
	text-align: center;
}

.product-item-name {
	font-size: 16px;
	margin: 0 !important;
	-webkit-hyphens: none !important;
	-ms-hyphens: none !important;
	hyphens: none !important;
	word-wrap: normal !important;
	line-height: 1.3em;
}

.minisearch .product-item-name { min-height: auto !important; } /* for site search */

.product-item-name a {
	color: #262c3c !important;
	display: block;
}

.product-card:hover .product-item-name a{ color: #c1a566 !important;}

.minisearch .product-item-actions { display: none; } /* for site search */

.product-card a.product-item-photo,
.product-card .product-hover-photo {
	display: block;
	height: 250px;
}

.product-item-photo img,
.product-hover-photo img {
	display: block;
	width: auto;
	margin: auto;
}

.product-card .price-box {
	padding-top: 12px;
}

.price-container .price {
	font-size: 22px;
	color: #c1a566;
}

.stock-status {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: .2em;
}

.sold{
	color: #bc0000
}

.hold{
	color: #6ec3c0
}

.old-price,
.special-price { display: block; }

.old-price,
.old-price .price-container .price {
	color: red;
	font-size: 14px;
	text-decoration: none;
}

.old-price .price-container .price-label {
	font-style: italic;
}

.product-card .wishlist-icon {
	color: #262c3c !important;
	font-size: 30px;
	padding-top: 12px;
	display: block;
}

.product-card .wishlist-icon:hover { color: #c1a566 !important; }

.product-card .wishlist-icon:after {
	content: 'Love this item? Save it to your wishlist!';
	font-size: 12px;
	line-height: 14px;
	display: block;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 4px;
	opacity: 0;
}

.product-card .wishlist-icon:hover:after {
	opacity: 1;
}

.product__info-main {
	text-align: center;
}

.product-name {
	margin-bottom: 15px;
	font-size: 30px;
	line-height: 1.25;
}

.product-attributes {
	display: table;
	width: 100%;
	margin-bottom: 40px;
	padding-top: 50px;
	padding-bottom: 24px;
	border-bottom: 1px solid #c5c6ca;
	table-layout: fixed;
}

.attribute {
	float: none;
	position: relative;
	display: table-cell;
	padding-bottom: 38px;
	text-align: center;
	border-right: 1px solid #c5c6ca;
}

.product-attributes .attribute.col-sm-12,
.product-attributes .attribute:last-of-type { border-right: none; }

.attr-value {
	font-size: 30px;
	color: #c1a566;
}

.attr-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-transform: uppercase;
}

.products-wrapper .product-single:nth-of-type(odd) { clear: both; }

.minicart-items-wrapper .product-item-photo {
	width: 125px;
	height: 125px;
}

.minicart-items-wrapper .product-item-details {
	float: left;
	width: calc(100% - 125px);
	padding-left: 0;
}

@media(min-width: 450px) {

	.product-item-name { min-height: 80px; }

}

@media (min-width: 601px) {
	.product-item-name { min-height: 100px; }

	.product-item-photo-img { width: 100%; }
}

@media (min-width: 768px) {

	.product-card a.product-item-photo,
	.product-card .product-hover-photo {
		height: 200px;
	}

}

@media (min-width: 768px) {
	.attribute { padding-bottom: 0; }

	.attribute-value-row,
	.attribute-label-row {
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	.attribute-value-row .attribute { vertical-align: top; }
	.attribute-label-row .attribute { vertical-align: bottom; }

	.attr-value,
	.attr-label {
		display: inline-block;
		line-height: 1.2;
	}

	.attr-value { padding-bottom: 10px; }

	.attr-label {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		padding: 10px 0 0;
	}

	.product-item-name { min-height: 100px; }

}

@media (min-width: 850px) {

	.product-card a.product-item-photo,
	.product-card .product-hover-photo {
		height: 250px;
	}

}

@media (min-width: 992px) {

	.product-card a.product-item-photo,
	.product-card .product-hover-photo {
		height: 200px;
	}

}

@media (min-width: 1025px) {
	.product-card { padding-top: 20px; }

	.product-card a.product-item-photo,
	.product-card .product-hover-photo {
		height: 250px;
	}

	.product-item-name {
		font-size: 22px;
		min-height: 160px;
	}

}

@media (max-width: 767px) {
	.product-attributes,
	.attribute { display: block; }

	.attribute {
		margin-bottom: 20px;
		padding-bottom: 0;
		border-right: none;
	}

	.attr-label { position: relative; }

	.product-card .product-item-photo img,
	.product-card .product-hover-photo img {
		height: 100%;
	}

}

@media(min-width: 1200px){

	.product-name {
		font-size: 42px;
	}

	.product-item-name {
		min-height: 140px;
	}

}

@media (min-width: 1366px) {

	.product-hover-photo img {
		height: 100%;
	}

}

@media(min-width: 1550px){

	.product-item-name {
		min-height: 115px;
	}

}


@media(min-width: 1800px){

	.product-item-name {
		min-height: 85px;
	}

}

.product-sku {
	margin-bottom: 15px;
	font-size: 20px;
	color: #c1a566;
}

.product-sku:before{
	content: '№ ' ;
	color:#c1a566;
	font-size: 20px;
}

.product__primary {
	padding-bottom: 48px;
}

.column.main .product-items{
	margin-left: 0!important;
}

.product-info-price .special-price,
.product-info-price .old-price { display: block; }

.product-info-stock-sku,
.product-info-price .price-label { display: none; }

.product-info-price .special-price,
.product-info-price .old-price { margin-bottom: 12px; }

.product-info-price .special-price .price-label {
	font-size: 15px;
	text-transform: uppercase;
	color: #c1a566;
}

.product-info-price .special-price .price {
	font-size: 42px;
	color: #262c3c;
	line-height: 1;
}

.product-info-price .old-price { text-decoration: none; }

.product-info-price .old-price .price {
	font-size: 20px;
}

.product-info-price .old-price .price:before {
	content: 'Reduced From ';
	font-style: italic;
}

.product-add-form {
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
}

.product-add-form .wishlist-link {
	position: relative;
	display: block;
	margin-top: 36px;
	margin-bottom: 5px;
	text-transform: uppercase;
	color: #c1a566;
	letter-spacing: .1em;
}

.product-add-form .wishlist-link:before {
	content: '\e905';
	color: #c1a566;
	position: relative;
	top: 2px;
	margin-right: 6px;
	font-family: 'icomoon';
}

.product-add-form .wishlist-link__info {
	margin-bottom: 36px;
	font-size: 14px;
}

#product-inquire-button { font-size: 18px !important; }

.btn-exhibition-text {
	display: block;
	margin-top: 10px;
	font-size: 14px !important;
	line-height: 16px;
	text-transform: none;
	letter-spacing: 0;
}

.product-add-form .action.tocart {
	width: 100%;
	letter-spacing: .1em;
	color: #c1a566 !important;
	background-color: #fff;
	border: 1px solid #c1a566;
}

.product-add-form .action.tocart.sold:hover{
    cursor: default !important;
    background: transparent;
    color: #c1a466 !important;
    border-color: #c1a466; 
}

.product-add-form .action.tocart.sold:hover span {
    color: #c1a466 !important;
}

.product-add-form .action.tocart span { color: #c1a566 !important; }

.product-add-form .action.tocart:hover {
	color: #fff !important;
	background-color: #262c3c;
	border-color: #262c3c;
}

.product-add-form .action.tocart:hover span { color: #fff !important; }

.product-add-form .action.tocart:before { display: none; }

.product-description-wrapper {
	border-top: 2px solid #c5c6ca;
}

.extra-info {
	margin-top: 28px;
	text-transform: uppercase;
	font-size: 14px;
}

.extra-info span,
.extra-info a { color: #96979a !important; }

.extra-info span:nth-of-type(2) {
	white-space: nowrap;
	margin-left: 10px;
	margin-right: 10px;
}

.product-shipping,
.product-layaway {
	padding: 48px 24px;
}

.product-shipping {
	background-color: #262c3c;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}

.product-shipping-ordered-by {
	display: block;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .6em;
	line-height: 1;
}

.product-shipping-time {
	display: block;
	color: #6ec3c0;
	font-size: 2em;
}

.product-layaway {
	background-color: #fbf8ef;
	text-align: center;
}

.product-layaway h3 {
	border-bottom: 1px solid #c1a566;
	padding-bottom: 12px;
	margin-bottom: 24px;
}

.product-layaway h3 span {
	display: block;
	font-size: .6em;
	line-height: 1.5;
	letter-spacing: .1em;
	text-transform: uppercase;
}

@media (min-width: 768px) {

	.product-shipping-layaway {
		display: table;
		width: 100%;
	}

	.product-shipping,
	.product-layaway {
		display: table-cell;
		padding: 48px;
		vertical-align: middle;
		width: 50%;
	}

	.products-wrapper .product-single:nth-of-type(odd) { clear: none; }
	.products-wrapper .product-single:nth-of-type(4n+5) { clear: both; }
	.product-single {
		margin-bottom: 25px;
		padding-bottom: 25px;
		border: 1px solid #fff;
		-webkit-transition: all 0.25s ease-out;
		-o-transition: all 0.25s ease-out;
		transition: all 0.25s ease-out;
	}

	.product-single:hover {
		background-color: #fff;
		border-color: #ccc;
		-webkit-transform: scale(1.175);
		-ms-transform: scale(1.175);
		transform: scale(1.175);
		z-index: 10; /* Fix bg issue */
	}
}

@media (min-width: 1200px) {

	.product-shipping {
		background: url(../../frontend/dover/doverjewelry2017/en_US/img/product-shipping-bg.gif) no-repeat -100px bottom #262c3c / contain;
		font-size: 1.2em;
	}

	.product-shipping,
	.product-layaway {
		padding: 72px;
	}

}

.product__related-wrapper {
	background-color: #f9f9fa;
	/*margin-top: 90px;*/
}

.product__related .related__product-title {
	display: block;
	padding-top: 24px;/*50%*/
	font-weight: normal !important;
	font-size: 30px !important;
	text-align: center;
}

.related__product {
	text-align: center;
	padding: 25px;
	border: 1px solid transparent;
}

.related__product .product-item-photo img {
	max-width: 100%;
	max-height: 150px;
	margin-bottom: 24px;
}

.related__product .product-item-info{
	margin: auto;
	width: 100%;
}

.related__product:hover {
	border: 1px solid #c1a566;
}

.related__product .product-item-name { font-size: 18px; }

.product__related .block.related:nth-of-type(2) {
	border-top: 1px solid #eaeaea;
}

.attribute-main-desc + [data-readmore-toggle]:after{
	content: ' »';
}

.amscroll-load-button {
	margin-top: 24px;
}

@media (min-width: 600px) and (max-width: 1199px) {

	.related__products .col-xxs-12:nth-of-type(odd) { clear: both; }

}

@media(min-width: 1025px) {

	.price-container .price { font-size: 27px; }

}

@media(min-width: 1200px){

	.amscroll-load-button {
		margin-top: 48px;
	}

	.product__related .related__product-title { text-align: left; }

}




/*======================================
Selectric v1.12.0
======================================*/

.selectric-wrapper {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.selectric-responsive {
	width: 100%;
}

.selectric {
	border: 1px solid #262c3c;
	border-radius: 0px;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.selectric .label,
.filter-options .filter-options-title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	margin: 0 38px 0 10px;
	font-size: 16px;
	line-height: 38px;
	color: #262c3c;
	height: 38px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric .button,
.filter-options-title .button {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 38px;
	height: 38px;
	line-height: 38px;
	color: #262c3c;
	text-align: center;
}

.selectric .button:after,
.filter-options-title .button:after {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	content: "\e903";
	color: #262c3c;
}

.selectric-focus .selectric {
	border-color: #aaaaaa;
}

.selectric-hover .selectric {
	border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
	color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
	border-top-color: #a2a2a2;
}

.selectric-open {
	z-index: 9999;
}

.selectric-open .selectric {
	border-color: #c4c4c4;
}

.selectric-wrapper.selectric-open .selectric-items {
	display: block;
}

.selectric-disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric-hide-select {
	position: relative;
	overflow: hidden;
	width: 0;
	height: 0;
}

.selectric-hide-select select {
	position: absolute;
	left: -100%;
}

.selectric-hide-select.selectric-is-native {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	border: none;
	z-index: 1;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	opacity: 0;
}

.selectric-input {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 1px !important;
	height: 1px !important;
	outline: none !important;
	border: none !important;
	*font: 0/0 a !important;
	background: none !important;
}

.selectric-temp-show {
	position: absolute !important;
	visibility: hidden !important;
	display: block !important;
}

/* Items box */
.selectric-wrapper .selectric-items,
.filter-options .filter-options-content.filter-dropdown-container {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: solid #c4c4c4;
	border-width: 0 1px 1px;
	z-index: -1;
}

.filter-options .filter-options-content.filter-dropdown-container:not(.hidden) {
	left: -1px;
	display: block;
	width: calc(100% + 2px);
	margin-top: 0;
	border: 1px solid #c4c4c4;
	z-index: 10;
}

.selectric-items .selectric-scroll {
	height: 100%;
	overflow: auto;
}

.selectric-above .selectric-items {
	top: auto;
	bottom: 100%;
}

/* .selectric-items ul,
.selectric-items li,
.filter-options .filter-options-content .item {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.2em;
	min-height: 20px;
	text-align: left;
} */

.filter-options .filter-options-content .item {
	position: relative;
}

.filter-options .filter-options-content .item .icheckbox {
	position: absolute;
}

.selectric-items li,
.filter-options .filter-options-content .item {
	border-top: 1px solid #c4c4c4;
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	cursor: pointer;
}

.selectric-items li:first-child,
.filter-options .filter-options-content .item:first-child {
	border-top: 0;
}

.selectric-items li.selected,
.filter-options .filter-options-content .item label,
.filter-options .filter-options-content .item a {
	color: #262c3c !important;
}

.selectric-items li.highlighted {
	color: #262c3c;
}

.selectric-items li:hover,
.filter-options .filter-options-content .item:hover label,
.filter-options .filter-options-content .item:hover a {
	color: #c1a566 !important;
}

.filter-options .filter-options-content .item label {
	padding-bottom: 0;
	padding-left: 25px;
	font-weight: normal;
}

.selectric-items .disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default !important;
	background: none !important;
	color: #666 !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
	font-weight: bold;
	padding-left: 10px;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: none;
	color: #444;
}

.selectric-items .selectric-group.disabled li {
	filter: alpha(opacity=100);
	opacity: 1;
}

.selectric-items .selectric-group li {
	padding-left: 25px;
}

@media (min-width: 1025px) {
	.filter-options {
		width: 83.33333333%;
		margin-left: 8.33333333%;
	}
}

/* Small Select Boxes */

/*.toolbar .selectric .label,
.toolbar .selectric .button {
height: 26px;
line-height: 26px;
}

.toolbar .selectric .button {
width: 26px;
}

.toolbar .selectric .label {
margin: 0 26px 0 10px;
}*/



/* iCheck plugin Minimal skin, black
----------------------------------- */
.icheckbox,
.iradio_minimal {
	display: inline-block;
	*display: inline;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	width: 18px;
	height: 18px;
	background: url(../../frontend/dover/doverjewelry2017/en_US/img/minimal.png) no-repeat #fff;
	border: none;
	cursor: pointer;
	margin-right: 5px;
}

.icheckbox {
	background-position: 0 0;
}
.icheckbox.hover {
	background-position: -20px 0;
}
.icheckbox.checked {
	background-position: -40px 0;
}
.icheckbox.disabled {
	background-position: -60px 0;
	cursor: default;
}
.icheckbox.checked.disabled {
	background-position: -80px 0;
}

.iradio_minimal {
	background-position: -100px 0;
}
.iradio_minimal.hover {
	background-position: -120px 0;
}
.iradio_minimal.checked {
	background-position: -140px 0;
}
.iradio_minimal.disabled {
	background-position: -160px 0;
	cursor: default;
}
.iradio_minimal.checked.disabled {
	background-position: -180px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
	.icheckbox,
	.iradio_minimal {
		background-image: url(../../frontend/dover/doverjewelry2017/en_US/img/minimal@2x.png);
		background-size: 200px 20px;
	}
}



/*
* Filters
*/

/* .block.filter:not(.mana-filter-block) {
	display: none;
} */

.filter {
	background-color: #fbf8ef;
	padding: 12px;
}

.filter-options {
	text-align: center;
}

.filter-options .filter-options-content {
	color: #262c3c;
	margin: 5px 0 0 0;
	position: relative;
	padding: 10px;
}

.filter-options .filter-options-content:first-child {
	margin-top: 0;
}

.filter-options-content .selectric-wrapper,
.filter-options .filter-options-wrapper {
	text-align: left;
	width: 100%;
}

.filter-options-content .selectric,
.filter-options .filter-options-wrapper {
	background: none;
	border: 1px solid #c1a566;
}

.filter-options-content .selectric-open .selectric {
	background: #fff;
	border: 1px solid #262c3c;
}

.filter-options-content .selectric .label,
.filter-options .filter-options-title {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.filter-options .filter-options-title {
	line-height: 38px;
	cursor: pointer;
}

.filter-options .filter-options-wrapper { position: relative; }
.filter-options .filter-options-wrapper:not(:first-of-type) { margin-top: 10px; }
.filter-options-content .selectric .button { background: none; }

@media (min-width: 600px) {
	.filter-options .filter-options-content { display: inline-block; }
}

@media (min-width: 768px) {

	.filter {
		padding: 4px 12px;
	}

	.filter-options-content .selectric {
		border: 1px solid #fbf8ef;
	}

	.filter-options-content .selectric .label {
		margin: 0 20px 0 10px;
	}

	.filter-options-content .selectric .button {
		width: 20px;
	}

	.filter-options .filter-options-wrapper {
		display: inline-block;
		width: auto;
		border: none;
	}

	.filter-options .filter-options-content.filter-dropdown-container:not(.hidden) {
		width: 460px;
	}

	.filter-options .filter-options-content.filter-dropdown-container.main-filter-metal:not(.hidden) {
		width: 294px;
	}
}

@media (min-width: 900px) {
	.filter-options .filter-options-content.filter-dropdown-container.main-filter-metal:not(.hidden) {
		width: 460px;
	}
}

@media (min-width: 1025px) {

	.filter-content {
		margin-left: 8.33333333%;
		width: 83.33333333%;
	}

}

@media (min-width: 1200px) {

	.filter-options-content .selectric .label {
		font-size: 16px;
	}

	.filter-options .filter-options-content {
		padding-left: 20px;
		padding-right: 20px;
	}

}

@media (min-width: 1366px) {

	.filter-options .filter-options-content {
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

}


.remind {
	display: block;
	margin-top: 10px;
}

.contact-form__img-container {
	position: relative;
	overflow: hidden;
	border-left: 12px solid #fff;
}

.contact-form__img {
	position: absolute;
	width: auto;
	height: 100%;
	max-width: none;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

@media (max-width: 599px) {

	.contact-map {
		height: 400px
	}

}


/*
* Toolbar
*/

.toolbar {
	border-bottom: 1px solid #c1a566;
	margin-bottom: 24px;
	padding: 20px 0;
	text-align: left;
}

.toolbar-sorter {
	padding: 0;
}

.sorter-label {
	margin-right: 5px;
	padding: 0;
	font-size: 14px;
	text-transform: uppercase;
	vertical-align: middle;
}

.sorter-action { display: none; } /* hides arrow on category page sorters */

.toolbar .selectric-wrapper {
	min-width: 200px;
	vertical-align: middle;
}

.bottom-toolbar .toolbar-products { text-align: center; }
.bottom-toolbar .pages .action { border: none; }

.bottom-toolbar .item .page {
	position: relative;
	padding: 0 8px;
	z-index: 1;
}

.bottom-toolbar .pages .item .label {
	display: none;
}

.bottom-toolbar .pages .item a,
.bottom-toolbar .pages .item strong {
	position: relative;
}

.bottom-toolbar .pages .item a span {
	position: relative;
	z-index: 1;
}

.bottom-toolbar .pages .item a:after,
.bottom-toolbar .pages .item strong:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 38px;
	height: 38px;
	background-color: #e6e6e6;
	border-radius: 50%;
	-ms-transform: translate(-50%,-50%) scale(0);
	transform: translate(-50%,-50%) scale(0);
	-webkit-transform: translate(-50%,-50%) scale(0);
}

.bottom-toolbar .pages .item.current span:not(.label),
.bottom-toolbar .pages .item a:hover span:not(.label) {
	color: #111 !important;
	position: relative;
	z-index: 1;
}

.bottom-toolbar .pages .item:hover a:after,
.bottom-toolbar .pages .item.current strong:after {
	-ms-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
	-webkit-transform: translate(-50%,-50%) scale(1);
}

.bottom-toolbar .pages .item.pages-item-next a:after,
.bottom-toolbar .pages .item.pages-item-previous a:after {
	display: none;
}

.bottom-toolbar .pages .item a:after,
.bottom-toolbar .pages .item strong:after {
	-webkit-transition: all .175s ease-in;
	-o-transition: all .175s ease-in;
	transition: all .175s ease-in;
}

.pages .action.previous,
.pages .action.next {
	position: relative;
	display: block;
	width: auto;
}

.pages .action.previous:before,
.pages .action.next:before {
	position: relative;
	margin: 0;
}

.pages .action.next > span {
	float: left;
	display: block;
	height: auto;
	margin: 0;
	overflow: visible;
	width: auto;
}

.bottom-toolbar { margin-bottom: 20px; }

.amscroll-load-button { background-color: #c1a566 !important; }

@media (min-width: 600px) {
	.bottom-toolbar .item .page { padding: 0 15px; }
	.bottom-toolbar .item span:not(.label) { font-size: 14px; }

	.bottom-toolbar .item span:not(.label):before {
		width: 38px;
		height: 38px;
	}
}

@media (min-width: 1024px) {
	.bottom-toolbar .sorter { float: left; }
}

.toolbar-products .pages { display: block; }



/*
* Category Description
*/

.category-description {
	padding-top: 24px;
	padding-bottom: 24px;
}

@media (min-width: 768px) {

	.category-description {
		padding-top: 40px;
		padding-bottom: 40px;
	}

}

@media (min-width: 1025px) {

	.category-description {
		padding-top: 60px;
		padding-bottom: 60px;
	}

}

@media (min-width: 1200px) {

	.category-description {
		padding-top: 80px;
		padding-bottom: 80px;
	}

}




/*
* Search Results Page
*/

.catalogsearch-result-index .mana-filter-block {
	display: none;
}

.umsearch-index-category ul li .title a:not(:last-child):after {
	content: '|';
}

.results .pages a.page,
.results .pages strong.page {
	background: none;
	border: 0;
}

.search-result-highlight {
	color: #fff;
	background-color: #6ec3c0;
}
.searchanise-result-index div.snize div.snize-main-panel {
    height: 50px;
}
.searchanise-result-index div.snize div.snize-search-results-header{
	display: none;
}
.searchanise-result-index div.snize .snize-horizontal-wrapper {
    padding: 10px;
     border: 1px solid #ccc;
    border-bottom: 0;
    margin-bottom: 0;
    border-left: 0;
    margin-right: 3px;
}
.searchanise-result-index .snize-tab-selected-categories div.snize .snize-horizontal-wrapper ,
.searchanise-result-index .snize-tab-selected-pages div.snize .snize-horizontal-wrapper {
	margin-right: -1px;
}
.searchanise-result-index #snize-search-results-grid-mode li.snize-product .snize-price-list {
    font-size: 27px;
    line-height: 26px;
    margin: 0;
    text-align: center;
}
.searchanise-result-index div.snize ul.snize-product-filters-list li span.snize-filter-variant-count {
    display: none;
}
.searchanise-result-index div.snize .snize-filters-sidebar div.snize-product-filters-title span {
    text-transform: uppercase;
}
 .searchanise-result-index div.snize ul.snize-product-filters-list li label>span {
    font-size: 14px;
}
 .searchanise-result-index div.snize div.snize-selected-filters span.snize-clear-the-filter,
.searchanise-result-index div.snize li.snize-filter-button.snize-clear-all-button {
    font-size: 14px;
}
 .searchanise-result-index div.snize .snize-filters-sidebar .snize-price-range input.snize-price-range-input {
    background: transparent !important;
    font-size: 14px;
    text-align: center;
}
.searchanise-result-index #snize-search-results-grid-mode li.snize-product:hover .snize-button {
    display: none;
}
.searchanise-result-index div.snize-search-results#snize_results div.snize-main-panel-controls ul li a:hover {
    background: #FFFF;
}
.searchanise-result-index .snize-search-results-main-content {
    width: calc(100% - 350px);
    display: flex;
    padding-top: 24px;
}
.searchanise-result-index div.snize div.snize-pagination{
	border-right: 1px solid #ccc;
    padding-top: 20px;
    margin-right: 3px;
    margin-top: 0;
}
.searchanise-result-index  div.snize div.snize-filters-sidebar{
	width: 320px;
	padding-top: 24px;
	padding-left: 22px;
}
.searchanise-result-index  #snize-search-results-grid-mode li.snize-product.mobile-in-view .snize-button{
	display: none;
}
.searchanise-result-index div.snize-search-results {
    border-left: 1px solid #ccc;
    border-bottom:  1px solid #ccc;
}
.searchanise-result-index .snize-tab-selected-categories .snize-search-results-main-content,
.searchanise-result-index .snize-tab-selected-pages .snize-search-results-main-content{
	width: 100%;
}
.searchanise-result-index .snize-search-results-main-content {
    padding-top: 24px;
}
.searchanise-result-index #snize-search-results-grid-mode span.snize-thumbnail img {
    max-width: 240px;
    max-height: 240px;
}
#snize-search-results-grid-mode span.snize-thumbnail img {
    max-width: 240px;
    max-height: 240px;
}
.snize-search-results-main-content ul.snize-search-results-content.clearfix li.snize-page {
    border: 0;
    margin-left: 10px;
}
.snize-search-results-main-content ul.snize-search-results-content.clearfix li.snize-page span.snize-title:hover {
    color: #6ec3c0;
}
.snize-search-results-main-content ul.snize-search-results-content.clearfix li.snize-page span.snize-title {
    color: #c1a566;
    font-size: 14px;
}
.searchanise-result-index #snize-search-results-list-mode span.snize-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #262c3c;
    max-height: unset;
}
.searchanise-result-index div.snize div.snize-search-results-categories li.snize-category span.snize-title {
    font-size: 14px;
    color: #c1a566;
}
.searchanise-result-index div.snize div.snize-search-results-categories li.snize-category span.snize-title:hover {
    color: #6ec3c0;
}
.searchanise-result-index div.snize div.snize-search-results-categories li.snize-category {
    border: 0;
    padding: 0 20px;
    margin: 0 0 10px 0;
}
.searchanise-result-index div.snize div.snize-main-panel-dropdown ul.snize-main-panel-dropdown-content a {
    font-size: 16px;
    line-height: 38px !important;
    color: #262c3c !important;
    padding-bottom: 0;
    padding-top: 0;
}
.searchanise-result-index div.snize div.snize-main-panel-dropdown a.snize-main-panel-dropdown-button {
    height: 22px;
    font-size: 16px;
    line-height: 38px !important;
    color: #262c3c !important;
}
.searchanise-result-index #snize-search-results-grid-mode li.snize-product span.snize-title {
    font-size: 22px;
    line-height: 1.3em;
    min-height: 85px;
    text-align: center;
}
.searchanise-result-index #snize-search-results-grid-mode li.snize-product:hover span.snize-title,
.searchanise-result-index #snize-search-results-grid-mode li.snize-product:hover .snize-price-list {
    color: #c1a566;
}
.searchanise-result-index #snize-search-results-grid-mode li.snize-product:hover {
    background-color: #fff;
    border-color: #ccc;
    -webkit-transform: scale(1.100);
    -ms-transform: scale(1.100);
    transform: scale(1.100);
    z-index: 10;
}
 .searchanise-result-index div.snize div.snize-main-panel-controls ul li a span {
    vertical-align: top;
    padding-left: 7px;
    line-height: 28px;
    font-size: 16px;
    color: #c1a566;
    margin: 0;
}
div.snize div.snize-main-panel-controls ul li a span:before {
    content: '(';
    display: inline-block;
}
div.snize div.snize-main-panel-controls ul li a span:after {
    content: ')';
    display: inline-block;
}
 .searchanise-result-index div.snize div.snize-main-panel-controls ul li a:hover span {
    color: #6ec3c0;
}
.searchanise-result-index #snize-search-results-grid-mode li.snize-product {
    flex-basis: 33.33%;
    margin: 0;
    padding: 0 12px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border: 1px solid #fff;
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.searchanise-result-index div.snize div.snize-main-panel-dropdown {
    color: #333;
    float: right;
    position: relative;
    margin-top: 0;
    padding: 20px 0;
    text-align: left;
}
.searchanise-result-index div.snize-search-results#snize_results div.snize-main-panel-controls ul li a.active {
    background: #FFFF;
    border-bottom: 0;
}
.searchanise-result-index div.snize div.snize-main-panel-controls ul li{
margin: 0 5px -1px 0;
height: auto;
}
div.snize div.snize-pagination ul li a.active {
    background: transparent;
    display: block;
    width: 38px;
    height: 38px;
    background-color: #e6e6e6;
    border-radius: 50%;
}
.searchanise-result-index div.snize div.snize-main-panel-controls ul{
	display: block;
}
.snize.snize-search-results.snize-tab-selected-categories .snize-search-results-main-content,
.snize.snize-search-results.snize-tab-selected-pages .snize-search-results-main-content {
    border-top: 0;
}
.searchanise-result-index .snize-search-results-main-content {
    border: 0;
    border-right: 1px solid #ccc;
}

.searchanise-result-index div.snize div.snize-main-panel-view-mode{
	display: none;
}
.searchanise-result-index div.snize.snize-tab-selected-categories .snize-pagination,
.searchanise-result-index div.snize.snize-tab-selected-pages .snize-pagination,
.searchanise-result-index div.snize.snize-tab-selected-categories  .snize-horizontal-wrapper,
.searchanise-result-index div.snize.snize-tab-selected-pages .snize-horizontal-wrapper{
margin-right: -1px;
}
.searchanise-result-index div.snize-search-results#snize_results div.snize-main-panel-controls ul li a {
   
    display: block;
    padding: 10px 35px;
    text-decoration: none;
    color: #7d7d7d;
    background: #f6f6f6;
    border: 1px solid #ccc;
    border-radius: 1px 1px 0 0;
     border-bottom: 0;
}
.searchanise-result-index div.snize-search-results#snize_results div.snize-main-panel-controls ul li a.snize-main-panel-controls-products {
    border-left: 0;
}
@media (max-width: 767px) {
.searchanise-result-index .snize-search-results-main-content {
    width: 100%;
}
.searchanise-result-index #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode ul, #snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode ul, #snize_results.snize-mobile-design.snize-new-version div.disabled-opacity {
    margin-right: 0;
    margin-left: 0;
}
#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-button, #snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode li.snize-product .snize-button{
	display: none;
}
.searchanise-result-index #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product {
    padding-right: 0;
    flex-basis: 100%;
    display: flex;
    text-align: center;
}
.searchanise-result-index div.snize-search-results#snize_results div.snize-main-panel-controls ul li a.active{
	border-top: 1px solid #ccc;
}
#snize-modal-mobile-filters-dialog .snize-price-range input.snize-price-range-input {
    background: #FFFF !important;
    text-align: center;
    font-size: 16px;
}
#snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-controls ul li a span {
    color: #c1a566 !important;
}
.snize-search-results-main-content ul.snize-search-results-content.clearfix li.snize-page {
    padding-bottom: 0;
}
.searchanise-result-index #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters {
    float: left;
}
.searchanise-result-index #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters span.snize-selected-filters-count-container {
    right: -17px;
    top: -13px;
}
.searchanise-result-index #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title, 
.searchanise-result-index #snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode .snize-price-list:last-of-type, 
.searchanise-result-index #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list:last-of-type {
    min-height: unset;
    text-align: center;
    color: #262c3c;
    font-size: 16px;
}
.searchanise-result-index div.snize-search-results,.searchanise-result-index .snize-search-results-main-content{ border:0; }


}


/* FAQ Page */

.cms-faq #fixeda {
	margin-bottom: 24px;
}

.cms-faq #fixeda a {
	display: block;
	font-size: 18px;
	padding: 12px;
	border-top: 1px solid #efefef;
}

.cms-faq #fixeda a:first-child {
	border-top: 0;
}

.faq-section {
	border-top: 1px solid #d0ba76;
	padding-top: 24px;
	margin-top: 24px;
}

.faq-section a { /* for Back to Top links */
	position: relative;
	z-index: 1;
}

.cms-faq a[name="top"] {
	position: relative;
	top: -792px;
	display: block;
}

@media (min-width: 768px) {

	.cms-faq #fixeda a { font-size: 20px; }

}

@media (min-width: 1025px) {

	.faq-section {
		padding-top: 48px;
		margin-top: 48px;
	}

}




/*Individual Product Page*/

.product-chart {
	text-align: center;
	padding-bottom: 42px;
}

.product-chart .product-info {
	padding-top: 12px;
	padding-bottom: 12px;
}

.product-chart h3 {
	color: #c1a566;
}

.product-chart [class*="col-"]{
	border-bottom: 1px solid #c5c6ca
}

.product-chart [class*="col-"]:last-child{
	border-bottom: none;
}

.product-chart p{
	margin-bottom: 0px;
}

.fotorama__thumb { border:1px solid #c1a566; }
.fotorama__nav__frame.fotorama__active { border-width: 2px; }
.fotorama__thumb-border { display: none; }
.fotorama__stage { max-height: 400px; }
.fotorama__nav-wrap {
	margin-top: 24px;
	margin-bottom: 24px;
}

.fotorama__stage.fotorama__shadows--right:after,
.fotorama__nav.fotorama__shadows--right:after { display: none; }


@media (min-width: 1367px) {
	.fotorama__stage { max-height: 500px; }
}

.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
	background-color: #eaeaea;
	-webkit-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}

.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon {
	width: 30px;
	height: 30px;
}

.fotorama__nav__frame--thumb {
	width: 125px;
	height: 125px;
	margin-left: 5px;
	margin-right: 5px;
}

.fotorama__thumb__arr--right .fotorama__thumb--icon { background-position: -25px -345px }
.fotorama__thumb__arr--left .fotorama__thumb--icon { background-position: -25px -265px; }

.fotorama__caption__wrap {
    background-color: rgba(255, 255, 255, 0.5);
}

@media(min-width:600px){
	.product-chart {
		border-bottom: 1px solid #c5c6ca;
	}


	.product-chart .product-info {
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.product-chart [class*="col-"]{
		border-bottom: none;
		border-right: 1px solid #c5c6ca
	}

	.product-chart [class*="col-"]:last-child{
		border-bottom: none;
		border-right: none;
	}

	.product-chart p{
		margin-bottom: 24px;
	}
}

@media(min-width: 600px){
	.catalogsearch-result-index .products-wrapper .col-xs-6.col-sm-4:nth-child(odd){ clear:both;}
}

@media(min-width: 768px){
	.catalogsearch-result-index .products-wrapper .col-xs-6.col-sm-4:nth-child(odd){ clear:none;}
	.catalogsearch-result-index .products-wrapper .col-xs-6.col-sm-4:nth-child(3n+1){ clear:both;}
}

/*Background Colors*/

.yellow-background{
	background: #fbf8ef;
}


/* Homepage specific */
@media (min-width: 1025px) {

	.homepage-wrapper .logo--innerpage,
	.homepage-wrapper .logo--sticky { display: none; }

}


/* Innerpage specific */
.page-wrapper { margin-top: 76px; }

.page-layout-checkout .page-wrapper { margin-top: 100px; }

.page-wrapper:not(.homepage-wrapper) .logo--sticky {
	visibility: hidden;
	height: 0;
}

.logo-block {
	position: absolute;
	left: 50%;
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}


.logo-block .logo {
	float: none;
	max-width: 100%;
	margin: 0;
}

.logo-block .logo--innerpage,
.logo-block .logo--homepage {
	width: 200px;
	height: auto;
	position: relative;
	top: 25px;
}

.page-layout-checkout .logo-block .logo--nav {
	top: 22px;
	width: 160px;
}

.page-layout-checkout .logo--checkout

.page-header > .panel.wrapper { display: none; }

.above-nav__left,
.above-nav__right {
	position: relative;
	top: 28px;
	width: calc(50% - 200px);
}

.above-nav__left { float: left; }

.above-nav__right {
	float: right;
	text-align: right;
}

.nav-phone {
	color: #262c3c !important;
	font-weight: bold;
	font-size: 16px;
}

.nav-phone:hover { color: #c1a566 !important; }

.nav-shipping {
	margin-left: 20px;
	color: #c1a566;
	font-size: 16px;
	font-style: italic;
}

.page-wrapper:not(.homepage-wrapper) .nav-shipping { color: #c1a566; }

.authorization-link {
	position: absolute;
    top: 28px;
    left: auto;
    right: -43px;
    margin-right: 10px;
}

.authorization-link a,
.authorization-link a:visited {
	font-size: 16px;
	font-style: italic;
	color: #c1a566;
}

@media (min-width: 375px) {
	.authorization-link {
		position: relative;
		top: 2px;
		left: 0;
		right: auto;
	}
}

.search .action.advanced { display: none; }
.form.minisearch { display: none }

.button-fix,
.button-fix:hover,
.button-fix:focus,
.button-fix:active {
	background: transparent;
	border: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-appearance: none;
}

.nav-cart-placeholder,
.nav-wishlist-wrapper,
.nav-search,
.minicart-wrapper .action.showcart {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	padding: 15px;
	line-height: 1;
	vertical-align: middle;
}

.nav-wishlist-wrapper {
	padding: 4px;
}

.nav-cart-placeholder { z-index: -1; }

.nav-wishlist {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.nav-wishlist:before {
	content: '\e905';
	font-size: 18px;
}

.nav-search:before {
	content: '\e90a';
	font-size: 14px;
}

.nav-wishlist:before,
.nav-search:before,
.minicart-wrapper .action.showcart:before {
	color: #262c3c;
	font-family: 'icomoon';
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%, -50%);
}

.minicart-wrapper {
	position: absolute;
	top: 28px;
	right: 100px;
	margin-left: 0;
	z-index: 100;
}

.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
	content: '\e907';
	font-family: 'icomoon';
	font-size: 18px;
}

.block-search { z-index: 10000; }

body.js-search-active-fixed { overflow: hidden; position: fixed;}

body.js-search-active-fixed .nav-sections { z-index: 50; }

.form.minisearch.js-search-active {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(38, 44, 60, 0.90)!important;
	z-index: 10000;
}

.block-search .control {
	position: absolute;
	top: 50%;
	left: 50%;
	padding-bottom: 0;
	width: 768px;
	max-width: 100%;
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%, -50%);
	border: 75px solid rgba(255,255,255,.05) ;
}

.block-search input {
	background: #f1f1f1 !important;
	left: 0;
	width: 100%;
	height: auto !important;
	padding: 35px 100px 35px 40px;
	font-size: 18px;
	color: #262c3c !important;
	border: 1px solid #c2c2c2 !important;
	z-index: 20000;
}

.block-search .search-autocomplete ul li .amount {
	right: 15px;
	top: 15px;
}

.form.minisearch > .actions {
	position: absolute;
	top: 50%;
	right: calc(50% - 295px);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.form.minisearch .action.search {
	position: relative;
	right: 0;
	display: block;
	width: 35px;
	height: 35px;
	padding: 15px;
	background-color: #fff;
}

.form.minisearch .action.search:after {
	content: '\e90a';
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: 'icomoon';
	font-size: 20px;
	color: #262c3c !important;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.search-close-container {
	position: absolute;
	top: calc(50% - 180px);
	right: calc(50% - 385px);
}

.search-close {
	position: relative;
	padding: 25px;
	cursor: pointer;
}

.search-close:before {
	content: '\00d7';
	position: absolute;
	top: 50%;
	left: 50%;
	font-weight: lighter;
	font-size: 28px;
	color: #fff;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

#search_autocomplete {
	width: 100% !important;
	max-height: 250px;
	overflow-y: scroll;
}

.amasty-xsearch-highlight {
	background-color: #EEDB2D !important;
	color: #202020 !important;
}

.search-autocomplete ul li {
	padding: 15px 40px 15px 20px;
}

.page-layout-checkout .opc-estimated-wrapper .minicart-wrapper { display: none; }
.aw-rbslider__img { display: block }
.message.global.noscript { position: absolute; }

@media (max-width: 1599px) {

	.nav--top-left,
	.nav--top-right {
		width: calc(50% - 150px);
	}

	.ves-megamenu li.level0 > a {
		padding-left: 10px;
		padding-right: 10px;
	}

}

@media (max-width: 1400px) {

	.ves-megamenu li.level0 > a {
		padding-left: 6px;
		padding-right: 6px;
	}

	.ves-megamenu li.level0 > a { font-size: 17px; }

}

@media (max-width: 1300px) {
	.logo-block .logo--nav {
		top: 30px;
		width: 150px;
	}

	.above-nav__left,
	.above-nav__right,
	.minicart-wrapper { top: 18px; }

	.page-wrapper { margin-top: 66px; }

		html[data-marquee] .page-wrapper { margin-top: 61px; }

		html[data-marquee] .page-wrapper.js-nav-fixed--prep { margin-top: 138px; }

	.homepage-wrapper .nav-sections { top: 61px; }
	.ves-megamenu li.level0 > a { font-size: 16px; }

	.above-nav__left,
	.above-nav__right,
	.nav--top-left,
	.nav--top-right {
		width: calc(50% - 110px);
	}
}

@media (max-width: 1200px) {

	.logo-block .logo--nav {
		top: 20px;
		width: 125px;
	}

	.above-nav__left,
	.above-nav__right,
	.minicart-wrapper { top: 14px; }

	.page-wrapper { margin-top: 52px; }

	.homepage-wrapper .nav-sections { top: 49px; }

	.above-nav__left,
	.above-nav__right,
	.nav--top-left,
	.nav--top-right {
		width: calc(50% - 90px);
	}

	.ves-megamenu li.level0 > a {
		padding-left: 4px;
		padding-right: 4px;
		font-size: 15px;
	}

}

@media (max-width: 1024px) {

	.logo-block--homepage { display: none }

	.highlight-banner-container { top: -27px; }

	.page-wrapper { margin-top: 101px; }

		html[data-marquee] .page-wrapper { margin-top: 84px; }

	.page-header {
		position: fixed;
		top: 0;
		margin-bottom: 0;
	}

		html[data-marquee] .page-header { top: 27px; }

		html[data-marquee] .page-layout-checkout .page-header { top: 0; }

	.homepage-wrapper .nav-sections { top: 151px; }
	.page-layout-checkout .page-wrapper { margin-top: 83px; }

	.logo-block { width: 125px; }

	.logo-block {
		float: left;
		position: relative;
		top: 0;
		left: 0;
		margin: 20px 20px 25px;
		-ms-transform: none;
		transform: none;
		-webkit-transform: none;
	}

	.logo-block .logo--mobile { top: 14px; }

	.nav-phone,
	.nav-shipping { display: none; }

	.header.content .nav-toggle {
		float: right;
		position: relative;
		left: 0;
		top: 45px;
		display: block !important;
		width: 28px;
		height: 28px;
		margin-right: 20px;
	}

	.page-layout-checkout .header.content .nav-toggle {
		top: 31px;
	}

	.header.content .nav-toggle:before { color: #262c3c !important; }

	.nav-open .header.content .nav-toggle:before {
		width: 28px;
		height: 28px;
		background-color: #262c3c;
		color: #fff !important;
		z-index: 1000;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
		transform: scale(1.5);
	}

	.above-nav__right,
	.minicart-wrapper {
		top: 43px;
		right: 20px;
	}

	.above-nav__right {width: calc(100% - 235px);
	}
	.minicart-wrapper { right: 168px; }

	.minicart-wrapper.active .block-minicart {
		top: 50px;
		right: -18px;
	}

	html.nav-before-open { overflow: hidden }
	.nav-before-open .page-wrapper { left: 0; }
	.nav-before-open .page-wrapper:not(.homepage-wrapper) { margin-top: 0; }
	/*.aw-rbslider-container { margin-top: 110px }*/
	.logo-block .logo--homepage { top: 0; }

	.logo-block .logo--homepage,
	.logo-block .logo--sticky { display: none; }

	.block-search .label { display: none; }

	.block-search input {
		position: relative;
		margin: 0;
	}

	.block-search .control {
		clear: none;
		width: 100%;
		margin: 0;
		padding: 0 10px;
		border: none;
	}

	.block-search .action.search > span { display: none; }
	.form.minisearch .actions { right: 120px; }
	.search-close-container { right: 10px; }

	/* Mobile menu */
	.nav-sections {
		position: fixed;
		top: 110px;
		left: 0;
		width: 100%;
		height: calc(100% - 98px);
		max-height: none;
		background-color: #fff;
		z-index: 50000 !important;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: all .175s ease-in-out;
		-o-transition: all .175s ease-in-out;
		transition: all .175s ease-in-out;
	}

	.nav-open .nav-toggle:after { display: none }
	.nav-before-open .nav-toggle:after {
		background: rgba(0, 0, 0, 0.5);
		content: '';
		display: block;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		z-index: -1;
	}

	.nav-before-open .nav-sections {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		-webkit-transition: all .35s ease-in-out;
		-o-transition: all .35s ease-in-out;
		transition: all .35s ease-in-out;
		overflow-y: scroll; /* Makes the mobile menu scrollable */
	}

	.zopim { z-index: 5000 !important; } /* Fix z-index issue with mobile menu */

	.nav--top-left,
	.nav--top-right {
		width: 100%;
		border-top: none;
	}

	.nav-sections-item-title,
	.nav-sections-item-content[id="store.links"] { display: none;	}
	.nav--top-right > .navigation > .ves-megamenu { text-align: left; }
	.nav--top-right .ves-megamenu .level0 { float: left; }
	.navigation .level0 { border-top: none; }

	.nav-sections-item-content {
		float: none;
		margin-top: 0;
		margin-left: 0;
	}

	.nav-sections .ves-menu .navigation .level0 > .submenu,
	.navigation .level0 .submenu { background-color: #f2f2f2; }

	.nav-mobile .nav-item.level1 { padding-right: 20px; }

	.ves-menu .navigation .level1 .row:not(:last-of-type) .nav-item a,
	.ves-menu .navigation .level0 .submenu a { border-bottom: 1px solid #e5e5e5; }

	.ves-menu .navigation .level1 .row:last-of-type .nav-item a { border-bottom: none; }
	.ves-menu .navigation .level0 .submenu a:not(:hover) { color: #262c3c !important; }

	.submenu.animated.dropdown-menu { border-bottom: 1px solid #e5e5e5; }

	.navigation .level0 .submenu { position: relative; }

	.ves-megamenu .opener,
	.ves-megamenu .opener.item-active { background-color: transparent; }

	.navigation .level0.active > a:not(.ui-state-active),
	.navigation .level0.has-active > a:not(.ui-state-active) { border-left: none; }

	.navigation .level0.active > a:not(.ui-state-active) span:not(.ui-menu-icon),
	.navigation .level0.has-active > a:not(.ui-state-active) span:not(.ui-menu-icon) { margin-left: 0; }

	.ves-megamenu .level0 {
		display: block;
		width: 100%;
	}

	.navigation li.level0:last-child { border-bottom: 1px solid #e5e5e5; }

	.nav-open .nav-toggle:before {
		content: '\e616';
		font-weight: bold;
	}

}

@media (max-width: 767px) {

	.minicart-wrapper,
	.block-search { margin-top: 0; }

	.page-wrapper { margin-top: 112px; }

	html[data-marquee] .page-wrapper { margin-top: 110px; }

}

@media (max-width: 600px) {
	.logo-block { width: 100px; }

	.page-wrapper { margin-top: 99px; }

		html[data-marquee] .page-wrapper { margin-top: 88px; }

		html[data-marquee] .page-layout-checkout .page-wrapper { margin-top: 61px; }

	.highlight-banner {
		padding-top: 0;
		padding-bottom: 0;
		font-size: 12px;
		line-height: 44px;
	}

	.nav-sections,
	.homepage-wrapper .nav-sections { top: 98px; }

	.page-layout-checkout .logo-block {
		width: 400px;
		height: 26px;
	}

	.page-layout-checkout .page-wrapper { margin-top: 66px; }
	.header.content .nav-toggle { top: 37px; }

	.page-layout-checkout .header.content .nav-toggle {
		top: 23px;
	}

	.above-nav__right,
	.minicart-wrapper { top: 35px; }

	.nav-cart-placeholder,
	.nav-wishlist-wrapper,
	.nav-search,
	.minicart-wrapper .action.showcart { margin-left: 0px; }

	.minicart-wrapper { right: 138px; }

	.minicart-wrapper.active .ui-widget {
		position: fixed;
		top: 148px;
		left: 12px;width: calc(100% - 24px);
	}

	.minicart-wrapper.active .block-minicart {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}

	.minicart-wrapper .block-minicart:before { right: 128px; }
	.minicart-wrapper .block-minicart:after { right: 127px; }

	.above-nav__right {
		right: 10px;
		width: calc(100% - 230px);
	}

	.aw-rbslider-container { margin-top: 98px }

	.block-search input {
		padding: 15px 60px 15px 20px;
		border-width: 35px !important;
	}

	.form.minisearch .actions { right: 60px; }
	.search-close-container {top: calc(50% - 115px);
	}
}

@media (max-width: 500px) {

	.page-layout-checkout .logo-block {
		width: 320px;
	}

	.page-layout-checkout .header.content .nav-toggle {
		top: 23px;
	}

}

@media (max-width: 420px) {

	.logo-block {
		margin-left: 0;
		margin-right: 10px;
	}

	.logo-block img { width: 100px; }

	.logo-block img.logo--checkout { width: auto; }

	.header.content .nav-toggle { margin-right: 0; }

	.minicart-wrapper { right: 118px; }

	.minicart-wrapper .block-minicart:before { right: 108px; }
	.minicart-wrapper .block-minicart:after { right: 107px; }

	.above-nav__right {width: calc(100% - 160px);
	}

}

@media (max-width: 380px) {

	.page-layout-checkout .logo-block {
		width: 250px;
	}

}

@media (min-width: 1025px) {

	.js-nav-fixed--prep .highlight-banner-container,
	.js-nav-fixed--prep .header.content { z-index: 9999; }

	.js-nav-fixed--prep .header.content,
	.js-nav-fixed--prep .nav-sections,
	.js-nav-fixed--prep .highlight-banner-container {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		-webkit-transform: translateY(-300px);-ms-transform: translateY(-300px);transform: translateY(-300px);
	}

	.js-nav-fixed--shift .header.content,
	.js-nav-fixed--shift .nav-sections,
	.js-nav-fixed--shift .highlight-banner-container {
		-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);
		-webkit-transition: all .6s ease-in-out;
		-o-transition: all .6s ease-in-out;
		transition: all .6s ease-in-out;
	}

	.js-nav-fixed--shift .header.content { top: 0; }

		html[data-marquee] .js-nav-fixed--shift .header.content { top: 36px; } /*for marquee { top: 50px; }*/

	.js-nav-fixed--shift .nav-sections { top: 48px; }

		html[data-marquee] .js-nav-fixed--shift .nav-sections { top: 84px; } /*for marquee { top: 98px; }*/

	.js-nav-fixed--prep .nav-sections {
		border-bottom: 1px solid #d0ba76;
		background-color: #fff;
	}

	.js-nav-fixed--prep .logo--nav { display: none }

	.js-nav-fixed--prep .logo--sticky {
		position: relative;
		top: 29px;
		display: block;
		width: 125px !important;
		height: auto !important;
		visibility: visible !important;
	}

	.js-nav-fixed--prep .ves-megamenu li.level0 > a:not(:hover),
	.js-nav-fixed--prep .nav-phone,
	.js-nav-fixed--prep .nav-wishlist:before,
	.js-nav-fixed--prep .nav-search:before,
	.js-nav-fixed--prep .minicart-wrapper .action.showcart:before { color: #262c3c !important; }

	.js-nav-fixed--prep .ves-megamenu li.level0 > a { padding-bottom: 23px; } /* Fix hover issue */

	.js-nav-fixed--prep .header.content {
		height: 48px;
		background-color: #fff;
	}

	.js-nav-fixed--prep .header.content:before,
	.js-nav-fixed--prep .header.content:after { /* Fix for max-width issue */
		content: '';
		position: absolute;
		top: 0;
		width: 100%;
		height: 109px;
		background-color: #fff;
		border-bottom: 1px solid #d0ba76;
	}

	.js-nav-fixed--prep .header.content:before { left: -98.5%; }
	.js-nav-fixed--prep .header.content:after { right: -100%; }

}

@media (min-width: 1200px) {

	.js-nav-fixed--prep .header.content:before,
	.js-nav-fixed--prep .header.content:after {
		height: 122px;
	}

}

@media (min-width: 1301px) {

	.js-nav-fixed--prep .above-nav__left,
	.js-nav-fixed--prep .above-nav__right,
	.js-nav-fixed--prep .minicart-wrapper { top: 15px; }

	.js-nav-fixed--prep .logo--sticky {
		top: 15px;
		width: 160px !important;
	}

}

@media (min-width: 768px) and (max-width: 1024px) {

	.nav-sections-item-content.section-item-content > .nav--top-left,
	.nav-sections-item-content.section-item-content > .nav--top-right { display: block; }

	.nav-sections-item-content { padding: 25px 0; }
	.navigation .submenu:not(:first-child) { top: auto !important; }
	.ves-megamenu .level1.nav-dropdown { background-color: #f2f2f2; }

}

.aw-rbslider-container.banner_home_menu_bottom {
	border-top: 2px solid rgb(193, 165, 102);
	display: none !important;
	position: relative;
}

.aw-rbslider-container.banner_home_menu_top .uk-slideshow > li > div {
	width: 100%;
	margin: 0;
}

.aw-rbslider-container.banner_home_menu_top:not(.hidden) .uk-slideshow > li > div > a,
.aw-rbslider-container.banner_home_menu_top:not(.hidden) .uk-slideshow > li > div > a > .aw-rbslider__img {
	display: block;
	width: 100%;
}

.amscroll-navbar {
	right: 320px;
	bottom: 0;
	width: 120px;
	margin: auto;
	padding: 5px 20px;
	font-size: 14px;
	letter-spacing: .1em;
	background-color: #c1a566 !important;
}

.amscroll-navbar a {
	width: 20px;
	height: 20px;
	top: 8px;
	right: 14px;
	background-size: cover;
}

.amscroll-load-button {
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: normal;
}

.uk-dotnav {
	display: block !important;
	margin: 0 auto;
	text-align: center;
}

.uk-dotnav > * {
	float: none;
	display: inline-block;
}

.uk-dotnav-contrast > * > * {
	-webkit-box-shadow: none;
	        box-shadow: none;
	height: 8px;
	width: 8px;
}

.uk-dotnav > .uk-active > * {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

@media (min-width: 769px) {
	.aw-rbslider-container.banner_home_menu_bottom:not(.hidden) { display: block !important }
	.aw-rbslider-container.banner_home_menu_top { display: none !important }
}

@media (max-width: 768px) {

	.amscroll-navbar {
		left: 12px;
		right: auto;
		width: auto;
	}

	.amscroll-navbar a { right: 10px; }
}

@media (max-width: 420px) {

	.amscroll-navbar { width: auto; }
	.amscroll-navbar-text	{ display: none; }

}

.page.messages {
	margin: 10px 12px;
	text-align: center;
}

.page.messages .message > *:first-child:before {
	position: relative !important;
	top: 0 !important;
	left: auto !important;
	margin-top: 0 !important;
	-webkit-transform: none !important;
	    -ms-transform: none !important;
	        transform: none !important;
}

@media (min-width: 1025px) {
	.page.messages {
		margin-left: calc(12px + 8.33333333%);
		margin-right: calc(12px + 8.33333333%);
	}
}

.extra-info__social .social-icons {
	margin-top: 20px;
	padding-left: 0;
	text-align: center;
	list-style-type: none;
}

.extra-info__social .social-icons li {
	display: inline-block;
}

.extra-info__social .social-icons li a {
	display: inline-block;
	height: 40px;
	width: 40px;
	margin-right: 6px;
	margin-bottom: 0;
	padding-top: 8px;
	font-size: 20px;
	text-align: center;
	background-color: #c1a566;
	border: 1px solid #c1a566;
}

.extra-info__social .social-icons li a:hover { background-color: #fff; }

.extra-info__social .social-icons li a:before { color: #fff; }
.extra-info__social .social-icons li a:hover:before { color: #c1a566; }

.extra-info__social .social-icons li a,
.extra-info__social .social-icons li a:before {
	-webkit-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}

.extra-info__social-heading {
	text-align: center;
}

.extra-info__social .st-btn {
	display: inline-block !important;
	height: 40px !important;
	background-color: #262c3c !important;
}

.extra-info__social .st-btn:hover {
	opacity: 1 !important;
	background-color: #c1a566 !important;
	top: 0 !important;
}

.extra-info__social .st-btn svg {
	width: 24px !important;
	height: 24px !important;
}

@media (min-width: 600px) {

	.extra-info__social .social-icons li a {
		font-size: 30px;
		margin-right: 12px;
		padding-top: 14px;
		height: 60px;
		width: 60px;
	}

}

.header.panel > .header.links { display: none }

.shop-safe {
	max-width: 300px;
	margin: 25px auto 30px;
	text-align: center;
}

.shop-safe__img-container { width: 100%; }

.shop-safe__img {
	display: block;
	margin-bottom: 5px;
}

.shop-safe__text {
	font-size: 12px;
	line-height: 1.3;
}

.product-item-photo,
.product-hover-photo { margin-bottom: 15px; }

.product-hover-photo {
	position: relative;
	text-align: center;
}

.need-help {
	clear: both;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .1em;
}

.need-help--contact-us {
	max-width: none;
	text-align: left;
	padding-top: 0;
}

.need-help__headline { margin-bottom: 5px; }

.need-help__link {
	display: inline-block;
	margin-left: 12px;
	margin-right: 12px;
	font-size: 14px;
}

.need-help__link:before {
	font-family: 'icomoon';
	margin-right: 5px;
	color: #c1a566;
}

.need-help__link:first-of-type:before { content: '\e911'; }
.need-help__link:nth-of-type(2):before { content: '\e912'; }
.need-help__link:last-of-type:before { content: '\e904'; }

.product-print {
	border-top: 1px solid #c5c6ca;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 14px;
	letter-spacing: .1em;
	text-transform: uppercase;
}


@media (min-width: 1025px) {
	.attr-label {
		font-size: 10px;
	}
}

@media (min-width: 1100px) {
	.attr-label {
		font-size: 12px;
	}
}

@media (min-width: 1200px) {
	.attr-label {
		font-size: 10px;
	}
}

@media (min-width: 1360px) {
	.attr-label {
		font-size: 12px;
	}
}

@media (min-width: 1700px) {
	.attr-label {
		font-size: 16px;
	}
}

#shopping-cart-table .action {
	color: #c1a566 !important;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: 'PT Serif', sans-serif;
	font-weight: normal;
	border-radius: 0;
	border: none;
	background-color: transparent;
	padding-top: 0;
}

#shopping-cart-table .action:hover,
#shopping-cart-table .action:focus,
#shopping-cart-table .action:active {
	color: #c1a566 !important;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
}

.products-grid.wishlist .field.qty,
.products-grid.wishlist .product-item-actions .edit { display: none }

.products-grid.wishlist .product-item-actions .btn-remove {
	text-transform: uppercase;
	letter-spacing: .1em;
}

.products-grid.wishlist .product-item-actions { width: 100%; }

.products-grid.wishlist .product-item-actions .actions-primary {
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
}

.table-totals {
	border-top: 1px solid #c1a566 !important;
	border-bottom: 1px solid #c1a566 !important;
}

.grand.totals { border-top: 1px solid #c1a566; }

.cart-totals .mark strong,
.opc-block-summary .table-totals .mark strong,
.grand.totals .amount .price {
	font-weight: 700;
	font-size: 18px;
}

.opc-block-summary .mark .value {
	font-size: 13px;
	line-height: 1;
}

.opc-block-summary .table-totals .grand .mark,
.opc-block-summary .table-totals .grand .amount { padding: 20px 0; }

.opc-block-summary .minicart-items-wrapper {
	padding-right: 0;
	padding-bottom: 15px;
}

.opc-block-summary .table-totals .totals.sub .mark,
.opc-block-summary .table-totals .totals.sub .amount { padding: 20px 0 5px; }

.opc-block-summary .table-totals .totals.shipping .mark,
.opc-block-summary .table-totals .totals.shipping .amount { padding: 5px 0 20px; }

.toolbar-products .pages {
	width: 100%;
}

/* Cross Sell Area */

.checkout-cart-index .column.main .block.crosssell { background: none; }

.checkout-cart-index .column.main .block.crosssell .product-item-info { width: auto; }

.checkout-cart-index .column.main .block.crosssell .title:before {
    content: 'You may also like';
}

.checkout-cart-index .column.main .block.crosssell .title span { display: none; }

.checkout-cart-index .column.main .block.crosssell .title { margin: 0; }

.checkout-cart-index .column.main .block.crosssell .products-grid {
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-cart-index .column.main .block.crosssell .products {
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {

    .checkout-cart-index .column.main .block.crosssell .title {
        font-size: 24px;
        margin-top: 60px;
        margin-bottom: 10px;
    }

}

@media (min-width: 1025px) {

    .checkout-cart-index .column.main .block.crosssell .title {
        font-size: 30px;
        margin-top: 120px;
        margin-bottom: 10px;
        padding-top: 0;
    }

}

@media (max-width: 1199px) and (min-width: 1025px) {

    .checkout-cart-index .column.main .block.crosssell .product-item-name { font-size: 19px; }

}

@media (max-width: 1199px) and (min-width: 600px) {

    .checkout-cart-index .column.main .block.crosssell .action.primary { font-size: 14px !important; }

}


.nav-wishlist-hover {
	position: absolute;
	right: -20px;
	top: 34px;
	display: none;
	width: 388px;
	padding: 30px 30px 25px;
	background-color: #fff;
	color: #262c3c !important;
	text-align: left;
	border: 1px solid #c1a566;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}

.nav-wishlist-hover:after {
	content: '';
	position: absolute;
	top: -5px;
	right: 29px;
	display: block;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border: 1px solid #fff;
	border-left-color: #c1a566;
	border-top-color: #c1a566;
	-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);
}

@media (max-width: 1024px) {

	.nav-wishlist-hover:before {
		content: '\e932';
		position: absolute;
		right: 5px;
		top: 5px;
		font-size: 12px;
		padding: 10px;
	}

}

.nav-wishlist-hover p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.6;
}

.nav-wishlist-hover strong {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 8px;
	font-size: 16px;
	color: #c1a566 !important;
	text-transform: uppercase;
	letter-spacing: .1em;
	border-bottom: 1px solid #f1ead6;
}

.nav-wishlist-wrapper:hover .nav-wishlist-hover { display: block; }

@media (max-width: 1024px) {
	.nav-wishlist-hover { top: 54px; }

	.nav-wishlist-wrapper:hover .nav-wishlist-hover { display: none; }
}

@media (max-width: 600px) {
	.nav-wishlist-hover {
		top: 63px;
		right: -92px;
		width: 90vw;
	}

	.nav-wishlist-hover:after { right: 99px; }
}

@media (max-width: 420px) {
	.nav-wishlist-hover { right: -72px; }
	.nav-wishlist-hover:after { right: 79px; }
}

.mteo-theme-default select,
.mteo-theme-default label,
.mteo-theme-default input,
.mteo-theme-default a,
.mteo-theme-default { font-family: 'PT Serif', sans-serif; }

.mteo-theme-default .mteo-popup-close { background: none; }
.mteo-theme-default .mteo-popup-close:before {
	content: '\e616';
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: 'icons-blank-theme';
	font-size: 30px;
	-webkit-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);transform: translate(-50%,-50%);
}

.mteo-theme-default .mteo-form-with-additional#mteo_subcription_form {
	padding: 60px 25px 35px;
}

.mteo-theme-default .mteo-form-with-additional .mteo-subscribe {
	width: 100%;
	margin: 30px 0 0;
}

.checkout-option {
	position: relative;
	display: block;
	margin-right: 20px;
	padding-left: 35px;
	text-align: left;
}

.checkout-option .iradio:before {
	content: '';
	position: absolute;
	top: 6px;
	left: 16px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1px solid #262c3c;
}

.checkout-option .iradio:after {
	content: '';
	position: absolute;
	top: 9px;
	left: 19px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #262c3c;
	-webkit-transform: scale(0);-ms-transform: scale(0);transform: scale(0);
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;-o-transition: all .3s ease-in-out;transition: all .3s ease-in-out;
}

.checkout-option:hover .iradio:after {
	opacity: .5;
	-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);
}

.checkout-option .iradio.checked:after {
	opacity: 1;
	-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);
}

.checkout-option .mteo-additional-field {
	position: absolute;
	top: 6px;
	left: 10px;
	width: 13px !important;
	height: 13px !important;
	margin: 0 10px 0 0 !important;
	padding: 5px;
}

.checkout-additional-text { margin-top: 20px; }

.checkout-customer-info-container .mteo-additional-field,
.checkout-customer-info-container .mt-validator-email { width: 100% !important; }

.iradio {
	position: absolute !important;
	left: 0 !important;
	top: 1px !important;
}

.btn--read {
	position: relative;
	width: 275px !important;
	margin: 25px auto 25px;
	text-align: center;
}

.btn--readmore:after {
	content: '';
	position: absolute;
	bottom: 100%;
	left: calc(-50vw + 50%); /* I AM A BEAST! */
	width: 100vw;
	height: 75px;
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),color-stop(50%, rgba(255,255,255,1)),to(rgba(255,255,255,1)));
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}


/*------------------------------------*\
Trumps
\*------------------------------------*/


/*magento overrides remove me eventually delete me later LESS*/
.navigation,
.breadcrumbs,
.page-header .header.panel,
.header.content,
.footer.content,
.page-wrapper > .widget,
.page-wrapper > .page-bottom,
.block.category.event,
.top-container,
.page-main{
	max-width: 100%;
	padding: 0px;
}

.columns .column.main{
	padding-bottom: 0;
}

.page-footer{
	display: none;
}

.abs-margin-for-forms-desktop,
.fieldset .legend, .column:not(.sidebar-main) form .actions-toolbar,
.column:not(.sidebar-additional) form .actions-toolbar,
.login-container .fieldset:after{
	margin-left: 0 !important;
}

.form.password.reset,
.form.send.confirmation,
.form.password.forget,
.form.create.account{
	min-width: auto !important;
	width: auto !important;
}

.form.password.forget {
	margin-left: 12px;
	margin-right: 12px;
}


@media (max-width: 1024px) {
	.form.password.forget {
		margin-left: calc(8.33333333% + 12px);
		margin-right: calc(8.33333333% + 12px);
	}
}

@media (min-width: 1025px) {
	.customer-account-forgotpassword .main-content {
		position: relative;
		overflow: hidden;
	}

	.customer-account-forgotpassword .main-content:before {
		content: '';
		position: absolute;
		top: 50px;
		right: -25px;
		display: block;
		width: 50%;
		height: 100%;
		background-image: url('/media/wysiwyg/password.jpg');
		background-size: cover;
	}

	.form.password.forget { margin-left: calc(8.33333333% + 12px); }
}



.column.main .block {
	clear: none !important;
	float: none !important;
	width: auto !important;
}

.account.page-layout-2columns-left .column.main,
.account.page-layout-2columns-left .sidebar-main,
.account.page-layout-2columns-left .sidebar-additional,
.abs-blocks-2columns,
.login-container .block,
.block-addresses-list .items.addresses > .item,
.magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
[class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
.sales-guest-view .column.main .block:not(.widget) .block-content .box {
	width: auto !important;
	float: none !important;
}

.page-layout-2columns-left .column.main,
.page-layout-2columns-left .sidebar-additional{
	width: auto !important;
	float: none !important;
}

/*.page-layout-2columns-left .sidebar-additional{
padding: 0 !important;
}*/

.login-container .block:nth-child(even),
.block-addresses-list .items.addresses > .item:nth-child(even),
.magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
[class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(even),
.sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(even){
	float: none !important;
	width: auto !important;
}

.block,
.sidebar .widget.block:not(:last-child),
.sidebar .widget:not(:last-child),
.block-banners,
.block-banners-inline,
.category-image,
.category-description{
	margin-bottom: 0 !important;
}

.account .page.messages {
	margin-bottom: 0 !important;
}

.account .page-title-wrapper .page-title,
[class^='sales-guest-'] .page-title-wrapper .page-title,
.sales-guest-view .page-title-wrapper .page-title{
	margin-right: 0 !important
}

.account-nav .item{
	margin: 0 !important
}

.account-nav .item.current a,
.account-nav .item.current strong {
	border: none !important;
	/*font-weight: normal !important;*/
}

.account-nav .item a, .account-nav .item > strong{
	padding: 0!important;
}

.account-nav .item a:hover {
	background: none !important;
}


.product.data.items > .item.content {
	background: #ffffff;
	border: none !important;
	margin: 0 !important;
	padding:0 !important;
}

.checkout-shipping-method .actions-toolbar > .primary{
	float: none !important
}

.opc-block-summary {
	background: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/**
 * SLIDER
 */
.owl-carousel .owl-stage-outer {
  padding: 0;
}
.owl-carousel .banner-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1024px) {
  .owl-carousel .banner-item .banner-video .fluid-width-video-wrapper {
    padding-top: 84.64% !important;
  }
}
@media (min-width: 1025px) {
  .owl-carousel .banner-item .banner-video .fluid-width-video-wrapper {
    padding-top: 44.29% !important;
  }
}
.owl-carousel .owl-dots {
  bottom: 40px !important;
  /* To prevent overlap with Youtube videos */
}
.owl-carousel .owl-dots .owl-dot span {
  background-color: #fff !important;
  border: none !important;
  opacity: .35 !important;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #fff !important;
  border: none !important;
  opacity: 1 !important;
}



/*End Delete*/

@-ms-viewport { width: device-width; }


/**
* Images
*/

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-rounded { border-radius: 6px !important; }
.img-circle  { border-radius: 50% !important; }
.img-square  { border-radius: 0   !important; }


/**
* Visiblity
*/

.show { display: block !important; }

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none !important; }

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 599px) {
	.visible-xxs      { display: block !important; }
	table.visible-xxs { display: table; }
	tr.visible-xxs    { display: table-row !important; }
	th.visible-xxs,
	td.visible-xxs    { display: table-cell !important; }

	.visible-xxs-block        { display: block !important; }
	.visible-xxs-inline       { display: inline !important; }
	.visible-xxs-inline-block { display: inline-block !important; }
}


@media (min-width: 600px) and (max-width: 767px) {
	.visible-xs      { display: block !important; }
	table.visible-xs { display: table; }
	tr.visible-xs    { display: table-row !important; }
	th.visible-xs,
	td.visible-xs    { display: table-cell !important; }

	.visible-xs-block        { display: block !important; }
	.visible-xs-inline       { display: inline !important; }
	.visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.visible-sm      { display: block !important; }
	table.visible-sm { display: table; }
	tr.visible-sm    { display: table-row !important; }
	th.visible-sm,
	td.visible-sm    { display: table-cell !important; }

	.visible-sm-block        { display: block !important; }
	.visible-sm-inline       { display: inline !important; }
	.visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.visible-md      { display: block !important; }
	table.visible-md { display: table; }
	tr.visible-md    { display: table-row !important; }
	th.visible-md,
	td.visible-md    { display: table-cell !important; }

	.visible-md-block        { display: block !important; }
	.visible-md-inline       { display: inline !important; }
	.visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1200px) {
	.visible-lg      { display: block !important; }
	table.visible-lg { display: table; }
	tr.visible-lg    {  display: table-row !important; }
	th.visible-lg,
	td.visible-lg    { display: table-cell !important; }

	.visible-lg-block        { display: block !important; }
	.visible-lg-inline       { display: inline !important; }
	.visible-lg-inline-block { display: inline-block !important; }
}


/**
* Hiding
*/

.hide,
.hidden-xxs-up { display: none !important; }
.hidden       { display: none !important; visibility: hidden !important; }
.invisible    { visibility: hidden !important; }
.text-hide    {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

@media (max-width: 599px) {
	.hidden-xxs { display: none !important; }
}

@media (min-width: 600px) {
	.hidden-xs-up { display: none !important; }
}

@media (min-width: 600px) and (max-width: 767px) {
	.hidden-xs { display: none !important; }
}

@media (max-width: 767px) {
	.hidden-xs-down { display: none !important; }
}

@media (min-width: 768px) {
	.hidden-sm-up { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hidden-sm { display: none !important; }
}

@media (max-width: 1024px) {
	.hidden-sm-down { display: none !important; }
}

@media (min-width: 1025px) {
	.hidden-md-up { display: none !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.hidden-md { display: none !important; }
}

@media (max-width: 1199px) {
	.hidden-md-down { display: none !important; }
}

@media (min-width: 1200px) {
	.hidden-lg { display: none !important; }
}




/**
* Screen Readers
*/

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}


/**
* Print
*/

.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block { display: none !important; }

@media print {
	.visible-print      { display: block !important; }
	table.visible-print { display: table; }
	tr.visible-print    { display: table-row !important; }
	th.visible-print,
	td.visible-print    { display: table-cell !important; }

	.visible-print-block        { display: block !important; }
	.visible-print-inline       { display: inline !important; }
	.visible-print-inline-block { display: inline-block !important; }

	.hidden-print { display: none !important; }

}



/*
** Clears
*/
.clear-left    { clear: left !important; }
.clear-right   { clear: right !important; }
.clear-both    { clear: both !important; }
.clear-contain { overflow: hidden !important; }


/**
* Text alignment
*/
.text-left     { text-align:left  !important; }
.text-center   { text-align:center!important; }
.text-right    { text-align:right !important; }
.large 				 { font-size: 20px; }

/**
* Borders
*/
.border-top    { border-top:       1px solid #eee }
.border-bottom { border-bottom:    1px solid #eee }
.border-left   { border-left:      1px solid #eee }
.border-right  { border-right:     1px solid #eee }
.border-all    { border:           1px solid #eee }


/**
* Positioning
*/

.affix-top    { position: fixed!important; top:    0!important; }
.affix-bottom { position: fixed!important; bottom: 0!important; }
.affix-left   { position: fixed!important; left:   0!important; }
.affix-right  { position: fixed!important; right:  0!important; }

.pull-right { float: right!important; }
.pull-left  { float: left !important; }

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythm */

/**
* Add/remove margins
*/

.push           { margin:       24px !important; }
.push-top      { margin-top:   24px !important; }
.push-right    { margin-right: 24px !important; }
.push-bottom   { margin-bottom:24px !important; }
.push-left     { margin-left:  24px !important; }
.push-ends     { margin-top:   24px !important; margin-bottom:24px !important; }
.push-sides    { margin-right: 24px !important; margin-left:  24px !important; }

.push-double          { margin:       48px !important; }
.push-double-top     { margin-top:   48px !important; }
.push-double-right   { margin-right: 48px !important; }
.push-double-bottom  { margin-bottom:48px !important; }
.push-double-left    { margin-left:  48px !important; }
.push-double-ends    { margin-top:   48px !important; margin-bottom:48px !important; }
.push-double-sides   { margin-right: 48px !important; margin-left:  48px !important; }

.push-half          { margin:       12px !important; }
.push-half-top     { margin-top:   12px !important; }
.push-half-right   { margin-right: 12px !important; }
.push-half-bottom  { margin-bottom:12px !important; }
.push-half-left    { margin-left:  12px !important; }
.push-half-ends    { margin-top:   12px !important; margin-bottom:12px !important; }
.push-half-sides   { margin-right: 12px !important; margin-left:  12px !important; }

.flush          { margin:       0px !important; }
.flush-top     { margin-top:   0px !important; }
.flush-right   { margin-right: 0px !important; }
.flush-bottom  { margin-bottom:0px !important; }
.flush-left    { margin-left:  0px !important; }
.flush-ends    { margin-top:   0px !important; margin-bottom:0px !important; }
.flush-sides   { margin-right: 0px !important; margin-left:  0px !important; }


/**
* Add/remove paddings
*/
.soft           { padding:       24px !important; }
.soft-top      { padding-top:   24px !important; }
.soft-right    { padding-right: 24px !important; }
.soft-bottom   { padding-bottom:24px !important; }
.soft-left     { padding-left:  24px !important; }
.soft-ends     { padding-top:   24px !important; padding-bottom:24px !important; }
.soft-sides    { padding-right: 24px !important; padding-left:  24px !important; }

.soft-half           { padding:       12px !important; }
.soft-half-top      { padding-top:   12px !important; }
.soft-half-right    { padding-right: 12px !important; }
.soft-half-bottom   { padding-bottom:12px !important; }
.soft-half-left     { padding-left:  12px !important; }
.soft-half-ends     { padding-top:   12px !important; padding-bottom:12px !important; }
.soft-half-sides    { padding-right: 12px !important; padding-left:  12px !important; }

.hard           { padding:       0px !important; }
.hard-top      { padding-top:   0px !important; }
.hard-right    { padding-right: 0px !important; }
.hard-bottom   { padding-bottom:0px !important; }
.hard-left     { padding-left:  0px !important; }
.hard-ends     { padding-top:   0px !important; padding-bottom:0px !important; }
.hard-sides    { padding-right: 0px !important; padding-left:  0px !important; }


@media (min-width:600px) {

	.flush-xs          { margin:       0px !important; }
	.flush-xs-top     { margin-top:   0px !important; }
	.flush-xs-right   { margin-right: 0px !important; }
	.flush-xs-bottom  { margin-bottom:0px !important; }
	.flush-xs-left    { margin-left:  0px !important; }
	.flush-xs-ends    { margin-top:   0px !important; margin-bottom:0px !important; }
	.flush-xs-sides   { margin-right: 0px !important; margin-left:  0px !important; }

	.push-xs           { margin:       24px !important; }
	.push-xs-top      { margin-top:   24px !important; }
	.push-xs-right    { margin-right: 24px !important; }
	.push-xs-bottom   { margin-bottom:24px !important; }
	.push-xs-left     { margin-left:  24px !important; }
	.push-xs-ends     { margin-top:   24px !important; margin-bottom:24px !important; }
	.push-xs-sides    { margin-right: 24px !important; margin-left:  24px !important; }

	.push-half-xs          { margin:       12px !important; }
	.push-half-xs-top     { margin-top:   12px !important; }
	.push-half-xs-right   { margin-right: 12px !important; }
	.push-half-xs-bottom  { margin-bottom:12px !important; }
	.push-half-xs-left    { margin-left:  12px !important; }
	.push-half-xs-ends    { margin-top:   12px !important; margin-bottom:12px !important; }
	.push-half-xs-sides   { margin-right: 12px !important; margin-left:  12px !important; }

	.push-double-xs          { margin:       48px !important; }
	.push-double-xs-top     { margin-top:   48px !important; }
	.push-double-xs-right   { margin-right: 48px !important; }
	.push-double-xs-bottom  { margin-bottom:48px !important; }
	.push-double-xs-left    { margin-left:  48px !important; }
	.push-double-xs-ends    { margin-top:   48px !important; margin-bottom:48px !important; }
	.push-double-xs-sides   { margin-right: 48px !important; margin-left:  48px !important; }

	.push-triple-xs          { margin:       72px !important; }
	.push-triple-xs-top     { margin-top:   72px !important; }
	.push-triple-xs-right   { margin-right: 72px !important; }
	.push-triple-xs-bottom  { margin-bottom:72px !important; }
	.push-triple-xs-left    { margin-left:  72px !important; }
	.push-triple-xs-ends    { margin-top:   72px !important; margin-bottom:72px !important; }
	.push-triple-xs-sides   { margin-right: 72px !important; margin-left:  72px !important; }

	.soft-xs           { padding:       24px !important; }
	.soft-xs-top      { padding-top:   24px !important; }
	.soft-xs-right    { padding-right: 24px !important; }
	.soft-xs-bottom   { padding-bottom:24px !important; }
	.soft-xs-left     { padding-left:  24px !important; }
	.soft-xs-ends     { padding-top:   24px !important; padding-bottom:24px !important; }
	.soft-xs-sides    { padding-right: 24px !important; padding-left:  24px !important; }

	.soft-half-xs           { padding:       12px !important; }
	.soft-half-xs-top      { padding-top:   12px !important; }
	.soft-half-xs-right    { padding-right: 12px !important; }
	.soft-half-xs-bottom   { padding-bottom:12px !important; }
	.soft-half-xs-left     { padding-left:  12px !important; }
	.soft-half-xs-ends     { padding-top:   12px !important; padding-bottom:12px !important; }
	.soft-half-xs-sides    { padding-right: 12px !important; padding-left:  12px !important; }

	.soft-double-xs           { padding:       48px !important; }
	.soft-double-xs-top      { padding-top:   48px !important; }
	.soft-double-xs-right    { padding-right: 48px !important; }
	.soft-double-xs-bottom   { padding-bottom:48px !important; }
	.soft-double-xs-left     { padding-left:  48px !important; }
	.soft-double-xs-ends     { padding-top:   48px !important; padding-bottom:48px !important; }
	.soft-double-xs-sides    { padding-right: 48px !important; padding-left:  48px !important; }

	.soft-triple-xs           { padding:       72px !important; }
	.soft-triple-xs-top      { padding-top:   72px !important; }
	.soft-triple-xs-right    { padding-right: 72px !important; }
	.soft-triple-xs-bottom   { padding-bottom:72px !important; }
	.soft-triple-xs-left     { padding-left:  72px !important; }
	.soft-triple-xs-ends     { padding-top:   72px !important; padding-bottom:72px !important; }
	.soft-triple-xs-sides    { padding-right: 72px !important; padding-left:  72px !important; }

	.hard-xs           { padding:       0px !important; }
	.hard-xs-top      { padding-top:   0px !important; }
	.hard-xs-right    { padding-right: 0px !important; }
	.hard-xs-bottom   { padding-bottom:0px !important; }
	.hard-xs-left     { padding-left:  0px !important; }
	.hard-xs-ends     { padding-top:   0px !important; padding-bottom:0px !important; }
	.hard-xs-sides    { padding-right: 0px !important; padding-left:  0px !important; }

}

@media (min-width:768px) {

	.flush-sm          { margin:       0px !important; }
	.flush-sm-top     { margin-top:   0px !important; }
	.flush-sm-right   { margin-right: 0px !important; }
	.flush-sm-bottom  { margin-bottom:0px !important; }
	.flush-sm-left    { margin-left:  0px !important; }
	.flush-sm-ends    { margin-top:   0px !important; margin-bottom:0px !important; }
	.flush-sm-sides   { margin-right: 0px !important; margin-left:  0px !important; }

	.push-sm           { margin:       24px !important; }
	.push-sm-top      { margin-top:   24px !important; }
	.push-sm-right    { margin-right: 24px !important; }
	.push-sm-bottom   { margin-bottom:24px !important; }
	.push-sm-left     { margin-left:  24px !important; }
	.push-sm-ends     { margin-top:   24px !important; margin-bottom:24px !important; }
	.push-sm-sides    { margin-right: 24px !important; margin-left:  24px !important; }

	.push-half-sm          { margin:       12px !important; }
	.push-half-sm-top     { margin-top:   12px !important; }
	.push-half-sm-right   { margin-right: 12px !important; }
	.push-half-sm-bottom  { margin-bottom:12px !important; }
	.push-half-sm-left    { margin-left:  12px !important; }
	.push-half-sm-ends    { margin-top:   12px !important; margin-bottom:12px !important; }
	.push-half-sm-sides   { margin-right: 12px !important; margin-left:  12px !important; }

	.push-double-sm          { margin:       48px !important; }
	.push-double-sm-top     { margin-top:   48px !important; }
	.push-double-sm-right   { margin-right: 48px !important; }
	.push-double-sm-bottom  { margin-bottom:48px !important; }
	.push-double-sm-left    { margin-left:  48px !important; }
	.push-double-sm-ends    { margin-top:   48px !important; margin-bottom:48px !important; }
	.push-double-sm-sides   { margin-right: 48px !important; margin-left:  48px !important; }

	.push-triple-sm          { margin:       72px !important; }
	.push-triple-sm-top     { margin-top:   72px !important; }
	.push-triple-sm-right   { margin-right: 72px !important; }
	.push-triple-sm-bottom  { margin-bottom:72px !important; }
	.push-triple-sm-left    { margin-left:  72px !important; }
	.push-triple-sm-ends    { margin-top:   72px !important; margin-bottom:72px !important; }
	.push-triple-sm-sides   { margin-right: 72px !important; margin-left:  72px !important; }

	.soft-sm           { padding:       24px !important; }
	.soft-sm-top      { padding-top:   24px !important; }
	.soft-sm-right    { padding-right: 24px !important; }
	.soft-sm-bottom   { padding-bottom:24px !important; }
	.soft-sm-left     { padding-left:  24px !important; }
	.soft-sm-ends     { padding-top:   24px !important; padding-bottom:24px !important; }
	.soft-sm-sides    { padding-right: 24px !important; padding-left:  24px !important; }

	.soft-half-sm           { padding:       12px !important; }
	.soft-half-sm-top      { padding-top:   12px !important; }
	.soft-half-sm-right    { padding-right: 12px !important; }
	.soft-half-sm-bottom   { padding-bottom:12px !important; }
	.soft-half-sm-left     { padding-left:  12px !important; }
	.soft-half-sm-ends     { padding-top:   12px !important; padding-bottom:12px !important; }
	.soft-half-sm-sides    { padding-right: 12px !important; padding-left:  12px !important; }

	.soft-double-sm           { padding:       48px !important; }
	.soft-double-sm-top      { padding-top:   48px !important; }
	.soft-double-sm-right    { padding-right: 48px !important; }
	.soft-double-sm-bottom   { padding-bottom:48px !important; }
	.soft-double-sm-left     { padding-left:  48px !important; }
	.soft-double-sm-ends     { padding-top:   48px !important; padding-bottom:48px !important; }
	.soft-double-sm-sides    { padding-right: 48px !important; padding-left:  48px !important; }

	.soft-triple-sm           { padding:       72px !important; }
	.soft-triple-sm-top      { padding-top:   72px !important; }
	.soft-triple-sm-right    { padding-right: 72px !important; }
	.soft-triple-sm-bottom   { padding-bottom:72px !important; }
	.soft-triple-sm-left     { padding-left:  72px !important; }
	.soft-triple-sm-ends     { padding-top:   72px !important; padding-bottom:72px !important; }
	.soft-triple-sm-sides    { padding-right: 72px !important; padding-left:  72px !important; }

	.hard-sm           { padding:       0px !important; }
	.hard-sm-top      { padding-top:   0px !important; }
	.hard-sm-right    { padding-right: 0px !important; }
	.hard-sm-bottom   { padding-bottom:0px !important; }
	.hard-sm-left     { padding-left:  0px !important; }
	.hard-sm-ends     { padding-top:   0px !important; padding-bottom:0px !important; }
	.hard-sm-sides    { padding-right: 0px !important; padding-left:  0px !important; }

}

@media (min-width:1025px) {

	.flush-md          { margin:       0px !important; }
	.flush-md-top     { margin-top:   0px !important; }
	.flush-md-right   { margin-right: 0px !important; }
	.flush-md-bottom  { margin-bottom:0px !important; }
	.flush-md-left    { margin-left:  0px !important; }
	.flush-md-ends    { margin-top:   0px !important; margin-bottom:0px !important; }
	.flush-md-sides   { margin-right: 0px !important; margin-left:  0px !important; }

	.push-md           { margin:       24px !important; }
	.push-md-top      { margin-top:   24px !important; }
	.push-md-right    { margin-right: 24px !important; }
	.push-md-bottom   { margin-bottom:24px !important; }
	.push-md-left     { margin-left:  24px !important; }
	.push-md-ends     { margin-top:   24px !important; margin-bottom:24px !important; }
	.push-md-sides    { margin-right: 24px !important; margin-left:  24px !important; }

	.push-half-md          { margin:       12px !important; }
	.push-half-md-top     { margin-top:   12px !important; }
	.push-half-md-right   { margin-right: 12px !important; }
	.push-half-md-bottom  { margin-bottom:12px !important; }
	.push-half-md-left    { margin-left:  12px !important; }
	.push-half-md-ends    { margin-top:   12px !important; margin-bottom:12px !important; }
	.push-half-md-sides   { margin-right: 12px !important; margin-left:  12px !important; }

	.push-double-md          { margin:       48px !important; }
	.push-double-md-top     { margin-top:   48px !important; }
	.push-double-md-right   { margin-right: 48px !important; }
	.push-double-md-bottom  { margin-bottom:48px !important; }
	.push-double-md-left    { margin-left:  48px !important; }
	.push-double-md-ends    { margin-top:   48px !important; margin-bottom:48px !important; }
	.push-double-md-sides   { margin-right: 48px !important; margin-left:  48px !important; }

	.push-triple-md          { margin:       72px !important; }
	.push-triple-md-top     { margin-top:   72px !important; }
	.push-triple-md-right   { margin-right: 72px !important; }
	.push-triple-md-bottom  { margin-bottom:72px !important; }
	.push-triple-md-left    { margin-left:  72px !important; }
	.push-triple-md-ends    { margin-top:   72px !important; margin-bottom:72px !important; }
	.push-triple-md-sides   { margin-right: 72px !important; margin-left:  72px !important; }

	.soft-md           { padding:       24px !important; }
	.soft-md-top      { padding-top:   24px !important; }
	.soft-md-right    { padding-right: 24px !important; }
	.soft-md-bottom   { padding-bottom:24px !important; }
	.soft-md-left     { padding-left:  24px !important; }
	.soft-md-ends     { padding-top:   24px !important; padding-bottom:24px !important; }
	.soft-md-sides    { padding-right: 24px !important; padding-left:  24px !important; }

	.soft-half-md           { padding:       12px !important; }
	.soft-half-md-top      { padding-top:   12px !important; }
	.soft-half-md-right    { padding-right: 12px !important; }
	.soft-half-md-bottom   { padding-bottom:12px !important; }
	.soft-half-md-left     { padding-left:  12px !important; }
	.soft-half-md-ends     { padding-top:   12px !important; padding-bottom:12px !important; }
	.soft-half-md-sides    { padding-right: 12px !important; padding-left:  12px !important; }

	.soft-double-md           { padding:       48px !important; }
	.soft-double-md-top      { padding-top:   48px !important; }
	.soft-double-md-right    { padding-right: 48px !important; }
	.soft-double-md-bottom   { padding-bottom:48px !important; }
	.soft-double-md-left     { padding-left:  48px !important; }
	.soft-double-md-ends     { padding-top:   48px !important; padding-bottom:48px !important; }
	.soft-double-md-sides    { padding-right: 48px !important; padding-left:  48px !important; }

	.soft-triple-md           { padding:       72px !important; }
	.soft-triple-md-top      { padding-top:   72px !important; }
	.soft-triple-md-right    { padding-right: 72px !important; }
	.soft-triple-md-bottom   { padding-bottom:72px !important; }
	.soft-triple-md-left     { padding-left:  72px !important; }
	.soft-triple-md-ends     { padding-top:   72px !important; padding-bottom:72px !important; }
	.soft-triple-md-sides    { padding-right: 72px !important; padding-left:  72px !important; }

	.hard-md           { padding:       0px !important; }
	.hard-md-top      { padding-top:   0px !important; }
	.hard-md-right    { padding-right: 0px !important; }
	.hard-md-bottom   { padding-bottom:0px !important; }
	.hard-md-left     { padding-left:  0px !important; }
	.hard-md-ends     { padding-top:   0px !important; padding-bottom:0px !important; }
	.hard-md-sides    { padding-right: 0px !important; padding-left:  0px !important; }

}

@media (min-width:1200px) {

	.flush-lg          { margin:       0px !important; }
	.flush-lg-top     { margin-top:   0px !important; }
	.flush-lg-right   { margin-right: 0px !important; }
	.flush-lg-bottom  { margin-bottom:0px !important; }
	.flush-lg-left    { margin-left:  0px !important; }
	.flush-lg-ends    { margin-top:   0px !important; margin-bottom:0px !important; }
	.flush-lg-sides   { margin-right: 0px !important; margin-left:  0px !important; }

	.push-lg           { margin:       24px !important; }
	.push-lg-top      { margin-top:   24px !important; }
	.push-lg-right    { margin-right: 24px !important; }
	.push-lg-bottom   { margin-bottom:24px !important; }
	.push-lg-left     { margin-left:  24px !important; }
	.push-lg-ends     { margin-top:   24px !important; margin-bottom:24px !important; }
	.push-lg-sides    { margin-right: 24px !important; margin-left:  24px !important; }

	.push-half-lg          { margin:       12px !important; }
	.push-half-lg-top     { margin-top:   12px !important; }
	.push-half-lg-right   { margin-right: 12px !important; }
	.push-half-lg-bottom  { margin-bottom:12px !important; }
	.push-half-lg-left    { margin-left:  12px !important; }
	.push-half-lg-ends    { margin-top:   12px !important; margin-bottom:12px !important; }
	.push-half-lg-sides   { margin-right: 12px !important; margin-left:  12px !important; }

	.push-double-lg          { margin:       48px !important; }
	.push-double-lg-top     { margin-top:   48px !important; }
	.push-double-lg-right   { margin-right: 48px !important; }
	.push-double-lg-bottom  { margin-bottom:48px !important; }
	.push-double-lg-left    { margin-left:  48px !important; }
	.push-double-lg-ends    { margin-top:   48px !important; margin-bottom:48px !important; }
	.push-double-lg-sides   { margin-right: 48px !important; margin-left:  48px !important; }

	.push-triple-lg          { margin:       72px !important; }
	.push-triple-lg-top     { margin-top:   72px !important; }
	.push-triple-lg-right   { margin-right: 72px !important; }
	.push-triple-lg-bottom  { margin-bottom:72px !important; }
	.push-triple-lg-left    { margin-left:  72px !important; }
	.push-triple-lg-ends    { margin-top:   72px !important; margin-bottom:72px !important; }
	.push-triple-lg-sides   { margin-right: 72px !important; margin-left:  72px !important; }

	.soft-lg           { padding:       24px !important; }
	.soft-lg-top      { padding-top:   24px !important; }
	.soft-lg-right    { padding-right: 24px !important; }
	.soft-lg-bottom   { padding-bottom:24px !important; }
	.soft-lg-left     { padding-left:  24px !important; }
	.soft-lg-ends     { padding-top:   24px !important; padding-bottom:24px !important; }
	.soft-lg-sides    { padding-right: 24px !important; padding-left:  24px !important; }

	.soft-half-lg           { padding:       12px !important; }
	.soft-half-lg-top      { padding-top:   12px !important; }
	.soft-half-lg-right    { padding-right: 12px !important; }
	.soft-half-lg-bottom   { padding-bottom:12px !important; }
	.soft-half-lg-left     { padding-left:  12px !important; }
	.soft-half-lg-ends     { padding-top:   12px !important; padding-bottom:12px !important; }
	.soft-half-lg-sides    { padding-right: 12px !important; padding-left:  12px !important; }

	.soft-double-lg           { padding:       48px !important; }
	.soft-double-lg-top      { padding-top:   48px !important; }
	.soft-double-lg-right    { padding-right: 48px !important; }
	.soft-double-lg-bottom   { padding-bottom:48px !important; }
	.soft-double-lg-left     { padding-left:  48px !important; }
	.soft-double-lg-ends     { padding-top:   48px !important; padding-bottom:48px !important; }
	.soft-double-lg-sides    { padding-right: 48px !important; padding-left:  48px !important; }

	.soft-triple-lg           { padding:       72px !important; }
	.soft-triple-lg-top      { padding-top:   72px !important; }
	.soft-triple-lg-right    { padding-right: 72px !important; }
	.soft-triple-lg-bottom   { padding-bottom:72px !important; }
	.soft-triple-lg-left     { padding-left:  72px !important; }
	.soft-triple-lg-ends     { padding-top:   72px !important; padding-bottom:72px !important; }
	.soft-triple-lg-sides    { padding-right: 72px !important; padding-left:  72px !important; }

	.hard-lg           { padding:       0px !important; }
	.hard-lg-top      { padding-top:   0px !important; }
	.hard-lg-right    { padding-right: 0px !important; }
	.hard-lg-bottom   { padding-bottom:0px !important; }
	.hard-lg-left     { padding-left:  0px !important; }
	.hard-lg-ends     { padding-top:   0px !important; padding-bottom:0px !important; }
	.hard-lg-sides    { padding-right: 0px !important; padding-left:  0px !important; }
}

/**
* Table emulation
*/

@media (min-width: 769px) {
	.table-row {
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	.table-cell {
		float: none;
		display: table-cell;
		height: 100%;
		vertical-align: middle;
	}
}

/**
* Category Page Layout
*/

.columned-text-section {
	padding-top: 60px;
	padding-bottom:60px;
}

.columned-text-section p {
	font-size: 14px;
}

/**
* Homepage CTA Button
*/

/* Full width fix - Block 3 */

.img-button-row--home {
 	width: 100%;
}
.img-button-row--home .img-responsive {
	margin: 0 auto;
}

p img {
	width: 100%;
	height: auto;
}

.items[class*='category_ids']:not(.items-children) > .item > a {
	font-weight: normal;
}

.filter-options input[type='checkbox'] + .amshopby-choice:before, .filter-options input[type='checkbox'] + .amshopby-choice:after {
	width: 20px;
	height: 20px;
}

.filter-content [class*='am-filter-item']:hover ~ .amshopby-choice:before {
	border-color: #000;
}

.filter-options input[type='checkbox'] + .amshopby-choice {
	top: 14px;
}

.filter-options input[type='checkbox'] + .amshopby-choice:hover:before, .filter-options input[type='checkbox']:checked + .amshopby-choice:before {
	border-color: #000;
}

.filter-options input[type='checkbox'] + .amshopby-choice:after {
	background-color: #000;
	background-repeat: no-repeat;
	background-size: contain;
}

.amshopby-filter-current.filter-current,
.block-actions.filter-actions,
.block-subtitle.filter-subtitle,
.block-title.filter-title {
	display: none;
}

.filter-options-content .am-ranges .items.-am-multiselect .item [class*='am-filter-item'] {
	padding-left: 0;
}

.page-products.page-layout-2columns-left .column.main {
	padding-left: 0;
}


.attribute-main-desc + [data-readmore-toggle], 
.attribute-main-desc[data-readmore] {
	display: block; 
	width: 100%;
}
.attribute-main-desc[data-readmore] {
	transition: height 100ms;
	overflow: hidden;
}

.block.newsletter .field.newsletter {
	max-width: unset;
}



.form-create-account .field.choice {
	position: relative;
}

.form-create-account input[type='checkbox'] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    width: 0;
    position: absolute;
  }
  .form-create-account input[type='checkbox'] + label {
    padding-left: 23px;
    cursor: pointer;
  }

  .form-create-account input[type='checkbox'] + label:before,
  .form-create-account input[type='checkbox'] + label:after {
    position: absolute;
    top: 5px;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    content: '';
  }
  .form-create-account input[type='checkbox'] + label:before {
    border: 1px solid #e3e3e3;
    background: #fff;
  }
  .form-create-account input[type='checkbox'] + label:after {
    background: #000 url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPGRlZnMvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMS42NjkzIDMuNTAwNjFjLS4yMDc4LjAwNjk1LS40MDQ4LjA5ODg1LS41NDkzLjI1NjItMS45NTcwMyAyLjA2NDE1LTMuNDM4ODMgMy43NzY1NS01LjI4MDQxIDUuNzQ3ODNMMy44MTczIDcuNzA0NzRjLS4wNzk5Mi0uMDcxNi0uMTcyNDUtLjEyNTk1LS4yNzIzMy0uMTU5OTItLjA5OTg3LS4wMzM5Ny0uMjA1MTItLjA0NjktLjMwOTc0LS4wMzgwNi0uMTA0NjIuMDA4ODUtLjIwNjU2LjAzOTI5LS4zLjA4OTYtLjA5MzQ1LjA1MDMtLjE3NjU2LjExOTQ4LS4yNDQ1OS4yMDM2LS4wNjgwNC4wODQxMS0uMTE5NjYuMTgxNTEtLjE1MTkzLjI4NjYyLS4wMzIyNy4xMDUxMS0uMDQ0NTUuMjE1ODgtLjAzNjE1LjMyNTk4LjAwODQxLjExMDExLjAzNzM0LjIxNzQuMDg1MTUuMzE1NzQuMDQ3ODEuMDk4MzMuMTEzNTUuMTg1NzkuMTkzNDguMjU3MzlMNS4zNzc3MSAxMS4yOThjLjE1MzE1LjEzNzkuMzUwMTkuMjA5OC41NTE2LjIwMTMuMjAxNDEtLjAwODYuMzkyMzEtLjA5NjkuNTM0NDQtLjI0NzNDOC42MTA3NCA4Ljk4NzU3IDEwLjE0MiA3LjE3NTQ0IDEyLjI1NiA0Ljk0NTc4Yy4xMTY1LS4xMTgzNy4xOTYtLjI3MTIuMjI4MS0uNDM4MjMuMDMyMS0uMTY3MDMuMDE1My0uMzQwMzgtLjA0ODQtLjQ5NzA5LS4wNjM2LS4xNTY3MS0uMTcwOS0uMjg5MzctLjMwNzgtLjM4MDQyLS4xMzY5LS4wOTEwNS0uMjk2OC0uMTM2MTktLjQ1ODYtLjEyOTQzeiIvPgo8L3N2Zz4K) center / 16px;
    content: none;
  }
  .form-create-account input[type='checkbox'] + label:hover:before,
  .form-create-account input[type='checkbox']:checked + label:before {
    border-color: #000;
  }
  .form-create-account input[type='checkbox']:checked + label:after {
    content: '';
  }

  .form-create-account input[type='checkbox']:active + label:before,
  .form-create-account input[type='checkbox']:focus + label:before {
    border-color: #000;
  }
  .filter-options input[type='checkbox']:not(:checked).mage-error + label:before {
    border-color: #f23b3b;
  }

  .loading-mask .loader > picture img {
	bottom: 0;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
  }

  .am-labels-folding .am-collapse-icon, 
  .filter-options .amshopby-category-dropdown + form .items.-am-multiselect .item .am-collapse-icon {
	display: none;
  }

  .filter-options .am-category-wrapper .items.-am-multiselect .item.-filter-parent:not(.-is-collapsible), 
  .filter-options .items:not(.items-children):has(.item.-is-by-click.-filter-parent) > .item.-is-expanded{
	margin-left: 0;
  }

  .filter-options .am-labels-folding .item .am-collapse-icon ~ [class*='am-filter-item-'] {
	padding-left: 0;
  }

  .filter-options [class*='am-filter-items-'].am-labels-folding .item:not(.swatch-option-link-layered) .am-collapse-icon ~ .am-input, 
  .filter-options .amshopby-category-dropdown + form .item .am-collapse-icon ~ .am-input, 
  .filter-options [class*='am-filter-items-'].am-labels-folding .item:not(.swatch-option-link-layered) .am-collapse-icon ~ input[type='radio'], 
  .filter-options .amshopby-category-dropdown + form .item .am-collapse-icon ~ input[type='radio'], 
  .filter-options [class*='am-filter-items-'].am-labels-folding .item:not(.swatch-option-link-layered) .am-collapse-icon ~ input[type='checkbox'], 
  .filter-options .amshopby-category-dropdown + form .item .am-collapse-icon ~ input[type='checkbox'], 
  .filter-options [class*='am-filter-items-'].am-labels-folding .item:not(.swatch-option-link-layered) .am-collapse-icon ~ input[type='checkbox'] + .amshopby-choice, 
  .filter-options .amshopby-category-dropdown + form .item .am-collapse-icon ~ input[type='checkbox'] + .amshopby-choice {
	left: 0;	
  }

  .braintree-credit-card-selected {
	top: -2px;
  }

  .payment-method-braintree .hosted-control {
	min-height: 44px;
	max-width: 100%;
  }

  .checkout-payment-method .credit-card-types {
	margin-bottom: 0;
  }

  #co-transparent-form-braintree #payment_form_braintree {
	display: flex;
	flex-wrap: wrap;
  }

  #co-transparent-form-braintree #payment_form_braintree .field.number:first-of-type {
	width: 100%;
  }

  #braintree-hosted-field-number {
	padding-left: 70px;
	background-color: #f9f9f9 !important;
  }

  #braintree_expirationDate {
	width: 130px;
  }

  .payment-method-braintree .cvv {
	max-width: 250px;
  }

  #braintree_cc_type_cvv_div > .control {
	width: 130px;
  }
  .actions-toolbar > .secondary .action.back{
	display: inherit;
  }

  .ves-megamenu .nav-item.active > a {
	background-color: unset !important;
  }

  @media (max-width: 768px) {
	body.account .block.block-collapsible-nav {
		width: 100% !important;
		position: unset;
	}

	body.account .sidebar.sidebar-main {
		padding: 0;
		margin-bottom: 30px;
	}
  }/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.homepage-slider .homepage-slide { display: none; }

.homepage-slider .homepage-slide:first-child { display: block; }

.homepage-slider.slick-initialized .homepage-slide { display: block; }@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../../frontend/dover/doverjewelry2017/en_US/css/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../../frontend/dover/doverjewelry2017/en_US/css/fonts/slick.eot');
    src: url('../../frontend/dover/doverjewelry2017/en_US/css/fonts/slick.eot?#iefix') format('embedded-opentype'), url('../../frontend/dover/doverjewelry2017/en_US/css/fonts/slick.woff') format('woff'), url('../../frontend/dover/doverjewelry2017/en_US/css/fonts/slick.ttf') format('truetype'), url('../../frontend/dover/doverjewelry2017/en_US/css/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}