/* MY STYLE */
@font-face {
	font-family: "Poppins-Light";
	src: url("Poppins-Light.ttf");
}

@font-face {
	font-family: "Poppins-Medium";
	src: url("Poppins-Medium.ttf");
}

@font-face {
	font-family: "Poppins-Bold";
	src: url("Poppins-Bold.ttf");
}

.btn-link, .btn-link:hover, .btn-link:focus .btn-link::selection {
	color: unset !important;
	text-decoration: none !important;
}

button:focus, .btn:focus, input[type="button"]:focus, input[type="submit"]:focus,
button:hover, .btn:hover, input[type="button"]:hover, input[type="submit"]:hover,
button:active, .btn:active, input[type="button"]:active, input[type="submit"]:active {

	outline: unset !important;
}

.tooltip-container {
	position: relative;
	display: inline-block;
}

.tooltip-content {
	display: none;
	position: absolute;
	top: 65%;
	left: 80px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	padding: 10px;
	z-index: 1000;
	max-width: 700px;
	width: auto;
	white-space: nowrap;
	/* Evita il ritorno a capo automatico */
}

.tooltip-item {
	display: flex;
	align-items: center;
	padding: 5px;
}

.tooltip-item-bg {
	display: flex;
	align-items: center;
	padding: 5px;
	background-color: #FDF3E2;
	border-radius: 6px;
}

.tooltip-item img {
	margin-right: 8px;
	flex-shrink: 0;
	/* Mantiene l'immagine alla dimensione specificata */
}

.tooltip-item-bg img {
	margin-right: 8px;
	flex-shrink: 0;
	/* Mantiene l'immagine alla dimensione specificata */
}

.tooltip-item span {
	text-align: left;
}

.tooltip-item-bg span {
	text-align: left;
}

.tooltip-divider {
	border: none;
	border-top: 1px solid #ddd;
	margin: 1px 0;
}

.tooltip-container:hover .tooltip-content {
	display: inline-block;
}



/* MY STYLE */

.circle-container {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.two-containers-wrapper {
	display: flex;
	/* Flexbox per disporre i contenitori in una riga */
	justify-content: space-between;
	/* Spazio tra i contenitori */
	padding: 20px;
	/* Padding generale */
}

.text-image-container {
	display: flex;
	/* Flexbox per il contenuto */
	flex: 1;
	/* Ogni contenitore occupa la stessa larghezza */
	margin: 0 10px;
	/* Margine orizzontale tra i contenitori */
	border: 1px solid #ddd;
	/* Bordi del contenitore */
	border-radius: 10px;
	/* Bordo arrotondato */
	position: relative;
	/* Necessario per la posizione assoluta dell'immagine */
	padding: 20px;
	/* Padding interno per il contenitore */
	box-sizing: border-box;
	/* Include il padding e il bordo nella larghezza */
	height: 100%;
}

.left-text-section {
	flex: 1;
	/* Parte sinistra del contenitore */
	padding: 0 20px;
	/* Padding orizzontale per il testo */
	display: flex;
	/* Allinea verticalmente il testo */
	flex-direction: column;
	/* Disporre il testo in colonna */
	justify-content: flex-start;
	/* Allinea il testo in alto */
}

.right-image-section {
	flex: 1;
	/* Parte destra del contenitore */
	display: flex;
	justify-content: center;
	/* Centra l'immagine nella sezione */
	align-items: flex-end;
	/* Allinea l'immagine alla parte bassa */
	position: relative;
	/* Necessario per la posizione assoluta dell'immagine */
}

.right-image {
	position: absolute;
	/* Posizione assoluta per sovrapporre l'immagine */
	bottom: 0;
	/* Mantiene l'immagine allineata alla parte bassa del contenitore */
	right: 0;
	/* Allinea l'immagine a destra */
	width: 90%;
	/* Larghezza dell'immagine superiore alla larghezza del contenitore */
	height: auto;
	/* Mantiene il rapporto di aspetto */
	max-height: none;
	/* Disabilita la limitazione dell'altezza */
	margin-bottom: -45%;
	/* Alza l'immagine per farla uscire dal contenitore */
}

.gradient-text {
	background: linear-gradient(90deg, #9D25FC 0%, #BD14CB 20%, #E10092 43%, #3500BD 65%, #1A7DAA 83%, #13A29D 100%);
	/* Cambia i colori secondo il gradiente desiderato */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.come_funziona-container {
	display: flex;
	margin: auto;
	padding: 20px;
	gap: 60px;
	/* Mantiene lo spazio tra le sezioni */
	box-sizing: border-box;
}

/* Sezione dei pulsanti a sinistra */
.come_funziona-buttons {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Stile dei bottoni */
.come_funziona-button {
	padding: 15px;
	border-radius: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	background: #f8f8f8;
	font-weight: bold;
	text-align: left;
	overflow: hidden;
	/* Nasconde il contenuto in eccesso durante l'animazione */
	transition: max-height 1.4s ease;
	/* Anima l'espansione */
}

/* Descrizione con transizione */
.come_funziona-description {
	display: block;
	max-height: 0;
	overflow: hidden;
	/* Nasconde il testo fino all'attivazione */
	transition: max-height 1.4s ease;
	/* Transizione per l'animazione */
}

/* Stile per il bottone attivo */
.come_funziona-button.active .come_funziona-description {
	display: block;
	max-height: 300px;
	padding-top: 10px;
	/* Espande la descrizione fino a una certa altezza */
}

/* Sezione dell'immagine a destra */
.come_funziona-content-img {
	width: 50%;
	max-height: 600px;
	aspect-ratio: 3 / 4;
	padding: 20px;
	border-radius: 20px;
	background: #F5F9FFE5;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.come_funziona-content-img img {
	max-width: 100%;
	max-height: 90%;
	/* Limita l'altezza dell'immagine */
}

.come_funziona_cell-content-img {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F5F9FFE5;
	border-radius: 20px;
	max-height: 400px;
	aspect-ratio: 1;
}

.struttura_btn {
	padding: 10px 15px;
	min-width: fit-content;
	outline: none !important;
	font-family: "Poppins-Medium";
	white-space: unset !important;
	align-items: center;
	align-content: center;
	text-align: left;
}

@media screen and (max-width: 999px) {

	.struttura_btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 10px 20px;
		/* font-family: "Poppins-Light", sans-serif !important; */
		border: none;
		border-radius: 30px;
		min-width: 0;
		max-width: 100%;
		white-space: unset !important;
		align-items: center;
		align-content: center;
		text-align: left;
		word-wrap: break-word;
	}

	.struttura_btn img {
		height: 40px;
		width: auto;
		flex-shrink: 0;
	}

	.struttura_btn span {
		font-size: 16px;
		font-weight: normal;
		color: #333;
		word-break: break-word;
		white-space: normal;
		overflow-wrap: break-word;
		flex: 1;
	}
}

.container-buttons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px));
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.button-item {
	display: flex;
	justify-content: center;
}

.image-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
}

.responsive-img {
	min-width: 200px;
	max-width: 400px;
	width: 100%;
	margin-top: -35%;
}

.auto-space {
	margin-top: 120px;
}

.content-wrapper {
	padding-left: 1.5rem;
	text-align: left;
}

@media screen and (max-width: 760px) {
	.auto-space {
		margin-top: 60px;
	}
}

@media screen and (max-width: 500px) {
	.auto-space {
		margin-top: 10px;
		text-align: left;
	}
}

@media screen and (max-width: 280px) {
	.content-wrapper {
		padding-left: 0px;
		text-align: center;
	}
}

@media screen and (min-width: 1000px) {
	.responsive_container {
		flex-wrap: nowrap;
		justify-content: flex-start;
		padding-top: 0px;
	}

	.image-container {
		padding-top: 0px;
	}

	.image-container img {
		border-radius: 0px 20px 20px 0px;
	}
}

@media screen and (max-width: 999px) {
	.responsive_container {
		flex-wrap: wrap;
		padding-top: 10px;
	}

	.image-container {
		padding-top: 10px;
		width: 100%;
	}

	.image-container img {
		border-radius: 20px;
	}
}

/* END MY STYLE */

.logohover {
	transition: 0.3s;
}

.logohover:hover {
	transform: scale(1.2);
	transition: 0.3s;
}

.selecting_line {
	display: block !important;
	height: fit-content !important;
	padding: 5px !important;
	border: none !important;
	border-bottom: 1px solid #f0f0f0 !important;
	text-decoration: none !important;
}

.selecting_line:hover, .selecting_line:active, .selecting_line:focus {
	background-color: #ff4e00 !important;
	color: #ffffff !important;
}

.aorange:hover {
	color: #ff4e00;
}

.g-recaptcha>div {
	display: block;
	margin: auto;
}

.inputunset input {
	height: unset !important;
	width: unset !important;
}

.grecaptcha-badge{
	bottom:40px !important;
}

a, a:hover, a:focus {
	text-decoration: none !important;
}

.a-color {
	color: white !important;
}

.form-control {

	border: 1px solid #D1D1D1 !important;
	border-radius: 18px;
}

.toggle-password {
	padding: 10px;
	box-sizing: content-box;
}

.is-invalid {
	border-color: #dc3545 !important;
}

.text-danger {
	color: #dc3545 !important;
}

