/*

Theme name: PSR

Author: Ettore Borsa

Description: Tema sviluppato da Ettore Borsa

Version: 2.2

License: GNU General Public License v2 or later

*/


/* Fonts
================================*/
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		url('assets/fonts/poppins-v20-latin/poppins-v20-latin-regular.woff2') format('woff2'),
		url('assets/fonts/poppins-v20-latin/poppins-v20-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: local(''),
		url('assets/fonts/poppins-v20-latin/poppins-v20-latin-500.woff2') format('woff2'),
		url('assets/fonts/poppins-v20-latin/poppins-v20-latin-500.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: local(''),
		url('assets/fonts/poppins-v20-latin/poppins-v20-latin-600.woff2') format('woff2'),
		url('assets/fonts/poppins-v20-latin/poppins-v20-latin-600.woff') format('woff');
}
/*
================================*/


/* Reboot
================================*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

figure {
	margin: 0;
}

img,
svg {
	vertical-align: middle;
}

table {
	caption-side: bottom;
	border-collapse: collapse;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-width: 0;
	border-style: solid;
	border-color: inherit;
}

label {
	display: inline-block;
}

button {
	border-radius: 0;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	resize: vertical;
}

iframe {
	border: 0;
}

:active,
:focus {
	outline: 0;
}

[hidden] {
	display: none !important;
}
/*
================================*/


/* Global setting
================================*/
:root {
	--color-primary: #555555;
	--color-secondary: #1d1d1b;
	--color-tertiary: #b09e41;
	--color-quaternary: #f8f8f8;
	--color-black: #1d1d1b;
	--color-link-primary: #1d1d1b;
	--color-link-secondary: #b09e41;
	--font-family-primary: 'Poppins', sans-serif;
	--font-family-secondary: 'Poppins', sans-serif;
	--font-size-primary: 0.9375rem;
	--font-weight-primary: 400;
	--font-weight-secondary: 500;
	--font-weight-tertiary: 600;
	--letter-spacing-primary: 0.025em;
	--letter-spacing-secondary: 0.025em;
}

body {
	color: var(--color-primary);
	font-family: var(--font-family-primary);
	font-size: var(--font-size-primary);
	font-weight: var(--font-weight-primary);
	line-height: 1.6;
	letter-spacing: var(--letter-spacing-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1.3em 0 0.6em 0;
	color: var(--color-secondary);
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-tertiary);
	text-transform: none;
	line-height: calc(1.6em + ((var(--font-size-primary) - 1em) / 2));
	letter-spacing: var(--letter-spacing-primary);
}

h1 {
	font-size: clamp(1.5625rem, 2.333333333333333vw, 1.75rem); /* 25-28 */
}

h2 {
	font-size: clamp(1.4375rem, 2.166666666666667vw, 1.625rem);  /* 23-26 */
}

h3 {
	font-size: clamp(1.3125rem, 2vw, 1.5rem);  /* 21-24 */
}

h4 {
	font-size: clamp(1.1875rem, 1.833333333333333vw, 1.375rem);  /* 19-22 */
}

h5 {
	font-size: clamp(1.0625rem, 1.666666666666667vw, 1.25rem);  /* 17-20 */
}

h6 {
	font-size: clamp(0.9375rem, 1.5vw, 1.125rem); /* 15-18 */
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
}

p,
ul,
ol,
dl,
address {
	margin: 0 0 0.9375rem 0;
}

ul,
ol {
	padding-left: 1.875rem;
}

	ul ul,
	ol ol,
	ul ol,
	ol ul {
		margin-top: 0.9375rem;
	}

dd {
	margin: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
address:last-child {
	margin-bottom: 0;
}

blockquote {
	margin: 1.25rem 0;
	border-left: 3px solid var(--color-tertiary);
	padding-left: 1.875rem;
    font-style: italic;
}

blockquote:first-child {
	margin-top: 0;
}

blockquote:last-child {
	margin-bottom: 0;
}

	blockquote cite {
		font-weight: var(--font-weight-secondary);
	}

strong,
b {
	color: var(--color-secondary);
	font-weight: var(--font-weight-secondary);
}

h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b,
h6 strong,
h6 b {
	font-weight: var(--font-weight-tertiary);
}

a {
	color: var(--color-link-primary);
	text-decoration: underline;
	transition: color 0.3s ease;
}

a strong {
	color: var(--color-link-primary);
	transition: color 0.3s ease;
}

a:hover,
a:focus,
a:hover strong,
a:focus strong {
	color: var(--color-link-secondary);
}

img {
	max-width: 100%;
	height: auto;
}

hr {
	height: 1px;
	border: 0;
	background-color: #efefef;
	margin-top: 1.875rem;
	margin-bottom: 1.875rem;
}

::-moz-selection {
    color: #ffffff;
    background-color: var(--color-tertiary);
}

::selection {
    color: #ffffff;
    background-color: var(--color-tertiary);
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.7;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 0.7;
}

::placeholder {
	color: inherit;
	opacity: 0.7;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

@media (min-width: 2000px) {
	.container-fluid {
		max-width: 2000px;
		margin-right: auto;
		margin-left: auto;
	}
}
/*
================================*/


/* Global style
================================*/

/* Title
================*/
.title-1 {
	font-size: clamp(1.9375rem, 2.833333333333333vw, 2.125rem); /* 31-34 */
}

.title-2 {
	font-size: clamp(1.8125rem, 2.666666666666667vw, 2rem); /* 29-32 */
}

span.sub {
	display: block;
	color: var(--color-tertiary);
	font-size: 0.75em;
	text-transform: none;
}
/*
================*/

/* Text
================*/
.text-italic {
	font-style: italic;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-underline {
    text-decoration: underline;
}

.text-1 {
	font-size: clamp(1.25rem, 1.833333333333333vw, 1.375rem); /* 20-22 */
}

.text-2 {
	font-size: clamp(1.0625rem, 1.5vw, 1.125rem); /* 17-18 */
}
/*
================*/

/* Background color
================*/
.bg-color-white {
	background-color: #ffffff;
}

.bg-color-black {
	background-color: var(--color-black);
}

.bg-color-secondary {
	background-color: var(--color-secondary);
}

.bg-color-tertiary {
	background-color: var(--color-tertiary);
}

.bg-color-quaternary {
	background-color: var(--color-quaternary);
}
/*
================*/

/* Color
================*/
.white {
	color: #ffffff;
}

a.white {
	color: #ffffff;
}

a.white:hover {
	text-decoration: none;
}

.black {
	color: var(--color-black);
}

.primary {
	color: var(--color-primary);
}

.secondary {
	color: var(--color-secondary);
}

.tertiary {
	color: var(--color-tertiary);
}

a.tertiary {
	color: var(--color-tertiary);
}

a.tertiary:hover {
	color: #ffffff;
}
/*
================*/

/* Figure hover
================*/
.figure-hover {
	position: relative;
	overflow: hidden;
}

	.figure-hover > a {
		display: block;
		position: relative;
		text-decoration: none;
	}

	.figure-hover > a::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(29,29,29,0.3);
		z-index: 1;
		opacity: 0;
		transition: 0.3s ease;
	}

	.figure-hover > a:hover::before {
		opacity: 1;
	}

		.figure-hover > a > img {
			transform: scale(1);
			transition: transform 0.35s ease-in-out;
		}

		.figure-hover > a:hover > img {
			transform: scale(1.07);
		}

.transform-none {
	transform: none !important;
}
/*
================*/

/* Overlay
================*/
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.75);
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.7s;
}

.overlay.open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), visibility 0s 0s;
}
/*
================*/

