price/* Table of Content
==================================================
	#Site Styles
	#Media Queries

/* #Site Styles
================================================== */

/* Wraps
-------------------------------------------------- */

	#headerWrap, #topWrap, #navWrap, #breadcrumbWrap, #checkoutWrap, #mapWrap, #contentWrap, #newsletterWrap, #footerWrap, .wrap {
		width: 100%;
		position: relative;
	}
	
	#topWrap {
		padding: 8px 0 8px;
		z-index: 501;
	}
	#headerHolder {
		background: #fff;
        z-index: 500;
	}
	#headerWrap {
        width: 100%;
		padding: 10px 0 0;
		z-index: 500;
		/*background: #fff;*/
	}
		#headerWrap.shadow {
			background: #fff;
		}
	
	#navWrap {
		padding: 0;
		z-index: 502;
		background: #fff;
		-webkit-transition: all 200ms ease-in-out;
		-moz-transition: all 200ms ease-in-out;
		-ms-transition: all 200ms ease-in-out;
		transition: all 200ms ease-in-out;
		border-bottom: 1px solid rgba(0,0,0,0.15);
	}
		#navWrap.shadow {
			/*background: #f8f8f8;*/
		}
        #noticeWrap {
            background: #000;
            padding: 15px 0 11px;
        }
            #noticeWrap p,
            #noticeWrap a {
                color: #fff;
                font-size: 1.05em;
                font-weight: 400;
                text-transform: uppercase;
            }    
            #noticeWrap p {
                margin: 0;
            }
            #noticeWrap .eight {
                text-align: left;
            }
            #noticeWrap .four {
                text-align: right;
            }
	#breadcrumbWrap {
		background: #fbfbfb;
		border-top: 1px solid rgba(0,0,0,0.05);
		border-bottom: 1px solid rgba(0,0,0,0.08);
		padding: 15px 0 12px;
		z-index: 2;
	}
	
	#checkoutWrap {
		background: rgba(0,0,0,0.05);
		padding: 35px 0 0;
		border-top: 1px solid rgba(0,0,0,0.05);
		border-bottom: 1px dashed rgba(0,0,0,0.15);
	}
	
	#contentWrap {
		position: relative;
		padding: 45px 0 55px;
	}
		#contentWrap.home {
			position: relative;
			padding: 75px 0 55px;
		}
		#contentWrap.withParallax {
			padding-bottom: 0;
		}
	#newsletterWrap {
		padding: 55px 0 40px;
		background: #eee;
	}
	
	#footerWrap {
		padding: 35px 0 20px;
		background: #111;
	}
	
	.pop {
		width: 100%;
		position: relative;
		padding: 100px 0 90px;
		z-index: 4;
	}
		/* pop over */

		.fsp-close {
			font-size: 30px;
			z-index: 2000;
			
		}
		.fsp-content .inner {
			padding-top: 0;
		}

	
	.wrap {
		position: relative;
		padding: 45px 0 25px;
		background: #fff;
	}
		.wrap.bgGrey {
			background: rgba(0,0,0,0.07);
		}
        .wrap.bgGrey.dk {
            background: #c1c1c1;
        }
		.wrap.noBg {
			background: transparent;
			padding-bottom: 0;
		}
        .wrap.noTop {
            padding-top: 10px;
        }
	
	.parallax {
		height: 400px;
		background: transparent;
	}
	
	div.error {
		text-align: center;
		background: #000;
	}
		div.error * {
			color: #fff !important;
		}
		div.error h1 {
			font-size: 32px;
			line-height: 40px;
		}
	
/* topwrap
-------------------------------------------------- */
		
/* mini basket */

.miniBasket {
	list-style: none;
	margin: 0;
	width: auto;
}

.miniBasket li {
	float: right;
	font-size: 13px;
	line-height: 21px;
	margin: 7px 0 0;
	text-transform: uppercase;
}
	.miniBasket li:first-child {
		margin-right: 20px;
	}
	
.miniBasket li a {
	display: inline-block;
	color: #555;
	line-height: 21px;
	text-decoration: none;
}
	.miniBasket li a:hover {
		text-decoration: underline !important;
		color: #000;
	}
	.miniBasket .count {
		display: inline-block;
		padding: 3px 5px 0;
		line-height: 14px;
		border-radius: 3px;
		background: #000;
		color: #fff;
		font-weight: 700;
	}
	
/* currency drop down */

