@media only screen and (max-width: 600px) {
	#page{
		overflow-x: hidden !important;
	}

}

.dadasuite_author_tooltip {
	width: 220px;
	border-top: 3px solid #217fdd;
	padding: 15px;
	position: absolute;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 1px 2px 4px #CFCFCF;
	margin-top: 7px;
    visibility: hidden;
    opacity:0;
    transition:.3s opacity;
	z-index:100000;
	left: 50%;
	transform: translateX(-50%);
}

.dadasuite_author_tooltip:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    border-bottom: 15px solid #217fdd;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.dadasuite_author_tooltip H3 {
	font-size: 1.2rem;
	margin-bottom: 0px;
}

.dadasuite_author_tooltip P {
	margin: 0;
	font-size: 0.8rem;
	border-bottom: 1px solid #cfcfcf;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.dadasuite_author_tooltip A{
	font-size: 0.8rem;
	font-weight: bold;
}

.tooltip{
	position: relative;
}

.tooltip_header{
	display: flex;
	align-items: center;
	column-gap: 10px;
	margin-bottom:10px;
}

.tooltip_header IMG{
	border-radius: 50%;
}

.tooltip:hover .dadasuite_author_tooltip{
    opacity: 1;
    visibility: visible;
}

.is-separator {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
  }
  
  .is-separator::before {
	content: '';
	flex-grow: 1;
	height: 2px; /* Altezza della linea */
	background: linear-gradient(to right, rgb(00, 150, 00), rgba(00, 150, 0, 0.5), rgba(0, 0, 0, 0));
	margin-right: 10px;
  }
  
  .is-separator a {
	display: block;
	width: 100px; /* Larghezza immagine */
	height: 45px; /* Altezza immagine */
	background: url('../img/logo_web365.png') no-repeat center center;
	background-size: contain;
	text-decoration: none; /* Rimuove eventuale underline del link */
  }
  