:root {
	--transition: all .2s ease-in-out;
	
	--warning: #e22525;

	font-size: 13px;
}

.container,
.container-fluid {
	position: relative;
	width: 100%;
	padding: 0 20px;
}
.container.container-full {
	max-width: 1240px;
}

@media(min-width: 768px) and (max-width: 991px) {
	.container {
		padding: 0 40px;
	}
}

@media(min-width: 768px) {
	.content:first-of-type .container.container-sm {
		max-width: 540px; /* 500 + 40 padding */
	}

	.template-module .container.container-sm {
		max-width: 890px; /* 850 + 40 padding */
	}
}

@media(min-width: 992px) {
	.template-module .container.container-sm, .listing .container.container-sm {
		max-width: 924px; /* 884 + 40 padding */
	}
}

html,
body {
	background: white;
	font-family: var(--open);
	font-weight: 300;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	color: var(--black);
	overflow-x: hidden;
}
/* body {
    margin-top: 68px;
} */


@media(min-width: 768px) {
	:root {
		font-size: 14px;
	}

	/* body {
		margin-top: 88px;
	} */
}

@media(min-width: 992px) {
	:root {
		font-size: 16px;
	}
}


a, a:hover, a:focus,
button, button:hover, button:focus {
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	text-decoration: none;
	cursor: pointer;
	color: currentColor;
	outline: none;
	box-shadow: none;
}
*:focus {
	outline: none;
	box-shadow: none;
}
*::placeholder, *::-webkit-placeholder {
	color: currentColor;
}
*:-ms-input-placeholder {
	color: currentColor;
}


/*************************************/
/********** BUTTONS / LINKS **********/
/*************************************/

@keyframes button-hover-in {
	0%, 100% {
		transform: translateY(0);
	}
	49.9% {
		transform: translateY(calc(-20px - 100%));
	}
	50% {
		transform: translateY(calc(20px + 100%));
	}
}
@keyframes button-hover-out {
	0%, 100% {
		transform: translateY(0);
	}
	49.9% {
		transform: translateY(calc(20px + 100%));
	}
	50% {
		transform: translateY(calc(-20px - 100%));
	}
}

@keyframes button-sm-hover-in {
	0%, 100% {
		transform: translateY(0);
	}
	49.9% {
		transform: translateY(calc(-10px - 100%));
	}
	50% {
		transform: translateY(calc(10px + 100%));
	}
}
@keyframes button-sm-hover-out {
	0%, 100% {
		transform: translateY(0);
	}
	49.9% {
		transform: translateY(calc(10px + 100%));
	}
	50% {
		transform: translateY(calc(-10px - 100%));
	}
}

.button,
.button:hover,
.button:focus {
	display: inline-block;
	padding: 20px 30px;
	background-color: var(--golden);
	border: 1px solid var(--golden);
	font-family: var(--brandon);
	font-size: 1rem;
	font-weight: 500;
	color: white !important;
	line-height: 1;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	margin: 0;
	transition: var(--transition);
}
.button[disabled] {
	opacity: 0.5;
	pointer-events: none;
}

.button.button-grey,
.button.button-grey:hover,
.button.button-grey:focus {
	background-color: #a7a7a7;
}

.button.button-transparent {
	background-color: transparent !important;
	color: var(--golden) !important;
}
.button.button-transparent.button-grey {
	border: 1px solid #a7a7a7;
	color: #a7a7a7 !important;
}

.button.button-sm,
.button.button-sm:hover,
.button.button-sm:focus {
	padding: 10px 25px;
	font-size: .75rem;
}

.button > span {
	position: relative;
	display: inline-block;
	font-size: inherit !important;
	color: inherit !important;
	animation: button-hover-out .2s ease-in-out;
	margin: 0 !important;
}
.button.button-sm > span {
	animation: button-sm-hover-out .2s ease-in-out;
}
.button:hover > span,
.button:focus > span {
	animation: button-hover-in .2s ease-in-out;
}
.button.button-sm:hover > span,
.button.button-sm:focus > span {
	animation: button-sm-hover-in .2s ease-in-out;
}


@media(min-width: 768px) {
    .button,
	.button:hover,
	.button:focus {
		font-size: 14px;
		padding: 23px 50px;
	}

	@keyframes button-hover-in {
		0%, 100% {
			transform: translateY(0);
		}
		49.9% {
			transform: translateY(calc(-23px - 100%));
		}
		50% {
			transform: translateY(calc(23px + 100%));
		}
	}
	@keyframes button-hover-out {
		0%, 100% {
			transform: translateY(0);
		}
		49.9% {
			transform: translateY(calc(23px + 100%));
		}
		50% {
			transform: translateY(calc(-23px - 100%));
		}
	}
}

@media(min-width: 992px) {
    .button,
	.button:hover,
	.button:focus {
		padding: 26px 60px;
	}

	@keyframes button-hover-in {
		0%, 100% {
			transform: translateY(0);
		}
		49.9% {
			transform: translateY(calc(-26px - 100%));
		}
		50% {
			transform: translateY(calc(26px + 100%));
		}
	}
	@keyframes button-hover-out {
		0%, 100% {
			transform: translateY(0);
		}
		49.9% {
			transform: translateY(calc(26px + 100%));
		}
		50% {
			transform: translateY(calc(-26px - 100%));
		}
	}
}



/*************************************/
/********** GENERAL CONTENT **********/
/*************************************/

.content {
	position: relative;
}

.shop-product .content{
	margin-top: 0;
}

.dummy {
	visibility: hidden;
}

/********** HEADER **********/

.content .header {
	position: relative;
    padding: 60px 0 49px;
}
.content .header.banner-header {
	min-height: 300px;
	overflow: hidden;
}

.content .header ul {
    display: block;
    list-style: none;
    font-size: .875rem;
    font-family: var(--libre);
    font-style: italic;
    line-height: 1.4;
    color: var(--golden);
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
.content .header ul li {
    display: inline-block;
}
.content .header ul li a:hover,
.content .header ul li a:focus {
    opacity: 0.5;
}

.content .header h1 {
    font-size: 3.125rem;
    font-family: var(--brandon);
    font-weight: 400;
    color: #090712;
    text-transform: uppercase;
    margin: 0;
}
.content .header.banner-header h1 {
	color: white;
}

.content .header.banner-header img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 
	100%;
}
.content .header.banner-header::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	background: linear-gradient(66deg, rgba(15, 15, 15,.4) 12.5%, transparent),
				linear-gradient(180deg, var(--black), transparent 200px);
	mix-blend-mode: multiply;
}

.content .header.banner-header .container {
	position: absolute;
	bottom: 50px;
	left: 0;right: 0;
	margin: auto;
	z-index: 1;
}


