body,
html {
	width: 100%;
}

body.lock,
html.lock {
	overflow: hidden;
	position: static;
} 

body {
	min-height: 100vh;
    min-height:  -webkit-fill-available;
}

#loading {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0,0,0,0.5);
    z-index:99999999999999;
}

.ds-none{
    display: none;  
}
.container.container-full {
	max-width: 1240px;
}
@media(min-width: 768px) {
	.container.container-xs {
		max-width: 540px; /* 500 + 40 padding */
	}
	.container.container-md {
		max-width: 930px; /* 890 + 40 padding */
	}
}

@media(min-width: 992px) {
	.container {
		max-width: 884px; /* 844 + 40 padding */
	}
}

/*************************************/
/********** GENERAL CONTENT **********/
/*************************************/

@media(min-width: 768px) {
	:root {
		font-size: 14px;
    }
}

.content.shop .template.recovery > .container > p:first-child {
	margin: 0 0 40px 0;
}
@media(min-width: 992px) {
	:root {
		font-size: 16px;
	}
	.content.shop .template {
		padding: 100px 0;
	}
	.content.shop .template.recovery {
		padding: 50px 0 100px 0;
	}
	.content.shop .template.recovery > .container > p:first-child {
		margin: 0 0 58px 0;
		font-size: 18px;
	}
}
.form .btn {
	display: inline-block;
	overflow: visible;
}
.content.shop.login .banner {
	padding-bottom: 10px;
}

.content.shop .template .form .row {
	margin: 0;
}
.content.shop .template .form .row > * {
	padding: 0;
}
.content.shop {
	background-color: white;
	min-height: calc(100vh - 404px);
}
.content.shop.thank-you {
	margin-top: 99px; 
}
.content.shop .banner {
	min-height: 0;
	background: transparent;
} 
.content.shop.thank-you .container  {
	display: flex;
	flex-direction: column;
	text-align: center;
	max-width: 770px;
}

.content.shop .banner,
.content.shop h1 {
	color: var(--secondary);
}
.content.shop .banner .container h1 {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0;
	font-family: 'Gotham Book';
	font-weight: normal;
	text-transform: capitalize;
}
.content.shop .banner .container ul {
	color: #7d7d7c;
}
.content.shop .banner .container ul li {
	list-style: none;
}
.content.shop .banner .container li a {
	color: #7d7d7c;
	font-weight: normal;
	font-size: 13px;
}
.content.shop .banner .container li {
	display: inline-block;
}
.dummy {
	visibility: hidden;
}

.content.shop .template.recovery h2 {
	color: var(--pink);
}
/********** HEADER **********/

header.has-shop .shop-wrapper > a,
header.has-shop .shop-wrapper > div {
	position: relative;
	display: inline-block;
	padding: 10px;
	background-color: transparent;
	font-size: 0;
	cursor: pointer;
}
header.has-shop .shop-wrapper > a + a,
header.has-shop .shop-wrapper > div + a {
	margin-left: 10px;
}

header.has-shop .shop-wrapper > a img,
header.has-shop .shop-wrapper > div img {
	height: 20px;
	transition: var(--transition);
}
header.has-shop .shop-wrapper > a:hover img,
header.has-shop .shop-wrapper > a:focus img {
	transform: scale(1.1);
}

header.has-shop .shop-wrapper > a span {
	position: absolute;
	top: 0;right: 2px;
	font-size: 11px;
	font-weight: 500;
	color: rgb(var(--primary));
	line-height: 1;
}
header.has-shop .shop-wrapper > div span {
	position: absolute;
	top: 5px;right: -2px;
	width: 9px;
	height: 5px;
	border-left: 2px solid rgb(var(--primary));
	border-bottom: 2px solid rgb(var(--primary));
	transform-origin: bottom left;
	transform: rotate(-45deg);
}

header.has-shop .store-icons > .profile {
	cursor: pointer;
}
header.has-shop .store-icons > .profile > div {
	position: absolute;
	top: 100%;
	left: -70px;
	padding-top: 10px;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	padding-right: 0;
	padding-left: 0;
}
header.has-shop .store-icons > .profile:hover > div,
header.has-shop .store-icons > .profile:focus > div {
	opacity: 1;
	pointer-events: auto;
}

header.has-shop .store-icons > .profile > div > div {
	position: relative;
	padding: 27px 30px;
	margin: 0;
	background-color: #080f22;
}
header.has-shop .store-icons > .profile > div > div::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50px;
	height: 0;width: 0;
	border-bottom: 12px solid #080f22; 
	border-left: 12px solid transparent; 
	border-right: 12px solid transparent;
} 

header.has-shop .store-icons > .profile > div a {
	display: inline-block;
	font-size: 12px;
	color: white;
	white-space: nowrap;
	opacity: 0.5;
	margin: 0;
	padding: 2px 0; 
	font-family: 'Gotham Book';
}
header.has-shop .store-icons > .profile > div a + a {
	margin-top: 10px;
}
header.has-shop .store-icons > .profile hr {
	background-color: white;
	width: 100%;
	height: 1px;
	padding: 0;
	margin: 17px 0;
	opacity: 0.3;
}
header.has-shop .store-icons > .profile > div a:hover,
header.has-shop .store-icons > .profile > div a:focus {
	opacity: 1;
}

header.has-shop .shop-wrapper > div hr {
	margin: 15px 0;
	border-color: var(--black)
}


@media(max-width: 767px) {
	header.has-shop .shop-wrapper {
		position: absolute;
		top: 39px;bottom: 0;
		right: 10px;
		height: 40px;
		margin: auto;
	}
}

@media(max-width: 991px) {
	header.has-shop > div > a.contact-us {
		font-size: 0;
		padding-right: 0;
		align-self: stretch;
	}
}


/********** TEMPLATE **********/

.content.shop .listing.listing-button {
	margin: 60px 0;
}
.content.shop .listing.listing-button .button {
	padding: 20px 30px;
}
.content.shop .h2:first-child {
	margin-top: 0;
}
.content.shop .template h2 {
	text-transform: inherit;
	font-weight: 300;
}
.content .template.login .container > .row > div:first-child h2 {
	color: var(--pink);
}
.content .template .container  .btn.pink::after {
	background-color: var(--pink);
}
.swal-title {
	color: #0a2a3b;
    font-weight: 300;
}
.swal-text {
	font-weight: 300;
}
.content.shop h2,
.content.shop .h2,
.content.shop h3,
.content.shop .h3 {
	text-align: center;
	font-size: 1.5rem;
	color: var(--black);
	letter-spacing: -1.4px;
}
.content.shop h3,
.content.shop .h3 {
	font-size: 1rem;
	font-weight: 400;
}
.content.shop p {
	font-size: 1.0625rem;
	color: #535252;
	line-height: 1.75;
}
[submit] span {
	font-size: 10px;
}


@media(max-width: 767px) {
	.content .template {
		padding-top: 60px;
		padding-bottom: 100px;
	}
}

@media(min-width: 767px) {
	[submit] span,
	.content.shop .btn span {
		font-size: 12px;
	}
	.content.shop .template.recovery h2 {
		font-size: 28px;
		max-width: 270px;
	}
}
 
@media(min-width: 992px) {
	.content.shop.thank-you h1 {
		margin-bottom: 60px;
	}
	.content.shop .listing.listing-button .button {
		padding: 25px 40px;
	}
}

.content .template .form .warning {
    font-size: 14px;
    font-weight: 400;
    color: var(--warning);
    height: 20px;
    margin: 0;
    margin-top: 7px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}

/**************************/
/********** FORM **********/
/**************************/

.content .template.has-sidebar .container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content.shop p.big {
	margin: 0;
	font-family: var(--font-family1);
	font-size: 16px;
}
.content.shop .access-info .template-module:not(:last-child) > * {
	margin-bottom: 30px;
}
@media(min-width: 768px) {
    .content .template.has-sidebar .container {
		flex-direction: initial;
	}
	.content.shop p.big {
		font-size: 18px;
		margin: 34px 0 44px 0;
	}
	.content.shop p.big:first-child {
		margin-top: 0;
	} 
	.content.shop .access-info .template-module:not(:last-child) > * {
		margin-bottom: 60px;
	}
}


.content.shop .banner .container ul {
	display: flex;
	justify-content: center;
}
.content.shop .template .oauth .btns {
	display: flex;
	margin: 0 -4px;
	position: relative;
	left: 0;
	top: 0;
}
.content.shop .template .oauth a {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
	padding: 14px 40px;
}
.content.shop .template .oauth a > * {
	display: block;
}
.content.shop .template .oauth a img {
	max-width: 23px;
	max-height: 25px;
	margin-right: 15px;
}

.content.shop .template .h3 {
	font-size: 16px;
	margin-bottom: 30px;
}

.content.shop .template .visitor {
	margin-top: 40px;
}

.content.shop .template .form > div > div {
	margin: 12px 0;
}
.content.shop .template .form .remember {
	margin-top: 0;
	display: inline-block;
}
.content.shop .template .btn {
	padding: 17px 21px;
	display: inline-block;
}
a.btn {
	cursor: pointer;
}
.content .template .listing .product-inline .button.button-sm,
.content.shop .template .btn.button-sm {
	padding: 12px 32px;
}
.content .template .form .remember span a {
	color: #999999;
}
.content.shop .template .oauth {
	margin-top: 43px;
}

.content.shop input ~ p:not(.warning) {
	font-family: var(--font-family1);
	font-style: italic;
	font-size: 10px;
	text-align: right;
	color: #c4c3c3;
	margin: 5px 0 0 0;
	position: absolute;
	bottom: -22px;right: 0;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0), 0 0 5px rgba(128,189,255,0);
}
.content.shop .template .form > div > div.prefix {
	margin-right: auto;
}

.content .template .form input[type='checkbox'] + label, 
.content .template .form input[type='radio'] + label {
    display: inline-block;
    vertical-align: middle;
    height: 23px;
    width: 23px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.content .template .form input[type='checkbox']#privacy-policy + label {
	background-color: transparent;
	border: solid 1px rgba(224, 223, 223, 0.98);
}
.content .template .form.contact-form input[type='checkbox']#privacy-policy + label {
	border-color: white;
}
.content .template .form input[type='checkbox'] + label::before {
	font-size: 11px;
    width: 11px;
}
.content .template .form.contact-form input[type='checkbox'] + label::before {
	color: white;
}
.content .template .form .listing-checkbox input[type='checkbox'] + label + label, 
.content .template .form .listing-checkbox input[type='radio'] + label + label {
	padding-left: 15px;
}

.content .template .form input[type='checkbox'] + label + label, 
.content .template .form input[type='radio'] + label + label {
    display: inline-block;
    padding-left: 10px;
    color: var(--grey);
    font-weight: 300;
    line-height: 1.25;
    flex: 1;
    margin-top: 2px;
    cursor: pointer;
	text-align: left;
}
.content.shop .template .form > div > div.small-text {
	margin: 0;
}
.content.shop .template .form > div > div.small-text a {
	color: inherit;
}
.content.shop .template .form > div > div.requirements:last-child span {
	font-size: 10px;
}
.content.shop .template .form > div > div.requirements span,
.content.shop .template .form > div > div.small-text span {
	font-size: 11px;
	font-family: var(--font-family1);
	color: #999999;
}

