.programma-slot ul{
	padding-left: 0px;
}

.programma-slot li{
	list-style: none;
	border-top: 2px solid var(--red);
	cursor: default;
}

.programma-slot li:last-child{
	border-bottom: 2px solid var(--red);
}

.row-li-programm{
	margin-top: 18px;
	margin-bottom: 18px;
	align-items: center;
}

.programma-slot .time{
	font-size: 15px;
	color: var(--black);
	font-family: "SharpGrotesk-Book20";
	text-align: center;
}

.programma-slot .title{
	font-size: 24px;
	color: var(--black);
	font-family: "SharpGrotesk-SemiBold";
	text-transform: uppercase;
	line-height: 1.25;
}

.programma-slot .subtitle{
	font-size: 15px;
	color: var(--black);
	font-family: "SharpGrotesk-Book20";
	margin-top: 10px;
}

.programma-slot .speaker{
	margin-top: 10px;
}

.programma-slot .speaker-name{
	font-size: 24px;
	color: var(--black);
	font-family: "SharpGrotesk-SemiBold";
	text-transform: uppercase;
	line-height: 1.25;
}

.programma-slot .speaker-job{
	font-size: 15px;
	color: var(--black);
	font-family: "SharpGrotesk-Book20";
}

.programma-slot .col-time{
	padding-right: 0;
}

.programma-slot .col-title{
	border-left: 1px solid var(--red);
    border-right: 1px solid var(--red);
    padding-left: 24px;
	padding-right: 44px;
}

.programma-slot .col-speakers{
    padding-left: 24px;
}

.programma-slot .hover-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0); /* PARTENZA a 0 */
  transition: transform 0.1s ease, opacity 0.4s ease;
  z-index: 1000;
  background: #ffffff00;
  will-change: transform, opacity;
}

.programma-slot .hover-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  transform: scale(1);
  transition: transform 0.4s ease;
}

@media only screen and (max-width: 768px){
	.programma-slot .time{
		text-align: start;
		padding-left: 0;
	}
	
	.programma-slot .col-title{
		padding-right: 12px;
		padding-left: 12px;
	}
	
	.programma-slot .col-speakers {
		padding-left: 12px;
	}
	
	.programma-slot .hover-circle {
	  width: 0;
	  height: 0;
	}
	
	.programma-slot .hover-image {
	  width: 0;
	  height: 0;
	}
}