@supports(mix-blend-mode: multiply) {
	.content .header.banner-header img {
		top: 0;bottom: 0;
		left: 0;right: 0;
		transform: none;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
}

@media(min-width: 768px) {
	.content .header {
		padding-top: 100px;
	}
	.content .header.banner-header {
		min-height: auto;
		height: 0;
		padding: 0;
		padding-top: 39.29%;
	}

	.content .header.banner-header .container {
		bottom: 60px;
	}

	.content .header.banner-header h1 {
		width: 60%;
	}
}

@media(min-width: 992px) {
	.content .header ul {
		line-height: 1;
	}

	.content .header {
		min-height: 303px;
	}
}

@media(min-width: 1200px){
	.content .header.banner-header .container{
		bottom: 100px;
	}
}

@media(min-width: 1400px) {
	.content .header.banner-header {
		padding-top: 0;
		height: 550px;
	}
}

/********** TEMPLATE **********/

.content .template {
	padding-top: 40px;
    padding-bottom: 100px;
}
.content .header + .template {
    padding-top: 0;
}
.content + .content .template {
	padding-top: 0;
}

.content .listing:first-child {
	margin-top: 0 !important;
}
.content .listing:last-child {
	margin-bottom: 0 !important;
}

.content.shop-content .listing.listing-button {
	margin: 60px 0;
}

.content .template .listing .header {
	min-height: auto;
	padding: 0;
}


.content .template h2:first-child,
.content .template h3:first-child,
.content .template h4:first-child,
.content .template p:first-child,
.content .template ul:first-child,
.content .template ol:first-child {
	margin-top: 0;
}

.content .template h2:last-child,
.content .template h3:last-child,
.content .template h4:last-child,
.content .template p:last-child,
.content .template ul:last-child,
.content .template ol:last-child {
	margin-bottom: 0;
}

.content.shop-content h2,
.content.shop-content .h2,
.content.shop-content h3,
.content.shop-content .h3 {
	font-family: var(--brandon);
	font-size: 1.75rem;
	font-weight: 300;
	color: var(--black);
	text-transform: uppercase;
	margin: .75rem 0;
}
.content.shop-content h3,
.content.shop-content .h3 {
	font-size: 1rem;
	font-weight: 400;
}
.content.shop-content p {
	font-size: 1.0625rem;
	color: #535252;
	line-height: 1.75;
	margin: .75rem 0;
}

footer {
	margin-top: 0;
}


@media(min-width: 768px) {
	.content .template {
		padding-top: 90px;
		padding-bottom: 110px;
	}
}

@media(min-width: 992px) {
	.content .template {
		padding-top: 130px;
		padding-bottom: 150px;
	}
}


/**************************/
/********** FORM **********/
/**************************/

.content .template .container-form {
	max-width: 500px;
}

.content .template .form:not(:first-child) {
	margin-top: 2.5rem;
}
.content .template .form:not(:last-child) {
	margin-bottom: 2rem;
}

.content .template .form .row {
	margin: -15px -10px;
}
.content .template .form .row + .row {
	margin-top: 65px;
}
.content .template .form .row > div {
	padding: 15px 10px;
	font-size: 0;
}

.content .template .form h2,
.content .template .form .h2 {
	margin: 0;
}


.content .template .form label {
	display: inline-block;
    font-size: 14px;
    color: var(--black);
    line-height: 1;
    margin: 25px 0;
}

.content .template .form 
.content .template .form label a {
	color: var(--black);
	font-weight: 400;
	border-bottom: 1px solid transparent;
}
.content .template .form label a:hover,
.content .template .form label a:focus {
	border-bottom: 1px solid var(--black);
}

.content .template .form .input-wrapper label,
.content .template .form .textarea-wrapper label,
.content .template .form .file-wrapper label,
.content .template .form .checkbox-wrapper label  {
	color: #888787;
	margin: 0;
}
.content .template .form .textarea-wrapper label {
	margin-bottom: 15px;
}

.content .template .form span {
	display: block;
	font-size: 11px;
    color: #888787;
    line-height: 1;
    margin: 0;
}
.content .template .form span a {
	border-bottom: 1px solid transparent;
}
.content .template .form span a:hover,
.content .template .form span a:focus {
    color: var(--black);
	border-bottom: 1px solid var(--black);
}

.content .template .form .input-wrapper,
.content .template .form .file-wrapper {
    padding-top: 11px;
    position: relative;
}
.content .template .form .textarea-wrapper {
    position: relative;
}
.content .template .form .input-wrapper label,
.content .template .form .file-wrapper label {
    position: absolute;
    top: 0;left: 0;
    transform: translateY(26px);
	pointer-events: none;
	transition: var(--transition);
}

.content .template .form .input-wrapper.area-wrapper {
    position: relative;
    margin-bottom: 44px;
}

.content .template .form .input-wrapper.area-wrapper .p-input-obs {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e1dede;
    background-color: transparent;
    padding: 15px 0;
    outline: 0;
    transition: all 0.2s ease-in-out;
}

.content .template .form .p-input-obs {
    height: 57px;
    resize: none;
    transition: all 0.5s ease-in-out;
}

.content .template .form .input-wrapper.area-wrapper.filled .p-input-obs {
    height: 144px;
}

.content .template .form .input-wrapper.area-wrapper.filled .placeholder-label{
	transform: translateY(-10px);
    font-size: 10px;
	opacity: 1;
}

.content .template .form .placeholder-label {
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    transition: 0.2s ease all;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #888787;
    padding-left: 0;
    transform: translateY(26px);
}

.content .template .form .file-wrapper label:not(:first-of-type) {
	position: relative;
	transform: none;
}
.content .template .form .input-wrapper input:focus + label,
.content .template .form .input-wrapper input[placeholder] + label,
.content .template .form .input-wrapper.filled label,
.content .template .form .file-wrapper > label:not(.button) {
    transform: translateY(0);
	font-size: 11px !important;
	color: #c4c3c3;
	padding-left: 0;
}	

.content .template .form .password-wrapper .peek {
	position: absolute;
	top: calc(11px + 12px);
	right: 0;
	width: 25px;
	height: 25px;
    background-position: center;
    background-image: url(/assets/img/peek.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}
.content .template .form .password-wrapper .peek::before {
    content: "";
	position: absolute;
	top: 0;
	right: 5px;
	width: 28px;
	height: 1px;
    background-color: var(--black);
    transform: rotate(-60deg);
    transform-origin: right;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}
.content .template .form .password-wrapper .peek.active::before {
    opacity: 1;
}

.content .template .form .password-wrapper .password-requirements {
	margin-top: 20px;
}
.content .template .form .password-wrapper .password-requirements .row {
	margin: 7px -7px -7px;
}
.content .template .form .password-wrapper .password-requirements .row > div {
	padding: 7px;
}
.content .template .form .password-wrapper .password-requirements span {
	display: inline-block;
	font-size: 12px;
	font-style: italic;
	color: #c4c3c3;
}
.content .template .form .password-wrapper .password-requirements span.requirement {
	position: relative;
	padding-left: 20px;
	transition: var(--transition);
}
.content .template .form .password-wrapper .password-requirements span.requirement.active {
	color: var(--black);
}
.content .template .form .password-wrapper .password-requirements span.requirement::before {
	content: "";
	position: absolute;
	top: -2px;bottom: 0;
	left: 3px;
	margin: auto;
	width: 5px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.content .template .form .checkbox-wrapper {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}


.form *::placeholder, .form *::-webkit-placeholder {
	opacity: .25;
}
.form *:-ms-input-placeholder {
	opacity: .25;
}


.content .template .form input,
.content .template .form textarea,
.content .template .form select {
	appearance: none;
	-webkit-appearance: none;
	font-size: 14px;
	font-weight: 400;
	color: var(--black);
	line-height: 1;
	width: 100%;
	padding: 15px 0;
	background-color: transparent;
	border: none;
	border-radius: 0;
    border-bottom: 1px solid #ebeaea;
    resize: none;
	transition: var(--transition);
}
.content .template .form textarea {
	border: 1px solid #ebeaea;
	padding: 15px;
	line-height: 1.5;
}
.content .template .form input.not-filled,
.content .template .form textarea.not-filled {
    border-color: var(--warning);
}

.content .template .form input[type='password'] ~ a {
	position: relative;
	display: inline-block;
	font-size: 13px;
	color: var(--darkgrey);
	text-align: center;
	margin-top: 25px;
	border-bottom: 1px solid transparent;
	left: 50%;
	transform: translateX(-50%);
}
.content .template .form input[type='password'] ~ a:hover,
.content .template .form input[type='password'] ~ a:focus {
	border-color: currentColor;
}

.content .template .form select {
	line-height: 1.4;
}


.content .template .form .file-wrapper {
    padding-top: 35px;
}
.content .template .form input[type='file'] {
	display: none;
}
.content .template .form .file-wrapper input[type='file'] + label {
	color: var(--lightgold);
	position: relative;
	display: inline-block;
	pointer-events: auto;
	cursor: pointer;
	margin: 0;
}
.content .template .form .file-wrapper input[type='file'].not-filled + label {
	border: 1px solid var(--warning);
}
.content .template .form .file-wrapper input[type='file'] + label::after {
	display: none;
}
.content .template .form .file-wrapper input[type='file'] + label + label {
	display: inline-block;
	padding-left: 30px;
	flex: 1;
}

.content .template .form input[type='checkbox'],
.content .template .form input[type='radio'] {
	display: none;
}
.content .template .form input[type='checkbox'] + label,
.content .template .form input[type='radio'] + label {
	display: inline-block;
	vertical-align: middle;
	height: 23px;
	width: 23px;
	cursor: pointer;
	position: relative;
	border: 1px solid #ebeaea;
	transition: var(--transition);
}
.content .template .form input[type='radio'] + label {
	border-radius: 100%;
}
.content .template .form input[type='checkbox'].not-filled + label,
.content .template .form input[type='radio'].not-filled + label {
	border-color: var(--warning);
}
.content .template .form input[type='checkbox'] + label::before,
.content .template .form input[type='radio'] + label::before {
	content: "";
	position: absolute;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
}
.content .template .form input[type='checkbox'] + label::before {
	top: -2px;bottom: 0;
	left: 0;right: 0;
	width: 5px;
	height: 10px;
	border-right: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	transform: rotate(45deg);
}
.content .template .form input[type='radio'] + label::before {
	top: 0;bottom: 0;
	left: 0;right: 0;
	width: 7px;
	height: 7px;
	background-color: var(--black);
	border-radius: 100%;
}
.content .template .form input[type='checkbox']:checked + label::before,
.content .template .form input[type='radio']:checked + label::before {
	opacity: 1;
}
.content .template .form input[type='checkbox'] + label + label,
.content .template .form input[type='radio'] + label + label {
	line-height: 1.5;
	padding-left: 13px;
	cursor: pointer;
	flex: 1;
}

.content .template .form .warning {
	position: absolute;
	top: 100%;left: 0;
    font-size: 14px;
    color: var(--warning);
    margin: 0;
    margin-top: 10px;
    line-height: 1;
}

@media(min-width: 768px) {
	.content .template .form .row {
		margin: -20px -25px;
	}
	.content .template .form .row + .row {
		margin-top: 80px;
	}
	.content .template .form .row > div {
		padding: 20px 25px;
	}

	.content .template .form .row > div:first-child{
		padding: 16px 25px;
	}

	.custom-select .placeholder.has-img{
		font-size: 11px;
	}

	.content .template div div:nth-child(2) > div:nth-child(4) > label{
		margin: 18px 0;
	}
}

@media(min-width: 1200px){
	.content .template div div:nth-child(2) > div:nth-child(4) > label{
		margin: 25px 0;
	}
}


/**********************************************************************/
/********** PRODUCT CATEGORY LISTING (Inherits Card Listing) **********/
/**********************************************************************/

.content .listing.listing-card .items.row {
	margin: -25px;
}
.content .listing.listing-card .items.row > div.card {
	padding: 25px;
}

.content .listing.listing-card .card .image {
	padding-top: 120.62%;
}
.content .listing.listing-card .card .image img {
	transition: var(--transition);
}
.content .listing.listing-card .card .image:hover img,
.content .listing.listing-card .card .image:focus img {
	transform: scale(1.05);
}

.content .listing.listing-card .card .image + a {
	position: relative;
	display: inline-block;
	font-family: var(--brandon);
	font-size: 1.125rem;
	font-weight: bold;
	color: var(--black);
	text-transform: uppercase;
	margin-top: 25px;
	padding-right: 48px;
}
.content .listing.listing-card .card .image + a::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	width: 28px;
	height: 13px;
	background-image: url('/assets/img/gallery-arrow.png');
	background-size: cover;
	opacity: 0;
	transition: inherit;
}
.content .listing.listing-card .card .image + a:hover::after,
.content .listing.listing-card .card .image + a:focus::after {
	opacity: 1;
}


/******************************************/
/********** PRODUCT PAGE CONTENT **********/
/******************************************/

.content .product-page {
	padding-top: 60px;
}
.content .product-page .header {
	padding-top: 0;
}

.content .product-page > .row {
	margin: -20px 0;
}
.content .product-page > .row > div {
	padding: 20px 0;
}

.content .product-page .header h1 + span {
	display: inline-block;
	font-family: var(--libre);
	font-size: 1rem;
    font-style: italic;
    line-height: 1;
	color: var(--golden);
	margin-top: 10px;
}

.content .product-page .product-details .price {
	display: inline-block;
	font-size: 1.875rem;
	font-weight: 300;
	color: var(--l-grey);
	line-height: 1;
}

.content .product-page .product-details .price s{
	font-size: 1.3rem;
	padding-right:.55em;
	color:#c2c2c2;
}

.content .product-page .product-details .button {
	padding: 22px 60px;
	vertical-align: middle;
}

.content .product-page .product-details .button + .favorites {
	display: inline-block;
	position: relative;
	width: 36px;
	height: 32px;
	vertical-align: middle;
	margin-left: 35px;
}
.content .product-page .product-details .button + .favorites::before,
.content .product-page .product-details .button + .favorites::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	transition: var(--transition);
}
.content .product-page .product-details .button + .favorites::before {
	background-image: url(/assets/img/favorite-gold.svg);
}
.content .product-page .product-details .button + .favorites::after {
	background-image: url(/assets/img/favorite-gold-fill.svg);
	opacity: 0;
}
.content .product-page .product-details .button + .favorites.active::before {
	opacity: 0;
}
.content .product-page .product-details .button + .favorites.active::after {
	opacity: 1;
}


.content .product-page .product-details .favorites {
	display: inline-block;
	position: relative;
	width: 36px;
	height: 32px;
	vertical-align: middle;
}
.content .product-page .product-details .favorites::before,
.content .product-page .product-details .favorites::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	transition: var(--transition);
}
.content .product-page .product-details .favorites::before {
	background-image: url(/assets/img/favorite-gold.svg);
}
.content .product-page .product-details .favorites::after {
	background-image: url(/assets/img/favorite-gold-fill.svg);
	opacity: 0;
}
.content .product-page .product-details .favorites.active::before {
	opacity: 0;
}
.content .product-page .product-details .favorites.active::after {
	opacity: 1;
}