.content.shop .template .form > div > div.remember {
	margin: 10px 0 20px 0;
}
.content .template .form .warning::before {
	content: none;
}
.content .template .form .warning {
	padding: 0;
	font-size: 10px;
	font-weight: normal; 
	font-family: var(--font-family1); 
}
.content .template .form input.not-filled {
    border-bottom-color: var(--warning);
}
.content.shop .template .visitor {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (min-width:992px) {
	.content.shop.cart > .template {
		margin-top: 10px;
	}
	.content.shop .template .form > div > div.requirements {
		margin-top: 10px;
	}
	.content.shop .template .oauth a img {
		margin-right: 20px;
	}
	.content.shop .template .oauth {
		margin-top: 53px;
	}
	.content.shop .template .button-wrapper .btn {
		padding: 28px 45px;
	}
	.content.shop .template .oauth a {
		padding: 17px 40px;
	}
	.content.shop .template .h3 {
		margin-bottom: 47px;
	}
	.content.shop .template .oauth .h3 {
		margin-bottom: 40px;
	}
	.content.shop .template .visitor {
		margin-top: 70px;
	}
	.content.shop .template .form .row .billing-address > *,
	.content.shop .template .form .access-info .btn,
	.content.shop .template .form .row > div {
		margin: 25px 0;
	}
	.content.shop .template .form > div > div:last-child {
		margin-bottom: 0; 
	}
	.content.shop .template .form .row > div:first-child,
	.content.shop .template .form > div > div:first-child {
		margin-top: 0;
	}
	.content.shop .template .form .remember {
		margin-top: 10px;
	}
}
.content.shop .template .form .filled input,
.content.shop .template .form .input-wrapper input:focus {
	border-bottom: 1px solid var(--pink);
}
.content.shop .template .form label a {
	color: var(--pink);
	font-weight: 300;
}
.content .template .form .prefix + div {
	margin-left: auto !important; 
}
.content .template .form .prefix label {
	text-align: left;
}
.content.shop .template .form input,
.content.shop .template .form textarea,
.content.shop .template .form select,
.content.shop .template .form .custom-select .placeholder {
	font-size: 14px;
	font-family:  var(--font-family1);
}
.content.shop .template .form .row > .requirements {
	font-size: 10px;
	font-family: var(--font-family1);
	color: #999999;
}
.content .template .form input,
.content .template .form textarea,
.content .template .form select {
	appearance: none;
	-webkit-appearance: none;
	font-family: var(--font-family1);
	font-size: 16px;
	font-weight: 400;
	color: var(--grey);
	line-height: 1;
	width: 100%;
	padding: 16px 0;
	background-color: transparent;
    border: none;
    border-bottom: 1px solid #d0d1d1;
    resize: none;
	transition: var(--transition);
	border-radius: 0;
}
.content .template .form.contact-form input,
.content .template .form.contact-form textarea,
.content .template .form.contact-form select {
	border-color: white;
}

.content .template .form .input-wrapper label {
    position: absolute;
    top: 0;
    transform: translateY(16px);
    pointer-events: none;
	transition: var(--transition);
	font-weight: normal;
}

.content .template .form .input-wrapper input:focus + label, 
.content .template .form .input-wrapper input[placeholder] + label, 
.content .template .form .input-wrapper textarea:focus + label, 
.content .template .form .input-wrapper textarea[placeholder] + label, 
.content .template .form .input-wrapper.filled label {
    transform: translateY(-6px);
    font-size: 10px;
}
.content .template .form label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #999999;
    line-height: 1;
	margin: 0;
	font-family: var(--font-family1);
}
.content .template .form.contact-form label,
.content .template .form.contact-form label a {
	color: white;
}
.content .template .form.contact-form label a {
	display: inline;
}

.content .template .container-form .form {
	max-width: 500px;
}

.content .template .form:not(:last-child) {
	margin-bottom: 2rem;
}
.content.shop .form-registo .h2 {
	color: var(--pink);
} 

.content .template .form .row + .row {
	margin-top: 50px;
}

.content .template .form h2,
.content .template .form .h2 {
	margin: 0;
}


.content .template .form .row > div > label {
	margin: 20px 0;
}

.content .template .form label a {
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	font-weight: 600;
}
.content .template .form label a:hover,
.content .template .form label a:focus {
	border-bottom-color: transparent;
}

.content .template .form span a {
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
}
.content .template .form span a:hover,
.content .template .form span a:focus {
	color: var(--black);
	border-bottom-color: currentColor;
}


.content .template .form .password-wrapper .peek {
	position: absolute;
	top: calc(5px + 12px);
	right: 0;
	width: 25px;
	height: 25px;
    background-position: center;
    background-image: url(/assets/img/shop/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;
	margin: 0;
}
.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);
	font-weight: normal;
}
.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 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;
}


/**********************************************************************/
/********** 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/arrow-black.svg');
	background-size: contain;
	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 .banner {
	padding-top: 0;
}
.content .product-page .banner ul {
	color: var(--black);
}
.content .product-page .banner ul li::before {
	content: normal;
}
.content .product-page .banner ul li a {
	border: none;
	color: inherit;
}

.content .product-page > .row {
	margin: -20px 0;
}
.content .product-page > .row > div {
	padding: 20px 0;
}

.content .product-page .banner h1 {
	color: var(--black);
}
.content .product-page .banner h1 + span {
	display: inline-block;
	font-size: 1rem;
    font-style: italic;
    line-height: 1;
	color: rgb(var(--primary));
	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 .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);
	background-size: contain;
	background-repeat: no-repeat;
}
.content .product-page .product-details .button + .favorites::before {
	background-image: url(/assets/img/shop/header-favorites-color.svg);
}
.content .product-page .product-details .button + .favorites::after {
	background-image: url(/assets/img/shop/header-favorites-color-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 .listing .accordion > .toggle-container {
	padding: 27px 0;
}
.content .product-page .listing .accordion > .toggle-container h3 {
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 400;
	letter-spacing: normal;
	color: rgb(var(--primary));
	text-transform: none;
}
.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: 23px;
}
.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-color.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: 100px;
	}
	.content .product-page > .row {
		margin: 0 -30px;
	}
	.content .product-page > .row > div {
		padding: 0 30px;
	}

	.content .product-page .slider-arrows {
		flex-direction: column;
		align-items: flex-end;
	}
	.content .product-page .slider-arrows a {
		width: 62px;
		height: 28px;
	}
	.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 {
	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-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/shop/icon-filter.svg);
	width: 30px;
	opacity: 1;
}
.content .template .listing .listing-options a.show-mosaic::before {
	background-image: url(/assets/img/shop/icon-grid.svg);
}
.content .template .listing .listing-options a.show-fullscreen::before {
	background-image: url(/assets/img/shop/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-inline .price {
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	position: absolute;
    bottom: 30px;
    right: 20px;
}
.content .template .listing .product-inline .price > * {
	display: block;
	width: 100%;
}
.content .template .listing .product > div > span {
	display: block;
	font-size: 14px;
	font-weight: 400;
    line-height: 1;
}
.content .template .listing .product span + span {
	margin-top: 8px;
}

.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-inline .price {
		right: initial;
		bottom: initial;
		position: relative;
	}
	.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 .template.login .container > .row {
	margin: -40px -32px;
}
.content .template.login .container > .row > div {
	padding: 40px 32px;
	flex-direction: column;
    align-items: center;
	display: flex;
}
.content .template .container .wrapper .small span {
	font-size: 10px;
}
.content .template .container .wrapper {
	width: 100%;
	height: 100%;
	padding: 50px 32px;
	border-radius: 10px;
	border: solid 2px rgba(241, 241, 242, 0.98);
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media(min-width: 768px) {
	.content .template.login .container > .row > div > .button {
		margin-top: 20px;
	}
	.content .template.login .container > .row {
		margin: -21px;
	}
	.content .template.login .container > .row > div {
		padding: 21px;
	}
}


/*****************************/
/********** SIDEBAR **********/
/*****************************/