.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after,
.dropdown .carat,
.dropdown .carat:after,
.dropdown .selected::after,
.dropdown:after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.dropdown .selected::after,
.dropdown.scrollable div::after,
.dropdown:after {
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.dropdown {
	position: relative;
	width: auto;
	cursor: pointer;
	background: #000;
	border: none;
	height: 32px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	margin-bottom: 0;
	color: #fff;
}

.dropdown.open {
	z-index: 12;
}

.dropdown:hover {
	background: #999;
	color: #000;
}

.dropdown:after {
	content: '';
	position: absolute;
	right: 3px;
	bottom: 3px;
	top: 2px;
	width: 30px;
	background: transparent;
}

.dropdown.focus:after {
	/*background: #0180d1;*/
}

/* CARAT */

.dropdown .carat {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -2px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	z-index: 2;
	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50% 20%;
	-ms-transform-origin: 50% 20%;
	transform-origin: 50% 20%;
	pointer-events: none;
}

.dropdown.focus .carat {
	border-top-color: #f8f8f8;
}

.dropdown.open .carat {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dropdown.touch .carat {
	pointer-events: none;
}

/* OLD SELECT (HIDDEN) */

.dropdown .old {
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.dropdown select {
	cursor: pointer;
	position: absolute;
	left: 0px;
	top: 0px;
}

.dropdown.touch .old {
	width: 100%;
	height: 100%;
}

.dropdown.touch select {
	width: 100%;
	height: 100%;
	opacity: 0 !important;
}

/* SELECTED FEEDBACK ITEM */ 

.dropdown .selected,
.dropdown li {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 15px;
	color: #fff;
	padding: 10px 12px 7px;
	overflow: hidden;
	white-space: nowrap;
}
.dropdown .selected::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	border-radius: 0 2px 2px 0;
}


/* DROP DOWN WRAPPER */

.dropdown div {
	position: absolute;
	height: 0;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: -1px;
	background: #000;
	overflow: hidden;
	opacity: 0;
	z-index: 2000;
}

/* Height is adjusted by JS on open */

.dropdown.open div {
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdown.scrollable div::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
}

.dropdown.scrollable.bottom div::after {
	opacity: 0;
}

/* DROP DOWN LIST */

.dropdown ul {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.dropdown.scrollable.open ul {
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li {
	list-style: none;
	padding: 9px 12px;
	margin: 0;
	font-size: 12px;
}

/* .focus class is also added on hover */

.dropdown li:hover {
	background: #333;
}

.dropdown li.focus {
	/*background: #0180d1;*/
	position: relative;
	z-index: 3;
	color: #fff;
}

.dropdown li.active {
	background: #444;
	color: #fff;
}


/* Header
-------------------------------------------------- */

#logo a {
	display: block;
	background: url('../images/sprite.png') no-repeat -121px 0;
	background-size: 500px 500px;
	width: 300px;
	height: 107px;
	text-decoration: none;
	margin-top: -57px;
}

	.shadow #logo a {
		background: url('../images/sprite.png') no-repeat -121px -25px;
		background-size: 500px 500px;
		width: 300px;
		height: 60px;
		margin-top: -10px;
	}

/* quick contact */

#qContact {
	font-size: 19px;
	font-weight: 500;
	line-height: 32px;
	text-transform: uppercase;
}
	#qContact p {
		margin: 0;
		font-size: 18px;
		font-weight: 500;
		line-height: 42px;
		text-transform: uppercase;
		text-align: right;
	}
		#qContact p.tel::before {
			content: "";
			background: url('../images/sprite.png') no-repeat 0 -106px;
			background-size: 500px 500px;
			width: 25px;
			height: 32px;
			display: inline-block;
			vertical-align: middle;
			padding-right: 10px;
		}
	
/* search box */

#qSearch {
	position: relative;
}

#qSearch form, .promo form {
	margin: 0;
}

#qSearch input[type="text"], .promo input[type="text"] {
	float: left;
	margin: 0 !important;
	width: 80% !important;
	padding: 0 8px 0; 
	height: 32px;
	box-sizing: border-box;
	border-right: none;
}

#qSearch input[type="submit"], .promo input[type="submit"] {
	float: left;
	width: 20% !important;
	color: #fff;
	text-align: center !important;
	box-sizing: border-box;
	border-left: none;
	margin-bottom: 0;
	padding: 9px 10px 6px;
}

#qSearch input[type="submit"] {
    font-family: "Ionicons";
	font-size: 24px;
}

#qSearch input[type="submit"]:hover, .promo input[type="submit"]:hover {
	background-color: #000
}

			
/* telephone no. */

#tel p {
	font-weight: 400;
	font-size: 26px;
	line-height: 68px;
	text-align: right;
	color: #000;
	margin: 0;
}

/* google translate */

#language {
	text-align: right;
	margin-top: 33px;
}
	#language img {
		width: 25px
	}
	#gTrans {
		float: right;
		padding-top: 10px;
	}
		
/* results page */

.numItems {
	text-align: right;
}

.numItems label, .numItems select {
	float: right;
}


/* Breadcrumb
-------------------------------------------------- */
	
#breadcrumbWrap ul, #breadcrumbWrap li {
	list-style: none;
	padding: 0;
	margin: 0;
}

#breadcrumbWrap li {
	font-size: 14px;
	float: left;
	margin: 0;
	color: #aaa;
}

#breadcrumbWrap li a {
	color: #656565;
	text-decoration: none;
}
	#breadcrumbWrap li a:hover {
		color: #000;
		text-decoration: underline;
	}


/* Map & results
-------------------------------------------------- */
		
#gMapHolder {
	margin-bottom: 20px;
	background: #000;
	padding: 0 !important;
}

#gMap {
	max-width: 100%;
	height: 550px;
	background: #000;
}
		
		
/* Content
-------------------------------------------------- */

/* search */

#filterHolder .columns {
    position: relative;
}

/*#filterBtn, #resetFilters {
    position: absolute;
    bottom: 0;
}*/

/* shopping basket */

#siteOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940), visibility 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: opacity 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940), visibility 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    background: rgba(0,0,0,0.75);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
}

#siteOverlay.open {
    opacity: 1;
    visibility: visible;
}

#basketSlide {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 400px;
    padding: 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    background: #fff;
    z-index: 9999;
    box-sizing: border-box;
}

#basketSlide.open {
    right: 0;
}
#basketSlide img {
    max-width: 25%;
    float: right;
    margin: 0 0 20px 20px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.3);
}


/* sub navigation */

ul.subNav, ul.subNav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.subNav {
	margin: 0 0 50px;
}
	
ul.subNav li a {
	font-size: 13px;
	line-height: 21px;
	text-transform: uppercase;
	display: block;
	padding: 11px 0 7px 0;
	border-left: 2px solid rgba(0,0,0,0);
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}

