/*

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: #ec7d07;
	--color-quaternary: #f8f8f8;
	--color-black: #1d1d1b;
	--color-link-primary: #1d1d1b;
	--color-link-secondary: #ec7d07;
	--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: 70px;
		margin: auto 0;
	}

@media (min-width: 992px) {
	.header-logo img {
		height: 70px;
	}
}
/*
================*/

/* 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: 50%;
	}
}

.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;
	}
}
/*
================================*/



.woocommerce-checkout .woocommerce-checkout-review-order {
	border: 2px solid var(--color-tertiary);
	padding: 15px;
}

.woocommerce table.shop_table {
	border: 0;
}







/* Customize the label (the container) */
label.sira-checkout-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
label.sira-checkout-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 2px solid var(--color-tertiary);
}

/* On mouse-over, add a grey background color */
label.sira-checkout-checkbox:hover input~.checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
label.sira-checkout-checkbox input:checked~.checkmark {
	background-color: var(--color-tertiary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
label.sira-checkout-checkbox input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
label.sira-checkout-checkbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

label.sira-checkout-checkbox .required {
	top: -62px;
	position: relative;
	left: 23px;
}




.woocommerce-checkout #payment {
	background: white; 
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background-color: rgb(236,125,7,20%);
	border-radius: 10px;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	content: "";
	display: block;
	border: 1em solid rgb(236, 125, 7, 20%);
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
	position: absolute;
	top: -0.9em;
	left: 0;
	margin: -1em 0 0 2em;
}


.payment_box.payment_method_woocommerce_payments .wc-upe-form.wc-payment-form{
	border: 0
}

.woocommerce-checkout select, .woocommerce-checkout input, .woocommerce-checkout textarea{
	border: 1px solid #ccc !important;
	padding: 10px !important;
	border-radius: 0px !important;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 0;
}

.select2-container .select2-selection--single {
	padding: 10px;
	height: unset !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: var(--color-tertiary);
	color: #fff;
}


.woocommerce-shipping-fields, .woocommerce-additional-fields {
	margin-top: 30px;
	border-top: 1px solid var(--color-tertiary);
	padding-top: 30px;
}


.woocommerce-checkout h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
}

.woocommerce-checkout .woocommerce-checkout-payment h4 {
	font-size: 0.9rem;
	margin-left: 15px;
	text-transform: uppercase;
}
.woocommerce-checkout table.shop_table {
	border-collapse: collapse;
}

.woocommerce table.shop_table tfoot .order-total {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.woocommerce-terms-and-conditions-wrapper{
	margin-bottom: 30px;
}








/* STYLE RADIO BOX */

.woocommerce-shipping-methods li,
.wc_payment_methods.payment_methods li {
	position: relative;
	display: block;
	min-height: 1.5rem;
}
.woocommerce-shipping-methods li input[type='radio'],
.wc_payment_methods.payment_methods li input[type='radio'] {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.woocommerce-shipping-methods li label,
ul.wc_payment_methods li input[type='radio'] ~ label{
	font-size: 13px;
	position: static;
	margin-bottom: 0;
	margin-left: 25px;
}
.woocommerce-shipping-methods li label:before,
ul.wc_payment_methods li input[type='radio']~label:before {
	left: 0;
	pointer-events: none;
	user-select: none;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.woocommerce-shipping-methods li label:before,
ul.wc_payment_methods li input[type='radio']~label:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
.woocommerce-shipping-methods li label:after,
ul.wc_payment_methods li input[type='radio']~label:after {
	left: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #ccc;
	background-color: var(--color-tertiary);
	opacity: 0;
	transition: opacity 0.3s;
	margin-top: -6px;
}
.woocommerce-shipping-methods li label:after,
ul.wc_payment_methods li input[type='radio']~label:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
ul.woocommerce-shipping-methods li input[type='radio']:checked~label:after,
ul.wc_payment_methods li input[type='radio']:checked~label:after {
	opacity: 1 !important;
	width: 12px;
	height: 12px;
	top: 16px;
	left: 4px;
}
ul.wc_payment_methods li input[type='radio']:checked~label:before {
	border-radius: 50%;
	border: 1px solid #ccc;
	opacity: 1 !important;
	top: 12px;
}



/* PAYPAL */
.wc_payment_methods span.paypal {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-style: italic;
	font-weight: bold;
}
.wc_payment_methods span.paypal span.pay {
	color: #003087;
}
.wc_payment_methods span.paypal span.pal {
	color: #009cde;
}



/* shipping */
table.shop_table tfoot tr.woocommerce-shipping-totals.shipping th {
	padding: 28px 10px 10px 10px;
	border-top: 0;
	display: block;
}

table.shop_table tfoot tr.woocommerce-shipping-totals.shipping td {
	text-align: left;
	padding: 0;
	border-top: 0;
	display: block;
	padding-left: 10px;
	padding-bottom: 28px;
	width: 135%;
}
				
/* totale Ordine */