.invalid-feedback {
	color: #dc3545;
	font-size: 12px;
	margin-top: 4px;
}

.form-control-lg{

	font-size: unset !important;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, [type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, input[type="submit"]:focus, button:active .btn, option:focus, .form-control:focus, .uneditable-input:focus {
	border-color: #ff4e00;
}

input[type="text"], input[type="email"], input[type="password"] {
	min-width: 200px;
}

.medium {
	font-family: "Poppins-Medium";
}

.bold {
	font-family: "Poppins-Bold";
}

.light {
	font-family: "Poppins-Light";
}

.select_line {
	display: block !important;
	height: fit-content !important;
	padding: 5px !important;
	border: none !important;
	border-bottom: 1px solid #f0f0f0 !important;
	text-decoration: none !important;
}

.select_line:hover, .select_line:active, select_line:focus {
	background-color: #ff4e00 !important;
	color: #ffffff !important;
}

.atcenter {
	position: relative;
	left: 0px;
	right: 0px;
	margin: auto;
}

.clienteiscr {
	height: fit-content;
	position: relative;
}

.titolareiscr {
	height: fit-content;
}

.container-form-registrazione {
	padding-inline: 225px;
}

.form-registrazione-sinistra {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0px 0px 0px 225px;
	gap: 120px;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 1;
}

.form-registrazione-destra {
	flex-direction: column;
	gap: 12px;
	padding-left: 127px;
	padding-right: 225px;
}

#password-checks,
#password-checks-mobile {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	padding: 0px;
	gap: 4px;
	flex: none;
	order: 1;
	align-self: stretch;
	flex-grow: 0;

}

.pw-check-item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background: #F5F4F4;
	color: #ABABAB;
	font-size: 12px;
	padding: 2px 8px;
	gap: 4px;
	border-radius: 12px;
	flex: none;
	order: 0;
	flex-grow: 0;
	transition: background 0.2s, color 0.2s;
}

.pw-check-icon {
	display: inline-block;
	margin-right: 8px;
	color: #B0B0B0;
	font-weight: bold;
	font-size: 15px;
	transition: color 0.2s;
}

.pw-check-item.pw-valid {
	background: #C8E6C9;
	color: #2E7D32;
}

.pw-check-item.pw-valid .pw-check-icon {
	color: #2E7D32;
}

@media screen and (max-width: 1400px) {
	.form-registrazione-sinistra {
		padding-left: 10%;
	}

	.form-registrazione-destra {
		padding-left: 5%;
		padding-right: 10%;
	}

}

#slideshow {
	width: 250px;
	height: 250px;
	overflow-y: hidden;
	overflow-x: visible;
}

.logo {
	width: 250px;
}

#map {
	width: 100%;
	height: 600px;
	border-radius: 13px 13px 13px 13px !important;
}

#map2 {
	width: 90%;
	height: 400px;
	border-radius: 13px 13px 13px 13px !important;
}

.sec {
	transform: scale(0.9);
}

.ridappal {
	min-height: 500px;
}

#ddmenu {
	max-height: 90vh;
	overflow-y: scroll;
}

.btn, .btn:focus, .btn:hover {
	outline: unset !important;
	border: unset !important;
	box-shadow: unset !important;

}

.vamiddle {
	vertical-align: middle;
}


.ridmap {
	overflow-y: hidden;
}

.box_template_img {
	height: 420px;
}

.nav-item #registrati:hover {
	display: none !important;
}

body, html {
	font-family: "Poppins-Light", sans-serif !important;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

html{

	scroll-behavior: smooth !important;
}

input, .selectpref {
	height: 55px !important;
}

.reg_app_account_sede, .reg_app_account_sede_mobile {
	display: block;
}

.reg_ins_sede, .reg_ins_sede_1, .reg_ins_sede_2, .reg_ins_sede_mobile, .reg_ins_sede_1_mobile, .reg_ins_sede_2_mobile {
	display: none;
}

.lh1 {
	line-height: 1 !important;
}

.wfit {
	width: fit-content !important;
}

.hfit {
	height: fit-content !important;
}

.w350 {
	width: 350px;
}

.mw200 {
	max-width: 200px;
}

.mw350 {
	max-width: 350px;
}

.mw450 {
	max-width: 460px;
}

.mw500 {
	max-width: 500px;
}

.mw90 {
	max-width: 90%;
}

.mw-nav-desk{
	max-width: 1200px;
}

.w20 {
	width: 20%;
}

.my-6 {
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.py-6 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}



.mb-6 {
	margin-bottom: 5rem;
}

.ml-6 {
	margin-left: 5rem;
}

.mt-6 {
	margin-top: 5rem;
}

.pl-20 {
	padding-left: 20%;
}

.pt-6 {
	padding-top: 4rem;
}

.pb-6 {
	padding-bottom: 4rem;
}


.larg60 {
	width: 60% !important;
}

.teambox {
	border-radius: 15px 15px 0px 15px;
	width: 200px;
	height: 180px;
	position: relative;
	z-index: 3;
}

#banner_blog{ 
	animation: changeBg 10s infinite; 
}

@keyframes changeBg{
   0%,100%  {background-image: url("../blog/banner_home_03.jpg");}
   25% {background-image: url("../blog/banner_home_05.jpg");}
   50% {background-image: url("../blog/banner_home_06.jpg");}
   75% {background-image: url("../blog/banner_home_02.jpg");}
}

.pallino{
	cursor:pointer;
	transition: 0.4s !important;
	height: 15px;
	width: 15px;
	background-color: #bcbcbc;
	border: 1px solid #00000010;
	border-radius: 50%;
}

.pallino-attivo{
	right: 0;
	left: 0;
	margin: auto;
	cursor:pointer;
	transition: 0.4s !important;
	height: 20px !important;
	width: 20px !important;
	background-color: #ff4e00 !important;
	border: 1px solid #ff4e00 !important;
}

.img-fade {
    -webkit-transition: opacity 3s ease-in-out;
    -moz-transition: opacity 3s ease-in-out;
    -ms-transition: opacity 3s ease-in-out;
    -o-transition: opacity 3s ease-in-out;
     opacity: 1;

	 max-width: 700px;
}

@-webkit-keyframes fadeIn-fromBottom {
    from { opacity: 0;
	        transform: translateY(50%); }
      to { opacity: 1; }
}
@keyframes fadeIn-fromBottom {
    from { opacity: 0;
	        transform: translateY(50%); }
      to { opacity: 1; }
}

@-webkit-keyframes fadeIn-fromTop {
    from { opacity: 0;
	        transform: translateY(-50%); }
      to { opacity: 1; }
}
@keyframes fadeIn-fromTop {
    from { opacity: 0;
	        transform: translateY(-50%); }
      to { opacity: 1; }
}

.nascosto {
    display: none !important;
    /* transition: opacity 1s ease-out; */
    opacity: 0;
}
.visibile-block {
    opacity: 1;
    display: block !important;
    /* transition: opacity 1s ease-out; */
}
.visibile-flex {
    opacity: 1;
    display: flex !important;
    /* transition: opacity 1s ease-out; */
}

.fromBottom{

    -webkit-animation: fadeIn-fromBottom 1s;
    animation: fadeIn-fromBottom 1s;
}

.fromTop{

    -webkit-animation: fadeIn-fromTop 1s;
    animation: fadeIn-fromTop 1s;
}