.content .template.has-sidebar.has-sidebar-left > .container > div:not(.sidebar) {
	padding-top: 60px;
}
.content .template.has-sidebar.has-sidebar-right > .container > 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: #f9f6f6;
}
.content .template.has-sidebar .sidebar .price-breakdown hr {
	width: 100%;
	background-color: #ebeaea;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > .shipping-cost {
	max-width: 100%;
	width: 100%;
	margin-top: 20px;
}
/* .content.shop.checkout .template.has-sidebar .cart-sidebar .price-breakdown > div:first-child,
.content.shop.checkout .template.has-sidebar .cart-sidebar .price-breakdown > .shipping-cost > div:first-child {
	color: var(--secondary);
	font-size: 14px;
	font-weight: normal;
	font-family: 'Gotham Book';
	text-transform: none;
} */
.content .template.has-sidebar .sidebar.fixed {
	position: fixed;
}
.content .template.has-sidebar .sidebar > p {
	margin: 0 0 20px 0;
	color: var(--primary);
	font-size: 14.5px;
	font-weight: 900;
	text-transform: uppercase;
}
.content .template.has-sidebar .sidebar ul {
	display: block;
	padding: 0;
	margin: 0;
}
.content .template.has-sidebar .sidebar ul li {
	font-size: 14px;
	font-weight: normal;
	color: var(--black);
	margin: 0;
	padding: 4px 0;
}
.content .template.has-sidebar .sidebar ul li::before {
	content: normal;
}
.content .template.has-sidebar .sidebar ul li a {
	display: inline-block;
	color: inherit;
	border: none;
	font-family: 'Gotham Book';

}
.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 .btn span {
	color: white;
	letter-spacing: 0.28px;
	font-size: 14px;
}
.content .template.has-sidebar .sidebar span {
	display: block;
	font-size: 11px;
	color: #888787;
	line-height: 1;
}
.content.shop.checkout .template.has-sidebar .cart-sidebar .price-breakdown > .price {
	justify-content: flex-end;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div > div:last-child:not(.title),
.content.checkout .template.has-sidebar .cart-sidebar .price-breakdown .title {
	font-size: 14px;
} 
@media(min-width: 768px) {
	.content .template.has-sidebar .cart-sidebar .price-breakdown > .shipping-cost {
		margin-top: 28px;
	}
	.content .template.has-sidebar {
		display: flex;
		align-items: flex-start;
	}
	.content .template.has-sidebar.has-sidebar-left > .container > div:not(.sidebar),
	.content .template.has-sidebar.has-sidebar-right > .container > div:not(.sidebar) {
		padding: 0;
		flex: 1;
	}
	.content .template.has-sidebar.has-sidebar-left > .container > div:not(.sidebar) {
		padding-left: 85px;
	}
	.content .template.has-sidebar.has-sidebar-right > .container > div:not(.sidebar) {
		padding-right: 85px;
	}

	.content .template.has-sidebar .sidebar {
		width: 270px;
		padding: 36px 30px;
		margin: 0;
	}
	.content .template.has-sidebar .cart-sidebar {
		width: 330px;
	}

	.content .template.has-sidebar .sidebar + div {
		max-width: calc(100% - 270px);
	}
}
.content .template.has-sidebar.has-sidebar-left > .container > div:not(.sidebar) .items > hr {
	margin-top: 0;
}
@media(min-width: 992px) {
	.content .template.has-sidebar.has-sidebar-left > .container > div:not(.sidebar) {
		padding-left: 115px;
	}
	.content .template.has-sidebar.has-sidebar-right > .container > div:not(.sidebar) {
		padding-right: 115px;
	}
}

/********** CART SIDEBAR **********/

.content .template.has-sidebar .cart-sidebar .price-breakdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > hr + div {
	color: var(--secondary);
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}
.content.shop.checkout .template.has-sidebar .cart-sidebar .price-breakdown .price .old {
	margin-bottom: 10px;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > hr ~ .price {
	justify-content: end;
	max-width: 80px;
}
.content.shop.checkout .template.has-sidebar .cart-sidebar .price-breakdown > hr ~ .price > div {
	font-size: 20px;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > hr + div span {
	font-size: 10px;
	font-weight: normal;
	font-family: var(--font-family1);
	text-transform: none;
	margin-top: 11px;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div {
	display: flex;
	max-width: 70px;
	flex-wrap: wrap;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: var(--primary);
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-child {
	font-weight: bold;
	text-transform: uppercase;
	flex-direction: column;
	align-items: flex-end;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-child span {
	font-weight: 400;
	text-transform: none;
}
.content.checkout .template.has-sidebar .cart-sidebar .price-breakdown > div:first-child {
    margin-top: 20px;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:first-child {
	margin-top: 20px;
	font-size: 16px;
	font-weight: bold;
	color: var(--secondary);
	text-transform: uppercase;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:first-child span {
	text-transform: none;
	font-weight: 300;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div > div:last-child:not(.title) {
	margin-left: auto;
	font-weight: 600;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown .price .old {
	color: #b3d9dc;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div span {
	color: #a9a8a8;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:first-of-type span {
	margin-top: 9px;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-of-type span {
	margin-bottom: 9px;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown hr {
	border-top-color: #d0d1d1;
	margin: 28px 0;
}


.content .template.has-sidebar .cart-sidebar .discount-code {
	margin: 30px -30px 40px;
	padding: 28px 20px 30px;
	background-color: #0a2a3b;
}

.content .template.has-sidebar .cart-sidebar .discount-code .h3 {
	color: white;
	font-size: 18px;
	margin-bottom: 15px;
}

.content .template.has-sidebar .cart-sidebar .discount-code .form {
	display: flex;
	align-items: flex-end;
	margin-bottom: 0;
}
.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 {
	font-size: 11px;
	border-bottom-color: var(--pink);
	color: white;
}
.content .template.has-sidebar .cart-sidebar .discount-code .form input::placeholder {
	font-size: inherit;
	color: #888888;
}
.content .template.has-sidebar .cart-sidebar .discount-code .form a.btn,
.content .template.has-sidebar .cart-sidebar .discount-code .form a.btn span {
	font-size: 10px;
	color: var(--pink);
}
.content .template.has-sidebar .cart-sidebar .discount-code .form a.btn::after {
	background-color: transparent;
	border: 2px solid var(--pink)
}

.content .template.has-sidebar .cart-sidebar .discount-code .msg {
	position: relative;
	display: block;
	font-size: 11px;
	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: #ceeb02;
}
.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: 11px;
	margin-top: 3px;
	line-height: 1.8;
	color: #999999;
}
.content .template.has-sidebar .cart-sidebar .form input[type='checkbox'] + label + label a {
	color: var(--secondary);
}

.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;
	font-size: 10px;
	line-height: 1.6;
	font-family: var(--font-family1);
}

/********** 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 + 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: rgb(var(--primary));
	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-size: 18px;
	font-style: italic;
	color: rgb(var(--primary));
	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 input[type='checkbox'] + label + label {
	margin: 0;
}
.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);
	}
}


/*************************************/
/********** PRODUCT LISTING **********/
/*************************************/

.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-size: 16px;
    font-style: italic;
    color: rgb(var(--primary));
	margin: 0;
	line-height: 1;
    margin-bottom: 1em;
}
.content .template .listing .product > div > span {
	display: block;
	font-size: 14px;
	font-weight: 400;
    line-height: 1;
}
.content .template .listing .product span + span {
	margin-top: 8px;
}
.content .template .listing .product span.title {
	font-size: 16px;
	font-family: 'Gotham Book';
	font-weight: normal;
	text-align: left;
	color: var(--black);
	line-height: 1.25;
	margin-bottom: 12px;
	text-transform: none;
	
}
.content .template .listing .product-inline .details > span:not(.category):not(.title) {
	color: #838384;
	font-family: var(--font-family1);
	font-size: 11px;
}
.content.shop .template .items .details p.category,
.content .template .listing .product-inline > div > span.category {
	margin-top: 0;
	margin-bottom: 20px;
}
.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.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);
	}
}


/************************************/
/********** ACCOUNT ORDERS **********/
/************************************/

/********** ACCOUNT ORDERS LISTING **********/

.content .template .listing .order .upper {
	display: flex;
	padding: 30px 0;
	flex-wrap: wrap;
	font-family: var(--font-family1);
}
.content .template .listing .order .upper span {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--grey);
	line-height: 1;
}

.content .template .listing .order .upper span + span {
	margin-top: 18px;
}

.content .template .listing .order .upper span,
.content .template .listing .order .upper .status-bar span:last-child {
	color: #838384;
    font-weight: 300;
}

.content .template .listing .order .upper span b {
	font-weight: 600;
	color: var(--secondary);
}

.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: #f3f3f3;
	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: #ecd958;
	width: 40%;
}
.content .template .listing .order .upper .status-bar .bar.processing::before {
	background-color: #f095a6;
	width: 60%;
}
.content .template .listing .order .upper .status-bar .bar.dispatched::before {
	background-color: #ecbd1b;
	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 .form input[type='radio'] + label {
    border-radius: 100%;
}
.content .template .form .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.content .template .form input[type='checkbox'], 
.content .template .form input[type='radio'] {
    display: none;
}
.content .template .listing .order .upper .thumbnails .row {
	margin: 0 -5px;
}
.content .template .listing .order .upper .thumbnails .row > div {
	padding: 0 5px;
	max-height: 75px;
	max-width: 75px;
}
.content .template .listing .order .upper .thumbnails .row > div .image {
	width: 100%;
	padding-top: 108.4%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.content .template .listing .order .upper .thumbnails > span {
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	height: 1em;
	margin: auto;
	font-size: 18px;
	line-height: 1;
	color: var(--black);
	font-weight: bold;
}

.content .template .listing .order .upper .order-content-toggle {
	cursor: pointer;
	position: relative;
	max-width: 40px;
	min-width: 40px;
	border: 1px solid var(--primary);
	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(--primary);
	border-bottom: 2px solid var(--primary);
	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 {
		min-width: 180px;
		margin: 0;
	}

	.content .template .listing .order .upper > div + div {
		margin-left: 35px;
	}
	.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;
	border-bottom: 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-size: 1.25rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: -1px;
	text-align: left;
	color: #0a2a3b;
}
.content .template .listing .order .order-content .order-details span {
	display: block;
	font-size: 12px;
	color: var(--grey);
	line-height: 1;
}
.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);
	font-family: var(--font-family1);
}

.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: 20px;
}
.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-size: 14px;
	font-weight: 600;
	color: var(--black);
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	padding: 8px;
	background-color: rgba(var(--primary), .3);
	pointer-events: none;
}


.content .template .listing .order .order-content .footer p {
	font-size: .875rem;
	color: var(--grey);
	line-height: 1;
}
.content .template .listing .order .order-content .footer p a {
	font-weight: 600;
}
.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 0 0;
	}
}

@media(min-width: 992px) {
	.content.shop .template .h3 {
		font-size: 28px;
	}
	.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 {
	position: relative;
	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 {
	cursor: pointer;
	position: absolute;
	top: 0;left: 0;
	width: 40px;
	height: 165px;
	color: var(--primary);
	border: 1px solid currentColor;
}
.content .template .listing .product-inline .remove:hover,
.content .template .listing .product-inline .remove:focus {
	color: var(--secondary);
}
.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: 200px;
	max-height: 200px;
	display: flex;
}
.content .template .listing .product-inline .image img {
	margin: 0 auto;
	object-fit: contain;
}
.content .template .listing .product-inline .details .quantity-select {
	margin: 30px 0 0 0;
}

.content .template .listing .product-inline > div > span {
    font-size: 12px;
}
.content .template .listing .product-inline .price span {
	margin: 0
}
.content.shop .listing.listing-checkbox .item .checkbox-wrapper + .title {
	font-size: 16px;
}
header .logo {
	height: 67px;
	width: 188px;
}

.reviews-product .form input[type='radio']:checked + label::before {
	opacity: 0;
}

.content .template .form input[type='checkbox']:checked + label::before, 
.content .template .form input[type='radio']:checked + label::before {
	opacity: 1;
	color: black;
}
.content .template .form.contact-form input[type='checkbox']:checked + label::before, 
.content .template .form.contact-form input[type='radio']:checked + label::before {
	color: white
}

header .logo img {
	position: absolute;
	transition: all 1s ease;
	opacity: 0;
}

header .logo img.active {
	opacity: 1;
}

.content .template .form input[type='radio'] + label::before {
    top: 0;
    bottom: 0;
    left: 0;
	right: 0;
	margin: 7px;
    background-color: var(--primary);
	border-radius: 100%;
	position: absolute;
	content: '';
	opacity: 0;
	transition: all 0.4s ease;
}
.shop .listing.listing-checkbox .item .checkbox-wrapper + .title,
.content .template .listing .product-inline .price .title {
	margin: 0;
	position: relative;
	top: -1px;
	font-weight: 600;
	color: #59c7d1;
	margin: 7px 0; 
}

.content .template .listing .product-inline .button {
	padding-top: 20px;
	padding-bottom: 20px;
	align-self: stretch;
	text-align: center;
	margin: 0 15px;
}
.our-brands .h1,
.best-sellers .h1 {
	font-weight: 300;
	font-size: 25px;
	text-transform: initial;
}

.best-sellers {
    padding: 40px 20px;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}
@media(min-width: 768px) {
	.best-sellers {
		padding: 40px 25px;
	}
}

.listing .product .product-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	border: solid 2px rgba(241, 241, 242, 0.98);
	padding: 21px 10px;
}
/* .listing .product .product-wrapper .promo + .new {
	top: 50px;
}  */
.store.product-page .slider-container .promo,
.listing .product .product-wrapper .promo,
.listing .product .product-wrapper .new {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 20px 20px 20px;
	z-index: 2;
	position: absolute;
	top: -2px;left: -2px;
}
.store.product-page .slider-container .promo,
.listing .product .product-wrapper .promo {
	background: #fb9a01;
	left: unset;
	right: -2px;
	border-radius: 20px 0px 20px 20px;
}

.store.product-page .top .slider-container .promo {
	top: 0;right: 0;
}
.store.product-page .top .slider-container .slider::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	border: 2px solid rgba(241, 241, 242, 0.98);
	border-radius: 10px;
	pointer-events: none;
	z-index: 1;
}
.store.product-page .top .slider-container .slider .item {
	padding: 20px;
}

.listing .product .product-wrapper .new {
	background: var(--primary);
}
.listing .product .product-wrapper .new p {
	text-transform: uppercase;
}
/*
.category-highlights .listing .product .product-wrapper .new {
	background: #a82723;
}
*/

.store.product-page .slider-container .promo p,
.listing .product .product-wrapper .new p,
.listing .product .product-wrapper .promo p {
	user-select: none;
	margin: 0;
	padding: 11px 12px;
	font-size: 10px;
	font-weight: bold;
	color: white;
}
.listing .product .product-wrapper .properties {
	display: flex;
    flex-direction: column;
    flex: 1;
}
.listing .product .product-wrapper .properties .category {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}
.listing .product .product-wrapper .properties .category img {
	width: 30px;
	height: 25px;
	margin: 0 5px;
}
.product-page .slider-container .slider .item div,
.products.listing .product .image {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 100%;
    height: 0;
    overflow: hidden;
}
.products.listing .product a.image:hover img {
	transform: scale(.9);
}
.write-review .products.listing .product .image {
	padding: 0;
	height: auto;
}
.products.listing h3.title {
	font-family: "Gotham Book";
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
	/* display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; */
	/* text-overflow: -o-ellipsis-lastline; */
	/* text-overflow: ellipsis; */
	/* overflow: hidden;
	direction: ltr; */
}


@media(min-width: 768px) {
	.store.product-page .slider-container .promo p,
	.listing .product .product-wrapper .new p,
	.listing .product .product-wrapper .promo p {
		font-size: 12px;
		padding: 13px;
	}

	.listing .product .product-wrapper {
		padding: 21px 15px;
	}

	.listing .product .product-wrapper .properties .category img {
		width: 42px;
		height: 35px;
		margin: 0 10px;
	}
}