.content .product-page .listing .accordion > .toggle-container {
	padding: 27px 0;
}
.content .product-page .listing .accordion > .toggle-container h3, .content .product-page .listing .accordion > .toggle-container h2 {
	font-family: var(--libre);
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 400;
	letter-spacing: normal;
	color: var(--golden);
	text-transform: capitalize;
}
.content .product-page .listing .accordion p {
	font-size: 1.0625rem;
}

.content .product-page .listing .accordion .description {
	padding: 0;
}
.content .product-page .listing .accordion .description > *:first-child {
	margin-top: 30px;
}
.content .product-page .listing .accordion .description > *:last-child {
	margin-bottom: 55px;
}

/********** PRODUCT PAGE SLIDER **********/

.content .product-page .slider-wrapper.fixed {
	position: fixed;
}

.content .product-page .slider:not(.slick-slider) {
	display: flex;
	overflow: hidden;
}
.content .product-page .slider:not(.slick-slider) > .slide {
	min-width: 100%;
	max-width: 100%;
}

.content .product-page .slider .slide img {
	width: 100%;
}

.content .product-page .slider-arrows {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}
.content .product-page .slider-arrows a {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}
.content .product-page .slider-arrows a + a {
	margin-right: 25px;
	transform: rotate(180deg);
}