.num-myapp-bg {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/myapp/img_conteggio_myapp.jpg");
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.apppalbg1 {
	min-height: 250px;
	background-image: url("../img/imgs_2022/jpegs/app_palestre_mobile/img_01.jpg");
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.apppalbg2 {
	min-height: 250px;
	background-image: url("../img/imgs_2022/jpegs/app_palestre_mobile/img_02.jpg");
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.apppalbg3 {
	min-height: 250px;
	background-image: url("../img/imgs_2022/jpegs/app_palestre_mobile/img_03.jpg");
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.apppalbg4 {
	min-height: 250px;
	background-image: url("../img/imgs_2022/jpegs/app_palestre_mobile/img_04.jpg");
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.apppalbg5 {
	min-height: 250px;
	background-image: url("../img/imgs_2022/jpegs/app_palestre_mobile/img_05.jpg");
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.img-post-blog {

	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

.img-post-blog-little {
	min-height: 120px;
	background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat;
}

#bloccotesto,
#bloccotestoinvert {
	height: 800px;
	overflow-x: hidden;
	overflow-y: scroll;
}

#bloccotesto {
	padding-right: 10px;
}

#bloccotestoinvert {
	direction: rtl;
    padding-left: 10px;
}

.teamboxtitle {
	height: 100px;
	position: absolute;
	bottom: 50px;
	left: -120px;
	right: 0;
	z-index: 4;
	border-radius: 15px 0px 0px 15px;
}

#apppalestrelogocell {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

#selezionaLinguaBtn {
	cursor: pointer;
	border: none;
}

#lingueDropdown {
	display: none;
	position: absolute;
	background-color: white;
	border: 1px solid #ccc;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	padding: 10px;
}

.lingua-btn {
	display: block;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	padding: 5px;
}

.lingua-btn:hover {
	background-color: #f0f0f0;
}

.iscriviti {
	background-image: url("../img/Iscrizione in fondo/Iscriviti ora arancione.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.iscrcrossfit {
	background-image: url("../img/Iscrizione in fondo/Iscriviti ora crossfit.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.iscryoga {
	background-image: url("../img/Iscrizione in fondo/Iscriviti yoga.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}


.w90 {
	width: 90%;
}

.font12 {
	font-size: 12px !important;
}

.font13 {
	font-size: 13px !important;
}

.font14 {
	font-size: 14px !important;
}

.font15 {
	font-size: 15px !important;
}

.font16 {
	font-size: 16px !important;
}

.font17 {
	font-size: 17px !important;
}

.font18 {
	font-size: 18px !important;
}

.font20 {
	font-size: 20px !important;
}

.font22 {
	font-size: 22px !important;
}

.font23 {
	font-size: 23px !important;
}

.font24 {
	font-size: 24px !important;
}

.font25 {
	font-size: 25px !important;
}

.font_titolo_prezzi {
	font-size: 25px !important;
}

.font28 {
	font-size: 28px !important;
}

.font30 {
	font-size: 30px !important;
}

.font30-btn {
	font-size: 30px !important;
}

.font32 {
	font-size: 32px !important;
}

.font32-btn {
	font-size: 32px !important;
}

.font35 {
	font-size: 35px !important;
}

.font33 {
	font-size: 33px !important;
}

.font40 {
	font-size: 40px !important;
}

.font42 {
	font-size: 42px !important;
}

.font45 {
	font-size: 45px !important;
}

.font46 {
	font-size: 46px !important;
}

.font50, .font50-30 {
	font-size: 50px !important;
}

.font60 {
	font-size: 60px !important;
}

.font75 {
	font-size: 75px !important;
}

.font80 {
    font-size: 80px !important;
}

.font100 {
	font-size: 100px !important;
}

.txtgray, .txtgray p {
	color: #c0c0c0 !important;
}

.txtdarkgray {
	color: #888888 !important;
}

.txtblue {
	color: #1b7bb3;
}

.txtor {
	color: #ff4e00;
}

.txtpersonaltraining {
	color: #55CBDB;
}

.txtsmartaccess {
	color: #FECB36;
}

.txtfatturaelettronica {
	color: #BB46D4;
}

.txtcassadigitale {
	color: #D44693;
}

.txtsms {
	color: #8AA3F8;
}

.txtwhatsapp {
	color: #25D366;
}

.txtviolascuro {
	color: #565381;
}

.txtlightor {
	color: #ffe8d0;
}

.txtgreen {
	color: #00BF79;
}

.txtaddon {
	color: #ff595e;
}

.txtaddon {
	color: #ff595e;
}

.txtviola {
	color: #9d25fc;
}

.txtblack {
	color: #212121;
}


.prezzicard {
	left: 5;
	right: 5;
	margin: auto;
	z-index: 4;
}

.card .prezzicard {
	border: 0px !important;
}

.prezzisottocard {
	text-align: center;
}

.trimestralebtn, .annualebtn {
	transition:0.2s;
	width:150px;
}

.togglepiano{
	transform: translateX(100%);
}

.iscrivititext {
	font-size: 25px;
}

.no-padding-ul {
	padding-inline-start: unset !important;
}

.container-migrazione {
	display: flex;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	flex-wrap: wrap;
}

.box-migrazione {
	display: flex;
	align-items: center;
	padding: 22px 15px;
	text-align: left;
	min-width: 220px;
	min-height: 140px;
	flex: 1;
	font-size: 24px;
}

.box-migrazione img {
	max-width: 43px;
	height: auto;
	margin-right: 12px;
}

.contenitore-grid-crm {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	font-size: 14px;
}

.grid-item-crm {
	background-color: white;
	padding: 21px 26px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	aspect-ratio: 1;
}

.grid-item-crm p {
	font-size: 16px;
	margin-bottom: 0px;
}

.icon-container-crm {
	border-radius: 10px;
	padding: 12px;
	background-color: #FFE8DE;
	width: fit-content;
}

.icon-container-crm img {
	height: 40px;
}

.mybutton-container-crm {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	background: white;
	padding: 1rem 0;
}

@media screen and (min-width: 1000px) {
	.mybutton-container-crm {
		position: sticky;
		top: 77px;
		z-index: 10;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}
	
}

.active-section {
	background: #FFF3E0;
	transition: background 0.3s;
	border-radius: 20px;
}

.a-bianco-nero-crm {
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 50px;
	background: white;
	border: solid 2px #E5E5E5;
	color: black;
	cursor: pointer;
	transition: background 0.3s;
}

.a-bianco-nero-crm.active {
	background: black;
	color: white;
	border: solid 2px #000000;
}

.sezione-crm {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
	align-items: center;
}

.content_sezione,
.immagine_sezione {
	flex: 1;
}

.sezione-crm .icon {
	width: fit-content;
}

.sezione-crm .icon img {
	height: 33px;
	margin: 11px;
}

.strumenti-wrapper-crm {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0px;
}

.row-top {
	display: flex;
	align-items: center;
	gap: 14px;
}

.col-boxes {
	display: flex;
	justify-content: flex-end;
	gap: 14px;
	flex: 1;
}

.row-bottom {
	display: flex;
	justify-content: flex-end;
	gap: 14px;
	flex-wrap: wrap;
}

.box-strumenti-custom {
	width: 180px;
	height: 180px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	flex: 0 0 auto;
}

@media screen and (max-width: 1280px) {
	.contenitore-grid-crm {
		grid-template-columns: repeat(2, 225px);
		justify-content: end;
	}
}

@media (max-width: 990px) {
	.sezione-crm {
		flex-direction: column;
	}

	.mybutton-container-crm {
		flex-direction: column;
		align-items: center;
	}

	.a-bianco-nero-crm {
		margin-bottom: 10px;
	}

	.contenitore-grid-crm {
		grid-template-columns: repeat(3, 1fr);
		justify-content: center;
	}

	.box-migrazione {
		font-size: 20px;
	}
}

@media screen and (max-width: 680px) {
	.contenitore-grid-crm {
		grid-template-columns: repeat(2, 180px);
	}
}

@media screen and (max-width: 440px) {
	.contenitore-grid-crm {
		grid-template-columns: repeat(2, 150px);
		gap: 7px;
	}

	.grid-item-crm {
		padding: 15px 20px;
	}

	.grid-item-crm p {
		font-size: 12px;
	}

	.icon-container-crm img {
		height: 25px;
	}
}

@media screen and (max-width: 330px) {
	.contenitore-grid-crm {
		grid-template-columns: repeat(1, 150px);
	}
}

.crm-tag1{
	top: 30px;
}

.crm-tag2{
	top: 180px;
	right: 0px;
}

.crm-tag3{
	bottom: 20px;
	left: 80px;
}

.crm-stats2{

	left: 30px;
	height: 270px;
	top: -20px;
}

.crm-stats1{

	-webkit-box-shadow: rgb(17 12 46 / 10%) -30px 30px 90px 5px; 
	box-shadow: rgb(17 12 46 / 10%) -30px 30px 90px 5px;
	height: 300px;
	right: 0;
	z-index: 100;
	top: 200px;
}

.crm-stats3{

	height: 270px;
	bottom: -20px;
}

.ui-menu{

	max-height: 250px !important;
	overflow-y: scroll !important;
}

@media screen and (min-width: 1601px) {


	.img-crm-sondaggio{

		width : 400px !important;
	}

	.centered {

		max-width: 1350px !important;
	}

	.img-crm-notifica{
		left:47%;
	}

	.mw-txt-blog {
		max-width: 900px;
	}

	.imgdesklittle {
		display: none;
	}

	.container {
		max-width: 1500px !important;
	}

	.mw-nav-desk{
		max-width: 1400px !important;
	}

	.bg-fluid-h {
		height: 650px;
	}
}

@media screen and (max-width: 1600px) {

	.crm-tag3{
		bottom: 15px !important;
		left: 0px !important;
	}
	
	.mw-txt-blog {
		max-width: 800px;
	}

	.bg-fluid-h {
		height: 500px;
	}

	.box_template_img {
		height: 313px !important;
	}

	.imgdeskbig {
		display: none;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {


	.img-crm-notifica{
		left:62%;
	}

	#sei {
		left: -100px !important;
	}
}

@media screen and (min-width: 1601px) {
	
	.scale13-1600px{

		transform: scale(1.3);
	}
}


@media screen and (max-width: 1269px) {
	.whyfattele {
		margin-top: 1.5rem !important;
	}
}

@media screen and (min-width: 1200px) {
	.hide-from-1200 {
		display: none !important;
	}
}

@media screen and (max-width: 1200px) {

	.hide-until-1200 {
		display: none !important;
	}

	.img-crm-sondaggio{

		bottom: 65% !important;
	}

	.crm-tag3{
		bottom: 10px !important;
		left: -20px !important;
	}

	.img-crm-notifica{
		left:76%;
	}

	.img-crm-notifiche{
		left:unset !important;
	}

	.img-crm-chat{
		right:0 !important;
	}

	.ridfont1200 {
		font-size: 25px !important;
	}

	.contenitore {
		perspective: 1250px !important;
	}

	.br-d-none {
		display: none;
	}

	.imgcell08 {
		transform: scale(0.8);
	}

	.font-rid {
		font-size: 25px !important;
	}

	.cardtitle {
		font-size: 25px !important;
	}

	.hide1200 {
		display: block !important;
	}

	.bg-fluid-h {
		height: 350px;
	}

	.p-l-bottom-header {
		padding-left: 15px !important;
	}
}

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

	.crm-stats2{

		top: 35px !important;
		height: 240px;
	}

	.crm-stats1{

		-webkit-box-shadow: rgba(0, 0, 0, 4%) 0px 0px 10px 5px;
		box-shadow: rgb(0 0 0 / 4%) 0px 0px 10px 5px;
		height: 270px;
		bottom : 35px;
		top:unset !important;
	}


	.crm-stats3{

		display: none;
	}

	.hide-992-1200{

		display: none !important;
	}

	#strumtit {
		right: -35px !important;
	}

	#tre {
		height: 120% !important;
	}

	#sei {
		height: 70% !important;
		right: 70px !important;
		left: unset !important;
	}

	#cinque {
		height: 70% !important;
		left: unset !important;
		top: 80px !important;
		right: 100px;
	}
}

@media screen and (max-width: 375px) {
	.teamboxpos {
		transform: scale(0.8) !important;
	}
}

@media screen and (max-width: 480px) {
	.hide-480 {
		display: none;
	}
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
	.mwtxt {
		max-width: 90%;
	}

	#yogaheader {
		background-position: 180% 50% !important;
	}

}

@media screen and (max-width: 992px) {

	.web-max-height {
		max-height: 100% !important;
	}

	#personalizzazione_sec_2_bg {
		height: 300px !important;
	}

	.cursor_dx, .cursor_sx {
		width: 64.71px !important;
	}

	.cursor_dx {
		top: 150px !important;
		left: -9vw !important;
	}

	.p-app-cards{
		padding: 1.5rem;
	}

	#prezziheader{
		height: 200px;
	}

	.img-post-blog {
		min-height: 250px;
	}

	.perchesmacc {

		max-height: 400px !important;
	}


	.homeheader {
		height: 90vh !important;
	}

	@keyframes MoveUpDown {
		0%, 100% {
			height: 77px;
		}

		50% {
			height: 87px;
		}
	}

	.py-0-cell {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}

	.box_template_img {
		height: unset !important;
	}

	.carousel-cell {
		max-width: 700px;
		max-height: 400px;
	}

	::-webkit-scrollbar {
		display: none;
	}

	.py-navbar {
		padding-left: 1rem !important;
	}


	.appplussecond {
		height: unset !important;
	}

	.cgestsecond {
		height: 300px !important;
	}

    .ptsecond {
        height: unset !important;
    }

	#strumcli {
		top: 0 !important;
	}

	.g-recaptcha>div {
		transform: scale(0.9);
	}

	.sec {
		width: 90% !important;
		min-width: 290px;
	}

	.perche {
		padding-left: unset !important;
		min-height: 40vh !important;
	}

	.navbar-collapse {
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}

	.centered {
		display: contents;
	}

	.navbar {
		padding: 0;
	}

	#amicobg {
		background-image: unset !important;
	}


	.prezzisottocard {
		width: 90% !important;
	}

	.perche {
		margin-bottom: 20% !important;
	}


	.carousel-wrapper {
		overflow-x: visible !important;
	}

	#linea {
		border-top: 1.5px solid #b6b6b64f;
		border-left: unset !important;
	}


	.formsupp {
		background-position: center top;
	}

	.boxsupp {
		top: -150px;
	}

	.boxsuppheight {
		height: 600px !important;
	}

	.scala08 {
		font-size: 70% !important;
	}

	.chiaro992 {
		background-color: #ffffffda;
	}

	.w-100-992 {
		width: 100%;
	}

	.grandisecond {
		background-position: center top !important;
	}

	.ridfont {
		font-size: 19px !important;
		bottom: -260px !important;
	}

	.iscrform {
		width: 100% !important;
	}

	.accentratxt {
		text-align: center !important;
	}

	.accentra {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.hide1200 {
		display: none;
	}

	#pluslogo {
		text-align: center;
	}

	#plusbtn {
		top: 0px;
		position: unset !important;
	}

	#plusbtndiv {
		text-align: center;
		width: 100%;
	}

	#plustext {
		text-align: left;
		position: unset !important;
		margin-left: auto !important;
		margin-right: auto !important;
		width: 100% !important;
	}


	.separe {
		margin-left: auto;
		margin-right: auto;
	}

	.imgdesk {
		display: none !important;
	}

	.iscriviti {
		text-align: center;
	}

	.iscrivititext {
		text-align: center !important;
		margin-top: 150px;
	}

	#strum {
		height: 1000px !important;
	}

	#strumblu {
		width: 100%;
	}

	#strumbluimg {
		transform: scale(0.8) !important;
		height: unset;
		width: 60%;
		left: 20%;
		right: 20%;
	}

	.spostablur {
		left: 45% !important;
	}

	.spostablul {
		left: 17% !important;
	}

	#strumblutext {
		right: unset !important;
		left: 15%;
	}

	#bludown {
		right: 35px !important;
		bottom: 75px;
	}

	#orangedown {
		left: 10% !important;
		bottom: 75px !important;
	}

	#strumorange {
		width: 100%;
		top: 650px;
	}

	#strumorangeimg {
		/* left: unset !important;
		right: 20%; */
		left: 0 !important;
		right: 0;
		margin: auto;
	}

	#strumorangetext {
		left: unset !important;
		right: 22% !important;
	}

	.spostaorange {
		position: absolute;
		top: 15%;
		bottom: unset !important;
		left: 0 !important;
		right: 0;
		margin: auto;
		text-align: center;
		color: white !important;
	}

	.nopadding {
		padding: 0;
	}

	#downloadmyapp {
		text-align: center;
	}

	.p-r-bottom-header {
		padding-right: 15px !important;
	}

    .reverse-cell {
        flex-direction: column-reverse;
    }

	.mlx-auto {
		margin-left: auto;
		margin-right: auto;
	}

	.mrx-auto {
		margin-right: auto;
		margin-left: auto;
	}

	.bloccotestomobile {
		height: 100% !important;
		overflow: unset !important;
	}

    .font30-btn {
        font-size: 16px !important;
    }

    .beachfirst {
        width: 100% !important;
        min-height: 315px !important;
    }

}