/* Style 1
================*/
@media (min-width: 992px) {
	.style-1 .content-col-2 {
		position: relative;
		height: 100%;
	}

		.style-1 .content-col-2 figure img {
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
}
/*
================*/

/* Wp
================*/
/*
================*/
/*
================================*/


/* Admin bar
================================*/
#wpadminbar {
    position: fixed !important;
	z-index: 500 !important;
}

#wp-admin-bar-new-content {
	display: none;
}

body.admin-bar .header {
	top: 46px;
}

body.admin-bar .overlay,
body.admin-bar .nav-fixed .menu-wrap,
body.admin-bar .cart-fixed .cart-fixed-wrap {
	top: 46px;
}

@media (min-width: 782px) {
	#wpadminbar #wp-admin-bar-my-account > a {
		display: flex;
		align-items: center;
	}

		#wpadminbar #wp-admin-bar-my-account > a > .display-name {
			max-width: 100px;
			margin-left: 4px;
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
		}

		#wpadminbar #wp-admin-bar-my-account.with-avatar > a > img {
			margin-top: 0;
		}

	body.admin-bar .header {
		top: 32px;
	}

	body.admin-bar .overlay,
	body.admin-bar .nav-fixed .menu-wrap,
	body.admin-bar .cart-fixed .cart-fixed-wrap {
		top: 32px;
	}
}
/*
================================*/