ul.subNav li.selected a, ul.subNav li.selected a:hover {
	color: #000;
	background: rgba(0,0,0,0.04);
	border-left: 2px solid rgba(0,0,0,0.1);
	padding-left: 8px;
}

ul.subNav li a:hover {
	border-left: 2px solid rgba(0,0,0,0.1);
	color: #333;
	padding-left: 10px;
}


	/* sub sub */
		ul.subNav li ul {
			margin: 0;
		}
	
		ul.subNav li li a {
			text-transform: none;
			color: #555;
			background: #fafafa !important;
			display: block;
			padding: 11px 0 9px 20px;
			border-bottom: 1px solid #ccc;
		}
		ul.subNav li li a:hover {
			color: #000;
			border-bottom: 1px solid #ccc;
			padding: 11px 0 9px 30px;
		}

	
/* video embed */

.embedVideo {
	position: relative;
	padding-bottom: 56.25%; /* 16/9 ratio */
	padding-top: 0; /* IE6 workaround*/
	height: 0;
	overflow: hidden;
	/*max-width: 100%;*/
	height: auto;
}

.embedVideo.square {
    padding-bottom: 100%; /* 16/9 ratio */
}

.embedVideo iframe,
.embedVideo object,
.embedVideo embed,
.embedVideo video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.intro {
	margin-bottom: 50px;
}

.introText {
    text-align: center;
}


/* gallery */

.folioItem, .folioItem * {
	position: relative;
	overflow: hidden;
}

.folioItem, .folioItem::before, .folioItem img, .feature, .feature * {
	text-align: center;
	-webkit-transition: all 0.3s ease-out !important;
	-moz-transition: all 0.3s ease-out !important;
	-o-transition: all 0.3s ease-out !important;
	transition: all 0.3s ease-out !important;
}
.folioItem {
	margin-bottom: 20px !important;
	background: #f5f5f5;
}

	.folioItem.noHover:hover {
		background: #fff;
	}
	.folioItem:hover {
		background: #ddd;
	}

.folioItem a {
	display: block;
}
.folioItem figure {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
}
.folioItem img {
	margin-bottom: 20px;
	z-index: 1;
}
		.folioItem img.hoverImage {
			opacity: 0;
			position: absolute;
			top: 0;
			right: 0;
			left: 0;
			bottom: 0;
			z-index: 2;
			object-fit: contain;
		}
		.folioItem:hover img:not(.hasHover):not(.hoverImage) {
			-webkit-filter: brightness(0.7);
			filter: brightness(0.7);
		}
		.folioItem:hover img.hasHover {
			opacity: 0;
		}
		.folioItem:hover img.hoverImage {
			opacity: 1;
		}

.folioItem p.desc, .rangeSlider .folioItem p {
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	padding-bottom: 25px;
	z-index: 11;
	margin: 0 15px;
	color: #555;
}
.folioItem p.price {
	font-size: 19px;
	font-weight: 700;
	line-height: 19px;
	padding-bottom: 20px;
	z-index: 11;
	margin: 0 10px;
}
	.folioItem p.price .altCur {
		font-size: 16px;
		line-height: 16px;
		color: #777;
	}
    .folioItem p.price .discounted {
        color: #777;
        text-decoration: line-through;
        padding-left: 5px;
    }
.folioItem h3, .folioItem h4 {
	z-index: 12;
	margin: 0 15px;
}
.folioItem h4 {
	margin-bottom: 8px;
}
	.folioItem:hover h3, .folioItem:hover h4 {
		color: #000;
	}
	
	.folioItem:hover p.desc {
		color: #000;
	}
.folioItem input {
	margin: 0;
	margin-bottom: 10px;
	box-sizing: border-box;
	float: left;
}	
.folioItem input[type="text"], .folioItem input[type="number"] {
	width: 20%;
	margin-left: 10%
}
.folioItem input[type="submit"] {
	width: 60%;
	margin-right: 10%
}
.folioItem figcaption {
    background: none;
    padding-top: 0;
    padding-bottom: 0;
}

/* inside the slide-on basket */
#basketSlide .folioItem {
	padding-top: 12px;
	padding-bottom: 10px;
}
#basketSlide .folioItem figcaption {
	text-align: left;
}
#basketSlide hr,
#basketSlide .folioItem h4,
#basketSlide .folioItem p.price {
	margin-left: 0;
	margin-right: 0;
	max-height: none;
}
#basketSlide .folioItem input[type="text"],
#basketSlide .folioItem input[type="number"] {
	margin-left: 18px;
}
#basketSlide .folioItem input[type="submit"] {
	width: calc(80% - 36px);
	margin-right: 0
}
	#basketSlide .folioItem img {
		margin: 6px 18px 20px 18px;
	}
	
/* feature */

.feature {
	position: relative;
    background: rgba(0,0,0,1);
	margin-bottom: 20px;
}
	.feature.withCallout {
		margin-bottom: 0 !important;
	}
.feature a {
	display: block;
	line-height: 0;
}
.feature img {
	z-index: 1;
}
.feature .txt {
 	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 8%;
	box-sizing: border-box;
	z-index: 2;
}
.feature .box {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
    padding: 20px;
    background: rgba(0,0,0,0.7);
	text-align: center;  
}
.feature .box * {
	color: #fff;
	margin-bottom: 0;
	text-transform: none; 
}
.feature .box h2 {
	font-size: 24px;
	line-height: 32px;
}

.feature .box p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
}