@media screen and (max-width: 768px) {
	
	.cursor_dx, .cursor_sx {
		display: none !important;
	}

    .beachfirst {
        background-image: url("../img/imgs_2022/jpegs/beach_match/img_01mobile.png") !important;
        width: 100% !important;
        min-height: 350px !important;
    }
}


@media screen and (min-width: 576px) {

	.px-5-576 {
		padding-left: 3rem !important;
		padding-right: 3rem !important;
	}

	.disp576 {
		display: none;
	}

	#fatteletthead {
		height: 1000px;
		background-image: url("../img/Fatturazione Elettronica/shutterstock_745018579.jpg");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
}

@media screen and (min-width: 355px) {
	.imgpicc {
		display: none;
	}
}

#mary {
	background-image: url('../img/Contatti/Ragazza nuova.jpg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	min-height: 100%;
}

@media screen and (max-width: 400px) {
	.img-mini {
		height: unset !important;
		max-width: 50% !important;
		top: 20% !important;
		right: -25px !important;
	}

	.h-custom-partners {
		height: 50px !important;
	}

	.font60 {
		font-size: 45px !important;
	}
}

.testorev {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
	position: relative;
	z-index: 3;
}

.virgoletterev {
	position: absolute;
	bottom: 25px;
	right: 40px;
}

@media screen and (max-width: 576px) {

	.prezzi10a, .home10a{

		background-image: url("../img/imgs_2022/png/speciali/BG_mobile.png") !important;   /* todo modifica background */
	}

	.control {
		top: unset !important;
		bottom: -210px !important;
	}

	.next {
		right: 100px !important;
	}

	.prev {
		left: 100px !important;
	}

	.slider {
		margin-bottom: 200px !important;
	}

	.slides {
		height: 500px !important;
		max-height: unset !important;
	}

	.virgoletterev {
		right: 80px !important;
	}

	.testorev {
		max-width: 80%;
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
		max-height: 300px;
		overflow-y: auto;
	}

	.font28 {
		font-size: 25px;
	}

	.font40 {
		font-size: 30px;
	}

	.teamboxpos {
		justify-content: end !important;
		padding-right: 0 !important;
	}

	.boxsuppheight {
		height: 750px !important;
	}

	#fatteletthead {
		height: 1000px;
		background-image: url("../img/Fatturazione Elettronica/shutterstock_7450185791.png");
		background-size: 100% auto;
		background-position: top;
		background-repeat: no-repeat;
		margin-bottom: 0px !important;
	}

	#mywebhead {
		width: 130%;
	}

	.dispnone576 {
		display: none;
	}

	.elencomyapp {
		width: 80%;
	}

	#strumbluimg {
		transform: scale(1) !important;
		width: 96%;
		height: unset !important;
		max-height: 250px;
		left: 2% !important;
		right: 2% !important;
		bottom: -110px;
		margin: auto;
	}

	.spostablur {
		left: unset !important;
		right: 10% !important;
	}

	.spostablul {
		left: 10% !important;
	}

	#bludown {
		right: 5% !important;
		bottom: 100px !important;
	}

	.img75x75 {
		width: 40px !important;
		height: 40px !important;
	}

	.font_titolo_prezzi {
		font-size: 22px !important;
	}
	
	.font50-30 {
		font-size: 30px !important;
	}
}

