/* General */

html {
  scroll-behavior: smooth;
}
	body {
  transition: background-color 0.5s ease;
	overflow-x:hidden;
		    -webkit-font-smoothing: antialiased;

}	
	
::selection {
    background-color: color-mix(in srgb, var(--e-global-color-accent) 72%, transparent);
    /* Colore di sfondo della selezione */
    color: #ffffff;
    /* Colore del testo durante la selezione */
}
	
b{
	font-weight: 800;
}
	
.primary{
	color: var(--e-global-color-primary) 
}
	
.secondary{
	color: var(--e-global-color-secondary) 
}
	
.accent{
   color: var(--e-global-color-accent) 
}

.upper{
	text-transform: uppercase!important;
}
	
.icon-flex .elementor-icon-wrapper{
	display: flex;
}

.nopadlist ul{
	padding-left: 15px
}
	
.MyQuestions i, .MyQuestions .elementor-toggle-icon {
    font-size: clamp(14px, 3vw, 16px) !important;
}
.list ul li:first-child {
    padding-top: 20px;
}		
.list ul li:not(:last-child), .list ol li:not(:last-child){
	margin-bottom: 8px;
}
	
.cmark ::marker{
    color: var(--e-global-color-accent)!important;
}	

@media screen and (max-width: 768px) {
	.nopadlistmob ul{
		padding-left: 15px;
	}
}
/* Per disattivare effetti su mobile */

	@media screen and (max-width: 1024px) {
  .elementor-motion-effects-element {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}

/* label titoli */
/* (Assegna al tag span dentro al titolo le classi "hlabel" e "pb2" e (opzionale) "upper" e "accent" */

.hlabel{
	display: block;
	font-size: 14px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
}	
	
.pb2{
	padding-bottom:20px
}
	
.hvar{
font-size: 0.7em;
line-height:1.2;
}		
/* END label titoli */

/* Header */
/* (Assegna all'header la classe "scroll-header" se vuoi farla sparire e riapparire in base allo scroll) */
	
.my-header .headerlogo{
	transition: .3s ease ;
}
	
.my-header .scroll-header {
  transition-property: transform, background-color, box-shadow, padding;
  transition: 0.3s ease;
}

/* END Header */
	
		
/* BOX Descrizione */
.descrizione-breve {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.5s ease;
  /* evita salti su mobile quando il clamp viene rimosso */
  -webkit-line-clamp: 3; /* fallback statico, sovrascritto da JS */
}

.mostra-altro {
  cursor: pointer;
  display: inline-block;
}
	
.aperto{
	display: none
}
/* END BOX Descrizione */
	
/* Button */
.mybut .elementor-button-icon, .mybut .elementor-button-icon i{
	transition: .4s ease;
}
	
.mybut .elementor-button{
	position: relative;
	height: 50px;
	align-content: center;
	display:flex!important;
	align-items: center!important;
}
	
.mybut .elementor-button-icon{
	position: absolute;
	left: 0;
	top: 0;
	padding: 0 20px;
	background: var(--e-global-color-accent);
	border-radius: 100px;
	width: 50px;
	height: 50px;
}
	
.mybut .elementor-button-text{
	text-align: left;
	padding-left: 20px;
	z-index: 1
}

.mybut:hover .elementor-button-icon{
	width: 100%;
}
	
.mybut:hover .elementor-button-icon i{
	transform: translateX(10px)
}

.mybut .elementor-button-icon i::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.4s ease;
}

.mybut:hover .elementor-button-icon i::after {
  width: 16px;
  height: 1px;
}
/* END Button */

/* TopButton */
#containerGoTopPage {
  transition: margin-bottom .3s ease, opacity .3s ease, transform .2s ease;
}

#containerGoTopPage.on {
  margin-bottom: 0 !important;
}
.joinchat__button{
	bottom:0!important;
}
#containerGoTopPage.on:hover {
  transform: translateY(2px);
}