@charset "utf-8";
html, body { margin:0px auto; font-family: Poppins, Ubuntu, Calibri, 'Dosis', Arial, sans-serif; font-size: 14px; text-align:center; height: 100%;}

* { 
	-moz-box-sizing:    border-box;   /* Firefox 1, probably can drop this */
	-webkit-box-sizing: border-box;   /* Safari 3-4, also probably droppable */
	box-sizing:        border-box;   /* Everything else */
}

:root {
	--petrolio : #206272;
	--petrolio-chiaro: #4D828F;
	--verde : #7DC478;
	--verde-chiaro: #ECFBEB;
	--verde-medio : #E1EFEC;
	--verde-scuro : #499644;
	--grigio : #585858;
	--grigio-medio : #D3D9D2;
	--grigio-chiaro : #BCBCBC;
	--bianco : #ffffff;
	--rosso : #FF4267;
	--rosso-medio : #d32020b5;
	--rosso-scuro : #d32044;
	--giallo : #fffc42;
	--giallo-scuro : #fffb01;	
	--giallo-chiaro: #FBFFC7;
	--viola:#cd42ff;
	--swal2-border-radius: 25px;
}

.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.bg-trasparente {background-color: transparent;}
.bg-verde-chiaro {background-color: var(--verde-chiaro);}
.bg-verde-acceso {background-color: var(--verde);}
.bg-petrolio {background-color: var(--petrolio);}
.bg-petrolio-chiaro {background-color: var(--petrolio-chiaro);}


.mono {
	font-family: 'SUSE Mono' !important;
}

.petrolio {
    color: var(--petrolio);
}
.verde {
    color: var(--verde);
}
.verde_chiaro {
    color: var(--verde-chiaro);
}
.verde_medio {
    color: var(--verde-medio);
}
.verde_scuro {
    color: var(--verde-scuro);
}
.grigio {
    color: var(--grigio);
}
.grigio_medio {
    color: var(--grigio-medio);
}
.grigio_chiaro {
    color: var(--grigio-chiaro);
}
.bianco {
    color: var(--bianco);
}
.rosso {
    color: var(--rosso);
}
.rosso_medio {
    color: var(--rosso-medio);
}
.rosso_scuro {
    color: var(--rosso-scuro);
}
.giallo {
    color: var(--giallo);
}
.giallo_scuro {
    color: var(--giallo-scuro);
}
.giallo_chiaro {
    color: var(--giallo-chiaro);
}
.viola {
    color: var(--viola);
}

.normale {
	font-size: 14px;
}

.grande {
	font-size: 18px;
}
.molto-grande {
	font-size: 24px;
}

.piccolo {
	font-size: 12px;
}
.molto-piccolo {
	font-size: 9px;
}

.bold {
	font-weight: 600;
}
.light {
	font-weight: 300;
}

.link-no-under {
	cursor: pointer;
	text-decoration: none !important;
	/* pointer-events: none; */
}
.link-no-under:hover {
	cursor: pointer;
	text-decoration: none !important;
	color: var(--petrolio) !important;	
}

.pagina {
	height: 100%;
}
.intestazione {
	height: 100px;
	min-height: 100px;
	padding: 15px; 
	color:var(--bianco); 
	background-color: var(--petrolio); 
	border: 1px solid var(--petrolio-chiaro); 
	border-radius:40px;
	margin: 75px 30px 0px 30px;
	z-index: 1001;
}
.pagina-fissa {
	height: 100%;
	position: fixed;
	top: 170px;
}
.intestazione-fissa {
	position: fixed;
	top: 65px;
	left: calc(2% + 10px);
	height: 140px;
	width: calc(96% - 20px);
	min-height: 100px;
	padding: 15px; 
	color:var(--bianco); 
	background-color: var(--petrolio); 
	border: 1px solid var(--petrolio-chiaro); 
	border-radius:15px;
	margin: 0 auto;
	z-index: 1002;
	box-shadow: 1px 1px 5px 3px rgb(0 0 0 / 20%);
}
.footer {
	position: fixed;
	bottom: 0px;
	height: 75px;
	padding: 15px; 
	padding-top:5px;
	padding-bottom:5px;
	color:var(--bianco); 
	background-color: var(--petrolio); 
	z-index: 1002;
	background-image: url("images/onshop-logo-new-white.png");
	background-size: 160px 40px;
	background-repeat: no-repeat;
	background-position: center;
}
.footer-rientro {
	min-height: 75px;
	height: 75px;
	max-height: 75px;
}