@media screen and (min-width: 1300px) {

	.navbar-brand {
		margin-right: 50px;
	}

	#imgmywebtemplate {
		right: 25% !important;
	}

	#pcfattelett {
		height: 550px !important;
		top: 0px !important;
		right: unset !important;
		left: -40%;
	}

}

@media screen and (min-width: 1500px) {
	#yogaheader {
		background-position: 70% 50% !important;
	}
}

@media screen and (min-width: 992px) {

	.img-post-blog {
		min-height: 350px;
	}

	#containerreviews {
		background-color: #ff4e00 !important;
		transform: scale(1.3);
	}

	.wrapper {
		background: unset !important;
	}

	.py-navbar {
		padding-top: 1.3rem !important;
		padding-bottom: 1rem !important;
	}

	.scurodesk {
		background-color: #00000090;
	}

	.perche {
		padding-left: 50px;
	}

	.whyselected {
		transform: scale(1.2);
	}

	.apppalestreimg {
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		height: 500px !important;
	}

	#appp1 {
		background-image: url("../img/App_Palestre/Raggruppa_1139.jpg");
	}

	#appp2 {
		background-image: url("../img/App_Palestre/Raggruppa_1141.jpg");
	}

	#appp3 {
		background-image: url("../img/App_Palestre/Raggruppa_1142.jpg");
	}

	#appp4 {
		background-image: url("../img/App_Palestre/Raggruppa_1174.jpg");
	}

	#appp5 {
		background-image: url("../img/App_Palestre/Raggruppa_1175.jpg");
	}

	#appp6 {
		background-image: url("../img/App_Palestre/Raggruppa_1177.jpg");
	}

	#appp7 {
		background-image: url("../img/App_Palestre/Raggruppa_1178.jpg");
	}

	#appp8 {
		background-image: url("../img/App_Palestre/Raggruppa_1179.png");
	}


	#ordowncell {
		margin-top: 760px;
	}

	.boxsupp {
		min-height: 300px;
	}

	.boxsuppheight {
		height: fit-content;
	}

	.ml2-upto992 {
		margin-left: 0.5rem !important;
	}

	.larg75 {
		width: 75%;
	}

	.larg50 {
		width: 50%;
	}

	#casecondbg {
		background-image: url("../img/Controllo Accessi/shutterstock_1390253711.jpg");
		background-size: cover !important;
		background-position: center right;
		background-repeat: no-repeat;
	}


	.imgcell {
		display: none !important;
	}

	.sinistra {
		float: left;
	}

	.destra {
		float: right;
	}

	#strumblu {
		left: 0%;
		right: 44%;
		border-radius: 0px 20px 20px 0px;
	}

	#strumorange {
		left: 57.5%;
		right: 0%;
		border-radius: 20px 0px 0px 20px;
	}

	#plusbtndiv {
		float: right;
		width: 50%;
	}

	#plusbtn {
		position: relative;
		margin-left: auto;
		margin-right: auto;
	}


	.iscrivititext {
		text-align: right;
		vertical-align: middle;
		padding-right: 3rem;
	}
}

@media screen and (min-width: 1100px) {
	.mwtxt {
		max-width: 70%;
	}
}