.content .product-page .slider-arrows a::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	background-image: url('/assets/img/arrow-large-gold.svg');
	background-size: contain;
	opacity: .5;
	transition: inherit;
}
.content .product-page .slider-arrows a:hover::before {
	opacity: 1;
}


@media(max-width: 767px) {
	.content .product-page .product-details .form > .row > div:nth-of-type(2) {
		order: -1;
	}
	.content .product-page .product-details .form .quantity-select {
		margin-top: 28px;
		margin-left: auto;
	}
}

@media(min-width: 768px) {
	.content .product-page {
		padding-top: 0px;
	}
	.content .product-page > .row {
		margin: 0 -30px;
	}
	.content .product-page > .row > div {
		padding: 0 30px;
	}

	.content .product-page .header {
		min-height: 203px;
	}

	.content .product-page .header ul li{
		margin-bottom: 10px;
	}

	.content .product-page .slider-arrows {
		flex-direction: column;
		align-items: flex-end;
	}
	.content .product-page .slider-arrows a {
		width: 62px;
		height: 30px;
	}
	.content .product-page .slider-arrows a + a {
		margin: 0;
		margin-top: 30px;
		transform: rotate(180deg);
	}

	.content .product-page .product-details .button {
		padding: 26px 75px;
	}
}

@media(min-width: 992px) {
	.content .product-page > .row {
		margin: 0 -60px;
	}
	.content .product-page > .row > div {
		padding: 0 60px;
	}
}


/*************************************/
/********** PRODUCT LISTING **********/
/*************************************/

.content .template .listing.listing-product .header {
	display: flex;
	align-items: center;
}

.content .template .listing.listing-product .header h2, .content .template .listing.listing-product .header h3 {
	font-family: var(--brandon);
	font-size: 1.5rem;
	font-weight: 400;
	font-style: normal;
	color: var(--black);
	text-align: center;
	text-transform: uppercase;
}
.content .template .listing.listing-product .header span.count {
	display: inline-block;
	font-family: var(--libre);
	font-size: 1.125rem;
	font-weight: 300;
	font-style: italic;
	color: #cac9c9;
	margin-left: auto;
}

.content .template .listing .listing-options {
	font-size: 0;
}
.content .template .listing .listing-options a {
	position: relative;
	display: inline-block;
	font-size: 10px;
	font-weight: 400;
	color: var(--black);
	line-height: 22px;
	height: 22px;
	min-width: 22px;
	letter-spacing: .19em;
	text-transform: uppercase;
	vertical-align: middle;
}
.content .template .listing .listing-options a + a {
	margin-left: 15px;
}
.content .template .listing .listing-options a.toggle-filter {
	padding-left: 45px;
}
.content .template .listing .listing-options a.active {
	pointer-events: none;
}

.content .template .listing .listing-options a::before {
	content: "";
	position: absolute;
	top: 0;left: 0;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .25;
	transition: var(--transition);
}
.content .template .listing .listing-options a.active::before {
	opacity: 1;
}
.content .template .listing .listing-options a.toggle-filter::before {
	background-image: url(/assets/img/icon-filter.svg);
	width: 30px;
	opacity: 1;
}
.content .template .listing .listing-options a.show-mosaic::before {
	background-image: url(/assets/img/icon-grid.svg);
}
.content .template .listing .listing-options a.show-fullscreen::before {
	background-image: url(/assets/img/icon-full.svg);
}


.content .template .listing.listing-product .row {
	margin: -15px;
}
.content .template .listing.listing-product .row > .product {
	padding: 15px;
}

.content .template .listing .product .details {
	margin-top: 15px;
}