.feature:hover img {
	-webkit-filter: brightness(0.55);
	filter: brightness(0.55);
}
	/*.feature.withCallout:hover img {
		-webkit-filter: brightness(0.55);
		filter: brightness(0.55);
	}*/
.feature:hover .box {
    color: #111;
	background: rgba(255,255,255,0.8);
}
.feature:hover  .box * {
	color: #111;
}

/* testimonials */

.comment {
    margin-bottom: 20px !important;
}
.comment blockquote {
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding: 25px 27px 10px;
    margin-bottom: 16px !important;
    color: #333;
    background: #e1e1e1;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.comment blockquote p {
    font-size: 16px;
    line-height: 24px;
}
.comment blockquote p.footer {
    font-size: 14px;
    line-height: 22px;
}
.comment blockquote:after {
    content: "";
    position: absolute;
    bottom: -36px;
    left: 60px;
    border-width: 16px 0 0 16px;
    border-style: solid;
    border-color: #e1e1e1 transparent;
    display: block;
    width: 0;
    margin: 0 0 20px !important;
}

/* blog */

.blog .date {
	text-transform: none;
}

/* product page */

.options label {
	width: 40% !important;
}
	.options label.controlLabel {
		margin-top: 9px;
	}
.options select {
	width: 60% !important;
	margin-bottom: 5px;
}
.options input {
	width: 40% !important;
	margin-bottom: 0;
}
.options input[type="submit"] {
	width: 60% !important;
	margin-bottom: 30px;
}
.options h1 {
	margin-bottom: 10px;
}
.options .price {
	font-size: 26px;
	font-weight: 700;
	line-height: 34px;
	color: #000;
	display: inline-block;
	margin: 20px 0 20px 0;
}
    .options .price.discounted {
        color: #777;
        text-decoration: line-through;
        padding-left: 5px;
    }
.options .altCur {
	color: #888;
	font-size: 22px;
	line-height: 30px;
	display: inline-block;
}

.swatch-picker {
	width: 60%;
	margin: 10px 0 10px;
	text-align: left;  
}

.options .swatch-picker label { 
	display: inline-block;
	height: 36px;
	width: 36px !important;
	position:relative;
	margin: 0 6px 6px 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none; 
	clear: none;
}

.swatch-picker span {
	display: block;
	text-indent: 150%;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;  
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	box-sizing: border-box; 
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out; 
}

.swatch-picker input {
	-webkit-appearance: none;
}

.swatch-picker input:checked + span {
	border: 3px solid #fff;
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}

.swatch-picker p {
	margin: 0 0 10px 0;
	font-size: 15px;
}
  

/* product accordion */
	
#packages img.prodThumb {
	display: block;
}
#packages tr {
	border-bottom: none;
}
#packages td {
	padding: 5px;
}
#packages input[type="text"] {
	margin: 0;
	width: 40px;
}
#packages input.button {
	float: right;
	margin: 0;
}
#packages .hilight {
	width: 100px;
}

/* search */

.searchResult p.price {
	font-size: 19px;
	font-weight: 700;
	line-height: 19px;
	z-index: 11;
	margin: 0 10px 20px;
}
	.searchResult p.price .altCur {
		font-size: 16px;
		line-height: 16px;
		color: #888;
	}
    .searchResult p.price .discounted {
        color: #888;
        text-decoration: line-through;
        padding-left: 5px;
    }

/* trust */

.trust {
	text-align: center;
	margin-bottom: 30px !important;
}

.trust .iconHolder img {
	max-height: 80px;
	width: auto;
	margin: 0 auto 20px;
	-webkit-transition: all 400ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
	-moz-transition: all 400ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
	-o-transition: all 400ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition: all 400ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    display: block;
}

.trust h3 {
	font-size: 95%;
	color: #000;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin: 0;
}

.trust p {
	font-size: 14px;
	line-height: 22px;
	margin: 0 10px;
	color: #333;
}

.trust hr {
	margin-bottom: 0;
}

.trust a {
	display: block;
}

.trust a:hover img {
	transform: translateY(-10px);
}

/* transaction icon */

.transaction img {
	width: 120px;
	margin-bottom: 20px;
}

/* product icons */

.productIcons {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	grid-gap: 30px 30px;
	justify-items: center;
}

	.productIcons figure {
		grid-column: auto / span 2;
	}
	.productIcons figure img {
		width: 100%;
		max-width: 70px;
	}
	
/* call out box */

.callOut {
	background: rgba(0,0,0,0.08);
	padding: 25px 25px 5px 25px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
	.callOut p, .callOut li {
		font-size: 95%;
	}
	
	.callOut ul, .callOut ol {
		margin-left: 16px;
	}
	
/* col image group */

.col {
	position: relative;
	background: #f5f5f5;
	box-sizing: border-box;
}
/*.projectGrid .col {
	padding: 0 1px 1px 0;
}*/
.projectGrid figure.col, .grid figure.col {
	margin: 0 !important;
	padding: 0 !important;
}
.alphaGrid{
	-webkit-column-count: 6;
    column-count: 6;
}
	.alphaGrid div {
		-webkit-column-break-inside: avoid;
		break-inside: avoid;
		margin-bottom: 40px;
	}
	.alphaGrid h2 {
		font-weight: 700;
		font-size: 28px;
		line-height: 28px;
		margin-bottom: 10px;
	}
	.alphaGrid ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
.col, .col img, .col figcaption {
    webkit-transition: all 0.2s ease-out !important;
    -moz-transition: all 0.2s ease-out !important;
    -o-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
}
.col:hover img {
    -webkit-filter: brightness(0.55);
    filter: brightness(0.55);
}

.col figcaption {
 	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 8%;
	box-sizing: border-box;
	z-index: 2;
}

.col .box {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
    padding: 20px;
    color: #fff;
	background: rgba(0,0,0,0.7);
	text-align: center;  
	box-sizing: border-box;
}

.col:hover .box {
    color: #111;
	background: rgba(255,255,255,0.8);
}
.col .box * {
	color: #fff;
	margin-bottom: 0;
	text-transform: none; 
}
	.col:hover .box * {
		color: #111;
	}
	
.col .box h2 {
	font-size: 24px;
	line-height: 32px;
}
.col .box p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
}

