/* Bottone sempre visibile */
.sticky-event-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: transparent;
    color: #000000;
    text-decoration: underline;
    border-radius: 5px;
    position: absolute; 
    right: 20px; 
    top: 5px; 
	font-size: 12px;
}

.sticky-visible {
    display: block;
}

.sticky-hidden {
    display: none;
}

.sticky-event-container.open .sticky-hidden {
    display: block;
}

.sticky-event-container.open .sticky-visible {
    display: block;
}

/* Bottone webinar fisso e largo 100% */
.button-webinar-m {
    position: fixed;
    bottom: 10px;
	left: 10px;
    width: 95%; 
    background: #FFF !important;
    color: #7A1B54 !important;
    font-weight: 700 !important;
    padding: 24px 50px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-family: 'HarmoniaSansStd-SemiBd' !important;
    border: 0 !important;
    text-transform: uppercase !important;
    z-index: 1000000; 
}

.posti-limitati{
	align-items: end;
}

@media only screen and (max-width: 768px){
    .sticky-event-container {
        display: block;
    }
	
	.posti-limitati{
		align-items: center !important;
	}
}

.sticky {
	padding: 15px;
    background: #fff;
    position: fixed;
    transition: .3s all;
    opacity: 0;
      left: 0;
    right: 0;
    visibility: hidden;
	height: auto;
	border-top: 1px solid #ccc;
}

.sticky .container-stickybassa{
    /*max-width: 1260px;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
    gap: 30px;
    margin: auto;
    text-align: center;*/
    
}

@media only screen and (max-width: 1000px){
	.sticky .container-stickybassa{
		gap: 0;
		height: auto;
	}
}

.sticky h5{
    margin: 0;
	text-align: left;
	color: #172B4F;
}
.sticky a {
    background: #FFF;
	border: 2px solid #172B4F;
    padding: 12px 16px;
    color: #172B4F;
	transition: .5s;
}

.sticky a:hover {
    background: #172B4F;
	border: 2px solid #172B4F;
    color: #fff;
}

.sticky.visible {
    opacity: 1;
    z-index: 99999;
    visibility: visible;   
}

.sticky.bassa {
    bottom: 0; /* Adjust as needed */
}

@media only screen and (max-width: 768px){
	.sticky h5{
		display: none;
	}
	
	.sticky a {
		padding: 12px 66px;
	}
}