.top-toggle {
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: 30px;
	height: 30px;
	background-color: var(--petrolio); 
	border: 1px solid var(--petrolio); 
	border-radius:15px;
	margin-bottom: -15px;
	margin-left: -15px;
	background-image: url("icons/doublearrow.png");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1003;
	cursor: pointer;
}

.ico-profilo {
	left: 80%;
	width: 30px;
	height: 30px;
	background-color: transparent; 
	border: none; 
	border-radius:15px;
	margin-bottom: -35px;
	margin-left: -20px;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1003;
	cursor: pointer;
}
.badge-verificato {
	background-image: url("icons/profilo-verificato.png");
}
.badge-attivo {
	background-image: url("icons/profilo-attivo.png");
}
.badge-sospeso {
	background-image: url("icons/profilo-sospeso.png");
}

.card-contenuto {
	height: 100%; 
	padding: 15px; 
	padding-top: 75px; 
	padding-bottom: 200px; 
	background-color: var(--bianco); 
	border: 1px solid var(--bianco); 
	border-radius:30px;
	border-bottom-left-radius:0px;
	border-bottom-right-radius:0px;
	margin-top: -20px;
	z-index: 1000;
}
.contenuto {
	overflow-y: auto;
	padding: 10px;
}

.layout-logo {
	width: 360px; 
	margin-top: 50px; 
	margin-bottom: 30px; 
}
.layout-pagina {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
    min-height: 50%;
    background-color: transparent;
	/* margin-top: -50px; */
}

.layout-card {
	margin-bottom: 100px;
	max-width: 600px;
	min-height: 300px; 
	/* width: 100%; */
	height: 80%;
	padding: 15px; 
	background-color: var(--bianco); 
	border: 0px solid var(--bianco); 
	border-radius: 25px;
	z-index: 1000;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
}


.card-error {
	margin-bottom: 100px;
	max-width: 600px;
	min-height: 300px; 
	width: 100%;
	padding: 15px; 
	background-color: var(--bianco); 
	border: 0px solid var(--bianco); 
	border-radius: 25px;
	z-index: 1000;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
}

.card-full {
	width: 100%;
	height: 100%;
	margin-top: 30px;
	padding: 15px; 
	background-color: var(--bianco); 
	border: 0px solid var(--bianco); 
	border-radius: 15px;
	z-index: 1000;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
}

.card-filter {
	width: 100%;
	height: 275px;
	margin-top: 30px;
	padding: 15px; 
	background-color: var(--bianco); 
	border: 0px solid var(--bianco); 
	border-radius: 15px;
	z-index: 1000;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
}

.card-banner {
	width: 100%;
	min-height: 100px;
	margin-top: 30px;
	padding: 15px; 
	background-color: var(--bianco); 
	border: 2px solid var(--bianco); 
	border-radius: 15px;
	justify-content: center !important;
	text-transform: capitalize;
	font-variant: small-caps;
	z-index: 1000;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
}