.products.listing h3.title-product {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.products.listing h3 {
	text-transform: initial;
}
.products.listing h3.title a {
    color: #525252;
	font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: inherit;
    font-size: inherit;
    text-align: center;
	direction: ltr;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.products.listing h3.title-product a {
    color: #525252;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: inherit;
    font-size: inherit;
    text-align: left;
}

.products.listing h3.title a:hover,
.products.listing h3.title:hover {
    color: var(--primary);
}

.products.listing h3.title-product a:hover {
    color: var(--primary);
}

.product-page .page-info .prices,
.prices {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

}
.prices .current {
	color: var(--secondary) !important;
}
.prices p.relative:last-child {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
	height: 13px;
}
.prices + a {
    display: block;
    margin-top: 20px;
    padding: 11px 20px;
    font-size: 10px;
	line-height: 18px;
    overflow: visible;
	width: 100%;
	display: flex;
    justify-content: center;
	align-items: center;
}

@media(min-width: 768px) {
	.prices + a {
		font-size: 12px;
	}
}

.products.listing .prices {
	margin-bottom: 20px;
}
.products.listing .prices + a {
	margin-top: auto;
}
.prices + a span {
	font-size: inherit;
}

.products.listing .prices > *:not(.relative) {
	margin: 0;
	font-size: 16px;
}
.products.listing .prices + a img {
	filter: blur(0);
	background: transparent;
	width: 16px;
	margin-right: 9px;
}
.prices > p:first-child {
	margin-right: 9px !important;
	color: rgba(15, 29, 63, 0.3);
}

.prices .current {
	font-size: 16px;
}
.icons-area {
	background: var(--pink);
	padding: 50px 20px;
}
.icons-area > .icons-container {
	max-width: 1044px;
	width: 100%;
	margin: 0 auto;
}
.icons-area > .icons-container .icons-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -45px;
}

.icons-area > .icons-container > div p {
	color: white;
	text-align: center;
	line-height: 1.375;
}
.icons-area > .icons-container > div p:nth-child(1) {
	letter-spacing: -1.5px;
} 
.icons-area > .icons-container > div p:nth-child(2) {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -.05em;
}
.feedback-container {
	position: relative;
	padding: 0;
}
.feedback-container > .bg img {
	width: 100%;
	height: 100%;
	opacity: 0.25;
	object-fit: cover;
}
.feedback-container > .bg {
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	font-size: 0;
}
.feedback-container > .bg::after {
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	margin: auto;
	mix-blend-mode: multiply;
	background: var(--pink);
	content: "";
	opacity: 0.92;
}
.feedback-container .slider-container {
	padding: 40px 25px;
	padding-top: 95px;
	overflow: visible;
	width: 100%;
	margin: 0 auto;
	max-width: 520px;
}
.feedback-container .slider-container .item p {
	color: white;
}
.feedback-container .slider-container .item .quote p {
	font-size: 16px;
	font-weight: 300;
	font-stretch: normal;
	font-style: italic;
}
.feedback-container .slider-container .item > p {
	font-size: 12px;
	font-weight: 900;
	font-style: normal;
	margin-top: 20px;
	text-transform: uppercase;
}
.feedback-container .slider-container::before {
	position: absolute;
	top: 115px;
	left: 0;
	min-width: 97px;
	max-width: 97px;
	height: 74px;
	content: "";
	background-image: url(/images/icons/store/quotes.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 55px;
}
.our-brands {
	padding: 40px 0;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.our-brands .title {
	font-size: 25px;
}
.our-brands .brands-container {
	width: 100%;
	max-width: 1044px;
	margin: 0 auto;
}
.our-brands .brands-container .brands {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.our-brands .brands-container .brands a {
	max-width: 120px;
	max-height: 120px;
	position: relative;
	display: block;
}
.our-brands .brands-container .brands a:hover img {
	filter: grayscale(0);
}
.our-brands .brands-container .brands a img {
	height: 100%;
	width: 100%;
	transition: all 0.5s ease;
	filter: grayscale(100%);
}
.our-brands .brands-container + a {
	color: white;
	padding: 13px 20px;
	margin-top: 30px;
}
footer {
	background: transparent;
	padding: 0;
}
footer .top-container {
	background-color: #f1f1f2;
}
footer .bottom-container {
	background: #0a2a3b;
}
footer .top-container .top {
	flex-direction: column;
	width: 100%;
	padding: 60px 20px 70px 20px;
	max-width: 1084px;
	margin: 0 auto;
	display: flex;
}
footer .top-container .top * {
	color: #0a2a3b;
}
footer .top > a {
	display: block;
	width: 170px;
	height: 62px;
	margin: auto;
}
footer .top a img {
	width: 100%;
	position: absolute;
	transition: all 1s ease;
	opacity: 0;
}

footer .top a img.active {
	opacity: 1;
}

footer .bottom-container {
	padding: 33px 0;
}
footer .bottom-container .top ul {
	margin-top: 0;
}
footer .bottom-container .bottom-wrapper {
	max-width: 810px;
	padding: 0 20px;
	width: 100%;
	margin: 0 auto;
	color: white;
} 
footer .bottom-container .bottom-wrapper a {
	color: white;
	font-size: 12px;
}
footer .bottom-container .bottom-wrapper .bottom li {
	height: 22px;
	margin: 0 4px;
    opacity: 0.2;
}
footer .bottom-container .bottom-wrapper .bottom li:first-child {
	height: 12px;
}
footer .bottom-container .bottom-wrapper .bottom li:last-child {
	height: 14px;
}
footer .bottom-container .bottom-wrapper .bottom li img {
	height: 100%;
}
footer .bottom-container .bottom-wrapper .top {
	display: block;
}
footer .bottom-container .bottom-wrapper ul {
	justify-content: center;
	align-items: center;
}
footer .bottom-container .bottom-wrapper .bottom {
	margin-top: 27px;
}
footer .bottom-container .bottom-wrapper .bottom ul {
	display: flex;
}

.store-slider {
	position: relative;
}
.store-slider img + img {
	position: relative;
}

.store-slider a {
	font-size: 0;
	cursor: pointer;
}

.store-slider .store-slider-arrows {
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	height: 46px;
	margin: auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
}
.store-slider .store-slider-arrows a {
	position: relative;
	top: 7px;
	left: 6px;
	display: inline-block;
	width: 32px;
	height: 32px;
	border-top: 2px solid white;
	border-left: 2px solid white;
	cursor: pointer;
}
.store-slider .store-slider-arrows a.prev {
	transform: rotate(-45deg);
}
.store-slider .store-slider-arrows a.next {
	transform: rotate(135deg);
}


.categories-container .categories {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: center;
}
.menu.categories-container .categories {
	justify-content: flex-start;
	pointer-events: all;
	padding: 0 15px;
}
.categories-container .categories li {
	position: relative;
	margin: 0;
}
.categories-container .categories > li + li {
	margin-top: 40px;
}

.category-highlights .categories-container .categories > a + a {
	margin-left: 20px;
}
.categories-container .categories ul > li {
	padding: 0 30px;
}
.categories-container .categories ul > li + li {
	margin-left: 0;
	margin-top: 15px;
}

@media(max-width: 767px) {
	.categories-container .categories ul ul li + li {
		margin: 0;
	}
	.categories-container .categories > li:last-of-type{
		margin-bottom: 120px;
	}
}

.categories-container .categories ul {
	padding: 30px 0;
	margin: 0;
	list-style: none;
	width: 100%;
	background-color: #e8e8ea;
	transition: var(--transition);
}
.categories-container .categories > li > ul {
	margin-top: 20px;
}

.categories-container .categories li:hover > ul,
.categories-container .categories li:focus > ul {
	opacity: 1;
	pointer-events: auto;
}

.categories-container .categories a {
	display: flex;
	align-items: center;
	margin: 0 15px;
}
/* .categories-container .categories ul ul a {
	height: 30px;
	line-height: 30px;
} */
.categories-container .categories a img {
	height: 50px;
	width: 60px;
	opacity: 0.2;
	filter: grayscale(100%) brightness(0);
	transition: none;
	display: block;
	margin: 0;
}
.categories-container .categories a.active img {
	filter: grayscale(0);
	opacity: 1;
}
@media(hover: hover) {
	.categories-container .categories a:hover img {
		filter: grayscale(0);
		opacity: 1;
	}
}
.categories-container .categories ul a img {
	height: 30px;
	width: 35px;
}

.category-highlights .category-container {
	position: relative;
}
.category-highlights .category-container .img {
	width: 100%;
	height: 100%;
	font-size: 0;
	position: relative;
}

.category-highlights .category-container .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-highlights .category-container .img::before {
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	margin: auto;
	content: "";
	mix-blend-mode: multiply;
    background: linear-gradient(33deg, rgba(13,30,65,1), rgba(13,30,65,0) 67%);
}
.category-highlights .category-container .img + div {
	position: absolute;
	z-index: 1;
	left: 50px;
	bottom: 50px;
}
.category-highlights .category-container .img + div p {
	color: white;
	letter-spacing: -2.4px;
	font-size: 30px;
	margin-bottom: 10px;
	font-weight: 300;
}

.category-highlights .category-container .text a::after {
	background: #1dcad3;
}
.store.product-page .top .page-info div input:checked ~ label {
	border-color: currentColor;
}
.store.product-page .top .page-info .btn::after,
.store.product-page .top .page-info .options .ammount {
	background: currentColor;
}

.category-highlights .category-container .info[data-id="2"] .text a::after {
	background: #f095a6;
}
.store.product-page .top .page-info[data-category="2"] div input:checked ~ label {
	border-color: #f095a6;
}
.store.product-page .top .page-info[data-category="2"] .btn::after,
.store.product-page .top .page-info[data-category="2"] .options .ammount {
	background: #f095a6;
}


.category-highlights .category-container .info[data-id="3"] .text a::after {
	background: #8bc53f;
}
.store.product-page .top .page-info[data-category="3"] div input:checked ~ label {
	border-color: #8bc53f;
}
.store.product-page .top .page-info[data-category="3"] .btn::after,
.store.product-page .top .page-info[data-category="3"] .options .ammount {
	background: #8bc53f;
}

.category-highlights .category-container .info[data-id="4"] .text a::after {
	background: #fdbc2c;
}
.store.product-page .top .page-info[data-category="4"] div input:checked ~ label {
	border-color: #fdbc2c;
}
.store.product-page .top .page-info[data-category="4"] .btn::after,
.store.product-page .top .page-info[data-category="4"] .options .ammount {
	background: #fdbc2c;
}


.category-highlights .category-container .info[data-id="5"] .text a::after {
	background: #b2147c;
}
.store.product-page .top .page-info[data-category="5"] div input:checked ~ label {
	border-color: #b2147c;
}
.store.product-page .top .page-info[data-category="5"] .btn::after,
.store.product-page .top .page-info[data-category="5"] .options .ammount {
	background: #b2147c;
}


.category-highlights .category-container .img + div p + a {
	display: inline-block;
}
.categories-container .categories a p {
	position: relative;
	margin: 0;
	margin-left: 15px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #0d1e41;
	flex: 1;
}
.categories-container .categories ul a p {
	text-transform: none;
	color: #888888;
	font-weight: 500;
	transition: var(--transition);
}
.categories-container .categories ul a:hover p,
.categories-container .categories ul a:focus p,
.categories-container .categories ul a.active p {
	color: #0d1e41;
}
.categories-container .categories a p span {
	position: absolute;
	top: 0;bottom: 0;
	right: 2px;
	width: 7px;height: 7px;
	margin: auto;
	border-top: 1px solid #0d1e41;
	border-right: 1px solid #0d1e41;
	transform: rotate(45deg);
	pointer-events: auto;
}
.categories-container .categories li.active > a p span {
	transform: rotate(135deg);
}

@media(max-width: 991px) {
	.categories-container .categories li > ul {
		display: none;
	}
	.categories-container .categories li.active > ul {
		display: block;
	}
	.categories-container .categories > li > a p span {
		right: 0;
		margin: 0;
		padding: 0;
	}

	.categories-container .categories a p {
		padding: 4px 0;
	}

	.categories-container .categories a p span {
		width: 25px;
		height: 25px;
		border: none;
		padding: 25px;
	}
	.categories-container .categories a p span::before {
		content: "";
		position: absolute;
		top: 0;bottom: 0;
		left: 0;right: 0;
		width: 7px;height: 7px;
		margin: auto;
		border-top: 1px solid #0d1e41;
		border-right: 1px solid #0d1e41;
	}
}
@media(min-width: 992px) {
	.categories-container {
		padding: 0 20px 0;
		background-color: #f1f1f2;
	}

	.categories-container .categories {
		justify-content: center;
	}

	.categories-container .categories > li + li,
	.category-highlights .categories-container .categories > a + a {
		margin: 0;
		margin-left: 80px;
	}

	.categories-container .categories > li > a,
	.category-highlights .categories-container .categories > a {
		flex-direction: column;
		justify-content: center;
		align-items: initial;
		padding-top: 36px;
		padding-bottom: 21px;
	}
	.category-highlights .categories-container .categories > a { 
		padding: 0;
	}
	.categories-container .categories > li > a > img,
	.category-highlights .categories-container .categories > a img {
		margin: 0 auto;
	}
	.categories-container .categories > li > a > img + p,
	.category-highlights .categories-container .categories > a img + p {
		margin: 0;
		margin-top: 13px;
		text-align: center;
	}
	.categories-container .categories > li > a > p span {
		display: none;
	}
	.categories-container .categories a p span {
		pointer-events: none;
	}


	.categories-container .categories ul {
		width: 295px;
		opacity: 0;
		pointer-events: none;
	}
	.categories-container .categories > li > ul {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		z-index: 5;
		margin: 0;
	}
	.categories-container .categories > li > ul ul {
		position: absolute;
		top: -30px;
		left: calc(100% - 1px);
		border-left: 1px solid #d2d5db;
	}
}



.store-slider img {
	height: 100%;
}
.products.listing .properties .category a.active img,
.products.listing .properties .category a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}
.products.listing .properties .category a img {
	background: transparent;
	filter: grayscale(100%) brightness(0);
	opacity: 0.2;
	height: 21px;
	transition: all 0.4s ease;
}
header {
	background: white;
}
header.fixed {
	position: fixed;
	top: 0;
}


.store-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}
header { 
	flex-direction: column;
    display: flex;
    padding: 0 0 15px 0;
    position: relative;
    width: 100%;
    transition: var(--transition);
    z-index: 5;
}
.category-highlights .category-container {
	display: flex;
	background: #f9f9f9;
	flex-wrap: wrap;
}
.category-highlights .category-container .info {
	position: relative;
}
.category-highlights .slider-container .slider {
	margin: 0;
}
.category-highlights .categories-container a {
	cursor: pointer;
}
.category-highlights .categories-container {
	background: transparent;
	padding-bottom: 50px;
}
.description + .category-highlights .categories-container {
	padding-top: 50px;
}
.category-highlights .categories-container .categories {
	justify-content: center;
}
.category-highlights .category-container .slider-container,
.category-highlights .category-container .slider-container .slider-wrapper {
	position: relative;
}
.category-highlights .listing .product .product-wrapper {
	background: white;
}


@media(min-width: 992px) {
	header.fixed {
		position: fixed;
		top: 0;left: 0;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	header.fixed .logo {
		width: 140px;
		height: 50px;
	}

	.store-menu {
		top: 131px;
		transition: top .2s ease-in-out;
	}
	.store-menu.fixed {
		top: 80px;
	}
	header ~ .store-menu.fixed .categories-container .categories > li > a {
		padding-top: 20px;
	}
}


/*************************************/
/********** QUANTITY SELECT **********/
/*************************************/

.content .template .quantity-select {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	padding: 13px 20px;
	background: #fafafa;
	border-radius: 30px;
	width: 102px;
	font-size: 0;
}

.content .template .quantity-select span {
	font-weight: normal;
	display: block;
	font-size: 14px;
	line-height: 1;
	color: var(--black);
	text-align: center;
}

.content .template .quantity-select a {
	cursor: pointer;
    position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
    width: 11px;
    height: 11px;
	font-size: 0;
	color: inherit;
}
.content .template .quantity-select a.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.content .template .quantity-select a.minus {
    left: 13px;
}
.content .template .quantity-select a.plus {
    right: 13px;
}
.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(--primary);
    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: rgb(var(--banner-content));
}


/****************************************/
/********** PROCESS ORDER PAGE **********/
/****************************************/

.content.shop .form .row.billing-address {
	margin-top: 40px;
}

/********** CHECKBOX LISTING **********/

.shop .form .listing.listing-checkbox {
	margin: 60px 0 0;
}

.shop .listing.listing-checkbox .item {
	position: relative;
	border-radius: 10px;
	padding: 30px 20px;
	background-color: #f7f4f4;
	display: flex;
	align-items: flex-start;
}
.shop .listing.listing-checkbox .item + .item{
	margin-top: 10px;
}

.shop .listing.listing-checkbox .item .checkbox-wrapper {
	flex: 1;
}
.shop .listing.listing-checkbox .item .checkbox-wrapper + div {
	margin-left: 20px;
	font-size: 14px;
	font-weight: bold;
	color: var(--black);
}

.shop .listing.listing-checkbox .item input[type='checkbox'] + label,
.shop .listing.listing-checkbox .item input[type='radio'] + label {
	background-color: white;
}
.shop .listing.listing-checkbox .item input[type='checkbox'] + label + label,
.shop .listing.listing-checkbox .item input[type='radio'] + label + label {
	color: var(--black);
}
.shop .listing.listing-checkbox .item input[type='checkbox'] + label + label,
.shop .listing.listing-checkbox .item input[type='radio'] + label + label {
	font-size: 14px;
	color: var(--secondary);
	font-family: 'Gotham';
	font-weight: normal;
}
.shop .listing.listing-checkbox .item input[type='checkbox'] + label + label span,
.shop .listing.listing-checkbox .item input[type='radio'] + label + label span {
	display: block;
	margin-top: 5px;
	color: #aaabab;
	line-height: 1.5;
	font-size: 10px;
	font-family: var(--font-family1);
}

.shop .listing.listing-checkbox .item.payment-method.mb img {
	width: 33px;
}
.shop .listing.listing-checkbox .item.payment-method.paypal img {
	width: 73px;
}
.shop .listing.listing-checkbox .item.payment-method.mbway img {
	width: 50px;
}
.shop .listing.listing-checkbox .item.payment-method.credit-card img {
	width: 93px;
}

.shop .listing.listing-checkbox .item.payment-method.mbway .details {
	min-width: 100%;
	max-width: 100%;
	margin-top: 40px;
}
.shop .listing.listing-checkbox .item.payment-method.mbway .details > label {
	color: var(--secondary);
	margin-bottom: 20px;
	line-height: 1.5;
}
.feedback-container .slider-arrows {
	width: 100vw;
	padding: 0 25px;
}
.feedback-container .slider-arrows > * {
	background: url(/images/icons/store/slim-arrow.svg) 0%/contain no-repeat;
}
.feedback-container .slider-arrows > div:first-child {
    transform: rotate(-90deg);
}
.feedback-container .slider-arrows > div:last-child {
    transform: rotate(90deg);
}

/************************************/
/********** THANK YOU PAGE **********/
/************************************/

.shop.thank-you .mb-details {
	margin: 50px auto;
	padding: 35px 40px;
	background-color: #fafafa;
	display: flex;
	width: 410px;
	max-width: 100%;
}
.shop.thank-you .mb-details img {
	max-width: 57px;
}
.shop.thank-you .mb-details div {
	flex: 1;
	text-align: left;
	margin-left: 38px;
}
.shop.thank-you .mb-details div span {
	font-family: var(--font-family1);
	font-weight: normal;
	display: block;
	font-size: 14px;
	color: var(--black);
	line-height: 1;
}
.shop.thank-you .mb-details div span + span {
	margin-top: 15px;
}
.shop.thank-you .mb-details div span b {
	font-weight: bold;
}

.shop.thank-you .template > .button {
	margin-top: 70px;
}
.shop.thank-you .mb-details + .button {
	margin: 0 auto;
}
.body {
	position: relative;
	transition: padding .2s ease-in-out;
}

header.fixed ~ .body {
	margin-top: 154px;
}

.body .search-results-container {
	position: absolute;
	top: 0;
	width: 100%;
	height: calc(100vh - 154px);
    background: white;
	transition: all 0.4s ease;
	z-index: 5;
	overflow: auto;
}


.body .search-results-container .template {
	padding: 0;
}
.body .search-results-container .container-pesquisa {
	padding: 30px 20px;
}

@media(min-width: 768px) {
	.body .search-results-container {
		height: calc(100vh - 131px - 136px - 41px);
	}
}
@media(min-width: 992px) {
	.body .search-results-container {
		position: fixed;
		top: calc(131px + 136px + 41px);;
	}
	.store-menu.fixed + .body .search-results-container {
		position: fixed;
		top: 200px;
		height: calc(100vh - 200px);
	}
}

@media(min-width: 1024px) {
	.body .search-results-container .container-pesquisa {
		padding: 100px 20px;
	}
}

.search-results-container.off {
	opacity: 0;
	pointer-events: none;
}

header .store-icons >*::after {
    position: absolute;
    top: 0;left: 0;
    width: 100%;height: 100%;
    content: '';
    z-index: 0;
}

header .store-icons >*:nth-child(1)::after {
    background: url(/images/icons/store/profile.svg) 0%/contain no-repeat;
}
header .store-icons >*:nth-child(2)::after {
    background: url(/images/icons/store/fav-black.svg) 0%/contain no-repeat;
}
header .store-icons >*:nth-child(3)::after {
    background: url(/images/icons/store/car.svg) 0%/contain no-repeat;
}
header .store-icons span {
    position: absolute;
    top: 7px;
	font-weight: bold;
    right: -5px;
    z-index: 1;
    font-weight: 500;
    font-size: 9px;
    color: var(--secondary);
}
header .store-icons > * {
    display: inline-block;
    width: 21px;
    position: relative;
    margin: 0 14px;
}
header .store-icons > *:first-child {
	margin-left: 0;
}
.highlights-slider {
	background: var(--pink);
	position: relative;
	padding: 0 25px;
	z-index: 13;
}

.highlights-slider .slide {
	color: white;
	text-align: center;
	padding: 13px 0;
	font-size: 12px;
}
.highlights-slider .slide p {
	margin: 0;
}
.slider-arrows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 55vw;
	height: 100%;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.slider-arrows > div:first-child {
	transform: rotate(90deg);
}
.slider-arrows > div:last-child {
	transform: rotate(-90deg);
}
.slider-arrows > * {
	position: relative;
	top: 0;
	width: 17px;
	height: 10px;
	cursor: pointer;
	pointer-events: all;
	bottom: 0;
	background: url(/images/icons/store/arrow.svg) 0%/contain no-repeat;
}
.category-highlights .slider-arrows,
.top .slider-container .slider-arrows,
.fullscreen .slider-container .slider-arrows {
	width: 100%;
}
.category-highlights .slider-arrows > *,
.top .slider-container .slider-arrows > *,
.fullscreen .slider-container .slider-arrows > * {
	width: 25px;
	opacity: 0.3;
	background: url(/images/icons/store/arrow2.svg) 0%/contain no-repeat;
} 
.category-highlights .slider-arrows > div:last-child,
.top .slider-container .slider-arrows > div:last-child,
.fullscreen .slider-container .slider-arrows > div:last-child {
    transform: rotate(90deg);
}
.category-highlights .slider-arrows > div:first-child,
.top .slider-container .slider-arrows > div:first-child,
.fullscreen .slider-container .slider-arrows > div:first-child {
    transform: rotate(-90deg);
}
.category-container.off {
	opacity: 0;
	transition: all 0.3s ease;
}
.products.listing .product {
    padding: 10px 7px;
}
.category-container .products.listing .prices {
	margin-top: auto;
	margin-bottom: 20px;
}
.category-container .products.listing .prices + a {
	margin-top: auto;
}
.products.listing {
    margin: -10px -7px;
    max-width: initial;
}
.store-slider img.mobile {
	position: relative;
	height: auto;
	width: 100%;
} 
.hamburguer-container {
	background: #0a2a3b;
	padding: 17px;
}
.hamburguer-container div > * {
	background: white;
}
header .logo {
	order: 2;
    width: 100vw;
    max-width: 100%;
	margin: 17px 0 5px 0;
    height: 59px;
    left: 0;
	position: relative;
}
header .logo + div {
    display: flex;
    width: 100%;
}
header.open .logo {
	z-index: -1;
}
header .store-icons {
    display: flex;
    flex: 1;
    z-index: 1;
	padding-left: 15px;
	background: #f1f1f2;
}
header .hamburguer-container {
	height: 58px;
    width: 58px;
	margin-left: auto;
	margin-right: 0;
}
.hamburguer-menu {
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 20;
    position: relative;
    margin: auto;
    will-change: transform;
}
.hamburguer-menu > div {
    position: absolute;
    height: 1px;
    transition: var(--transition);
    background: #ffffff;
    will-change: transform;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
}
header .hamburguer-menu:hover div:first-child {
	transform: translateY(-8px);
}
header .hamburguer-menu div:first-child {
    transform: translateY(-6px);
}
header .hamburguer-menu div:last-child {
    transform: translateY(6px);
	width: 60%;
}
header .hamburguer-menu:hover div:last-child {
	transform: translateY(8px);
	width: 100%;
}
header.open .hamburguer-menu div:first-child {
    transform: rotate(45deg);
}
header.open .hamburguer-menu div:nth-child(2) {
    opacity: 0;
}
header.open .hamburguer-menu div:last-child {
    transform: rotate(-45deg);
	width: 100%;
}
.icons-area > .icons-container > div img {
	margin: 0 auto 10px auto;
}
.icons-area > .icons-container .icons-wrapper > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 15px 50px;
}
.slider-container .slider {
	width: 100%;
}
.our-brands .brands-container .brands .item-wrapper {
    padding: 10px;
}
.category-highlights .category-container .slider-container {
	padding-top: 10px;
}
.breadcrumb,
.breadcrumb li a {
	font-family: "Gotham Book";
	font-size: 13px;
  	font-weight: normal;
	color: #7d7d7c;
}
.menu-page h1 {
	font-family: "Gotham Book";
	font-size: 3rem;
  	font-weight: normal;
	color: var(--secondary);
	margin: 0;
	margin-top: 25px;
}
.store.product-page .top .page-info a {
	display: inline-block;
}
.store.product-page .top .page-info .category-rating {
	margin-top: 20px;
}
.store.product-page .top .page-info a img {
	width: 42px;
	height: 42px;
}
.store.product-page .top .page-info .options + div {
	display: flex;
	align-items: center;
}
.store.product-page .top .page-info a.add-to-cart[submit] {
	display: flex;
	margin-right: 15px;
	align-items: center;
}
.store.product-page .top .page-info a.add-to-fav[submit] {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	opacity: 0.2;
	cursor: pointer;
	background: url(/images/icons/store/fav-black.svg) 0%/contain no-repeat;
	filter: grayscale(100%) brightness(0);
}
.store.product-page .top .page-info a.add-to-fav.active[submit] {
	filter: grayscale(0);
	opacity: 1;
}
.store.product-page .top .page-info a.add-to-cart[submit] img {
	height: 17px;
	margin-right: 10px;
}
.store.product-page .top .page-info .category-rating .rating-container {
	display: flex;
	margin-left: auto;
	cursor: pointer;
	align-items: center;
}
.product-page .reviews-product .rating-opinion .rating > *:not(.active),
.store.product-page .rating > *:not(.active) {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	opacity: .2;
}
.store.product-page .top .page-info .rating-container .rating-count {
	font-weight: bold;
	margin-left: 5px;
	color: #0a2a3b;
}
.write-review .rev_prod .rating > label,
.store.product-page .rating > * {
	margin-right: 3px;
	position: relative;
	display: inline-block;
	width: 20px;
	height: 18px;
	background-size: contain;
	background: url(/images/icons/store/rating-star-color.svg) no-repeat;
}
.store.product-page .reviews-product .rating > * {
	background: url(/images/icons/store/rating-star-pink.svg) no-repeat;
}
.content .write-review.template .form label + div {
	display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.write-review .rev_prod .rating > label:hover,
.write-review .rev_prod .rating > label:hover ~ label,
.write-review .rev_prod .rating > input:checked + label,
.write-review .rev_prod .rating > input:checked + label ~ label {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: .8;
}
.write-review .rev_prod .rating > input[type='radio'] + label::before {
	opacity: 0 !important; 
}
.write-review .rev_prod .rating > label:hover {
	filter: grayscale(0);
}
.write-review .rev_prod .rating > label {
	transition: all 0.4s ease;
	filter: grayscale(100%);
	cursor: pointer;
	background: url(/images/icons/store/rating-star-pink.svg) no-repeat;
}
.product-page .options > div > label {
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.product-page .options > div {
    margin: 10px 0;
    position: relative;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: all 0.4s ease;
}
.product-page .options > div input ~ label {
	background: transparent;
	opacity: 1;
	border: 2px solid;
	border-radius: 10px;
	border-color: rgba(241, 241, 242, 0.98);
}
.product-page .options > div input {
    display: none;
}
.product-page .options > div > .radio {
    display: flex;
	align-items: flex-start;
} 
.product-page .options > div > .radio > div {
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: white;
    position: relative;
	border: 1px solid rgba(0,0,0,0.1);
}
.product-page .options > div > input:checked + .radio > div::after {
    transform: scale(1);
}
.product-page .options > div > .radio > div::after {
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
    margin: 6px;
    background: var(--secondary);
    content: '';
    transition: all 0.3s ease;
    transform: scale(0);
    border-radius: 100%;
}
.product-page .options > div > .radio p {
    margin: 2px 0 0 10px;
    font-weight: normal;
    font-size: 16px;
	color: var(--secondary);
} 
.product-page .page-info .prices {
    margin: 0 30px;
	margin-left: auto;
}
.product-page .options > div > input:checked ~ .ammount {
    opacity: 1;
    z-index: 4;
}
.product-page .options .ammount .number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-weight: normal;
}
.product-page .options .ammount .ammount-btns > .less::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    content: '';
    background: white;
}
.product-page .options .ammount .ammount-btns > .more::after,
.product-page .options .ammount .ammount-btns > .more::before {
    width: 100%;
    position: absolute;
    top: 50%;left: 0;
    height: 2px;
    background: white;
    content: '';
    transform: translateY(-50%);
}
.product-page .options .ammount .ammount-btns > .more::before {
    transform: translateY(-50%) rotate(90deg);
}
.product-page .page-info [submit] {
    padding: 22px 44px;
}
.products.listing .product > a {
	display: block;
}
.product-page .options .prices p:not(.relative) {
	font-size: 16px;
	font-weight: bold;
}
.product-page .options .prices p.relative:last-child {
	margin-top: 0;
	font-weight: 300;
}
.write-review .container {
	max-width: 1150px;
	margin: 0 auto;
}
.write-review .products.listing,
.write-review .products.listing .product {
	padding: 0;
	width: 100%;
	margin: 0;
}
.write-review .products.listing .product .image img,
.write-review .products.listing .product,
.write-review .products.listing .product .image {
	width: 100%;
}
.content.shop .write-review h2 {
	color: #f095a6;
	letter-spacing: -1.4px;
	font-size: 18px;
}
.write-review .button::before {
	border: 0px solid white;
}
.content .template .form label {
	text-align: left;
}
.content .template .form label + div {
	display: flex;
}
.template.write-review .form .row .button {
	align-items: flex-start;
    display: flex;
}
.rating-opinion ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 1rem;
    font-weight: normal;
    text-align: left;
    color: var(--black);
    margin-bottom: 5px;
    white-space: nowrap;
}