/* address book */

.address {
	background: rgba(0,0,0,0.08);
	padding: 22px 20px 8px 24px;
	box-sizing: border-box;
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
	overflow: hidden;
}
	.address.single {
		width: 100%;
		margin-right: 0;
	}
	.address.download {
		text-align: center;
	}
.address.omega {
	margin-right: 0;
}
.address.addNew {
	position: relative;
	text-align: center;
	background: #c1c1c1;
}
	.address.addNew.listView {
		width: 100%;
		margin-right: 0;
	}
.address.addNew .newText {
	position: relative;
	text-align: center;
	top: 50%;
	transform: translate(0, -50%);
}
	.address.addNew.listView .newText {
		transform: none;
	}
	
.address h3 {
	margin-bottom: 5px;
}

/* team member */

.team {
	text-align: center;
	margin-bottom: 20px;
	overflow: hidden;
}
.team:hover {
	background: rgba(0,0,0,0.05)
}
.team img {
	margin-bottom: 23px;
	webkit-transition: all 0.2s ease-out !important;
    -moz-transition: all 0.2s ease-out !important;
    -o-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
}
	.team img:hover {
		/*transform: scale(1.02,1.02)*/
		filter: brightness(0.6)
	}
	
.team h3 {
	margin-bottom: 0;
}
.team h4 {
	margin-bottom: 25px;
}

/* search */

.searchResults h2 {
	margin-bottom: 0;
}
.searchResults p {
	font-size: 0.9em;
	line-height: 1.5em;
}

	
/* Newsletter sign-up
-------------------------------------------------- */

#newsletterWrap input[type="text"] {
    float: left;
    margin: 0 !important;
    width: 80% !important;
    box-sizing: border-box;
    border-right: none;
}

#newsletterWrap input[type="submit"] {
    float: left;
    width: 20% !important;
    font-family: "Ionicons";
    font-size: 32px;
    color: #fff;
    text-align: center !important;
    box-sizing: border-box;
    border-left: none;
}

    #newsletterWrap input[type="submit"]:hover {
        background-color: #000
    }
	
		
/* Footer
-------------------------------------------------- */

#goTop a {
	display: block;
	font-family: "Ionicons";
    font-size: 32px;
	color: #000;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	float: right;
}

#goTop a:hover {
	color: #fff !important;
	height: 45px;
	margin-top: -5px;
}

#footerWrap .logoBlock img {
	max-height: 50px;
	width: auto;
	margin: 0 10px 10px 0;
}

#footerWrap hr {
	border: solid rgba(255,255,255,0.1);
	border-width: 0 0 1px;
}

#footerWrap ul, #footerWrap li {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

#footerWrap li {
	font-size: 14px;
	margin: 0 0 3px;
}

#footerWrap p {
	font-size: 14px;
	color: #999;
	line-height: 22px;
	margin-right: 0;
}

#footerWrap a {
	color: #999;
	text-decoration: none;
}

#footerWrap a:hover {
	color: #fff;
}

/* social buttons */

#social, #social li {
	list-style: none;
	margin: 0;
	padding: 0;
}

#social {
	margin-bottom: 20px;
}

#social li {
	float: left;
	margin-right: 4px;
}

#social li:last-child{
	margin-right: 0;
}

#social li a {
	display: block;
	width: 32px;
	height: 32px;
	background-size: 500px 500px !important;
	text-decoration: none;
	transform-origin: center center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
	#social li a.fb  {
		background: url('../images/sprite.png') no-repeat -36px 0;
	}
	#social li a.in  {
		background: url('../images/sprite.png') no-repeat 0 -420px;
	}
	#social li a.tw  {
		background: url('../images/sprite.png') no-repeat 0 0;
	}
	#social li a.ho  {
		background: url('../images/sprite.png') no-repeat 0 -350px;
	}

		#social li a.fb:hover {
			background: url('../images/sprite.png') no-repeat -36px -32px;
			transform: rotate(90deg)
		}
		#social li a.in:hover {
			background: url('../images/sprite.png') no-repeat 0 -452px;
			transform: rotate(90deg)
		}
		#social li a.tw:hover  {
			background: url('../images/sprite.png') no-repeat 0 -32px;
			transform: rotate(90deg)
		}
		#social li a.ho:hover  {
			background: url('../images/sprite.png') no-repeat 0 -382px;
			transform: rotate(90deg)
		}

#footerWrap .ccard {
	display: block;
	float: right;
	width: 60px;
	height: 42px;
	margin: 0 0 15px 10px;
	background-size: 500px 500px !important;
}
	#footerWrap .ccard.amex {
		background: url('../images/sprite.png') no-repeat -430px -280px;
	}
	#footerWrap .ccard.visa {
		background: url('../images/sprite.png') no-repeat -60px -390px;
	}
	#footerWrap .ccard.master {
		background: url('../images/sprite.png') no-repeat -140px -390px;
	}
	#footerWrap .ccard.other {
		background: url('../images/sprite.png') no-repeat -220px -390px;
	}
	
