:root {
	/* Main colors */
	--1: #27348B;
	--2: #7B5228;
	--3: #55C291;
	--4: #122041;
	--5: #F8C73E;

	/* Grey */
	--g1: #F9F9F9;
	--g2: #EAEAEA;
	--g3: #EEEEEE;
	--g4: #F0F0F0;
	--g5: #F5F5F5;
	--g6: #F7F7F7;
	--g7: #D8D8D8;
	--g8: #DDDDDD;
	--g9: #F4F4F4;
	--g10: #A7A7A7;

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

	/* 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: 'Work Sans', sans-serif;
	--ff2: 'Work Sans', sans-serif;
}

html {
	scroll-behavior: smooth !important;
}

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

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

/* Hidden elements on desktop */
.desktop-hidden,
.grecaptcha-badge {
	display: none;
}

/* RankMath breadcrumb */
.rank-math-breadcrumb p,
.rank-math-breadcrumb a,
.rank-math-breadcrumb a:hover,
.rank-math-breadcrumb span {
	font-family: var(--ff1) !important;
	font-size: 13px;
	font-weight: 500 !important;
	line-height: 1.5;
	text-decoration: none !important;
	position: relative;
	transition: .4s;
}

.rank-math-breadcrumb p,
.rank-math-breadcrumb span {
	color: var(--b) !important;
}

.rank-math-breadcrumb a {
	opacity: .5 !important;	
}

.rank-math-breadcrumb a:hover {
	opacity: 1 !important;	
}


/* Woocommerce message - cambiare stile in base al sito */
.woocommerce-error[role=alert],
.woocommerce-message[role=alert] {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(0);
	background-color: var(--g7);
	color: var(--text);
	z-index: 9;
	padding: 32px;
	font-weight: 600;
	font-family: var(--ff1);
	font-size: 14px !important;
	line-height: 1.5;
	border-radius: 8px;
	margin: 0 !important;
	display: flex;
	align-items: center;
}

.woocommerce-message[role=alert] a {
	float: right;
	margin-left: 0px;
	background-color: var(--1);
	color: var(--w);
	border-radius: 8px;
	padding: 10px 18px;
	line-height: 1.5;
	text-decoration: none;
	z-index: 9;
	margin-left: 16px;
}

.woocommerce-error[role=alert] li {
	list-style: none !important;
}

/* Search */
.header-search .elementor-widget-html .row {
	margin: 0;
}

.header-search .elementor-widget-html .row:before,
.header-search .elementor-widget-html .row:after {
	display: none;
}

.header-search .elementor-search-form__input {
	padding: 11px 0 11px 24px;
	border: none;
	border-radius: 28px;
	background-color: var(--g9) !important;
	position: relative;
	line-height: 1;
	font-family: var(--ff1);
	font-size: 12px;
	font-weight: 500;
	color: var(--g10);
	width: 100%;
	max-height: 39px;
}

.header-search .elementor-search-form__input+button {
	display: flex !important;
	align-items: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	padding: 0 17px;
	border: none;
	border-radius: 19px;
	background-color: var(--1);
	height: 39px;
	line-height: 39px;
	font-family: var(--ff1);
	font-size: 14px;
	font-weight: 500;
	color: var(--w);
}

/* Impostare media query in base alla grandezza del container */
@media screen and (max-width: 1180px) {
	/* Standard padding */
	.standard-padding {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

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