.rating-opinion ul li > div {
    width: 10px;
}

.rating-opinion ul li div:last-of-type{
    flex: 1;
	margin-left: 10px;
}

.rating-opinion ul li img {
    width: 20px;
    height: 18px;
    margin-top: -2px;
}
.rating-opinion ul li div:last-of-type::before{
    content: "";
    height: 10px;
    background-color: #f9e5e9;
    display: inline-block;
    margin: 0 9px 0 12px;
}
.rating-opinion ul li.rating0 div:last-of-type::before{
    width: 2%;
}
.rating-opinion ul li.rating1 div:last-of-type::before{
    width: 25%;
}
.rating-opinion ul li.rating2 div:last-of-type::before{
    width: 40%;
}
.rating-opinion ul li.rating3 div:last-of-type::before{
    width: 65%;
}

.rating-opinion ul li.rating4.len_4 div:last-of-type::before{
    width: 67%;
}
.rating-opinion ul li.rating4.len_3 div:last-of-type::before{
    width: 69%;
}
.rating-opinion ul li.rating4.len_2 div:last-of-type::before{
    width: 77%;
}
.rating-opinion ul li.rating4 div:last-of-type::before{
    width: 82%;
}
.product-page .reviews-product {
	padding: 50px 0;
}
.rating-opinion ul li > div:nth-child(2) {
	margin-left: 5px;
}
.product-page .rating-opinion ul,
.product-page .rating-opinion {
	padding: 0;
} 
.product-page .rating-opinion {
	width: 100%;
}
.product-page .rating-opinion .rating-count {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #0a2a3b;
	margin-bottom: 23px;
}
.product-page .rating-opinion .rating-count .rating {
	display: flex;
	justify-content: space-between;
}
.product-page .reviews-product .rating-opinion .rating > * {
	width: 39px ;
	height: 37px;
}
.store.product-page .reviews-product .rating-container.rating-opinion .rating + p {
	margin-top: 10px;
	text-align: center;
	color: #f095a6;
	font-size: 1rem;
	font-weight: normal;
}
.reviews-product .title {
	font-weight: 300;
	color: #101d3f;
	font-size: 35px;
	text-transform: none;
	margin-bottom: 20px;
}
.product-page .content-opinion.listing > .items .rating {
	width: 100%;
}
.product-page .content-opinion.listing > .items > .item {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	flex-direction: column;
}
.product-page .content-opinion.listing > .items > .item .rating + p {
	font-family: "Gotham Book";
	font-size: 1.125rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: #0a2a3b;
}
.product-page .content-opinion.listing > .items > .item .rating + p + p {
	font-family: "Gotham";
	font-size: 0.75rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	font-weight: bold;
	color: #f095a6;
	text-transform: uppercase;
	margin: 0;
}
.product-page .content-opinion.listing > .items > .item .rating + p + p span {
	font-family: "Gotham book";
	color: #575757;
	text-transform: none;
	margin-right: 5px;
	font-weight: 300;
}
.product-page .description .tabs > * {
    cursor: pointer;
    padding: 10px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 900;
    font-size: 0.875rem;
    transition: all 0.4s ease;
    height: 100%;
}
.product-page .content-container {
    margin: 40px 0 0 0 ;
}
.product-page .description .content {
    padding: 0; 
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    height: 1000vh;
    max-height: 0px;
    transition: all 0.4s ease;
}
.product-page .description .content > * {
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 100%;
    max-height:0 ;
    opacity: 0;
    transition: all 0.4s ease;
	pointer-events: none;
}
.product-page .description .content > * p {
	margin: 1em 0;
	font-size: 14px;
}
.product-page .description .content > * p:first-of-type {
	margin-top: 0;
}
.product-page .description .content > * p:last-of-type {
	margin-bottom: 0;
}
.product-page .description .content > *.on {
    opacity: 1;
	pointer-events: auto;
}
.product-page .description .content .container {
    padding: 0;
}
.product-page .description .content tr,
.product-page .description .content td {
    border: solid 1px #d9d9d9;
}
.product-page .description .content td {
    text-align: center;
    padding: 8px 0;
}
.product-page .description .content tr:first-child td {
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: var(--secondary);
}
.product-page .container {
    margin: 0 auto;
    width: 100%;
}
.product-page > .body > .container {
    max-width: 1240px;
    padding: 0 20px;
}
.product-page .description .content-container .container {
    max-width: 870px;
    padding: 0;
}
.product-page .description iframe {
	max-width: 100% !important;
}
.fullscreen .slider-container {
    margin: auto;
    padding: 50px;
    height: 100%;
	aspect-ratio: 1 / 1;
	max-width: 100%;
}
@media(max-width: 767px) {
	.fullscreen .slider-container {
		padding-left: 0;
		padding-right: 0;
	}
}