/* Header area
================================*/
.header {
	background-color: #ffffff;
}

.header.fixed {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 500;
	transform: translateY(-100%);
}

.header.fixed.scroll-down {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

.header.fixed.scroll-up {
	box-shadow: 0 1px 0 0 #e5e5e5;
	transform: translateY(0);
	transition: box-shadow 0s ease-in-out 0s, transform 0.3s ease-in-out;
}

	.header .header-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}

/* Header logo
================*/
.header-logo a {
	display: flex;
	height: 4.375rem;
	text-decoration: none;
}

	.header-logo img {
		width: auto;
		height: 1.25rem;
		margin: auto 0;
	}

@media (min-width: 992px) {
	.header-logo img {
		height: 2.875rem;
	}
}
/*
================*/

/* Header nav
================*/
.header-nav {
	display: none;
}

@media (min-width: 992px) {
	.header-nav {
		display: block;
		margin-left: auto;
	}

		.header-nav ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}

		.header-nav li {
			position: relative;
		}

		.header-nav a {
			display: inline-block;
			position: relative;
			text-decoration: none;
		}

		.header-nav > ul {
			display: flex;
			flex-wrap: wrap;
			margin-right: -1.25rem;
		}

			.header-nav > ul > li > a {
				padding: 0 1.25rem;
				color: var(--color-secondary);
				font-size: 0.875rem;
				font-weight: var(--font-weight-tertiary);
				text-transform: none;
				line-height: 5.625rem;
				transition: color 0.3s ease;
			}

			.header-nav > ul > li.current-menu-item > a,
			.header-nav > ul > li.current_page_item > a,
			.header-nav > ul > li.current-menu-ancestor > a,
			.header-nav > ul > li.current-page-ancestor > a,
			.header-nav > ul > li.current-post-ancestor > a,
			.header-nav > ul > li.current_page_parent > a {
				color: var(--color-tertiary);
			}

			.header-nav > ul > li > a:hover {
				color: var(--color-tertiary);
			}

			.header-nav > ul > li.menu-item-has-children > a::after {
				content: "\e9fb";
				margin-left: 0.375rem;
				font-family: 'icomoon';
				font-size: 0.75rem;
				font-weight: normal;
				font-style: normal;
				line-height: 1;
			}

		/* Livello 2 e 3 */
		.header-nav > ul > li > ul.sub-menu,
		.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu {
			position: absolute;
			width: 13.75rem;
			border: 1px solid #e5e5e5;
			padding: 0.9375rem 0;
			background-color: #ffffff;
			z-index: 50;
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease;
		}

			.header-nav > ul > li > ul.sub-menu > li > a,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li > a {
				display: block;
				padding: 0.75rem 1.25rem;
				background-color: rgba(0,0,0,0);
				color: var(--color-secondary);
				font-size: 0.8125rem;
				font-weight: var(--font-weight-tertiary);
				text-transform: none;
				transition: color 0.3s ease;
			}

			.header-nav > ul > li > ul.sub-menu > li.current-menu-item > a,
			.header-nav > ul > li > ul.sub-menu > li.current_page_item > a,
			.header-nav > ul > li > ul.sub-menu > li.current-menu-ancestor > a,
			.header-nav > ul > li > ul.sub-menu > li.current-page-ancestor > a,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current-menu-item > a,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current_page_item > a,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current-menu-ancestor > a,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current-page-ancestor > a {
				color: var(--color-tertiary);
			}

			.header-nav > ul > li > ul.sub-menu > li:hover > a,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li:hover > a {
				color: var(--color-tertiary);
			}
		/* */

		/* Livello 2 */
		.header-nav > ul > li > ul.sub-menu {
			top: 100%;
			right: 0;
			transform: translateY(-0.9375rem);
			transition-delay: 0s;
		}

		.header-nav > ul > li:hover > ul.sub-menu {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
			transition-delay: 0.3s;
		}

			.header-nav > ul > li > ul.sub-menu > li.menu-item-has-children > a {
				padding-right: 2.125rem;
			}

			.header-nav > ul > li > ul.sub-menu > li.menu-item-has-children > a::after {
				content: "\e9fa";
				position: absolute;
				top: 50%;
				right: 1.25rem;
				font-family: 'icomoon';
				font-size: 0.75rem;
				font-weight: normal;
				font-style: normal;
				transform: translateY(-50%);
			}
		/* */

		/* Livello 3 */
		.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu {
			top: 0;
			right: 100%;
			transform: translateX(0.9375rem);
		}

		.header-nav > ul > li > ul.sub-menu > li:hover > ul.sub-menu {
			opacity: 1;
			visibility: visible;
			transform: translateX(0);
		}
		/* */

		/* Livello 4 */
		.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
			display: none;
		}
		/* */
}
/*
================*/