#footerWrap .wpay {
	display: block;
	float: right;
	width: 201px;
	height: 40px;
	margin: 0 0 15px 10px;
	background: url('../images/sprite.png') no-repeat -300px -390px;
	background-size: 500px 500px !important;
}

#fmLogo {
	width: 120px;
	height: 13px;
	background: url('../images/sprite.png') no-repeat -120px -350px;
	background-size: 500px 500px;
    margin-bottom: 10px;
}

/* google translate */
	
#language {
	text-align: right;
	margin-top: 33px;
}
	#language img {
		width: 25px
	}
	#gTrans {
		float: right;
		padding-top: 10px;
	}
	.goog-te-gadget, .goog-logo-link {
		color: #999 !important;
		line-height: 38px;
	}
	.goog-te-gadget .goog-te-combo {
		margin: 0 !important;
		background: #444 url('../images/select-arrow.gif') center right no-repeat !important;
		border: none;
		color: #999;
		float: none;
	}


/* #Media Queries
================================================== */

	@media only screen and (min-width: 1280px) and (max-width: 1480px) {
		
		input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select {
			width: 320px;
		}
		input.short, textarea.short, select.short, label.short {
			width: 155px;
		}
		#headerWrap {
			padding: 6px 0 0;
		}
		#logo a {
			background: url('../images/sprite.png') no-repeat -112px 0;
			background-size: 466px 466px;
			width: 280px;
			height: 100px;
			margin-top: -58px;
		}
		
			.shadow #logo a {
				background: url('../images/sprite.png') no-repeat -112px -24px;
				background-size: 466px 466px;
				width: 280px;
				height: 52px;
				margin-top: -10px;
			}
			
		#contentWrap.home {
			padding: 50px 0 55px;
		}
		.folioItem img {
			margin-bottom: 8px;
		}
		
		.folioItem p.desc {
			padding-bottom: 20px;
		}
	}

	@media only screen and (max-width: 1279px) {

		#footerWrap .ccard {
			width: 40px;
			height: 28px;
			background-size: 333px 333px !important;
		}

			#footerWrap .ccard.amex {
				background: url('../images/sprite.png') no-repeat -286px -187px;
			}

			#footerWrap .ccard.visa {
				background: url('../images/sprite.png') no-repeat -40px -260px;
			}

			#footerWrap .ccard.master {
				background: url('../images/sprite.png') no-repeat -93px -260px;
			}

			#footerWrap .ccard.other {
				background: url('../images/sprite.png') no-repeat -146px -260px;
			}

		#footerWrap .wpay {
			width: 134px;
			height: 29px;
			background: url('../images/sprite.png') no-repeat -200px -260px;
			background-size: 333px 333px !important;
		}
	}

	/* Tablet Landscape size to wide monitor  */
	@media only screen and (min-width: 960px) and (max-width: 1279px) {
		body {
			font-size: 14px;
			line-height: 22px;
		}

		h1 {
			font-size: 24px;
			line-height: 32px;
		}

		h2 {
			font-size: 20px;
			line-height: 28px;
		}

		h3 {
			font-size: 16px;
			line-height: 24px;
		}

		p.lead {
			font-size: 18px;
			line-height: 26px;
		}

		blockquote, blockquote p {
			font-size: 17px;
			line-height: 25px;
		}

		label, legend {
			width: 160px;
		}

		input[type="text"], input[type="password"], input[type="email"], textarea, select {
			width: 280px
		}

			input.short, textarea.short, select.short, label.short {
				width: 135px;
			}

		.pop {
			padding: 70px 0 60px;
		}

		#logo a {
			background: url('../images/sprite.png') no-repeat -89px 0;
			background-size: 366px 366px;
			width: 220px;
			height: 79px;
			margin-top: -58px;
		}

		.shadow #logo a {
			background: url('../images/sprite.png') no-repeat -89px -15px;
			background-size: 366px 366px;
			width: 220px;
			height: 50px;
			margin-top: -10px;
		}

		#contentWrap.home {
			padding: 50px 0 55px;
		}

		.tabInfo {
			clear: both !important;
			margin: 0 10px !important;
			width: 940px !important;
		}

		.alphaGrid {
			-webkit-column-count: 4;
			column-count: 4;
		}

		.col figcaption {
			padding: 10%;
		}

		.col .box h2 {
			font-size: 20px;
			line-height: 23px;
		}

		.col .box p {
			font-size: 15px;
			line-height: 23px;
			font-weight: 300;
		}

		.address {
			float: left;
			width: 48% !important;
			margin-right: 4% !important;
			margin-bottom: 4%;
		}

			.address.omega {
				margin-right: 4%;
			}

			.address:nth-child(even) {
				margin-right: 0 !important;
			}

			.address.download:nth-child(odd) {
				margin-right: 0;
			}

			.address.download:nth-child(even) {
				margin-right: 4% !important;
			}
	}

	/* Tablet Portrait size to standard 960  */
	@media only screen and (min-width: 768px) and (max-width: 959px) {

		body {
			font-size: 14px;
			line-height: 22px;
		}

		h1 {
			font-size: 20px;
			line-height: 28px;
		}

		h2 {
			font-size: 18px;
			line-height: 26px;
		}

		h3 {
			font-size: 16px;
			line-height: 24px;
		}

		h4 {
			font-size: 14px;
			line-height: 22px;
		}

		p.lead {
			font-size: 18px;
			line-height: 26px;
		}

		blockquote, blockquote p {
			font-size: 17px;
			line-height: 25px;
		}

		label, legend, input[type="text"], input[type="password"], input[type="email"], textarea, select {
			width: 100%
		}

			input.short, textarea.short, select.short, label.short {
				width: 177px;
			}

		.matchLabel {
			margin-left: 0;
		}

		.infogrid img {
			width: 36px;
		}

		.no-mob-all {
			display: none;
		}

		.mob-only-all {
			display: block !important;
		}

		.no-tab {
			display: none !important;
		}

		.tab-only {
			display: block !important;
		}

		.matchLabel {
			margin-left: 0 !important;
		}

		.dropdown .carat {
			display: none;
		}

		.pop {
			padding: 60px 0 50px;
		}

		#headerWrap {
			padding-top: 10px;
		}

			#headerWrap.shadow {
				padding-top: 0;
			}

		#logo a {
			background: #000 url('../images/sprite.png') no-repeat -69px 11px;
			background-size: 286px 286px;
			width: 172px;
			height: 79px;
			margin-top: -70px;
		}

		.shadow #logo a {
			background: #000 url('../images/sprite.png') no-repeat -69px -11px;
			background-size: 286px 286px;
			width: 172px;
			height: 40px;
			margin-top: 0;
		}

		#qContact p {
			font-size: 15px;
		}

		#qSearch input[type="submit"] {
			margin-bottom: 10px
		}

		#breadcrumb ul {
			margin: 0;
		}

		#contentWrap.home {
			padding: 50px 0 55px;
		}

		.options input {
			width: 20% !important;
		}

			.options input[type="submit"], .options input[type="button"] {
				width: 40% !important;
			}
		.productIcons {
			grid-gap: 10px;
		}
		.tabInfo {
			clear: both !important;
			margin: 0 10px 30px !important;
			width: 748px !important;
		}

		ul.tabNavigation li {
			margin: 0 4px -1px 0;
		}

			ul.tabNavigation li a {
				font-size: 12px;
				padding: 8px 6px 7px;
			}

		.folioItem p.price {
			font-size: 17px;
			line-height: 17px;
		}

		.folioItem p.desc {
			font-size: 14px;
			line-height: 20px;
		}

		.folioItem h3 {
			font-size: 15px;
			line-height: 20px;
		}

		.alphaGrid {
			-webkit-column-count: 4;
			column-count: 4;
		}

		.col .box h2 {
			font-size: 16px;
			line-height: 22px;
		}

		.col .box p {
			font-size: 13px;
			line-height: 22px;
			font-weight: 300;
		}

		.options .altCur {
			font-size: 18px;
			line-height: 26px;
		}

		.address {
			float: left;
			width: 48% !important;
			margin-right: 4% !important;
			margin-bottom: 4%;
		}

			.address.omega {
				margin-right: 4%;
			}

			.address:nth-child(even) {
				margin-right: 0 !important;
			}

			.address.download:nth-child(odd) {
				margin-right: 0;
			}

			.address.download:nth-child(even) {
				margin-right: 4% !important;
			}
	}

	/* All Mobile Sizes  */
	@media only screen and (max-width: 767px) {

		.no-mob, .no-mob-all {
			display: none !important;
		}

		.mob-only, .mob-only-all {
			display: block !important;
		}

		.divider.mob-only {
			display: inline-block !important;
		}

		.divider {
			margin: 0 5px;
		}

		div.sortLabel {
			text-align: left;
		}

		body {
			font-size: 15px;
			line-height: 23px;
		}

		h1 {
			font-size: 20px;
			line-height: 28px;
		}

		h2 {
			font-size: 18px;
			line-height: 26px;
		}

		h3 {
			font-size: 16px;
			line-height: 24px;
		}

		h4 {
			font-size: 15px;
			line-height: 23px;
		}

		p.lead {
			font-size: 16px;
			line-height: 24px;
		}

		blockquote, blockquote p {
			font-size: 17px;
			line-height: 24px;
		}
		img.scale.payment {
			max-width: 200px;
			margin-left: auto;
			margin-right: auto;
		}
		hr {
			padding-top: 20px;
			margin: 0 0 30px !important;
		}

		.infogrid th, .infogrid td {
			font-size: 13px
		}

		.infogrid img {
			width: 36px;
		}

		label, legend, input[type="text"], input[type="password"], input[type="email"], textarea, select {
			width: 100%
		}

			input.short, textarea.short, select.short, label.short {
				width: 205px;
			}

		.matchLabel {
			margin-left: 0 !important;
		}

		.pop {
			padding: 50px 0 20px;
		}

			.pop h3 {
				margin-bottom: 20px;
			}

		.fsp-close {
			font-size: 20px;
			position: absolute;
			right: 20px !important;
			top: 20px !important;
		}

		.pinit.alt {
			margin: 0 auto 20px;
			position: relative;
		}

		.miniBasket li {
			float: left;
			margin: 7px 0 0;
		}

		.dropdown .selected,
		.dropdown li {
			padding: 9px 8px;
			line-height: 17px;
		}

		#social li {
			float: left;
			margin-right: 4px;
			margin-left: 0;
		}

			#social li:last-child {
				margin-right: 0;
			}

		#topWrap {
			padding: 5px 0 1px;
			background: #000;
		}

		#headerWrap, #headerWrap.shadow {
			padding: 15px 0 4px;
			background: #000;
			margin-top: -1px;
		}

			#logo a, #headerWrap.shadow #logo a {
				float: left;
				margin: 0 0 12px;
				background: url('../images/sprite.png') no-repeat -160px -120px;
				background-size: 500px 500px;
				width: 200px;
				height: 17px;
			}

		#basketHolder {
			position: absolute;
			width: 380px;
		}

		.miniBasket li:first-child {
			margin-right: 0;
			margin-top: 8px;
		}

		.miniBasket li a {
			color: #999;
		}

			.miniBasket li a:hover {
				color: #fff;
			}
		/*#tSearch {
			display: inline-block;
			font-family: "Ionicons";
			font-size: 18px;
			font-weight: bold;
			text-align: center;
			background: #000;
			color: #fff;
			width: 24px;
			height: 24px;
			line-height: 26px;
			border-radius: 12px;
			margin-top: -3px;
		}*/

		#tSearch {
			font-family: "Ionicons";
			font-size: 18px;
			font-weight: bold;
			margin: 0 0 0 3px;
		}

		.miniBasket li a#tSearch:hover {
			text-decoration: none !important;
			color: #fff;
		}

		#qSearch {
			display: none;
		}

			#qSearch input[type="text"] {
				width: 75% !important;
			}

			#qSearch input[type="submit"], #submitPromo {
				width: 25% !important;
				margin-bottom: 0;
			}

			#qSearch, #qSearch form {
				margin-bottom: 0;
			}

		#qContact {
			display: none;
		}

			#qContact p {
				text-align: center;
			}

		#basketSlide {
			width: 320px;
			padding: 30px;
		}

		#basket input.qtyplus, #basket input.qtyminus {
			display: none !important;
		}

		#checkoutWrap {
			padding: 20px 0 0;
		}

		#progressbar {
			margin: 0 0 15px;
		}

			#progressbar li {
				font-size: 12px;
				line-height: 19px;
			}

		#contentWrap.home, #contentWrap {
			position: relative;
			padding: 45px 0 40px;
		}

		#breadcrumbWrap {
			padding: 10px 0 7px;
		}

		#breadcrumb ul {
			margin: 0;
		}

		ul.subNav li a.selected::after {
			background: url('../images/sprite.png') no-repeat -150px -100px;
			background-size: 500px 500px;
			width: 11px;
			height: 14px;
			margin-top: 1px;
			margin-right: 8px;
			transform: rotate(-90deg);
		}

		.intro {
			margin-bottom: 45px !important;
		}

		.introText {
			text-align: left;
		}

		.folioItem h4 {
			max-height: 80px;
			overflow: hidden;
		}

		.container .columns.feature {
			margin-bottom: 20px;
		}

		.projectGrid .col {
			padding: 0;
		}

		.alphaGrid {
			-webkit-column-count: 2;
			column-count: 2;
		}

		.col .box h2, .feature .box h2 {
			font-size: 20px;
			line-height: 24px;
		}

		.col .box p, .feature .box p {
			font-size: 15px;
			line-height: 23px;
		}

		.trust {
			padding-bottom: 20px;
			border-bottom: 1px solid rgba(0,0,0,0.1);
		}

		#noticeWrap a {
			font-size: 0.9em;
		}

		#noticeWrap p a {
			font-size: 1em;
		}

		#noticeWrap .four {
			text-align: left;
		}


		/* product page */

		.options {
			margin-bottom: 20px !important;
		}

			.options input {
				width: 40% !important;
			}

				.options input[type="submit"], .options input[type="button"] {
					width: 60% !important;
				}

			.options .swatch-picker label {
				height: 42px;
				width: 42px !important;
			}

			.options p.shipping {
				margin: 0 0 20px 0;
			}

		.tabInfo {
			margin-bottom: 30px !important;
		}

		#packages .hilight {
			width: 50px;
		}

		.addressSearch label, .addressSearch select, .addressSearch input[type="text"] {
			margin-bottom: 10px;
		}

		.address {
			float: left;
			width: 100%;
			margin-right: 0;
			margin-bottom: 20px;
		}

			.address.omega {
				margin-right: 0;
			}

			.address.addNew .newText {
				position: relative;
				text-align: center;
				top: auto;
				transform: none;
			}

		#footerWrap hr {
			padding-top: 15px
		}

		#footerWrap li {
			font-size: 14px;
		}

		#footerWrap p {
			font-size: 14px;
			line-height: 20px;
		}

		#footerWrap .ccard, #footerWrap .wpay {
			float: left;
			margin: 10px 10px 10px 0;
		}
	}

	/* Mobile Landscape Size to Tablet Portrait  */
	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#currency, .dropdown {
			width: 40px !important;
		}

		#qSearch input[type="text"] {
			width: 80% !important;
		}

		#qSearch input[type="submit"], #submitPromo {
			width: 20% !important;
		}

		.dropdown .carat {
			display: none;
		}

		#gMap {
			height: 360px
		}
	}

	/* Mobile Portrait Size to Mobile Landscape Size  */
	@media only screen and (max-width: 479px) {

		.no-mob-p {
			display: none !important;
		}

		.mob-only-p {
			display: block;
		}

		td.mob-only-p {
			display: table-cell;
		}

		input.short, textarea.short, select.short, label.short {
			width: 155px;
		}

		#currency, .dropdown {
			width: 80px !important;
		}

		#basketHolder {
			width: 220px;
		}

		#qSearch {
			margin-top: 0;
		}

		p.question::before {
			display: block;
			margin: 0 0 10px;
		}

		ul.pagination li {
			margin-right: 3px !important;
		}

		.numItems {
			text-align: left;
		}
		.productIcons {
			grid-gap: 10px;
		}
		ul.tabNavigation li {
			width: 100%;
			margin-bottom: 5px;
		}

		.alphaGrid {
			-webkit-column-count: 1;
			column-count: 1;
		}

		#gMap {
			height: 300px
		}
	}
