:root {
	/* Main colors */
	--1: #242B60;
	--2: #E9494C;
	--2Hover: #DE3F42;

	/* Grey */
	--g1: #F9F9F9;
	--g2: #EAEAEA;
	--g3: #EEEEEE;
	--g4: #F0F0F0;
	--g5: #F5F5F5;
	--g6: #F7F7F7;
	--g7: #D8D8D8;
	--g8: #D7D7D7;
	--g9: #999999;

	/* Text color */
	--text: #111111;

	/* Black and White */
	--b: #000000;
	--w: #FFFFFF;

	/* Woocommerce error */
	--wError: #B81C23;

	/* Password strength */
	--passwordBad: #B81C23;
	--passwordGood: #FFC733;
	--passwordStrong: #83C373;

	/* Woocommerce orders */
	--orderCancelled: #AD3821;
	--orderProcessing: #EB882D;
	--orderPending: #E5CF48;
	--orderOnHold: #CDB52A;
	--orderCompleted: #169616;

	/* Fonts */
	--ff1: "DM Sans", Sans-serif;
	--ff2: "Inter", Sans-serif;
}

html {
	scroll-behavior: smooth;
}

/* body - Cambiare stile in base al sito */
body {
	font-family: var(--ff1);
	color: var(--text);
}

/* Titoli - Cambiare stile in base al sito */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff1);
	line-height: 1.5;
	font-style: normal;
	color: var(--text);
}

/* a - Cambiare stile in base al sito */
body .elementor-widget-text-editor a,
body .elementor-widget-text-editor a:hover {
	font-family: var(--ff1);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	font-style: normal;
	color: inherit;
	text-decoration: underline;
}

/* p - cambiare stile in base al sito */
body .elementor-widget-text-editor p,
body .elementor-widget-text-editor span {
	font-family: var(--ff2);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	font-style: normal;
	color: inherit;
	margin-bottom: 15px !important;
}

body .elementor-widget-text-editor b,
body .elementor-widget-text-editor strong {
	font-weight: 600;
}

/* Impostare il margine del paragrafo a 0 */
body .elementor-widget-text-editor.no-margin p {
	margin: 0 !important;
}

/* Primary button */
.elementor-widget-button.primary-btn .elementor-button {
	font-family: var(--ff1) !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	font-style: normal !important;
	text-decoration: none !important;
	line-height: 46px !important;
	letter-spacing: .5px !important;
	color: var(--w)!important;
	background: var(--1) !important;
	border: none;
	border-radius: 30px !important;
	padding: 0 32px !important;
	transition: .5s!important;
	height: 46px;
	box-shadow: none !important;
	outline: none !important;
	display: table;
	transform: translateX(-5px);
}

.elementor-widget-button.primary-btn .elementor-button:hover {
	transform: translateX(0);
}

/* Secondary button */
.elementor-widget-button.secondary-btn .elementor-button {
	font-family: var(--ff1) !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	font-style: normal !important;
	text-decoration: none !important;
	line-height: 1 !important;
	letter-spacing: .5px !important;
	color: var(--1)!important;
	border: none;
	transition: .5s!important;
	box-shadow: none !important;
	outline: none !important;
	position: relative;
	padding: 0 0 6px !important;
}

.elementor-widget-button.secondary-btn .elementor-button:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 30px;
	background-color: var(--1);
	transform: translateY(0);
	transition: .5s !important;
}

.elementor-widget-button.secondary-btn .elementor-button:hover:after {
	transform: translateY(3px);	
}

/* :focus */
input,
select,
button,
:focus,
:focus-visible {
	outline: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}

/* Hidden elements on desktop */
body .desktop-hidden {
	display: none;
}

/* p */
.no-margin p {
	margin: 0 !important;
}

/* ul */
.elementor-widget-theme-post-content ul,
.elementor-widget-text-editor ul {
	padding-left: 20px !important;
}

.elementor-widget-text-editor ul li {
	margin-bottom: 10px !important;
}

/* Woocommerce breadcrumb - cambiare stile in base al sito */
body .woocommerce-breadcrumb {
	font-family: var(--ff1);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	text-decoration: none;
	color: var(--1);
}

body .woocommerce-breadcrumb a {
	font-family: var(--ff1);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	text-decoration: none;
	color: var(--text);
	opacity: .5;
	transition: .4s;
}

body .woocommerce-breadcrumb a:hover {
	font-family: var(--ff1);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	text-decoration: none;
	color: var(--1);
	opacity: 1;
}

/* Woocommerce message - cambiare stile in base al sito */
html .woocommerce-message {
	position: fixed;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--1);
	color: var(--w);
	padding: 24px;
	border-radius: 14px;
	z-index: 9;
	display: flex;
	font-family: var(--ff1);
	font-size: 16px;
	letter-spacing: .5px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	opacity: 0;
	visibility: hidden;
	animation: hidden-msg 4s;
}

html .woocommerce-message a,
html .woocommerce-message a:hover {
	color: var(--w);
	font-family: var(--ff1);
	font-size: 16px;
	letter-spacing: .5px;
	padding: 0 0 0 20px;
	order: 2;
}

@keyframes hidden-msg {
	0% {
		opacity: 1;
		visibility: visible;
	}
	95% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

@media screen and (max-width:1480px) {
	/* Standard padding */
	.standard-padding {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}
}

@media screen and (max-width: 767px) {
	/* Visible elements on mobile */
	body .desktop-hidden {
		display: block;
	}
}

.displayGTM{
	display: none !important;
	visibility: hidden !important;
}