h1, h2, h3, p { font-weight:normal; margin:0px; padding:0px; }
h1 	{ margin:0px auto; text-align:center; } h1 img { width:15%; } h1 span { display:none; }
h2 	{ font-size:20px; color:#7dc478; text-transform:uppercase; margin:20px 0px 0px; }
h3 	{ font-size:20px; color:#ffffff; margin:0px 0px 30px;  }
h4 	{ font-size:24px; color:#206272; font-weight:bold; text-transform:none; margin:20px 0px 0px;  margin-left:10px; }
h5 	{ font-size:16px; color:#eeeeee; font-weight:bold; text-transform:none;}
h6 	{ font-size:18px; color:#206272; font-weight:bold; text-transform:none;}
p 	{ margin:10px 0px; color:#206272; } p:first-child { margin:0px; }
a 	{ color:#206272; text-decoration:none; transition:all .25s ease-in-out; }
/* a:link 	{ color:#206272; font-weight:bold;  text-decoration:underline;} */

/* Dashed border */
hr.dashed {
  border-top: 3px dashed #bbb;
}

/* Dotted border */
hr.dotted {
  border-top: 3px dotted #bbb;
}

/* Solid border */
hr.solid {
  border-top: 2px solid #bbb;
}

/* Rounded border */
hr.rounded {
  border-top: 4px solid #bbb;
  border-radius: 3px;
}

::-webkit-scrollbar {
  width: 0px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #dddddd;
}
::-webkit-scrollbar-thumb:hover {
  background: #dddddd;
}


.navbar .navbar-toggler,
.navbar .navbar-toggler::before,
.navbar .navbar-toggler::after {
	border: none;
}
.navbar .navbar-toggler:focus {
	box-shadow: none;
}

.navbar .navbar-toggler-icon,
.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
  background-image: url(icons/menu-bianco.png);
}

#loading {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    background-image: url("icons/loading.gif");
	background-position: 50% 50%;
	background-repeat: no-repeat;    
    z-index:9999;
    display:none;
}

#loading-back {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.9);
    background-image: url("icons/loading.gif");
	background-position: 50% 50%;
	background-repeat: no-repeat;    
    z-index:9999;
    display:none;
}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:#7dc478;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

fieldset, button 	{ border:none; margin:0px; padding:0px; font-family: Poppins, Ubuntu, Calibri, 'Dosis'; } 
fieldset { padding:20px 0px; }

button 		{ cursor:pointer; transition:all .25s ease-in-out; }

.dt-scroll-body {
	overflow: hidden !important;
}

.tabella {
	width:100%; 
	background:var(--bianco); 
	border-collapse:collapse; 
	font-size: 12px;
	color: var(--petrolio);
	overflow: hidden;
}
.tabella th { 
	text-align:start; 
	background:var(--bianco);
	color: var(--petrolio);
	padding:10px 20px; 
	line-height:20px;
	font-size: 14px;
	border:0px solid var(--verde-medio);
	border-bottom: 1px solid var(--verde-medio);
}
.tabella td { 
	text-align:start; 
	background: transparent !important;
	/* color: var(--petrolio); */
	padding: 10px 20px; 
	line-height: 12px;  
	border:0px solid var(--verde-medio);
}
.tabella tr { 
	border:0px solid var(--verde-medio);
	border-bottom: 1px solid var(--verde-medio);
}
.tabella tr:nth-child(even) { 
	background:transparent;  
}
.tabella tr:nth-child(odd) { 
	background: transparent;  
}
.tabella tr:hover { 
	background-color: var(--verde-chiaro);
}
.page-link {
	border: none !important;
	background-color: transparent !important;
	color: var(--petrolio) !important;
	font-size: 12px !important;
	font-weight: 600;

	&.active,
  	.active > & {
		border-radius: 25px;
		background-color: var(--verde-chiaro) !important;
		font-size: 14px !important;
		font-weight: 800;
	}
}
.form-select {
	font-size: 12px !important;
	font-weight: 600;
    line-height: 1.5;
    color: var(--petrolio);
    border: 1px solid var(--petrolio);
}
input[type="search"]{
	font-size: 12px !important;
	font-weight: 400;
    line-height: 1.5;
    color: var(--petrolio);
    border: 2px solid var(--petrolio);
}
.button-tabella { 
	background:transparent; 
	color:var(--petrolio); 
	display:inline-block; 
	margin:auto; 
	line-height: 32px; 
	text-transform:none; 
	border: none; 
	font-size: 18px; 
	letter-spacing: 0.1em; 
} 
.button-tabella:hover { 
	background:transparent; 
	color:var(--petrolio); 
}

.waiting { width:100%; height:90px; margin:10px 0px 0px; background:#fff; text-align:center; line-height:67px; color:#58634b; font-size: 20px; font-weight: bold; outline:none; border:2px solid; border-color: #7dc478; border-radius: 24px;}  


form { 
	margin:0px auto; 
}
label {  
	margin-left:10px; 
	text-transform:none; 
}
.form-control:valid {
	background-image: none !important;
}
.form-control:invalid {
	background-image: none !important;
}

.input-feedback {  
	margin-left:25px; 
}

.input-standard { 
	width:100%; 
	margin:5px 0px 0px; 
	background:#fff; 
	text-align:center; 
	line-height: 36px; 
	border:1px solid; 
	border-color: var(--verde-scuro); 
	border-radius: 25px; 
	font-size: 16px;
}

.input-standard:focus	{ 
	outline:none; 
	border:2px solid; 
	border-color: var(--verde); 
}

.input-important {
    height:55px;
	margin:3px;
    padding-top: 10px; 
    padding-bottom: 10px; 
    border-radius: 16px; 
    border: 3px var(--verde) solid; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    display: inline-flex;
    background-color: var(--bianco);
    color:var(--petrolio);
    text-align: center;
    font-size: 24px; 
    font-weight: 600; 
    line-height: 24px; 
    word-wrap: break-word;
    cursor: pointer;
}

.input-disable { 
	width:100%; 
	margin:5px 0px 0px; 
	background:var(--grigio-chiaro); 
	text-align:center; 
	line-height: 36px; 
	border:1px solid; 
	border-color: var(--verde-scuro); 
	border-radius: 25px; 
	font-size: 16px;
	cursor: not-allowed;
}

.input-disable:focus	{ 
	background:var(--grigio-chiaro); 
	cursor: not-allowed;
}


input[type="checkbox"] { 
	width:15px; 
	height:15px; 
	margin-left:10px; 
	background: var(--bianco); 
	border:1px solid var(--petrolio); 
	border-radius: 24px; 
}

.input-standard-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch; 
	width: 100%;
}

.select-filter {
	width: 150px; 
	height: 28px; 
	margin: 2px 3px 2px 0px; 
	background:var(--bianco); 
	text-align:center; 
	line-height: 24px; 
	font-size: 12px;
	border: 1px solid; 
	border-color: var(--petrolio); 
	border-radius: 3px; 
	cursor: pointer; 
}

.select-filter:focus	{ 
	outline:none; 
	/* box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%); */
}

.period-filter {
	height: 36px; 
	margin: 8px 3px 0px 0px; 
	background: var(--bianco); 
	cursor: pointer; 
	padding: 5px 10px; 
	border: 1px solid; 
	border-color: var(--petrolio); 
	border-radius: 3px; 
	width: 100%; 
	text-align: left;
	line-height: 24px; 
	font-size: 12px;
	color: var(--petrolio);
}
.daterangepicker {
	color: var(--petrolio);
	font-size: 12px;
	font-family: 'Poppins'; 
	border: 2px solid; 
	border-color: var(--petrolio); 
	border-radius: 5px; 
}
.data-show {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 32px;
	height: 32px;
	background-color: transparent; 
	border: none; 
	margin-top: 32px;
	margin-right: 8px;
	background-image: url("icons/data-hide-green.png");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1005;
	cursor: pointer;
}
.data-hide {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 32px;
	height: 32px;
	background-color: transparent; 
	border: none; 
	margin-top: 32px;
	margin-right: 8px;
	background-image: url("icons/data-show-green.png");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1005;
	cursor: pointer;
}

.camera-show {
	position: absolute;
	top: 31px;
	right: 15px;
	width: 32px;
	height: 32px;
	background-color: transparent; 
	border: none; 
	background-image: url("icons/camera.png");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1005;
	cursor: pointer;
}
.btn_totp {
    width: 15%;
    min-width:24px;
    max-width:55px;
    height:55px;
	margin:3px;
    padding-top: 10px; 
    padding-bottom: 10px; 
    border-radius: 16px; 
    border: 3px var(--verde) solid; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    display: inline-flex;
    background-color: var(--bianco);
    color:var(--petrolio);
    text-align: center;
    font-size: 24px; 
    font-weight: 600; 
    line-height: 24px; 
    word-wrap: break-word;
    cursor: pointer;
}
.btn_totp:hover {
    border: 3px var(--verde) solid !important; 
    background-color: var(--petrolio);
    color: var(--bianco);
}
.btn_totp:focus {
    outline: none;
    border: 3px var(--verde) solid !important; 
    background-color: var(--petrolio);
    color: var(--bianco);
}
.btn_totp:focus-visible {
    outline: none;
    border: 3px var(--verde) solid !important; 
    background-color: var(--petrolio);
    color: var(--bianco);
}
.btn_totp.edited {
    border: 3px var(--verde) solid !important; 
    background-color: var(--petrolio);
    color: var(--bianco);
}

.button { 
	display:inline-block; 
	margin:auto; 
	line-height: 48px; 
	text-transform:none; 
	/* border: 1px solid var(--verde);  */
	border-radius: 25px; 
	padding: 0px 30px 0px 30px; 
	font-size: 16px; 
	letter-spacing: 0.1em; 
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.button:hover { 
	background:var(--bianco); 
	color: var(--verde);  
	border: 1px solid var(--verde); 
}

.button-verde { 
	width:50%; 
	background:var(--verde); 
	color:var(--bianco); 
	display:inline-block; 
	margin:auto; 
	line-height: 48px; 
	text-transform:none; 
	border: 1px solid var(--verde); 
	border-radius: 25px; 
	padding: 0px 30px 0px 30px; 
	font-size: 16px; 
	letter-spacing: 0.1em; 
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.button-verde:hover { 
	background:var(--bianco); 
	color: var(--verde);  
	border: 1px solid var(--verde); 
}

.banner-cta { 
	width:100%; 
	height: 125px; 
	background:var(--giallo-chiaro); 
	color:var(--petrolio); 
	display:inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center; 
	margin:auto; 
	line-height: 48px; 
	text-transform:none; 
	border: 1px solid var(--giallo-chiaro); 
	border-radius: 15px; 
	padding: 0px 30px 0px 30px; 
	font-size: 28px; 
	letter-spacing: 0.05em; 
	box-shadow: 1px 1px 5px 1px rgb(0 0 0 / 20%);
} 
.banner-cta:hover { 
	background:var(--giallo-chiaro); 
	color: var(--petrolio);  
	border: 1px solid var(--verde); 
}

.button-cta { 
	width:90%; 
	height: 75px; 
	background:var(--verde); 
	color:var(--bianco); 
	display:inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center; 
	margin:auto; 
	line-height: 48px; 
	text-transform:none; 
	border: 1px solid var(--verde); 
	border-radius: 25px; 
	padding: 0px 30px 0px 30px; 
	font-size: 28px; 
	letter-spacing: 0.05em; 
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.button-cta:hover { 
	background:var(--bianco); 
	color: var(--verde);  
	border: 1px solid var(--verde); 
}

.ico-cta { 
	width:60px; 
	height: 60px; 
	background:var(--verde); 
	color:var(--bianco); 
	display:inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center; 
	margin:auto; 
	line-height: 48px; 
	text-transform:none; 
	border: 1px solid var(--verde); 
	border-radius: 30px; 
	padding: 2px 0px 1px 0px; 
	font-size: 28px; 
	letter-spacing: 0.05em; 
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.ico-cta:hover { 
	background:var(--bianco); 
	color: var(--verde);  
	border: 1px solid var(--verde); 
}

.swal2-close {
	margin-top: 10px;
	margin-right: 10px;
}
.swal2-title {
	font-size: 18px;
	color: var(--verde-scuro);
}
.swal2-html-container {
	font-size: 14px;
	color: var(--petrolio);
}
.swal2-input { 
	width:85%; 
	background:#fff; 
	text-align:center; 
	line-height: 36px; 
	border:1px solid; 
	border-color: var(--verde-scuro); 
	border-radius: 25px; 
	font-size: 16px;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
}
.swal2-input:focus	{ 
	outline:none; 
	border:2px solid; 
	border-color: var(--verde); 
}
.swal2-validation-message {
	background-color: transparent !important;
	color: var(--rosso-scuro);
}

.button-confirm { 
	background:var(--verde); 
	color:var(--bianco); 
	display:inline-block; 
	line-height: 32px; 
	text-transform:none; 
	border: 1px solid var(--verde); 
	border-radius: 25px; 
	min-width: 54px;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.button-confirm:hover { 
	background:var(--bianco); 
	color: var(--verde);  
	border: 1px solid var(--verde); 
}
.button-modal { 
	background:var(--petrolio); 
	color:var(--bianco); 
	display:inline-block; 
	line-height: 32px; 
	text-transform:none; 
	border: 1px solid var(--petrolio); 
	border-radius: 25px; 
	min-width: 54px;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.button-modal:hover { 
	background:var(--bianco); 
	color: var(--petrolio);  
	border: 1px solid var(--petrolio); 
}

.button-cancel { 
	background:var(--rosso-medio); 
	color:var(--bianco); 
	display:inline-block; 
	line-height: 32px; 
	text-transform:none; 
	border: 1px solid var(--rosso-medio); 
	border-radius: 25px; 
	min-width: 54px;
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 20%);
} 
.button-cancel:hover { 
	background:var(--bianco); 
	color: var(--rosso-medio);  
	border: 1px solid var(--rosso-medio); 
}

.separatore-testo {
    /* Centra l'intero blocco sulla pagina */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0; /* Spazio sopra e sotto */
}

.separatore-testo span {
    /* Rende il testo piccolo e leggermente trasparente */
    font-size: 14px;
    color: var(--petrolio);
    
    /* Aggiunge spazio laterale per separare il testo dalle linee */
    padding: 0 15px; 
    
    /* Impedisce al testo di andare a capo */
    white-space: nowrap; 
}

.iti {
	display: block;
}
.iti__flag-container {
	background-color: transparent;
	margin-left: 10px;
}
.iti__selected-flag {
	background-color: transparent;
}

.div-password-hide{
    display: inline-block;
    width: 300px;
}
.div-password-hide::after {
    content: "";
    background: url("icons/data-hide-green.png") no-repeat center;
    background-size: 28px;
    padding-right: 36px;
    position: relative;
    right: 48px;
    cursor: pointer
}

.div-password-show{
    display: inline-block;
    width: 300px;
}
.div-password-show::after {
    content: "";
    background: url("icons/data-show-green.png") no-repeat center;
    background-size: 28px;
    padding-right: 36px;
    position: relative;
    right: 48px;
    cursor: pointer;
}

.grecaptcha-badge {
	visibility: hidden; 
}

.iubenda-tp-btn {
	top: auto !important;
	bottom: 55px !important;	
}

.rs-border {
    border-color: var(--verde-chiaro);
}
.rs-tooltip {
	min-width: 140px;
	width: 140px;
}
.rs-tooltip-text {
	font-family: 'Poppins';
	font-size: 28px;
	color: var(--petrolio);
	font-weight: 600;
}
.rs-start .rs-seperator {
	background: var(--petrolio) !important;
}

.rs-control .rs-range-color {
    background-color: var(--petrolio);
	background-image: linear-gradient(90deg , var(--petrolio) ,  var(--petrolio),  var(--petrolio),  var(--petrolio), var(--verde)  );
}
.rs-control .rs-path-color {
    background-color: var(--verde-chiaro);
    border-color: var(--verde-chiaro);
}
.rs-control .rs-handle {
    background-color: var(--verde-chiaro);
}
.rs-control .rs-handle:after {
    background-color: var(--petrolio);
}
.rs-control .rs-bg-color {
    background-color: #ffffff;
}
.rs-control .rs-handle-dot {
	padding: 5px !important;
    border: 1px solid var(--verde-medio);
}

.button-minus {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	background-color: transparent; 
	border: none; 
	margin-top: 10px;
	background-image: url("icons/minus-green.png");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1005;
	cursor: pointer;
}
.button-plus {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 20px;
	height: 20px;
	background-color: transparent; 
	border: none; 
	margin-top: 10px;
	background-image: url("icons/plus.png");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1005;
	cursor: pointer;
}


@media only screen
and (min-width : 0px)
and (max-width : 767px)
{
}

@media only screen
and (min-device-width : 768px)
and (max-device-width : 992px)
{
}

@media only screen
and (min-device-width : 992px)
and (max-device-width : 1200px)
{
}

@media only screen
and (min-device-width : 1200px)
{
}

@media only screen
and (min-device-width : 0px)
and (max-device-width : 767px)
and (orientation : landscape)
{
}

/* X-Small devices (portrait phones, less than 576px) */
@media (min-width: 0px) { 
	.cta_icons {
		display:flex;
	}
	.cta_buttons {
		display:none;
	}
	.footer {
		background-image: none;
	}
	.layout-logo {
		margin-top: 0px; 
	}	
	.card-filter {
		height: auto;
	}


}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
	.footer {
		background-image: url("images/onshop-logo-new-white.png");	
	}
	.layout-logo {
		margin-top: 50px; 
	}		
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
	.cta_icons {
		display:none;
	}
	.cta_buttons {
		display:flex;
	}
	.card-filter {
		height: 300px;
	}

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
	.card-filter {
		height: 275px;
	}
	
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	
}


.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--petrolio-chiaro); 
    border-color:var(--petrolio-chiaro);
    color: #fff;
}

.daterangepicker button,
.daterangepicker button:hover {
    background-color: var(--petrolio-chiaro); 
    border-color:var(--petrolio-chiaro);
    color: #fff;
}


.daterangepicker .ranges li.active {
    background-color: var(--petrolio-chiaro); 
    border-color:var(--petrolio-chiaro);
    color: #fff;
}