.content .template .listing .product p {
	font-family: var(--libre);
    font-size: 16px;
    font-style: italic;
    color: var(--golden);
	margin: 0;
	line-height: 1;
    margin-bottom: 1em;
}
.content .template .listing .product > div > span {
	display: block;
	font-size: 14px;
	font-weight: 400;
    color: var(--l-grey);
    line-height: 1;
}
.content .template .listing .product span + span {
	margin-top: 8px;
}
.content .template .listing .product span.title {
	font-family: var(--brandon);
	font-size: 16px;
	font-weight: bold;
	color: var(--black);
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.content .template .listing .product > div > span s {
	color: #c2c2c2;
	padding-right: .25em;
}

.content .template .listing .product .buttons {
	margin-top: 20px;
	font-size: 0;
}
.content .template .listing .product .buttons .button {
	width: 100%;
	text-align: center;
	padding-top: 18px;
	padding-bottom: 18px;
}
.content .template .listing .product .buttons .button + .button {
	margin-top: 10px;
}


@media(min-width: 768px) {
	.content .template .listing .header .listing-options {
		display: none;
	}

	.content .template .listing.listing-product .row {
		margin: -35px;
	}
	.content .template .listing.listing-product .row > .product {
		padding: 35px;
	}
}

@media(min-width: 992px) {
	.content .template .listing .product .buttons {
		display: flex;
		justify-content: space-between;
	}
	.content .template .listing .product .buttons .button,
	.content .template .listing .product .buttons .button + .button {
		margin: 0;
		max-width: calc(50% - 5px);
		min-width: calc(50% - 5px);
	}
}


/****************************************/
/********** LOGIN PAGE CONTENT **********/
/****************************************/

.content .login-page > .row {
	margin: -40px 0;
}
.content .login-page > .row > div {
	padding: 40px 0;
}

.content .login-page > .row > div > .button {
	margin-top: 30px;
}


@media(min-width: 768px) {
	.content .login-page .row {
		margin: 0 -50px;
	}
	.content .login-page .row > div {
		padding: 0 50px;
	}
}

@media(min-width: 992px) {
	.content .login-page .row {
		margin: 0 -100px;
	}
	.content .login-page .row > div {
		padding: 0 100px;
	}
}


/*****************************/
/********** SIDEBAR **********/
/*****************************/

.content .template.has-sidebar.has-sidebar-left > div:not(.sidebar) {
	padding-top: 60px;
}
.content .template.has-sidebar.has-sidebar-right > div:not(.sidebar) {
	padding-bottom: 60px;
}

.content .template.has-sidebar .filter-sidebar + div:not(.sidebar) {
	padding-top: 0;
}

.content .template.has-sidebar .sidebar {
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 35px;
	background-color: #fafafa;
}
.content .template.has-sidebar .sidebar.fixed {
	position: fixed;
}


.content .template.has-sidebar .sidebar .h3 {
	line-height: 1;
	margin: 0;
}
.content .template.has-sidebar .sidebar > p {
	font-family: var(--libre);
	font-size: 18px;
	font-style: italic;
	color: var(--golden);
	line-height: 1;
	margin-top: 0;
	margin-bottom: 1.5em;
}
.content .template.has-sidebar .sidebar ul {
	display: block;
	padding: 0;
	margin: 0;
}
.content .template.has-sidebar .sidebar ul li {
	font-family: var(--brandon);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .2em;
	color: var(--black);
	text-transform: uppercase;
}
.content .template.has-sidebar .sidebar ul li + li {
	margin-top: 10px;
}
.content .template.has-sidebar .sidebar ul li a {
	display: inline-block;
}
.content .template.has-sidebar .sidebar ul li a:hover,
.content .template.has-sidebar .sidebar ul li a:focus,
.content .template.has-sidebar .sidebar:not(.filter-sidebar) ul li.active > a {
	font-weight: bold;
}

.content .template.has-sidebar .sidebar span {
	display: block;
	font-size: 11px;
	color: #888787;
	line-height: 1;
}


@media(min-width: 768px) {
	.content .template.has-sidebar {
		display: flex;
		align-items: flex-start;
	}
	.content .template.has-sidebar.has-sidebar-left > div:not(.sidebar),
	.content .template.has-sidebar.has-sidebar-right > div:not(.sidebar) {
		padding: 0;
		flex: 1;
	}
	.content .template.has-sidebar.has-sidebar-left > div:not(.sidebar) {
		padding-left: 85px;
	}
	.content .template.has-sidebar.has-sidebar-right > div:not(.sidebar) {
		padding-right: 85px;
	}

	.content .template.has-sidebar .sidebar {
		width: 270px;
		padding: 40px 30px;
		margin: 0;
	}
	.content .template.has-sidebar .cart-sidebar {
		width: 330px;
	}

	.content .template.has-sidebar .sidebar + div {
		max-width: calc(100% - 270px);
	}
}

@media(min-width: 992px) {
	.content .template.has-sidebar.has-sidebar-left > div:not(.sidebar) {
		padding-left: 115px;
	}
	.content .template.has-sidebar.has-sidebar-right > div:not(.sidebar) {
		padding-right: 115px;
	}
}

/********** CART SIDEBAR **********/

.content .template.has-sidebar .cart-sidebar .price-breakdown > div {
	display: flex;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: var(--black);
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-child {
	font-weight: bold;
	text-transform: uppercase;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-child span {
	font-weight: 400;
	text-transform: none;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown > div + div {
	margin-top: 25px;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown > div > div:last-child {
	margin-left: auto;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown > div span {
	color: #a9a8a8;
	margin-top: 8px;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown hr {
	border-top-color: #ebeaea;
	margin: 28px 0;
}

.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline {
	background-color: white;
	margin: 35px -10px 25px;
	padding: 10px;
	padding-right: 12px;
	max-height: 260px;
	overflow: auto;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline::-webkit-scrollbar-track {
    background-color: transparent;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline::-webkit-scrollbar {
    width: 2px;
    background-color: #ebeaea;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline::-webkit-scrollbar-thumb {
    background-color: var(--golden);
}

.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline {
	flex-direction: initial;
	align-items: flex-start;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline + .product-inline {
	margin-top: 10px;
}

.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline .image {
	max-width: 70px;
	min-width: 70px;
}

.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline .details {
	margin: 0;
	margin-left: 10px;
	display: block;
	padding: 3px 0;
	text-align: left;
	min-width: auto;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline span.title {
	font-size: 13px;
	margin-bottom: 5px;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline span:not(.title) {
	color: #807f7f;
	font-size: 12px;
	margin: 0;
}
.content .template.has-sidebar .cart-sidebar .listing.listing-product-inline .product-inline .price span.title {
	font-size: 12px;
	margin: 0;
	margin-top: 5px;
}


.content .template.has-sidebar .cart-sidebar .discount-code {
	margin: 30px -20px 40px;
	padding: 28px 20px 30px;
	background-color: white;
}

.content .template.has-sidebar .cart-sidebar .discount-code .form {
	display: flex;
	align-items: flex-end;
}
.content .template.has-sidebar .cart-sidebar .discount-code .form .input-wrapper {
	flex: 1;
	margin-right: 18px;
}
.content .template.has-sidebar .cart-sidebar .discount-code .form input,
.content .template.has-sidebar .cart-sidebar .discount-code .form .input-wrapper label {
	font-size: 12px;
}
.content .template.has-sidebar .cart-sidebar .discount-code .form a.button {
	padding-top: 18px;
	padding-bottom: 18px;
}

.content .template.has-sidebar .cart-sidebar .discount-code .msg {
	position: relative;
	display: block;
	font-size: 12px;
	line-height: 14px;
	padding-left: 25px;
	margin-top: 20px;
}
.content .template.has-sidebar .cart-sidebar .discount-code .msg::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;
	width: 14px;
	height: 14px;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-weight: 400;
	color: inherit;
}
.content .template.has-sidebar .cart-sidebar .discount-code .msg.ok {
	color: #9fb812;
}
.content .template.has-sidebar .cart-sidebar .discount-code .msg.ok::before {
	content: "\f058";
}
.content .template.has-sidebar .cart-sidebar .discount-code .msg.nok {
	color: #e22525;
}
.content .template.has-sidebar .cart-sidebar .discount-code .msg.nok::before {
	content: "\f057";
}


.content .template.has-sidebar .cart-sidebar .form input[type='checkbox'] + label + label {
	font-size: 12px;
	margin-top: 3px;
}


.content .template.has-sidebar .cart-sidebar .button-wrapper.fixed {
	position: fixed;
	bottom: 0;left: 0;
	width: 100%;
	padding: 10px 35px;
	background-color: #fafafa;
	z-index: 10;
}
.content .template.has-sidebar .cart-sidebar .button {
	display: block;
	text-align: center;
}
.content .template.has-sidebar .cart-sidebar > .button-wrapper + span {
	margin-top: 30px;
}

/********** PRODUCT LISTING FILTER SIDEBAR **********/

.content .template.has-sidebar .filter-sidebar {
	position: fixed;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
	padding: 60px 35px 80px;
	background-color: white;
	z-index: -1;
	margin: 0;
	overflow: auto;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
}
.content .template.has-sidebar .filter-sidebar.open {
	opacity: 1;
	pointer-events: all;
	z-index: 10;
}

.content .template.has-sidebar .filter-sidebar .filter-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 18px;
	height: 18px;
}
.content .template.has-sidebar .filter-sidebar .filter-close::before,
.content .template.has-sidebar .filter-sidebar .filter-close::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: -3px;
	margin: auto;
	width: 24px;
	height: 1px;
	background-color: var(--black);
	border-radius: 2px;
}
.content .template.has-sidebar .filter-sidebar .filter-close::before {
	transform: rotate(45deg);
}
.content .template.has-sidebar .filter-sidebar .filter-close::after {
	transform: rotate(-45deg);
}

.content .template.has-sidebar .filter-sidebar hr {
	margin: 0;
	border-top: 1px solid #ebeaea;
}

.content .template.has-sidebar .filter-sidebar ul.nav li {
	font-size: 14px;
}
.content .template.has-sidebar .filter-sidebar ul.nav li + li {
	margin-top: 3px;
}

.content .template.has-sidebar .filter-sidebar ul.nav > li,
.content .template.has-sidebar .filter-sidebar ul.nav > li > a:hover,
.content .template.has-sidebar .filter-sidebar ul.nav > li > a:focus {
	color: #090712;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.content .template.has-sidebar .filter-sidebar ul.nav > li.active{
	color: var(--golden);
}



.content .template.has-sidebar .filter-sidebar ul.nav > li + li {
	margin-top: 20px;
}

.content .template.has-sidebar .filter-sidebar ul.nav ul {
	padding-left: 20px;
	max-height: 0;
	overflow: hidden;
}
.content .template.has-sidebar .filter-sidebar ul.nav li.active > ul {
	max-height: none;
}
.content .template.has-sidebar .filter-sidebar ul.nav ul li:first-child {
	margin-top: 1.25em;
}.content .template.has-sidebar .filter-sidebar ul.nav ul li:last-child {
	margin-bottom: 1em;
}
.content .template.has-sidebar .filter-sidebar ul.nav ul li {
	font-family: var(--open);
	font-weight: 300;
	color: var(--l-grey);
	letter-spacing: normal;
	text-transform: none;
}
.content .template.has-sidebar .filter-sidebar ul.nav ul li.active > a,
.content .template.has-sidebar .filter-sidebar ul.nav ul li a:hover,
.content .template.has-sidebar .filter-sidebar ul.nav ul li a:focus {
	font-weight: inherit;
	color: #090712;
}
.content .template.has-sidebar .filter-sidebar ul.nav ul li.active > a {
	font-weight: 400;
}

.content .template.has-sidebar .filter-sidebar > div .upper {
	position: relative;
	padding: 19px 0;
}
.content .template.has-sidebar .filter-sidebar > div:first-of-type .upper {
	padding-top: 0;
}
.content .template.has-sidebar .filter-sidebar > div.tab .upper {
	cursor: pointer;
}
.content .template.has-sidebar .filter-sidebar > div.tab .upper::before,
.content .template.has-sidebar .filter-sidebar > div.tab .upper::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	width: 15px;
	height: 1px;
	background-color: var(--golden);
	transition: var(--transition);
}
.content .template.has-sidebar .filter-sidebar > div.tab .upper::after {
	transform: rotate(90deg);
}
.content .template.has-sidebar .filter-sidebar > div.tab.open .upper::after,
.content .template.has-sidebar .filter-sidebar > div.tab.active .upper::after {
	transform: none;
}

.content .template.has-sidebar .filter-sidebar > div .upper p {
	font-family: var(--libre);
	font-size: 18px;
	font-style: italic;
	color: var(--golden);
	line-height: 1;
	margin: 0;
}

.content .template.has-sidebar .filter-sidebar > div.tab .lower {
	overflow: hidden;
	max-height: 0;
	transition: var(--transition);
}
.content .template.has-sidebar .filter-sidebar > div.tab.active .lower {
	max-height: none;
}
.content .template.has-sidebar .filter-sidebar > div .lower > div {
	padding: 30px 0 40px;
}

.content .template.has-sidebar .filter-sidebar .form .row {
	margin: -7px;
}
.content .template.has-sidebar .filter-sidebar .form .row > div {
	padding: 7px;
}

.content .template.has-sidebar .filter-sidebar .form .checkbox-wrapper.color-checkbox {
	padding-left: 3px;
}

.content .template.has-sidebar .filter-sidebar .form input[type='checkbox'] + label {
	width: 20px;
	height: 20px;
}
.content .template.has-sidebar .filter-sidebar .form .checkbox-wrapper.color-checkbox input[type='checkbox'] + label {
	border: none;
}

.content .template.has-sidebar .filter-sidebar .form input[type='checkbox'] + label::before {
	top: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border: none;
	background-color: var(--black);
	transform: none;
}
.content .template.has-sidebar .filter-sidebar .form .checkbox-wrapper.color-checkbox input[type='checkbox'] + label::before {
	top: -3px;bottom: -3px;
	left: -3px;right: -3px;
	width: auto;
	height: auto;
	background-color: transparent;
	border: 1px solid var(--black);
}


@media(min-width: 768px) {
	.content .template.has-sidebar .filter-sidebar {
		position: static;
		z-index: initial;
		width: 250px;
		height: auto;
		padding: 0;
		opacity: 1;
		pointer-events: all;
		transition: none;
	}

	.content .template.has-sidebar .filter-sidebar .filter-close {
		display: none;
	}

	.content .template.has-sidebar .filter-sidebar + div {
		max-width: calc(100% - 250px);
	}
}


/************************************/
/********** ACCOUNT ORDERS **********/
/************************************/

/********** ACCOUNT ORDERS LISTING **********/

.content .template .listing .order .upper {
	display: flex;
	padding: 30px 0;
	flex-wrap: wrap;
}
.content .template .listing .order .upper span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: var(--l-grey);
	line-height: 1;
}
.content .template .listing .order .upper span + span {
	margin-top: 11px;
}
.content .template .listing .order .upper span b {
	font-weight: 600;
	color: var(--black);
}

.content .template .listing .order .upper > div:first-child {
	max-width: 100%;
	min-width: 100%;
	margin: 40px 0 25px;
}

.content .template .listing .order .upper .status-bar {
	max-width: 125px;
	min-width: 125px;
}
.content .template .listing .order .upper .status-bar .bar {
	position: relative;
	width: 100%;
	height: 10px;
	background-color: #f3f2f2;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 15px;
}
.content .template .listing .order .upper .status-bar .bar::before {
	content: "";
	position: absolute;
	top: 0;left: 0;
	height: 100%;
}
.content .template .listing .order .upper .status-bar .bar.pending::before {
	background-color: #ec6958;
	width: 20%;
}
.content .template .listing .order .upper .status-bar .bar.paid::before {
	background-color: #64d3cf;
	width: 40%;
}
.content .template .listing .order .upper .status-bar .bar.processing::before {
	background-color: #f4ca49;
	width: 60%;
}
.content .template .listing .order .upper .status-bar .bar.dispatched::before {
	background-color: #ec961b;
	width: 80%;
}
.content .template .listing .order .upper .status-bar .bar.delivered::before {
	background-color: #bddf34;
	width: 100%;
}

.content .template .listing .order .upper .thumbnails {
	position: relative;
	order: -1;
	min-width: 100%;
	max-width: 100%;
	padding-right: 40px;
}
.content .template .listing .order .upper .thumbnails .row {
	margin: 0 -5px;
}
.content .template .listing .order .upper .thumbnails .row > div {
	padding: 0 5px;
}
.content .template .listing .order .upper .thumbnails .row > div .image {
	width: 100%;
	padding-top: 88.4%;
	background-size: contain;
	background-position: center;
}
.content .template .listing .order .upper .thumbnails > span {
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	height: 1em;
	margin: auto;
	font-family: var(--brandon);
	font-size: 18px;
	line-height: 1;
	color: var(--black);
	font-weight: bold;
}

.content .template .listing .order .upper .order-content-toggle {
	position: relative;
	max-width: 40px;
	min-width: 40px;
	border: 1px solid var(--golden);
	margin-left: auto;
}
.content .template .listing .order .upper .order-content-toggle::before {
	content: "";
	position: absolute;
	top: -5px;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--golden);
	border-bottom: 2px solid var(--golden);
	transform: rotate(45deg);
	transition: inherit;
}
.content .template .listing .order.open .upper .order-content-toggle::before {
	transform: rotate(-135deg) translate(-3px, -3px);
}


@media(min-width: 992px) {
	.content .template .listing .order .upper > div:first-child {
		max-width: 240px;
		min-width: 180px;
		margin: 0;
	}

	.content .template .listing .order .upper > div + div,
	.content .template .listing .order .upper > .order-content-toggle {
		margin-left: 65px;
	}

	.content .template .listing .order .upper .thumbnails {
		min-width: auto;
		max-width: none;
		order: initial;
		flex: 1;
	}
}

/********** ORDER CONTENT **********/

.content .template .listing .order .order-content {
	background-color: #fafafa;
	font-size: 0;
	max-height: 0;
	overflow: hidden;
	transition: var(--transition);
}
.content .template .listing .order.open .order-content {
	max-height: none;
}

.content .template .listing .order .order-content > div {
	padding: 40px 20px;
	border-top: 1px solid #e0dedd;
}
.content .template .listing .order .order-content:first-child > div {
	border-top: none
}

.content .template .listing .order .order-content .order-details.row {
	margin: -20px;
}
.content .template .listing .order .order-content .order-details.row > div {
	padding: 20px;
}

.content .template .listing .order .order-content .order-details p {
	font-family: var(--brandon);
	font-size: 16px;
	font-weight: bold;
	color: var(--black);
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 35px;
}
.content .template .listing .order .order-content .order-details span {
	display: block;
	font-size: 12px;
	color: var(--l-grey);
	line-height: 1;
	margin-bottom: 15px;
}
.content .template .listing .order .order-content .order-details span:last-child {
	margin-bottom: 0;
}
.content .template .listing .order .order-content .order-details span b {
	font-weight: 600;
	color: var(--black);
}
.content .template .listing .order .order-content .order-details .button {
	margin-top: 5px;
}


.content .template .listing .order .order-content .listing.listing-product-inline {
	margin: 40px 0;
}
.content .template .listing .order .order-content .listing.listing-product-inline .product-inline {
	padding: 30px;
}
.content .template .listing .order .order-content .listing.listing-product-inline .product-inline.checkbox-wrapper {
	flex-direction: initial;
	padding: 18px;
}
.content .template .listing .order .order-content .listing.listing-product-inline .product-inline + .product-inline {
	margin-top: 10px;
}
.content .template .listing .order .order-content .listing.listing-product-inline .product-inline.checkbox-wrapper + .product-inline {
	margin-top: 5px;
}

.content .template .listing .order .order-content  .listing.listing-product-inline .product-inline .image {
	position: relative;
	max-width: 180px;
	min-width: 180px;
	height: 160px;
}
.content .template .listing .order .order-content  .listing.listing-product-inline .product-inline .image img {
	display: block;
	max-height: 100%;
	margin: auto;
}
.content .template .listing .order .order-content  .listing.listing-product-inline .product-inline.returned .image img {
	opacity: 0.2;
}

.content .template .listing .order .order-content  .listing.listing-product-inline .product-inline.returned .image span {
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	height: 27px;
	font-family: var(--brandon);
	font-size: 14px;
	font-weight: 600;
	color: var(--black);
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	padding: 8px;
	background-color: rgba(222, 182, 121, .3);
	pointer-events: none;
}


.content .template .listing .order .order-content .footer p {
	font-size: .875rem;
	color: var(--l-grey);
	line-height: 1;
}
.content .template .listing .order .order-content .footer p a {
	font-weight: 600;
	color: var(--golden);
	border-bottom: 1px solid currentColor;
}
.content .template .listing .order .order-content .footer p a:hover,
.content .template .listing .order .order-content .footer p a:focus {
	border-bottom-color: transparent;
}


@media(min-width: 768px) {
	.content .template .listing .order .order-content .listing.listing-product-inline {
		margin: 60px 0;
	}
}

@media(min-width: 992px) {
	.content .template .listing .order .order-content > div {
		padding: 75px 95px 80px;
	}

	.content .template .listing .order .order-content .listing.listing-product-inline .product-inline {
		margin-left: -30px;
		margin-right: -30px;
	}
}


/********************************************/
/********** PRODUCT INLINE LISTING **********/
/********************************************/

.content .template .listing .product-inline {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
}
.content .template .listing .product-inline + .product-inline {
	margin-top: 70px;
}

.content .template .listing .product-inline .remove {
	position: absolute;
	top: 0;left: 0;
	width: 40px;
	height: 165px;
	color: var(--golden);
	border: 1px solid currentColor;
}
.content .template .listing .product-inline .remove:hover,
.content .template .listing .product-inline .remove:focus {
	color: #ab8346;
}
.content .template .listing .product-inline .remove::before,
.content .template .listing .product-inline .remove::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	width: 17px;
	height: 1px;
	background-color: currentColor;
}
.content .template .listing .product-inline .remove::before {
	transform: rotate(45deg);
}
.content .template .listing .product-inline .remove::after {
	transform: rotate(-45deg);
}


.content .template .listing .product-inline .image {
	max-width: 220px;
	min-width: 220px;
}

.content .template .listing .product-inline .details {
	min-width: 100%;
	max-width: 100%;
	margin-top: 35px;
	text-align: center;
}
.content .template .listing .product-inline .details .quantity-select {
	margin: 30px auto 0;
}

.content .template .listing .product-inline > div > span {
    font-size: 12px;
}

.content .template .listing .product-inline .price span.title {
	font-family: var(--open);
	margin: 0;
	position: relative;
	top: -1px;
}

.content .template .listing .product-inline .button {
	padding-top: 20px;
	padding-bottom: 20px;
}

@media(max-width: 991px) {
	.content .template .listing .product-inline .remove ~ .image,
	.content .template .listing .product-inline .remove ~ .price {
		margin-left: 70px;
	}
	.content .template .listing .product-inline .remove ~ .details {
		padding-left: 70px;
	}
}

@media(min-width: 992px) {
	.content .template .listing .product-inline {
		flex-direction: initial;
		align-items: initial;
	}

	.content .template .listing .product-inline .details {
		flex: 1;
		margin: 0;
		margin-left: 60px;
		min-width: auto;
		max-width: none;
		text-align: left;
		display: flex;
		flex-direction: column;
	}
	.content .template .listing .product-inline .details .quantity-select {
		margin: 0;
		margin-top: auto;
	}

	.content .template .listing .product-inline .price {
		margin-left: auto;
	}

	.content .template .listing .product-inline .remove {
		position: relative;
		height: auto;
		margin-right: 30px;
	}
}


/*************************************/
/********** QUANTITY SELECT **********/
/*************************************/

.content .template .quantity-select {
    position: relative;
    padding: 0 40px 18px;
    border-bottom: 1px solid #ebeaea;
	width: 90px;
	font-size: 0;
}

.content .template .quantity-select span {
	display: block;
	font-size: 14px;
	line-height: 1;
	color: var(--black);
	text-align: center;
}

.content .template .quantity-select a {
    position: absolute;
    top: 0;
    width: 15px;
    height: 15px;
    font-size: 0;
}
.content .template .quantity-select a.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.content .template .quantity-select a.minus {
    left: 0;
}
.content .template .quantity-select a.plus {
    right: 0;
}
.content .template .quantity-select a::before,
.content .template .quantity-select a.plus::after {
    content: "";
    position: absolute;
	top: 0;bottom: 0;
	left: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: var(--golden);
    transition: inherit;
}
.content .template .quantity-select a.plus::after {
    transform: rotate(90deg);
}
.content .template .quantity-select a:hover::before,
.content .template .quantity-select a:hover::after,
.content .template .quantity-select a:focus::before,
.content .template .quantity-select a:focus::after {
    background-color: #ab8346;
}


/****************************************/
/********** PROCESS ORDER PAGE **********/
/****************************************/

.shop-content .form .row.billing-address {
	margin-top: 40px;
}

/********** CHECKBOX LISTING **********/

.shop-content .form .listing.listing-checkbox {
	margin: 60px 0 0;
}

.shop-content .listing.listing-checkbox .item {
	padding: 30px 20px;
	background-color: #fafafa;
	display: flex;
	align-items: flex-start;
}
.shop-content .listing.listing-checkbox .item + .item{
	margin-top: 10px;
}

.shop-content .listing.listing-checkbox .item .checkbox-wrapper {
	flex: 1;
}
.shop-content .listing.listing-checkbox .item .checkbox-wrapper + div {
	margin-left: 20px;
	font-size: 14px;
	font-weight: bold;
	color: var(--black);
}

.shop-content .listing.listing-checkbox .item input[type='checkbox'] + label,
.shop-content .listing.listing-checkbox .item input[type='radio'] + label {
	background-color: white;
}
.shop-content .listing.listing-checkbox .item input[type='checkbox'] + label + label,
.shop-content .listing.listing-checkbox .item input[type='radio'] + label + label {
	color: var(--black);
}
.shop-content .listing.listing-checkbox .item input[type='checkbox'] + label + label span,
.shop-content .listing.listing-checkbox .item input[type='radio'] + label + label span {
	display: block;
	margin-top: 2px;
	color: #a9a8a8;
	line-height: 1.75;
}

.shop-content .listing.listing-checkbox .item.payment-method.mb img {
	width: 33px;
}
.shop-content .listing.listing-checkbox .item.payment-method.paypal img {
	width: 73px;
}
.shop-content .listing.listing-checkbox .item.payment-method.mbway img {
	width: 50px;
}
.shop-content .listing.listing-checkbox .item.payment-method.credit-card img {
	width: 93px;
}

.shop-content .listing.listing-checkbox .item.payment-method.mbway .details {
	min-width: 420px;
	max-width: 420px;
	margin-left: 36px;
	margin-top: 60px;
	margin-bottom: 20px;
}
.shop-content .listing.listing-checkbox .item.payment-method.mbway .details > label {
	color: var(--black);
	margin-bottom: 20px;
}


@media(min-width: 992px) {
	.shop-content .listing.listing-checkbox .item .checkbox-wrapper + div {
		margin-left: 60px;
	}
	.shop-content .listing.listing-checkbox .item.payment-method .checkbox-wrapper + div {
		min-width: 80px;
		text-align: right;
	}
}


/************************************/
/********** THANK YOU PAGE **********/
/************************************/

.shop-content.thank-you-page .header {
	min-height: auto;
	padding: 80px 0 60px;
	text-align: center;
}

.shop-content.thank-you-page .template {
	text-align: center;
}

.shop-content.thank-you-page .mb-details {
	margin: 50px auto;
	padding: 35px 40px;
	background-color: #fafafa;
	display: flex;
	width: 390px;
	max-width: 100%;
}
.shop-content.thank-you-page .mb-details img {
	max-width: 57px;
}
.shop-content.thank-you-page .mb-details div {
	flex: 1;
	text-align: left;
	margin-left: 38px;
}
.shop-content.thank-you-page .mb-details div span {
	display: block;
	font-size: 14px;
	font-weight: 300;
	color: var(--black);
	line-height: 1;
}
.shop-content.thank-you-page .mb-details div span + span {
	margin-top: 15px;
}
.shop-content.thank-you-page .mb-details div span b {
	font-weight: bold;
}

.shop-content.thank-you-page .template > .button {
	margin-top: 70px;
}
.shop-content.thank-you-page .mb-details + .button {
	margin-top: 0;
}


@media(min-width: 768px) {
	.shop-content.thank-you-page .header {
		padding: 140px 0 110px;
	}

	
	.shop-content.thank-you-page .mb-details {
		margin: 70px auto;
	}
}


/********************************/
/********** SWEETALERT **********/
/********************************/

.swal-overlay {
	background-color: rgba(0, 0, 0, .88);
}

.swal-modal {
	border-radius: 0;
	width: 515px;
}
.swal-title {
	font-family: var(--brandon);
	font-size: 1.75rem;
	font-weight: 300;
	color: var(--black);
	text-transform: uppercase;
}
.swal-text {
	font-size: 1rem;
	font-weight: 300;
	color: #535252;
	text-align: center;
	padding: 0 65px;
	max-width: 100%;
}

.swal-footer {
	text-align: center;
	margin: 20px 0 45px;
	padding: 0;
}
.swal-button-container {
	margin: 0;
}
.swal-button,
.swal-button:not([disabled]):hover,
.swal-button:not([disabled]):focus {
	display: inline-block;
	padding: 20px 55px;
	background-color: var(--golden);
	font-family: var(--brandon);
	font-size: .875rem;
	font-weight: 500;
	color: white !important;
	line-height: 1;
	text-transform: uppercase;
	border-radius: 0;
    position: relative;
	transition: var(--transition);
}

@media(max-width:767px){
	.swal-modal {
		width: 100%;
	}
}