.sfumaturasx {
	background-image: url("../img/sfumatura_sinistra.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/* background: linear-gradient( 90deg, white 0%,#ffffff80 50%, #ffffff00 100%); */
	position: relative;
	left: -1px;
}

.sfumaturadx {
	background-image: url("../img/sfumatura_destra.png");
	background-position: right;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/* background: linear-gradient( -90deg, white 0%,#ffffff33 50%,  #ffffff00 100%); */
	position: relative;
	right: -1px;
}

.limited {
	width: 100%;
	max-width: 300px;
}

.cardtitle {
	font-size: 30px;
}

.bgcli {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/home/form_iscrizione_clilenti.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 70% center;
}

.bgtit {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/home/nuovo_form_iscrizione.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.bgtit_promo {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/home/form_iscrizione_titolari_promo_2024.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.bgcgest {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/cambio_gestionale/img_form.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.appplussecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/app plus/funzionalita.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.ptsecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/piani_allenamento/piani_allenamento_01_2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.beachfirst {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/beach_match/img_01.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	width: 800px;
	min-height: 360px;
}

.beachsecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/beach_match/img_02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.cgestsecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/cambio_gestionale/img_01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.crossfitsecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/box_crossfit/box_crossfit_funzionalita.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 90% 50%;
}

.yogasecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/yoga_pilates/yoga_pilates_funzionalita.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

.centrifitnesssecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/centri_fitness/centri_fitness_funzionalita.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}

.fitnessboutiquesecond {
	height: 100%;
	background-image: url("../img/fitness_boutique/img03_scegliere_app.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}

.fitnessboutiquethird {
	height: 100%;
	background-image: url("../img/fitness_boutique/img02_scegliere_app.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}

.fitnessboutiquefourth {
	height: 100%;
	background-image: url("../img/fitness_boutique/img05_scegliere_app.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}

.fitnessboutiquefifth {
	height: 100%;
	background-image: url("../img/fitness_boutique/img04_scegliere_app.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}

.fitnessboutiquesixth {
	height: 100%;
	background-image: url("../img/fitness_boutique/img_scegliere_app.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}

.grandisecond {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/grandi_strutture/grandi_strutture_funzionalita.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

.mywebthird {
	background-image: url("../img/imgs_2022/jpegs/myweb/myweb.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

.fattelettthird {
	background-image: url("../img/imgs_2022/jpegs/fatturazione_elettronica/fatturazione_elettronica_facile.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

.amicohow {
	background-image: url("../img/imgs_2022/jpegs/affiliazione/programma_affiliazione_come_funziona.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

.myweblast {
	background-image: url("../img/imgs_2022/jpegs/myweb/hai_bisogno_di_un_sito_su_misura.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.pallenamento-second {
	background-image: url("../img/imgs_2022/jpegs/piani_allenamento/piani_allenamento_01.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.smacc-second {
	background-image: url("../img/imgs_2022/jpegs/smart_access/affidati_ad_app_palestre.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.amico-prezzi {
	background-image: url("../img/imgs_2022/jpegs/prezzi/porta_un_amico.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.fattelett-second {
	background-image: url("../img/imgs_2022/jpegs/fatturazione_elettronica/il_mondo_del_fitness.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.supp-second {
	background-image: url("../img/imgs_2022/jpegs/supporto/siamo_sempre_pronti.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.classi-virtuali-second {
	background-image: url("../img/imgs_2022/jpegs/classi_virtuali/affidati_al_gestionale.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.pagamenti-digitali-second {
	background-image: url("../img/imgs_2022/jpegs/pagamenti_digitali_rateizzazioni/attiva_gli_acquisti.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.pagamenti-klarna-second {
	background-image: url("../img/imgs_2022/png/pagamenti_digitali_rateatizzati/klarna.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	height: 100%;
	width: 100%;
	min-height: 400px;
}

.logo-klarna {
	background-image: url("../img/imgs_2022/png/pagamenti_digitali_rateatizzati/logo_klarna.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	
	width: 100%;
	height: 100%;

	min-width: 100%;
	min-height: 55px;
	display: inline-block;
}

.icona-klarna-ora {
	background-image: url("../icons_new/icone_klarna/dot_klarna.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;

	width: 100%;
	height: 100%;

	min-width: 100%;
	min-height: 55px;
}

.icona-klarna-dopo {
	background-image: url("../icons_new/icone_klarna/icona_paga_dopo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;

	width: 100%;
	height: 100%;

	min-width: 100%;
	min-height: 55px;
}

.icona-klarna-dot {
	background-image: url("../icons_new/icone_klarna/dot_klarna.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;

	width: 55px;
	height: 55px;

	min-width: 100%;
	min-height: 55px;
}

.icona-klarna-rate {
	background-image: url("../icons_new/icone_klarna/icona_paga_rate.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;

	width: 100%;
	height: 100%;

	min-width: 100%;
	min-height: 55px;
}

.underline {
	text-decoration: underline;
}

.myappcell {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/myapp/tutte_le_funzionalit.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.perchesmacc {
	min-height: 250px;
	height: 450px !important;
	background-image: url("../img/imgs_2022/jpegs/smart_access/smart_access.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.giacliente {
	height: 100%;
	max-height: 450px;
	background-image: url("../img/imgs_2022/jpegs/app plus/sei_gia_cliente.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	position: relative;
}

.diventaambassador {
	height: 100%;
	max-height: 450px;
	background-image: url("../img/imgs_2022/jpegs/affiliazione/programma_affiliazione_diventa_app_ambassador.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	position: relative;
}


.bg1 {
	background-image: url("../img/Home/sicuro.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 900px 1200px;
}

.bg2 {
	background-image: url("../img/Home/facile.png");
	background-size: 700px 900px;
	background-position: center;
	background-repeat: no-repeat;
}

.bg3 {
	background-image: url("../img/Home/swcomp.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 700px 900px;
}

.bg4 {
	background-image: url("../img/Home/personalizzabile.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 700px 800px;
}

.bg5 {
	background-image: url("../img/Home/facint.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 700px 900px;
}

.whyselected {
	padding: 10px;
	background-color: #ff4e00;
	color: #ffffff;
	transition: 0.5s;
}

.whyselected .txtblack {
	color: #ffffff;
}

.why-selected {
	padding: 10px;
	background-color: #f8f8f8;
	color: #ff4e00;
	transition: 0.5s;
}

.dropdown-item.active, .dropdown-item:active {
	background-color: unset;
}

@media screen and (max-width: 440px) {

	.g-recaptcha>div {
		transform: scale(0.5) !important;
	}
}

.accordion .card-header {
	border-bottom: unset !important;
}

#prezziheader {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_app_palestre_prezzi.jpg");
	background-size: cover;
	background-position: center 20%;
	background-repeat: no-repeat;
}

#prezziaddon {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_personalizzazione.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#prezzimyweb {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_my_web_prezzi.jpg");
	background-size: cover;
	background-position: 50% 20%;
	background-repeat: no-repeat;
}

#prezzipianiall {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_piani_allenamento.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#prezzifattelett {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_fatturazione_elettronica_prezzi.jpg");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

#prezzicassadigitale {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_cassa_digitale_prezzi.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#prezzisms {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_sms_prezzi.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#prezziwhatsapp {
	background-image: url("../img/imgs_2022/jpegs/prezzi/header_whatsapp_prezzi.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


#prezzismacc {
	background-image: url("../img/Prezzi/shutterstock_1390253711.jpg");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.formsupp {
	height: 100%;
	background-image: url("../img/imgs_2022/jpegs/supporto/form_supporto.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

#assistenzahome {
	min-height: 350px;
	background-image: url("../img/imgs_2022/jpegs/home/cambiare_gestionale_e_facile.jpg");
	background-size: cover;
	background-position: 40% 50%;
	background-repeat: no-repeat;
}

.header {
	height: 98vh;
	min-height: fit-content;
	background-repeat: no-repeat;
}

.prezzi10a {
	background-image: url("../img/imgs_2022/png/speciali/BG_prezzi.png");	
	background-size: cover;
}

.home10a {
	background-image: url("../img/imgs_2022/png/speciali/BG_home.png");	
	background-size: cover;
}

.promobg {
	background-image: url("../img/imgs_2022/png/speciali/BG_promo.png");	
	background-size: cover;
}

.homeheader {
	height: 75vh;
	min-height: fit-content;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.homeheaderbg1 {
	background-image: url("../img/imgs_2022/jpegs/home/header.jpg");
}

.homeheaderbg1_promo {
	background-image: url("../img/imgs_2022/jpegs/home/header_promo_2024.jpg");
}

.homeheaderbg2 {
	background-image: url("../img/imgs_2022/jpegs/app_palestre_mobile/img_01.jpg");
}

#apppalestreheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/app_palestre/header_app_palestre.jpg");
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
}

#apppalestresecondimg {
	background-repeat: no-repeat;
	background-image: url("../img/imgs_2022/png/app_palestre/app_palestre_comprende.png");
	background-size: contain;
	background-position: 50% 50%;
}

#mywebsecondimg {
	background-repeat: no-repeat;
	background-image: url("../img/imgs_2022/jpegs/myweb/soluzione_integrata.jpg");
	background-size: cover;
	background-position: 50% 55%;
}


#appplusheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/app plus/header_app_plus.jpg");
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
}

#crossfitheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/box_crossfit/box_crossfit_header.jpg");
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

#grandiheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/grandi_strutture/grandi_strutture_header.jpg");
	background-size: cover;
	background-position: 50% 20%;
	background-repeat: no-repeat;
}


#supportoheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/supporto/header_suppor.jpg");
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}


#yogaheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/yoga_pilates/yoga_pilates_header.jpg");
	background-size: cover;
	background-position: 50% 60%;
	background-repeat: no-repeat;
}

#centrifitnessheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/centri_fitness/centri_fitness_header.jpg");
	background-size: cover;
	background-position: 50% 30%;
	background-repeat: no-repeat;
}

#fitnessboutiqueheaderbg {
	height: 75vh;
	min-height: fit-content;
	background-image: url("../img/fitness_boutique/header_boutique.jpg");
	background-size: cover;
	background-position: 50% 30%;
	background-repeat: no-repeat;
}

#myappheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/myapp/header_myapp.jpg");
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
}

#mywebheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/myweb/header_myweb.jpg");
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
}

#beachmatchheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/beach_match/header_beach.jpg");
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.beachvolleybg {
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/beach_match/bg.png");
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
}

#pianiallenamentoheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/piani_allenamento/header.jpeg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#personalizzazioneheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/add_on/header_personalizzazione.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#smartaccessheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/smart_access/header_smart_access.jpg");
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

#fattelettheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/fatturazione_elettronica/fatturazione_elettronica_header.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#crmheaderbg {
	height: 75vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/crm/header.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cassaheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/cassa/header_cassa.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#ecologiaheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/ecologia/header_ecologia.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cambiogestionaleheaderbg {
    position: relative;
    height: 98vh;
    min-height: fit-content;
    background-image: url("../img/imgs_2022/jpegs/cambio_gestionale/texture.png");
    background-color: #D0CFF5;
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(208, 207, 245, 0.8);
}

#classivirtualiheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/classi_virtuali/classi_virtuali_header.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#pagamentiheaderbg {
	height: 98vh;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/pagamenti_digitali_rateizzazioni/pagamenti_digitali_header.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#personalizzazione_sec_2_bg {
	height: 600px;
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/add_on/img_01_personalizza.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.circle{
	border-radius: 50%;
}

.sfondo-peppe {
	background-repeat: no-repeat;
	/* background-image: url("../img/imgs_2022/png/app_palestre/app_palestre_comprende.png"); */
	background-color: black;
	background-size: cover;
	background-position: 50% 50%;
}

.scuro {
	background-color: #00000090;
}

.bluscuro {
	background-color: rgba(26, 54, 116, 0.6);
}

.scuretto {
	background-color: #212121d2;
}


#perchebg {
	overflow: visible;
	overflow: hidden;
}

#tre {
	position: relative;
	top: -100px;
	left: -100px;
}

#quattro {
	position: relative;
	top: 0;
}

#cinque {
	position: relative;
	left: -200px;
}

#sei {
	position: relative;
	left: 100px;
}

.boxsupp {
	position: absolute;
	left: 0;
	right: 0;
	top: -80px;
	margin: auto;
	z-index: 2;
	background: #ffffff;
}

.mwtxt {
	max-width: 650px;
}

.mw600 {
	max-width: 600px;
}


.categorie-blog {
	top: -2px !important;
	max-height: 200px !important;
	overflow-y: scroll;
	z-index: 100;
	border-radius: 0px 0px 0px 6px !important;
	border-left: 1px solid #b6b6b64f !important;
	border-bottom: 1px solid #b6b6b64f !important;
}

.accordionpos {
	position: relative;
	left: 0;
	right: 0;
	top: -150px;
	margin: auto;
	z-index: 2;
}

.accordionposlight {
	position: relative;
	left: 0;
	right: 0;
	top: -80px;
	margin: auto;
	z-index: 2;
}

.imgpos {
	position: absolute;
	bottom: 0;
	top: 0;
	left: -50px;
	margin: auto;
	z-index: 2;
}


.card-header:first-child {
	border-radius: unset;
}

.noscrollbar ::-webkit-scrollbar {
	display: none;
}

#perchebg ::-webkit-scrollbar {
	display: none;
}

.divwhy {
	overflow-y: visible;
}

.sec {
	transition: 0.3s;
	width: 330px;
}

.perche {
	min-height: 60vh;
	overflow: scroll;
	margin-top: 10%;
	margin-bottom: 15%;
	position: relative;
	z-index: 10;
}

.border-bla-ora {
	border: 2px solid #212121;
	transition: 0.3s;
}

.border-bla-ora:hover {
	transform: scale(1.1);
	border: 2px solid #ff4e00;
}

.orangeborder {
	border: 1.5px solid #ff4e00;
}

.transpbg {
	background-color: transparent;
}

.greenbg {
	background-color: #00BF79;
	color: #ffffff;
}

.addonbg {
	background-color: #ff595e;
	color: #ffffff;
}

.addonbg {
	background-color: #ff595e;
	color: #ffffff;
}

#view {
	overflow-y: scroll;
}

.greybg {
	background-color: #dadadacb;
}

.orangebg {
	background-color: #ff4e00;
	color: #ffffff;
	background-repeat: no-repeat;
}

.violabg {
	background-color: #9526BE;
	color: #ffffff;
	background-repeat: no-repeat;
}

.personaltrainingbg {
	background-color: #55CBDB;
	color: #ffffff;
	background-repeat: no-repeat;
}

.smartaccessbg {
	background-color: #FECB36;
	color: #ffffff;
	background-repeat: no-repeat;
}

.fatturaelettronicabg {
	background-color: #BB46D4;
	color: #ffffff;
	background-repeat: no-repeat;
}

.cassadigitalebg {
	background-color: #D44693;
	color: #ffffff;
	background-repeat: no-repeat;
}

.smsbg {
	background-color: #8AA3F8;
	color: #ffffff;
	background-repeat: no-repeat;
}

.whatsappbg {
	background-color: #25D366;
	color: #ffffff;
	background-repeat: no-repeat;
}

.darkgreenbg {
	background-color: #84965A;
	color: #ffffff;
	background-repeat: no-repeat;
	transition: 0.3s;
}

.darkgreenbg:hover {
	background-color: #67793f;
	transition: 0.3s;
}

.bluebg {
	background-color: #3C79FF;
	color: #ffffff;
	background-repeat: no-repeat;
}

.orb {
	border: 2px solid;
	color: #ff4e00;
}

.lightorangebg {
	background-color: #ffe8d0;
}

.violet-orange {
	background-image: linear-gradient(-45deg, #5b00d1 0%, #ff4e00 100%);
	color: #ffffff;
}

.violabg {
	background-color: #9d25fc;
	color: #ffffff;
}

.round {
	border-radius: 30px 30px 30px 30px;
}

.lightround {
	border-radius: 15px 15px 15px 15px;
}

.botround {
	border-radius: 0px 0px 14px 14px;
}

.topround {
	border-radius: 14px 14px 0px 0px !important;
}

.leftround {
	border-radius: 14px 0px 0px 14px !important;
}

.rightround {
	border-radius: 0px 14px 14px 0px !important;
}

.card-header {
	background-color: transparent;
	border-bottom: unset !important;
}

.posizione1 {
	text-align: center;
	width: 100%;
	margin-top: 90px;
	font-size: 115%;
}

.posizione2 {
	width: 100%;
	vertical-align: text-bottom;
	text-align: center;
	margin-top: 170px;
}

#npalestre {
	z-index: 10;
	height: 220px;
	width: 220px;
	background-color: white;
	position: absolute;
	left: 50px;
	top: 150px;
}

#nutenti {
	z-index: 10;
	height: 220px;
	width: 220px;
	position: absolute;
	left: 400px;
	top: 40px;
}

#nprenotazioni {
	z-index: 10;
	height: 220px;
	width: 220px;
	background-color: black;
	position: absolute;
	left: 350px;
	top: 315px;
}


#nu, #np, #npr {
	position: absolute;
	text-align: center;
	width: 100%;
	margin-top: 65px;
	font-size: 60px;
	font-family: "Poppins-Bold";
}

.selected {
	background-color: #ff4e0077;
	color: #ff4e00;
	width: fit-content;
}

ul {
	list-style-type: none;
}

a, a:hover {
	color: #212121;
	text-decoration: none;
}

.btn {
	padding-right: 30px;
	padding-left: 30px;
	height: 55px;
	min-width: fit-content;
	outline: none !important;
	font-family: "Poppins-Medium";
	white-space: unset !important;

}

.titoli {
	font-size: 110%;
	font-family: "Poppins-Medium";
}

.carte {
	height: fit-content;
	width: fit-content;
	padding: 20px;
	border: 1px solid #00000009;
	border-radius: 13px 13px 13px 13px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
	/* box-shadow: rgba(17, 12, 46, 0.096) 10px 10px 20px 20px; */
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.p-r-bottom-header {
	padding-right: 3rem;
}

.p-l-bottom-header {
	padding-left: 3rem;
}

/* ------------------------------------------------------ */

/*                    Stili  head & foot                  */

/* ------------------------------------------------------ */

footer {
	color: #ffffff;
	font-size: 93%;
}

p {
	margin-block-start: 0px;
}

#footmenu p {
	margin-bottom: 0;
}

#footmenu, .titolimenu {
	color: #a1a1a1;
}

.titolimenu {
	font-size: 110%;
}

.linea-bottom {
	border-bottom: 1.5px solid #b6b6b64f;
}

#linea {
	border-left: 1.5px solid #b6b6b64f;
}

#topborder {
	width: 20%;
	border-top: 1.5px solid white;
}

#par {
	text-align: justify;
	font-size: 120%;
	color: #666666c4;
	background-color: transparent;
}

#cardshadow {
	box-shadow: 10px 10px 8px 10px #88888877;
}

.cardprezzihome {

	border: 1px solid #00000009;
}

.collimit {
	max-width: 600px;
}

.img-crm-notifiche{
	left:35%;
}

.img-crm-chat{
	right:35%;
}

.lightshadow {
	-webkit-box-shadow: 7px 7px 5px 7px #dfdfdf63; 
	box-shadow: rgba(17, 12, 46, 0.086) 20px 20px 100px 40px;
}

.lightershadow {
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.shortshadow {
	-webkit-box-shadow: rgba(0, 0, 0, 4%) 0px 0px 10px 5px;
	box-shadow: rgb(0 0 0 / 4%) 0px 0px 10px 5px;
}

.templates_buttons {
	background: #ffffff;
	color: #00BF79;
	border: 1px solid transparent;
	transition: 0.3s;
	cursor: pointer;
}

.templates_buttons:hover {
	background: #30b47620;
	border: 1px solid #00BF79;
	transition: 0.3s;
}

.selected_template {
	background: #00BF79 !important;
	color: #ffffff !important;
	transition: 0.3s !important;
}

.darkbg {
	background-color: #212121;
}

.darkcard {
	background-color: #35373c;
	color: #f8f8f8;
}

.darkestbg {
	background-color: #111111;
	border-top: 1px solid #333;
}

.footp {
	color: #ffffff;
}

.row {
	margin-left: 0;
	margin-right: 0;
}

.user {
	align-items: left;
}



/* --------------------------------------------------- */

/*                       navbar                         */

/* ------------------------------------------------------ */


.navbar-collapse {
	flex-grow: unset !important;
}

.navbar .dropdown-menu div[class*="row"] {
	margin-bottom: 1rem;
}

.dropdown-menu {
	border: 0px;
}

.dropdown-menu .show .dropdown-menu:hover {
	border: 0;
}

.navbar {
	-webkit-box-shadow: 0px 0px 15px 3px #00000020;
	box-shadow: 0px 0px 15px 3px #00000020;
}


.oranonhov :hover, nav .nav-item :hover, a .oranonhov :hover, a:focus-visible, a:-webkit-any-link:focus-visible, .nav-item:focus:not(:focus-visible) {
	color: #ff4e00 !important;
	outline: unset !important;
	outline-offset: unset !important;
}


.atcenter {
	position: relative;
	left: 0 !important;
	right: 0 !important;
	margin: auto !important;
}

#sec_cambio_gestionale_2 {
	background-image: url("../img/imgs_2022/jpegs/cambio_gestionale/img_02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 45%;
}

/* breakpoint and up - mega dropdown styles */

@media screen and (min-width: 992px) {

	.p-app-cards{
		padding: 3rem;
	}

	#prezziheader{
		height: 500px;
	}


	@keyframes MoveUpDown {
		0%, 100% {
			height: 105px;
		}

		50% {
			height: 115px;
		}
	}

	.carousel-cell {
		max-width: 500px;
		max-height: 500px;
	}

	.centered {
		left: 0;
		right: 0;
		margin: auto;
		display: inline-flex;
		width: 100%;
		max-width: 1200px
	}


	#foto_bottoni {
		background-image: url("../img/imgs_2022/png/app_palestre/foto_bottoni.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;

	}

	#foto_bottoni_smacc {
		background-image: url("../img/imgs_2022/jpegs/smart_access/smart_access_foto_sotto_bottoni.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 50% 90%;
	}

	#foto_bottoni_pagamenti {
		background-image: url("../img/imgs_2022/jpegs/pagamenti_digitali_rateizzazioni/foto_bottoni.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 50% 45%;
	}

	#foto_bottoni_fattelett {
		background-image: url("../img/imgs_2022/jpegs/fatturazione_elettronica/foto_bottoni.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 50% 85%;
	}

	#foto_bottoni_yoga {
		background-image: url("../img/imgs_2022/jpegs/yoga_pilates/yoga_foto_sotto_bottoni.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 50% 30%;
	}

	/* remove the padding from the navbar so the dropdown hover state is not broken */
	.navbar {
		padding-top: 0px;
		padding-bottom: 0px;
	}

	/* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
	.navbar .nav-item {
		padding: 0.5rem 0.5rem;
		margin: 0 0.25rem;
	}


	/* makes the dropdown full width  */
	.navbar .dropdown {
		position: static;
	}

	.navbar .dropdown-menu {
		width: 100%;
		left: 0;
		right: 0;
		/*  height of nav-item  */
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
		display: block;
		visibility: hidden;
		opacity: 0;
		transition: visibility 0.2s, opacity 0.2s linear;
	}

	/* shows the dropdown menu on hover */
	.navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
		display: block;
		visibility: visible;
		opacity: 1;
		transition: visibility 0.4s, opacity 0.3s linear;
	}

	.navbar .dropdown-menu, .accdropd, .regdropd {
		-webkit-box-shadow: inset 0px 6px 10px -6px #00000030, 0px 8px 20px 0px #00000030;
		box-shadow: inset 0px 6px 10px -6px #00000030, 0px 8px 20px 0px #00000030;
		border-radius: 0;
	}
}
/* -----------------------vertical animation */

.slider-wrap {
	height: 100%;
	width: 100%;
	top: 0;
}

.slider {
	width: 100%;
	left: 50px;
}

.cen {
	left: unset !important;

}

.slider-loghi {
	width: 180px;
}

.slider-item {
	width: 180px;
	height: 180px;
	border-radius: 10px;
	background-color: #ffffff;
	display: flex;
	justify-content: flex-start;
	position: absolute;
	opacity: 0;
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-box-shadow: rgb(0 0 0 / 6%) 0px 0px 10px 5px !important;
	box-shadow: rgb(0 0 0 / 6%) 0px 0px 10px 5px !important;
}

.carousel-partners.flickity-enabled, .carousel .flickity-enabled {
    padding-bottom: 120px !important;
}

.carousel-partners .flickity-viewport, .carousel .flickity-viewport {
    overflow: visible !important;
}

.carousel-cell {

	background: #f8f8f8;
	counter-increment: carousel-cell;
	box-sizing: content-box;
}


.carousel-cell.is-selected {
	background-repeat: no-repeat;
	background-size: contain;
	background-color: #ff4e00;
	color: #ffffff;
}

.carousel-partners-cell {

	counter-increment: carousel-cell;
	box-sizing: content-box;
}


.carousel-partners-cell.is-selected {
	background-repeat: no-repeat;
	background-size: contain;
}

.carousel-wrapper {
	position: relative;
	overflow-x: hidden;
}

.carousel-wrapper .carousel .carousel-cell, .carousel-wrapper .carousel-partners .carousel-partners-cell {
	transition: 300ms ease-out;
}


.carousel-wrapper .carousel , .carousel-wrapper .carousel-partners {

	height: auto;

}

.flickity-page-dots {
	bottom: 35px;
}

.accdropd {
	width: unset !important;
	top: 56px !important;
	left: -150px !important;
	right: unset !important;
	margin-top: unset !important;
	margin-left: unset !important;
	margin-right: unset !important;
	background-color: #fff !important;
	transition: visibility 0.2s, opacity 0.2s linear !important;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px !important;
}

.regdropd {
	width: unset !important;
	left: unset !important;
	right: unset !important;
	margin-top: unset !important;
	margin-left: unset !important;
	margin-right: unset !important;
	background-color: #fff !important;
	transition: visibility 0.2s, opacity 0.2s linear !important;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px !important;
}

.amico {
	position: relative;
	height: 200px;
	z-index: 2;
}

#headeraffiliazione {
	height: 95vh;
	min-height: fit-content;
	background-image: url("../img/amico/head porta un amico.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.img-crm-sondaggi {
	min-height: fit-content;
	background-image: url("../img/imgs_2022/jpegs/crm/sondaggi.jpg");
	background-size:cover;
	background-position: center left;
	background-repeat: no-repeat;
}

.img-crm-sondaggio{

	position:absolute; 
	bottom:35%; 
	left: -50%;
}

.elipse {
	background-image: url('../img/imgs_2022/png/crm/Ellipse.png');
	background-repeat: no-repeat;
	background-size: 65%;
	background-position: right -60% top 45%;
	z-index: 0;
}

.contenitore-immagini {
	position: relative;
	width: 100%;
	height: 100%;
}


@keyframes floating {
	0% {
		transform: translatey(0px);
	}

	50% {
		transform: translatey(-20px);
	}

	100% {
		transform: translatey(0px);
	}
}

@media screen and (max-width: 992px) {
	.elipse {
		background-position: right 50% bottom 6%;
		background-size: 75%;
	}
}

@media screen and (max-width: 400px) {
	.elipse {
		background-position: right 50% bottom 5%;
	}
}

.amicon {
	position: absolute;
	height: 150px;
	bottom: -70px;
	right: 80px;
}

.lightgrey {
	background-color: #f8f8f8;
	border: 1px solid #00000009;
}

.bordergrey {
	border: 1px solid #D1D1D1;
}

.beachbg {
	background-color: #3B63BC;
}

.darkgrey {
	background-color: #646464;
}

.lightor {
	background-color: #ff4d0030;
}

.lightblu {
	background-color: #D8E4FF;
}

.lightgreen {
	background-color: #00BF7930;
}

.lightviola {
	background-color: #9d25fc30;
}


.img75x75 {
	width: 75px;
	height: 75px;
}

.img50x50 {
	width: 50px;
	height: 50px;
}

.img15x15 {
	width: 15px;
	height: 15px;
}

.input-no-borders , .input-no-borders:focus-visible {
	height: unset !important;
	min-width: unset !important;
	border: none !important;
	border-color: unset !important;
	outline: none !important;
	max-width:160px !important;
}

.img20x20-float-top-right {
	position: absolute;
	width: 20px;
	height: 20px;
	z-index: 9999;
	top: 15px;
	right: 15px;
}

.img15x15-float-top-right {
	position: absolute;
	width: 15px;
	height: 15px;
	z-index: 9999;
	top: 10px;
	right: 10px;
}

.whitesvg {
	fill: white;
}

.inline-block {
	display: inline-block;
}

#amicobg {
	background-image: url("../img/amico/shutterstock_401174992.jpg");
	background-size: cover;
	background-position: center center;
}

#infobg {
	height: 80vh;
	min-height: fit-content;
	background-image: url("../img/info/infoh.jpg");
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

#plusfaq {
	fill: #ff4e00;
	width: 30px;
	height: 30px;
}

.faqcard {
	border-top: unset !important;
	border-left: unset !important;
	border-right: unset !important;
	border-radius: 0 !important;
	border-bottom: 1.5px solid #21212150;
}

.faqlinea {
	border-top: 1px solid #21212120;
}

/* map markers */
.gm-style {
	font: unset !important;
}

.gm-style-iw {
	padding-right: 12px !important;
}

.orangescroll ::-webkit-scrollbar,
.orangescroll ::-webkit-scrollbar-thumb,
.orangescroll ::-webkit-scrollbar-track,
.greenscroll ::-webkit-scrollbar,
.greenscroll ::-webkit-scrollbar-thumb,
.greenscroll ::-webkit-scrollbar-track {
	width: 7px !important;
	border: none !important;
	background: transparent !important;
}

.orangescroll ::-webkit-scrollbar-button,
.orangescroll ::-webkit-scrollbar-track-piece,
.orangescroll ::-webkit-scrollbar-corner,
.orangescroll ::-webkit-resizer,
.greenscroll ::-webkit-scrollbar-button,
.greenscroll ::-webkit-scrollbar-track-piece,
.greenscroll ::-webkit-scrollbar-corner,
.greenscroll ::-webkit-resizer {
	display: none !important;
}

.orangescroll ::-webkit-scrollbar-thumb {
	border-radius: 6px !important;
	background-color: #ff4e00 !important;
}

.orangescroll ::-webkit-scrollbar-track {
	background-color: #ff4e0070 !important;
	background-size: contain !important;
	border-radius: 6px !important;
}


.greenscroll ::-webkit-scrollbar-thumb {
	border-radius: 6px;
	background-color: #00BF79;
}

.greenscroll ::-webkit-scrollbar-track {
	background-color: #00BF7970;
	background-size: contain;
	border-radius: 6px;
}

.gsc-input-box {
	border-color: #ff4e00 !important;
}

.gsc-search-button-v2 {
	border-color: #ff4e00 !important;
	background-color: #ff4e00 !important;
}

/* POP-UP */

.pop-up {
	z-index: 9998;
	padding: 15px;
	padding-bottom: 5px !important;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 97%;
	max-width: 700px;
	background: #a30690;
	color: #ffffff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	border-radius: 14px 14px 0px 0px;
	box-sizing: border-box;
}

.pop-up-content {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.pop-up-content>* {
	align-items: center;
}

.pop-up-text {
	padding-right: 10px;
}

#pop-up-evento {
	animation: MoveUpDown 1.5s linear infinite;
}

.flex-direction-nav {
	display: none !important;
}

.flex-control-nav {
	bottom: 20px !important;
}

.separator{

	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 4px;
    height: 80px;
    background-color: #ff4e00;
    border-radius: 15px;
}

.separator2{

	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 4px;
    height: 80px;
    background-color: #ffe8d0;
    border-radius: 15px;
}

.separator3{

	position: absolute;
	top:35px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 70px;
    height: 4px;
    background-color: #ffe8d0;
    border-radius: 15px;
}

.lightorborder{
	border: 2px solid #ffe8d0;
}

.separatore-eco {
	border-bottom: 2px solid #D1D5DB;
	width: 150px;
}

#contribuisci {
	background-color: #7EA280;
	color: #ffffff;
}

.iconhover {
	transition: 0.3s;
}

.iconhover:hover {
	transform: scale(1.05);
	transition: 0.3s;
}

.mlx-auto {
	margin-left: auto;
}

.mrx-auto {
	margin-right: auto;
}

.h-custom-partners {
	height: 70px;
}

.btn-beach {
	height: 100%;
	padding-left: 45px;
	padding-right: 45px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.cursor_dx, .cursor_sx {
	position: absolute;
	width: 84.71px;
	height: 72.44px;
	z-index: 2;
}

.cursor_dx {
	top: 170px;
    left: -7vw;
}

.cursor_sx {
	top: 15px;
    right: 0px;
}

.freccia_svg {
	position: absolute;
	width: 135.45px;
	height: 160.02px;
	z-index: 2;
	right: 0px;
	top: 90px;
}

.web-max-height {
	max-height: -webkit-fill-available;
}