/* Header toggle
================*/
.header-toggle {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	height: 4.375rem;
	margin-left: 1.875rem;
}

	.header-nav-fixed-toggle,
	.header-cart-fixed-toggle {
		display: flex;
	}

		.header-toggle .icon {
			display: flex;
			position: relative;
			width: 2.5rem;
			height: 2.5rem;
			border: 1px solid #e5e5e5;
			margin: auto;
			color: var(--color-secondary);
			font-size: 1.0625rem;
			cursor: pointer;
			transition: color 0.3s ease;
		}

		.header-toggle .active .icon {
			color: var(--color-tertiary);
		}

		.header-toggle .icon:hover {
			color: var(--color-tertiary);
		}

		.header-toggle .icon::before {
			margin: auto;
		}

	body.woocommerce-cart .header-cart-fixed-toggle,
	body.woocommerce-checkout .header-cart-fixed-toggle {
		pointer-events: none;
	}

		.header-cart-fixed-toggle .cart-count {
			display: inline-block;
			position: absolute;
			top: -0.5625rem;
			right: -0.5625rem;
			min-width: 1.125rem;
			height: 1.125rem;
			border-radius: 50%;
			background-color: var(--color-tertiary);
			text-align: center;
			color: #ffffff;
			font-family: var(--font-family-primary);
			font-size: 0.625rem;
			line-height: 1.125rem;
		}

@media (min-width: 992px) {
	.header-toggle {
		margin-left: 2.5rem;
	}

		.header-nav-fixed-toggle {
			display: none;
		}
}
/*
================*/
/*
================================*/