.product-page .fullscreen .slider-container .slick-slider {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    height: 100%;
}

.product-page .related {
    background: transparent;
    padding: 70px 0 0 0;
}

.product-page .related .h1 {
    margin-bottom: 40px;
	font-size: 25px;
	font-weight: 300;
	color: #101d3f;
	text-transform: none;
}
.product-page .related .container {
    width: initial;
    justify-content: center;
}
.product-page .description {
	padding: 40px 0;
	background-color: #f9f9f9;
	margin: 50px 0 0 0;
}
.product-page .description .tabs > *:hover,
.product-page .description .tabs > *.on {
    color: var(--primary);
}
.product-page > .body > .container {
	padding: 30px 20px 0 20px;
}

.store.product-page .reviews-product .container {
	max-width: 1200px;
}

.store.product-page .reviews-product .row {
	margin: 0;
}

@media(max-width: 1024px) {

	.product-page .rating-opinion {
		padding: 0 15px 10px;
	}

	.product-page .rating-opinion .rating {
		text-align: center;
	}

	.store.product-page .reviews-product .rating-container.rating-opinion .rating + p {
		margin-bottom: 30px;
	}

	.product-page .content-opinion.listing > .items .rating {
		margin-bottom: 10px;
	}
}

@media(min-width: 768px) {
	.product-page .options > div {
        padding: 20px;
    }
	.best-sellers {
        padding: 60px 25px;
    }
	.content.shop .listing.listing-checkbox .item .checkbox-wrapper + .title {
		margin: 0;
	}
	.content .template .listing .product-inline .button {
		align-self: flex-start;
		margin: 0;
	}

	.content .template .listing .product-inline .image {
		min-width: 200px;
	}

	.shop.thank-you .mb-details {
		margin: 20px auto 70px auto;
		padding: 35px 70px;
	}
}

@media(max-width: 991px) {
	.product-page .rating-opinion {
		padding: 0 15px;
	}

	.content .template .listing .product-inline .remove ~ .details {
		text-align: center;
	}

	.content .template .listing .product-inline .details .quantity-select {
		margin: 30px auto 0;
	}

	.shop .listing.listing-checkbox .item .checkbox-wrapper + div {
		margin-left: 60px;
	}
	.shop .listing.listing-checkbox .item.payment-method .checkbox-wrapper + div {
		min-width: 80px;
		text-align: right;
	}

	.shop .listing.listing-checkbox .item.payment-method.mbway .details {
		min-width: 420px;
		margin-left: 36px;
		margin-top: 60px;
		margin-bottom: 20px;
	}
	.shop .listing.listing-checkbox .item.payment-method.mbway .details > label {
		line-height: 1;
		font-weight: normal;
		margin-bottom: 35px;
	}
	.feedback-container .slider-container::before {
		position: absolute;
		top: 25px;
		left: 25px;
		height: 50px;
	}
	.feedback-container .slider-container .slick-slide {
		padding: 0 30px;
	}


	.category-highlights .category-container .slider-container {
		width: 100%;
		padding: 40px 0;
	}
	.category-highlights .category-container .slider-container .slider-wrapper {
		padding: 0 25px;
	}
}

@media(min-width: 992px) {
	.product-page .description {
		margin: 100px 0 0 0;
	}
	.product-page .description .content > * p {
		font-size: 18px;
		line-height: 1.56;
	}
	.product-page .description {
		padding: 70px 0;
	}
	.product-page .related .h1 {
		font-size: 30.5px;
	}
	.product-page .content-opinion.listing > .items > .item .rating + p {
		margin: 40px 0 27px 0;
	}
	.product-page .content-opinion.listing > .items {
		margin: -30px 0;
	}
	.product-page .content-opinion.listing > .items > * {
		padding: 30px 0;
	}
	.reviews-product .title {
		font-size: 3rem;
		margin-bottom: 100px;
	}
	.store.product-page .reviews-product .rating-container.rating-opinion .rating + p {
		margin: 22px 0 40px 0;
	}
	.product-page .rating-opinion  {
		max-width: 240px;
		width: 100%;
		margin-right: auto;
	}
	header .logo + div {
        height: 100%;
        max-height: 43px;
        position: absolute;
        right: 24px;
        top: 28px;
    }

	footer .top > a {
		margin: 0;
	}
	footer .top-container .top {
		flex-direction: row;
	}
	.feedback-container > .bg {
		padding: 0;
	}
	.feedback-container .slider-container {
		padding: 130px 0 145px;
		padding-left: 155px;
		max-width: 675px;
	}
	.feedback-container .slider-container .item .quote p {
		font-size: 24px;
	}
	.icons-area {
		background: var(--pink);
		padding: 104px 20px;
	}
	.icons-area > .icons-container .icons-wrapper > div {
		padding: 0 45px;
	}
	.icons-area > .icons-container > div img {
		margin: 0 auto;
		width: 90px;
	}
	.best-sellers .h1 {
		letter-spacing: -3.58px;
	}
	header .store-icons span {
		top: -10px;
    	right: -5px;
	}
	header .store-icons {
		flex: 0;
		background: transparent;
	}
	header .logo + div {
		justify-content: flex-end;
	}
	header {
		flex-direction: row;
	}
	.store-slider .img .item {
		overflow: hidden;
		position: relative;
	}
	.products.listing {
		margin: -30px -20px;
		max-width: initial;
	}
	.products.listing .product {
		padding: 30px 20px;
	}
	.products.listing .prices + a img {
		width: 20px;
	}
	.our-brands .brands-container .brands {
		margin: -50px;
	}
	.our-brands .brands-container .brands .item-wrapper {
		max-width: 20%;
	}
	.our-brands .brands-container .brands .item-wrapper {
		padding: 50px;
	}
	.our-brands .brands-container + a {
		margin-top: 50px;
	}
	.best-sellers .h1 {
		font-size: 40px;
	}
	.our-brands  .h1 {
		font-size: 31px;
		margin-bottom: 60px;
	}
	.our-brands {
		padding: 100px 0;
	}
	.icons-area > .icons-container > div p:nth-child(2) {
		font-size: 30px;
		margin: 42px 0 32px 0;
	}
	.icons-area > .icons-container > div p:nth-child(3) {
		font-size: 16px;
		margin: 0;
	}
	.best-sellers .h1 {
		font-size: 72px;
        margin-bottom: 67px;
    }
	header {
		padding: 25px 0 39px 28px;
	}
	
	header .logo + div {
		max-height: 49px;
		top: 0;
		bottom: 0;
		margin: auto;
	}

	.content .template .listing .product-inline .image img {
		height: 100%;
	}
	.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: 241px;
		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;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.slider-container .slider {
		width: 100%;
	}

	header .hamburguer-menu {
		width: 30px;
		padding: 0;
		margin: auto;
	}
	header .hamburguer-menu > div {
		padding: 0;
	}

	header .header {
		max-height: 100%;
	}

	header .store-icons span {
		top: 0;
		right: -25px;
	}
}

@media screen and (min-width: 1024px) {
	
	.product-page > .body > .container {
        padding: 100px 20px 0 20px;
    }
	.product-page .rating-opinion .rating-count {
		font-size: 1.875rem;
	}
	.product-page .reviews-product {
		padding: 120px 0;
	} 
	.content.shop .write-review h2 {
		font-size: 28px;
	}
	.write-review .row > div:last-child {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	} 
	.write-review .article {
		margin: 0 auto 0 0;
		max-width: 266px;
		padding: 0;
	}
	.store.product-page .top .page-info a.add-to-cart[submit] {
		margin-right: 32px;
	}
	.store.product-page .top .page-info a.add-to-fav[submit] {
		width: 34px;
		height: 34px;
	}
	.product-page .options > div > .radio p {
		font-size: 18px;
	}
	.product-page .page-info [submit] {
		padding: 28px 44px;
	}
	.product-page .options > div {
        padding: 22px 20px;
    }
	.store.product-page .top .page-info .category-rating {
		display: flex;
	}
	.store.product-page .top .page-info .category-rating .rating {
		margin-left: auto;
	}
	.slider-container .slider {
		width: auto;
	}
	.store-slider img + img {
		height: 100%;
		z-index: 2;
		width: 100%;
	}
	.category-highlights .slider-arrows,
	.top .slider-container .slider-arrows,
	.fullscreen .slider-container .slider-arrows {
		width: 100%;
		padding: 0 20px;
	}
	.top .slider-container .slider-arrows,
	.fullscreen .slider-container .slider-arrows {
		padding: 0;
	}
	body.search-results p {
		font-size: 20px;
	}
	header .store-icons span {
        font-size: 11px;
        top: -9px;
        right: -23px;
    }
	.category-highlights .slider-arrows > *,
	.feedback-container	.slider-arrows > *,
	.top .slider-container .slider-arrows > *,
	.fullscreen .slider-container .slider-arrows > * {
		width: 46px;
		height: 25px;
	}
	.category-highlights .category-container .img + div p + a {
		margin-top: 0;
	}
	.category-highlights .category-container .img + div p {
		margin-bottom: 24px;
		font-size: 48px;
		max-width: 370px;
	}
	.category-highlights .category-container .slider-container {
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 1;
		max-width: 57%;
	}
	.category-highlights .category-container .slider-container .slider-wrapper {
		max-width: 680px;
		margin: auto;
	}
	.category-highlights .category-container .img + div {
		left: 110px;
		bottom: 80px;
	}
	.category-highlights .categories-container {
		padding: 90px;
	}
	.category-highlights .categories-container .categories a p {
		font-size: 16px;
	}
	.category-highlights .categories-container .categories a img {
		width: 120px;
		height: 100px;
	}
	.category-highlights .category-container .info {
		width: 43%;
	}
	header .logo {
        width: 188px;
        height: 67px;
        max-width: 100%;
        max-height: 100%;
		transition:all 0.4s ease;
		margin: 0;
		z-index: 2;
    }
	footer {
		padding: 0;
	}
	footer ul li {
		margin: 0;
	}
	footer .bottom-container .bottom-wrapper .top ul li {
		margin: 0 15px;
	}
	footer .social i {
		font-size: 17px;
	}
	footer .top-container .top ul > *:not(:first-child) {
		font-weight: bold;
	}
	footer .container, footer ul {
		align-items: flex-end;
	}
	footer .top > a {
		margin-right: 45px;
	}
	footer .social {
		margin-left: auto;
	}
	.products.listing .prices {
		margin: 0 0 19px 0;
	}
	.products.listing .prices + a {
        padding: 13px 35px;
        margin-top: auto;
    }
	.listing .product .product-wrapper .properties .category {
		margin: 28px auto 10px auto;
	}
	.products.listing {
        margin: -37px -24px;
    }
	.products.listing .product {
        padding: 37px 24px;
    }

	.best-sellers {
        padding: 100px 25px;
    }
	header .search-container {
		width: 438px;
		border-radius: 30px;
		border: solid 2px #eaeaeb;
		order: -1;
		margin-right: 31px;
	}
	header .search-container .search {
		height: 100%;
		width: 100%;
		position: relative;
	}
	header .search-container .search::after {
		background: url(/images/icons/store-lupe.svg) 0%/contain no-repeat;
		top: 0;
		bottom: 0;
		margin: auto;
		left: 10px;
		width: 20px;
		height: 20px;
		content: '';
		transform: rotateY(180deg);
		position: absolute;
	}
	header .search-container .search input {
		opacity: 1;
		padding-left: 50px;
		font-size: 12px;
	}
}
@media screen and (min-width: 1199px) {
	.store-slider {
		max-height: calc(100vh - 307px);
		display: flex;
	}
	.store-menu.fixed + .banner {
        margin-top: 134px;
    }
    .best-sellers {
        padding: 120px 25px 60px;
    }
	.products.listing h3.title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .products.listing h3.title-product {
        font-size: 20px;
        margin-bottom: 17px;
    }

    .content.shop .template .items .details p.category,
    .products.listing h4.category,
    .content .template .listing .product-inline > div > span.category {
        font-size: 11px;
    }
    .products.listing h4.category {
        margin: 30px 0 10px 0;
    }
}