/* Showcase area
================================*/
.showcase-area {
	position: relative;
	min-height: 16rem;
	padding: 18% 0;
}

	.showcase-img {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

		.showcase-img img {
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
/*
================================*/


/* Headline area
================================*/
.headline-area {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 1.25rem 0;
}

		.headline-title h1,
		.headline-title h2 {
			font-size: 1.125rem;
		}

		.headline-breadcrumb {
			margin-top: 0.125rem;
			font-size: 0.875rem;
		}

			.headline-breadcrumb a {
				text-decoration: none;
			}

			.headline-breadcrumb span:last-child {
				color: var(--color-secondary);
				font-weight: var(--font-weight-tertiary);
			}

@media (min-width: 768px) {
	.headline-wrap {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
		gap: 0.9375rem 1.875rem;
	}

		.headline-breadcrumb {
			margin-top: 0;
		}
}
/*
================================*/


/* Content area
================================*/

/* Content
================*/
.content {
	padding: 3.75rem 0;
}

.content-html-page .content {
	padding: 0;
}

.content-single-shop {
	border-top: 1px solid #e5e5e5;
}

@media (min-width: 992px) {
	.content {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
/*
================*/

/* Content archive
================*/
/*
================*/

/* Content single
================*/
/*
================*/

/* Sidebar
================*/
/*
================*/

/* Pagination
================*/
/*
================*/
/*
================================*/


/* Blog, archive, single, sidebar, pagination
================================*/

/* Global
================*/
/*
================*/

/* Blog, archive
================*/
/*
================*/

/* Single
================*/
/*
================*/

/* Sidebar
================*/
/*
================*/

/* Pagination
================*/
/*
================*/
/*
================================*/


/* Post type
================================*/

/* Global
================*/
/*
================*/

/* Archive, taxonomy
================*/
/*
================*/

/* Single
================*/
/*
================*/

/* Sidebar
================*/
/*
================*/

/* Pagination
================*/
/*
================*/
/*
================================*/


/* Woocommerce
================================*/
.woocommerce a.remove {
	font-weight: normal !important;
	transition: color 0.3s ease !important;
}

.woocommerce a.remove:hover {
	background-color: transparent !important;
	color: var(--color-secondary) !important;
}

.woocommerce .button {
	padding: 0.75em 1.25em !important;
	line-height: 1.4 !important;
	transition: background-color 0.3s ease !important;
}

.woocommerce .button.alt {
	background-color: var(--color-link-secondary) !important;
}

.woocommerce .button.alt:hover {
	background-color: var(--color-link-primary) !important;
}

.woocommerce a.button.loading::after {
	content: none;
}

.woocommerce a.added_to_cart {
	padding: 0.5em;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 1.125rem;
}

.woocommerce ul.products li.product .price {
	color: var(--color-tertiary);
	font-size: 1.125rem;
}

.woocommerce ul.products li.product .button {
	background-color: var(--color-link-secondary);
	font-size: 0.8125rem;
	color: #ffffff;
}

.woocommerce ul.products li.product .button:hover {
	background-color: var(--color-link-primary);
}

.woocommerce div.product {
	overflow: hidden;
}

.woocommerce div.product p.price {
	color: var(--color-tertiary);
	font-size: 1.375rem;
}

.woocommerce div.product form.cart {
	margin-top: 2em;
}

.woocommerce div.product form.cart .qty,
.woocommerce div.product form.cart .button {
	height: 2.75rem;
}
/*
================================*/


/* Home
================================*/
/*
================================*/


/* Altre pagine
================================*/
body.page-id-3 .content {
	overflow-wrap: break-word;
}
/*
================================*/


/* Footer area
================================*/
.footer-area {
	background-color: var(--color-quaternary);
	font-size: 0.875rem;
}

	.footer {
		padding: 3.125rem 0;
	}

		.footer ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}

			.footer ul > li > a,
			.footer ul > li > span {
				display: inline-block;
				padding: 0.375rem 0;
				color: var(--color-primary);
				text-decoration: none;
				word-break: break-word;
			}

			.footer ul > li > a:hover {
				color: var(--color-tertiary);
			}

			.footer ul > li.address > span::before,
			.footer ul > li.phone > a::before,
			.footer ul > li.email > a::before {
				margin-right: 0.75rem;
				color: var(--color-tertiary);
				font-family: 'icomoon';
				font-weight: normal;
				font-style: normal;
			}

			.footer ul > li.address > span::before {
				content: "\e9c2";
			}
		
			.footer ul > li.phone > a::before {
				content: "\e9c3";
			}
		
			.footer ul > li.email > a::before {
				content: "\e9c7";
			}

@media (min-width: 768px) {
	.footer ul > li.address,
	.footer ul > li.phone,
	.footer ul > li.email {
		position: relative;
	}

		.footer ul > li.address > span,
		.footer ul > li.phone > a,
		.footer ul > li.email > a {
			margin-left: 1.375rem;
		}

		.footer ul > li.address > span::before,
		.footer ul > li.phone > a::before,
		.footer ul > li.email > a::before {
			position: absolute;
			top: 0;
			left: 0;
			width: 1.375rem;
			margin-right: 0;
			padding: 0.375rem 0;
		}
}

.footer-2 .footer-wrap {
	padding: 1.875rem;
	background-color: #ffffff;
}

@media (min-width: 576px) {
	.footer-2 img {
		max-width: 400px;
	}
}

.footer-3 {
	padding: 3.125rem 0;
}

	.footer-3 .footer-col-2 a {
		font-weight: var(--font-weight-secondary);
		text-decoration: none;
	}
/*
================================*/


/* Nav fixed area
================================*/
.nav-fixed {
	display: none;
}

	.nav-fixed .menu-wrap {
		position: fixed;
		top: 0;
		bottom: 0;
		left: -90%;
		width: 90%;
		background-color: #ffffff;
		overflow-y: auto;
		z-index: 1000;
		visibility: hidden;
		transition: left 0.4s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.4s;
	}

	.nav-fixed .menu-wrap.open {
		left: 0;
		visibility: visible;
		transition: left 0.4s cubic-bezier(0.77,0,0.175,1), visibility 0s 0s;
	}

		.nav-fixed .menu-close {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			width: 100%;
			height: 4.375rem;
			padding: 0 1.875rem;
			cursor: pointer;
		}

			.nav-fixed .menu-close > span {
				display: flex;
				width: 2.5rem;
				height: 2.5rem;
				border: 1px solid #e5e5e5;
				color: var(--color-secondary);
				font-family: 'icomoon';
				font-size: 1.0625rem;
				font-weight: normal;
				cursor: pointer;
				transition: color 0.3s ease;
			}

			.nav-fixed .menu-close > span:hover {
				color: var(--color-tertiary);
			}

			.nav-fixed .menu-close > span::before {
				content: "\ea03";
				margin: auto;
			}

		.nav-fixed .menu-box {
			border-top: 1px solid #e5e5e5;
			padding: 0 1.875rem;
		}

			.nav-fixed ul {
				margin: 0;
				padding: 0;
				list-style: none;
			}

				.nav-fixed ul > li {
					position: relative;
				}

				.nav-fixed ul > li + li {
					border-top: 1px solid #e5e5e5;
				}

					.nav-fixed ul > li > a {
						display: block;
						margin-right: 2.5rem;
						padding: 0.9375rem 0;
						color: var(--color-secondary);
						font-size: 0.9375rem;
						font-weight: var(--font-weight-tertiary);
						text-transform: none;
						text-decoration: none;
					}

					.nav-fixed ul > li.current-menu-item > a,
					.nav-fixed ul > li.current_page_item > a,
					.nav-fixed ul > li.current-menu-ancestor > a,
					.nav-fixed ul > li.current-page-ancestor > a,
					.nav-fixed ul > li.current-post-ancestor > a,
					.nav-fixed ul > li.current_page_parent > a {
						color: var(--color-tertiary);
					}

					.nav-fixed ul > li > a:hover {
						color: var(--color-tertiary);
					}

					.nav-fixed .menu-plus {
						display: flex;
						justify-content: center;
						align-items: center;
						position: absolute;
						top: 0;
						right: 0;
						bottom: 0;
						width: 2.5rem;
						text-align: center;
						color: var(--color-secondary);
						font-family: 'icomoon';
						font-size: 1.0625rem;
						font-weight: normal;
						cursor: pointer;
						transition: color 0.3s ease;
					}

					.nav-fixed .menu-plus:hover {
						color: var(--color-tertiary);
					}

					.nav-fixed .menu-plus::after {
						content: "\e9fa";
					}

@media (min-width: 400px) {
	.nav-fixed .menu-wrap {
		left: -75%;
		width: 75%;
	}
}

@media (min-width: 576px) {
	.nav-fixed .menu-wrap {
		left: -450px;
		width: 450px;
	}
}
/*
================================*/


/* Cart fixed area
================================*/
.cart-fixed .cart-fixed-wrap {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -90%;
	width: 90%;
	background-color: #ffffff;
	overflow-y: auto;
	z-index: 1000;
	visibility: hidden;
	transition: right 0.4s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.4s;
}

.cart-fixed .cart-fixed-wrap.open {
	right: 0;
	visibility: visible;
	transition: right 0.4s cubic-bezier(0.77,0,0.175,1), visibility 0s 0s;
}

	.cart-fixed .cart-fixed-close {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 4.375rem;
		padding: 0 1.875rem;
		cursor: pointer;
	}

		.cart-fixed .cart-fixed-close > span {
			display: flex;
			width: 2.5rem;
			height: 2.5rem;
			border: 1px solid #e5e5e5;
			color: var(--color-secondary);
			font-family: 'icomoon';
			font-size: 1.0625rem;
			font-weight: normal;
			cursor: pointer;
			transition: color 0.3s ease;
		}

		.cart-fixed .cart-fixed-close > span:hover {
			color: var(--color-tertiary);
		}

		.cart-fixed .cart-fixed-close > span::before {
			content: "\ea03";
			margin: auto;
		}

	.cart-fixed .cart-fixed-box {
		border-top: 1px solid #e5e5e5;
		padding: 0 1.875rem;
	}

		.cart-fixed .widget_shopping_cart_content {
			margin-top: 1.25rem;
		}

			.cart-fixed .woocommerce.widget_shopping_cart .cart_list li {
				padding-bottom: 0;
			}

			.cart-fixed .woocommerce.widget_shopping_cart .cart_list li + li {
				margin-top: 1.25rem;
			}

				.cart-fixed .woocommerce.widget_shopping_cart .cart_list li a {
					text-decoration: none;
				}

			.cart-fixed .woocommerce.widget_shopping_cart .total {
				border-top: 1px solid #e5e5e5;
				border-bottom: 1px solid #e5e5e5;
				margin: 1.25rem 0;
				padding: 0.9375rem 0;
			}

			.cart-fixed .woocommerce.widget_shopping_cart .buttons {
				display: flex;
				justify-content: center;
			}

				.cart-fixed .woocommerce.widget_shopping_cart .buttons a {
					background-color: var(--color-link-secondary);
					color: #ffffff;
					transition: background-color 0.3s ease;
				}

				.cart-fixed .woocommerce.widget_shopping_cart .buttons a:hover {
					background-color: var(--color-link-primary);
				}

@media (min-width: 400px) {
	.cart-fixed .cart-fixed-wrap {
		right: -75%;
		width: 75%;
	}
}

@media (min-width: 576px) {
	.cart-fixed .cart-fixed-wrap {
		right: -450px;
		width: 450px;
	}
}

@media (min-width: 992px) {
	.cart-fixed .cart-fixed-close {
		height: 5.625rem;
	}
}
/*
================================*/


/* 2 Column WooCommerce Checkout */
/*
@media(min-width:768px) {

	.woocommerce .col2-set .col-1,
	.woocommerce-page .col2-set .col-1 {
		width: 90%;
	}

	#customer_details {
		display: flex;
		flex-flow: column nowrap;
		float: left;
		width: 50%;
	}

	#customer_details .col-2 {
		width: 90%;
		margin-top: 20px;
	}

	#order_review,
	#order_review_heading {
		width: 50%;
		float: left;
		clear: none;
	}
}
*/

/*
#place_order {
	width: 100%
}

.woocommerce-form-login label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
	margin-top: 12px;
}

@media (min-width: 768px) {
	#customer_details {
		width: 60%;
		float: left;
	}

	#order_review_heading {
		width: 30%;
		float: left;
		margin-left: 2%;
	}

	#order_review {
		width: 38%;
		float: left;
		margin-left: 2%;
	}

	.woocommerce table.shop_table td {
		width: 50%;
	}

	.woocommerce .col2-set .col-1,
	.woocommerce-page .col2-set .col-1,
	.woocommerce .col2-set .col-2,
	.woocommerce-page .col2-set .col-2 {
		width: 100%;
	}
}
*/