/**********************************************/
/********** ATUALIZACOES LOJA ONLINE **********/
/**********************************************/

.content.shop .banner .container {
	text-align: center;
}
.content.shop .banner .container ul {
	display: inline-block;
}

/********** CART **********/

.content.shop.cart .template .listing .product-inline:not(:last-child) {
	padding: 20px;
	border: 2px solid #f1f1f2;
	border-radius: 10px;
}

.content.shop.cart .template .listing .product-inline:last-child {
	padding: 0;
	border: none;
}

.content .template .listing .product-inline + .product-inline {
	margin-top: 20px;
}
.content .template .listing .product-inline + .product-inline:last-child {
	margin-top: 60px;
}

.content .template .listing .product-inline .remove {
	position: absolute;
	top: -12px;
	left: -12px;
	width: 32px;
	height: 32px;
	background-color: #f1f1f2;
	border-radius: 100%;
	border: none;
}
.content .template .listing .product-inline .remove:hover,
.content .template .listing .product-inline .remove:focus {
	background-color: var(--secondary);
}
.content .template .listing .product-inline .remove::before,
.content .template .listing .product-inline .remove::after {
	width: 20px;
	height: 2px;
	background-color: white;	
}


.content .template .listing .product-inline .category {
	display: inline-block;
	margin: 0;
	margin-bottom: 15px;
	width: 30px;
	height: 30px;
}
.content .template .listing .product-inline .category img {
	max-width: 100%;
	max-height: 100%;
	filter: grayscale(100%) brightness(0);
	opacity: 0.2;
	transition: inherit;
}
.content .template .listing .product-inline .category:hover img,
.content .template .listing .product-inline .category:focus img {
	filter: grayscale(0);
	opacity: 1;
}


.content .template .listing .product-inline span.title {
	margin: 0;
}
.content .template .listing .product-inline span.title + span {
	margin-top: 10px;
}


.content .template .listing .product-inline .quantity-select {
	background-color: var(--pink);
}
.content .template .listing .product-inline .quantity-select span {
	color: white;
}
.content .template .listing .product-inline .quantity-select a::before,
.content .template .listing .product-inline .quantity-select a::after {
	background-color: white;
}


.content .template .listing .product-inline .price span.old,
.content .template .listing .product-inline .price span.title {
	font-family: "Gotham";
	font-weight: 900;
	color: var(--secondary);
	margin: 0;
	line-height: 1;
}
.content .template .listing .product-inline .price span.old {
	opacity: 0.3;
	margin-bottom: 5px;
}



@media (min-width: 768px) {
	.content .template .listing .product-inline .image {
		min-width: 165px;
		max-width: 165px;
		max-height: 165px;
	}
}

@media (min-width: 992px) {
	.content .template .listing .product-inline .details {
		max-width: none;
	}

	.content .template .listing .product-inline .price {
		margin-left: 60px;
	}
}

/********** CART SIDEBAR *********/

.content .template.has-sidebar .cart-sidebar {
	background-color: #041a26;
	border-radius: 10px;
}

.content .template.has-sidebar .cart-sidebar > p {
	font-size: 16px;
	font-weight: 500;
	color: var(--pink);
	letter-spacing: -.05em;
	line-height: 1;
	text-transform: none;
	margin-bottom: 35px;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown {
	display: block;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div,
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:first-child {
	display: flex;
	font-family: "Gotham Book";
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: white;
	max-width: none;
	text-transform: none;
	margin: 0;
	text-align: left;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-child {
	font-family: "Gotham";
	font-weight: 900;
	text-transform: none;
	color: white;
	flex-direction: initial;
	align-items: initial;
}
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:last-child > div:last-child:not(.title) {
	font-weight: 900;
	text-transform: none;
	margin-bottom: 0;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown > div + div {
	margin-top: 20px;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown > div > div:last-child:not(.title) {
	margin-left: auto;
	font-weight: 400;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown > div span,
.content .template.has-sidebar .cart-sidebar .price-breakdown > div:first-child span {
	color: #747c81;
	margin-top: 8px;
	font-weight: 400;
}

.content .template.has-sidebar .cart-sidebar .price-breakdown hr {
	border: none;
	height: 1px;
	background-color: #1d4458;
	margin: 28px 0;
}

.content .template.has-sidebar .cart-sidebar .button::before {
	content: normal;
}
.content .template.has-sidebar .cart-sidebar .button::after {
	background-color: var(--pink);
}

.content .template.has-sidebar .cart-sidebar .button-wrapper + span {
	font-family: "Gotham Book";
	font-weight: 400;
	color: #747c81;
}

.content .template.has-sidebar .sidebar {
	background-color: #041a26;
	border-radius: 10px;
}

.content .template.has-sidebar .sidebar > p {
	font-family: "Gotham";
	font-size: 1rem;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.47;
	letter-spacing: -0.8px;
	text-align: left;
	color: var(--pink);
	text-transform: capitalize;
	margin: 0 0 30px 0;
}

.content .template.has-sidebar .sidebar ul li {
	font-family: "Gotham";
	font-size: 0.98rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 2.14;
	letter-spacing: normal;
	text-align: left;
	color: #747c81;
	padding: 0;
}

.content .template.has-sidebar .sidebar ul li.active {
	color: white;
}

.content.shop p.big:first-child {
	font-family: "Montserrat";
	font-size: 1.125rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: normal;
	text-align: left;
	color: #575759;
}

.listing hr {
	border: 0;
	border-top: 1px solid #ebeaea !important;
}

.content .template .listing .order .upper .order-content-toggle {
	border: 1px solid var(--pink);
}

.content .template .listing .order .upper .order-content-toggle::before {
	border-color: var(--pink);
}

.content .template .listing .order .order-content .order-details span {
	font-family: "Montserrat";
	font-size: 0.75rem;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 2.17;
	letter-spacing: normal;
	text-align: left;
	color: #838384;
}

.content .template .listing .order .order-content .order-details span b {
	color: #0a2a3b;
	font-weight: 600;
}

.content .template .listing .product-inline span.title {
	font-family: "Gotham Book";
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #525252;
}

.content .template .listing .order .upper span {
	font-size: 0.75rem;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
	color: #838384;
}

.content .template .listing .order .upper span b {
	color: #0a2a3b;
}

.content.shop .h2:first-child {
	font-family: "Gotham";
	font-size: 1.75rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.18;
	letter-spacing: -1.4px;
	text-align: left;
	color: var(--pink);
}

.content.shop p.big {
	font-family: "Montserrat";
	font-size: 1.125rem;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: normal;
	text-align: left;
	color: #575759;
}

.content.shop .template .btn:hover {
	transform: scale(1.07);
}

.content.shop .template .btn:hover::after {
	transform: scale(1);
}

@media screen and (min-width: 992px) and (max-width: 1200px) {

	.content .template .listing .order .upper span b {
		display: block;
		margin-bottom: 5px;
	}

	.content .template .listing .order .upper .status-bar span + span {
		margin-top: 5px;
	}
	.content .template .listing .order .upper > div + div {
		margin-left: 0;
	}

	.content .template .listing .order .upper .thumbnails .row > div {
		flex: 0 0 50%;
		max-width: 50%;
		max-height: unset;
	}
}

@media screen and (min-width: 1200px) {

	.content .template .listing .product-inline .price {
		margin-left: 20px;
		margin-right: 40px;
	}

	.category-highlights .category-container,
	.category-highlights .category-container .info,
	.category-highlights .category-container .slider-container {
		max-height: 750px;
	}
}

@media screen and (max-width: 1024px) {
	.product-page .slider-container .slick-slider {
		padding: 20px;
	}
	
	.category-highlights .slick-list {
		max-width: calc(100vw - 40px);
	}

	.category-highlights .category-container .info {
		width: 100%;
		height: 500px;
	}
}

@media screen and (max-width: 992px) {
	.content .template .listing .product-inline .price {
		margin-top: 20px;
		position: initial;
		display: block;
	}
	.content .template .listing .product-inline .category {
		margin-top: 5px;
	}

	.content .template .listing .product-inline .price {
		margin-left: 20px;
		margin-right: 40px;
	}

	.content .template .form .checkbox-wrapper {
		margin: 30px 0px;
	}

	.content .template .form .button {
		margin-bottom: 20px;
	}
}

.content.shop .template .listing .product-inline {
	padding: 20px;
	border: 2px solid #f1f1f2;
	border-radius: 10px;
}

/********** Product Page *********/

@media screen and (max-width: 768px) {

	.menu-page h1 {
		margin-top: 10px;
	}

	.store.product-page .top .page-info a {
		margin: 10px 0;
	}
	
	.product-page .options > div > .radio p {
		font-size: 1rem;
	}

	.product-page .options > div > .radio p,
	.product-page .options .prices p:not(.relative) {
		font-size: 1rem;
		margin: 0 20px;
	}

	.product-page .options > div > .radio > div {
		width: 15px;
		height: 15px;
	}

	.product-page .options > div > .radio > div::after {
		margin: 3px;
	}

	.product-page .options > div > .radio p, .product-page .options .prices p:not(.relative) {
		margin: 0 10px;
	}

	.product-page .page-info .prices {
		margin-right: 10px;
	}

	.product-page .options .ammount {
		max-width: 80px;
		padding: 10px 12px;
		margin-left: 0;
	}

	.highlights-slider .slider-arrows {
		width: unset;
	}
}

/* .template .wishlist {
	max-width: 925px;
} */

.wishlist .items {
	margin: 0;
}

.wishlist a {
	cursor: pointer;
}

.wishlist .products.listing .image img:first-of-type {
	filter: none;
}

.wishlist .image img {
	top: 0;
    left: 0;
	opacity: 1;
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	background-blend-mode: multiply;
}

.wishlist .category {
	margin: auto;
}

.wishlist .category img {
	width: 30px;
	height: 30px;
}

.wishlist .products.listing .product .prices {
	margin: auto 0 0;
}

.wishlist .products.listing .product .prices p {
	font-size: 16px;
	font-weight: 900;
	font-style: normal;
	margin: 0;
}

.wishlist .products.listing .product .prices .old {
	color: rgba(15, 29, 63, 0.3);
	margin-right: 10px;
}

.wishlist .products.listing .product .prices .relative {
	font-family: "Gotham Book";
	font-weight: normal;
	text-align: center;
	margin-top: 10px;
	height: 13px;
	font-size: 12px;
	color: rgba(15, 29, 63, 0.3);
}

.wishlist .products.listing .prices + a {
	width: auto;
	text-align: center;
	margin-top: 20px;
}

.wishlist .btn span {
	display: inline-block;
}

.wishlist .btn span::before{
	content: '';
	width: 20px;
	height: 20px;
	background: url(/images/icons/store/car-white.svg) no-repeat center center;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.wishlist .remove {
	position: absolute;
	top: -12px;
	left: -12px;
	width: 32px;
	height: 32px;
	background-color: #f1f1f2;
	border-radius: 100%;
	border: none;
}

.wishlist .remove:hover {
	background-color: var(--secondary);
}

.wishlist .remove::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 20px;
	height: 2px;
	background-color: white;
	transform: rotate(45deg);
}

.wishlist .remove::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 20px;
	height: 2px;
	background-color: white;
	transform: rotate(-45deg);
}