/*
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/


#ui-blocker{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(15,23,42,0.75);
	backdrop-filter: blur(6px);
	z-index:9999;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	opacity:0;
	pointer-events:none;
	transition:all .3s ease;
}

#ui-blocker.active{
	opacity:1;
	pointer-events:all;
}

.ui-loader{
	text-align:center;
	color:#fff;
}

.ui-loader i{
	font-size:48px;
	margin-bottom:20px;
}

.ui-loader .loader-text{
	font-size:16px;
	opacity:.85;
	letter-spacing:.5px;
}

.ui-loader .dots span{
	animation:blink 1.4s infinite;
}

.ui-loader .dots span:nth-child(2){
	animation-delay:.2s;
}

.ui-loader .dots span:nth-child(3){
	animation-delay:.4s;
}

@keyframes blink{
	0%,80%,100%{opacity:0;}
	40%{opacity:1;}
}


.btn-action {
	text-decoration: none !important;
	font-size: 15px;
	text-align: center;	
	width: 90px;
	height: 90px;
	display: block;
	
	
}
.btn-action i {
	clear: both;
	display: block;
	font-size: 30px;
	margin-bottom: 5px;	
}
.btn-action {
	
}

.tab-pane h4 {
	padding: 0 0 35px 0;
	margin-top: 10px;
	margin-bottom: 35px;
	border-bottom: 1px solid #dedede;
}
.students_body {
	min-height: 600px;
	clear: both;
	display: block;
}
.avatar_placeholder {
	overflow: hidden;
	width: 80px;
	height: 80px;
	border: 0;
	background: #eee;
	border-radius: 50%;
}
	.avatar_placeholder img, #preview-image {
		border: 0;
		width: 80px;
		height: 80px;
	}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: #f5f5f5;
  border-color: #bbb;
}

.pagination a.active {
  background-color: #0073e6;
  border-color: #0073e6;
  color: #fff;
  font-weight: bold;
}

.pagination a.prev,
.pagination a.next {
  font-weight: bold;
  color: #0073e6;
}

.pagination a.prev:hover,
.pagination a.next:hover {
  background-color: #0073e6;
  color: #fff;
}



.lesson_list_avatar video {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.video-wrapper {
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	position: relative; /* crea un contesto per il logo */
	max-width: 100%;
	overflow: hidden; /* impedisce al logo di uscire dai bordi */
}

.vjs-logo-overlay {
  position: absolute;
  bottom: 0; /* da top a bottom */
  left: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}


.icona_selezione {
	font-size: 14px !important;
	transition: all .3s;
	cursor: pointer;
	text-align: center;
	border: 1px solid rgba(255,255,255,.5);
	padding: 15px 5px;
	border-radius: 5px;
}
.icona_selezione:hover {
	border: 1px solid rgba(255,255,255,1);
}
.icona_selezione i {
	clear:both;
	margin: 5px 0;
	display: block;
	font-size: 40px;
}


.pause-overlay {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(101, 59, 151, 0.9);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  z-index: 999;
  pointer-events: none;
  text-align: center;
}

/* Controlli e barra */
.video-js .vjs-control-bar {
	z-index: 2;
  background-color: #653b97 !important;
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
  background-color: #ffd700 !important;
}

@media (max-width: 600px) {
  .vjs-logo-overlay {
    width: 100%;
  }
}




.flashcard-preview {
  display: inline-block;
  perspective: 1000px;
  margin: 10px;
}

.flashcard {
  width: 250px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  cursor: pointer;
}

.flashcard.flipped {
  transform: rotateY(180deg);
}

.flashcard .front,
.flashcard .back {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  backface-visibility: hidden;
  padding: 15px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flashcard .back {
  transform: rotateY(180deg);
  background-color: #f9f9f9;
  overflow-y: auto;
  max-height: 100%;
  padding-right: 12px; /* spazio per scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}






.students_nav {
	position: relative;
	padding: 10px 0;
}

.nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.nav-list a {
	text-decoration: none;
	color: #111;
	font-weight: 500;
}

.nav-list a.selected {
	position: relative;
	font-weight: bold;
}
.nav-list a.selected:after {
	content: '';
	position: absolute;
	bottom: -13px;
	display: block;
	width: 100%;
	border-bottom: 3px solid #653B97;
}

.badge {
	background: #5e2ca5;
	color: #fff;
	border-radius: 10px;
	padding: 2px 8px;
	font-size: 12px;
	margin-left: 5px;
}

.nav-dropdown {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 8px 0;
	cursor: pointer;
	font-weight: 600;
}

.nav-dropdown i {
	font-size: 16px;
	margin-left: 8px;
}

@media screen and (max-width: 768px) {
	.nav-list {
		display: none;
		flex-direction: column;
		background: #fff;
		border-top: 1px solid #ddd;
		padding-top: 10px;
	}

	.nav-list.show {
		display: flex;
	}

	.nav-list li {
		width: 100%;
		padding: 5px 0;
	}

	.nav-dropdown {
		display: flex;
	}

	.students_nav {
		border-bottom: 1px solid #ddd;
	}
}







#welcome {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #563288, #59348B, #6A3E9E, #47276A);
    background-size: 300% 300%;
    animation: gradientAnimation 10s ease infinite, glowEffect 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
#uniboard {
	
}
.uni_switch {
	padding: 10px;
	border-radius: 10px;
	display: block;
	background: #eee;
}

.loading-message {
	font-size: 24px;
	text-align: center;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	background: #60269E;
}
.nav-link {
	color: #60269E;
}

.create_course_btn {
	margin: 0;
	font-size: 15px;
	color: #60269E;
	transition: all .3s;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #60269E;
	border-radius: 50px;
	padding: 5px 20px;
	float: right;
}
.create_course i {
	margin-right: 5px;
}
.create_course_btn:hover {
	background: #60269E; 
	color: #fff;
}



.channel_menu { 
	display: none;
  position: relative;
  font-family: sans-serif;
}

/* === DESKTOP MENU === */
ul.channel_links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

ul.channel_links > li {
  position: relative;
}

ul.channel_links > li > a {
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  display: inline-block;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

ul.channel_links > li.has-submenu > a::after {
  content: "\f107"; /* freccia in giù */
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  margin-left: 6px;
  font-size: 0.85em;
}

ul.chennal_link_submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

ul.chennal_link_submenu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: normal;
  white-space: nowrap;
}

ul.channel_links > li:hover > ul.chennal_link_submenu {
  display: block;
}

ul.channel_links > li > a:hover,
ul.chennal_link_submenu a:hover {
  background-color: #eee;
  color: #000;
  border-radius: 3px;
}

.image_interactive {
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.image_interactive_media {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #f0f0f0;
	color: #555;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	font-size: 16px;
}
.image_interactive_placeholder {
  background: #eee;
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

/* Rimuovi dimensione se c'è un contenuto (es. un'immagine) */
.image_interactive_placeholder > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* Se vuoi che il fondo grigio compaia solo se vuoto */
.image_interactive_placeholder:empty {
  background: #eee;
}


.image_interactive_media:hover {
  background-color: #e0e0e0;
  color: #000;
  box-shadow: 0 0 0 2px #ccc;
}



/* === MOBILE === */
.channel_toggle {
	padding: 15px;
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

.channel_close {
  display: none;
  font-size: 28px;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  z-index: 1001;
}




/* === RESPONSIVE OVERRIDE === */
@media (max-width: 768px) {
  .channel_toggle {
    display: block;
  }

 .channel_menu.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
  }

  .channel_menu.open .channel_links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .channel_menu.open .channel_close {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
  }
  
  


  ul.channel_links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    width: 100vw;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    gap: 30px;
  }

  ul.channel_links.active {
    transform: translateX(0);
  }

  ul.chennal_link_submenu {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  ul.channel_links li {
    width: 100%;
    text-align: center;
  }

  ul.channel_links li a {
    font-size: 22px;
    display: inline-block;
  }
}






.create_course_btn_small {
	padding-top: 2px;
	padding-bottom: 3px;
	font-size: 14px;
}


.students_toolkit {
	margin: 15px 0; 
}
.txt-small {
	font-size: 12px;
	font-weight: 400;
	margin-top: 5px;
}
.students_header {
	padding: 30px 0 0 0;
	background: #eee;
}
.students_header .avatar_placeholder {
	border: 2px solid #dedede;
}
.students_header .badge {
	margin-top: 0;
	background: #60269E;
}

.course_icon {
	color: #999;
	font-size: 11px;
	font-weight: 400;
}
.course_icon i {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 3px;
	line-height: 15px;
	font-size: 10px;
	background: #4A2283;
	color: #fff;
	border-radius: 5px;
	padding: 2px;
	text-align: center;
}

.course_list {
	padding: 5px 0;
	margin: 15px 0;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
}

.course_row {
	transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  padding: 0 5px;
  background-color: #fff;
}

/* Rimuovi il bordo superiore solo al primo per evitare doppio bordo */
.course_row:first-child {
  border-top: none;
}





.course_row:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.course_column {
  flex: 1;
  padding: 7px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course_image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.course_title {
  flex: 0 0 45%;
  max-width: 45%;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course_title a {
  color: #333;
  text-decoration: none;
}


.course_contents,
.course_completition,
.course_deadline {
  font-size: 0.85rem;
  color: #666;
}



.course_action a {
	font-size: 12px;
	color: #000;
  background-color: #fff;
  border: 3px solid #dedede;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}



.course_image {
	height: 75px;
  flex: 0 0 100px;
}



.course_action {
  flex: 0 0 100px;
  text-align: right;
}



#students_greetings {
	padding: 30px 0;
}
	
	
.alert-msg {
	font-size: 14px;
	border-radius: 15px;
	background: #dfd5ef;
	padding: 15px;
}
	.alert-badge {
		display: inline-block;
		color: #fff;
		border-radius: 15px;
		text-transform: uppercase;
		background: #4A2283;
		padding: 5px 10px;
	}


/* Animazione gradiente più fluida */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Effetto di luce pulsante */
@keyframes glowEffect {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}


/* Effetto sfocatura in movimento */
@keyframes blurAnimation {
    0% { transform: scale(1) translateX(-10px) translateY(-10px); opacity: 0.6; }
    100% { transform: scale(1.2) translateX(10px) translateY(10px); opacity: 0.8; }
}


#welcome .tag {
	color: #fff;
}
#welcome .subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}


.light {
    position: absolute;
    width: 0px;
    opacity: .55;
    background-color: white;
    box-shadow: #e9f1f1 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}





.kpi-container {
	display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Stili generali per i KPI */
.kpi {
    background-color: #ffffff;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}


.kpi .kpi_val {
    font-size: 35px; /* Più grande rispetto all'attuale */
    font-weight: bold;
    color: #371F69; /* Viola più scuro per contrasto */
}

/* Posizionamento individuale */
.kpi:nth-child(1) { align-self: flex-start; }
.kpi:nth-child(2) { align-self: center; transform: rotate(-2deg); }
.kpi:nth-child(3) { align-self: flex-end; }



/* Box decorativi con effetto blur */
.decor-box {
    position: absolute;
	z-index: -1;
    width: 120px;
    height: 60px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}







.unique_selling_proposition {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
}
.adattamento {
	display: block;
	color: #A97DE5;
}

body {
	margin-top: 65px;
	width: 100%;
	overflow-x: hidden;
	font-weight: 400;
	/*font-family: "Poppins", sans-serif;*/
	font-size: 12px;
	background: #fff;
	color: #2c3e50;
}
.area_register a {
	color: #fff;
}
.small {
	font-size: 12px;
}
.iti  {
	width: 100%;
	clear: both;
	display: block;
}
.advice {
	background: rgba(74, 34, 131, 0.2);
	padding: 15px 30px;
	border-radius: 15px;
	margin-bottom: 15px;
	font-size: 17px;
}
	.advice h3 {
		color: rgba(74, 34, 131, 1);
	}
	.advice p {
		color: rgba(74, 34, 131, 1);
	}
.relative_div {
	position: relative;
}
.modal-header h5 {
	margin: 0;
}
#corso p {
	font-size: 16px;
}
.pull-right {
	float: right;
}
body, p, ul li, ol li {
	font-size: .95em;	
}
ul li, ol li {
	
}
.btn-white {
	
}
.btn-block {
	width: 100%;
}
.form-floating>label {
	font-size: 12px !important;
	margin-bottom: 10px !important;
	text-transform: uppercase !important;
	font-weight: 400 !important;
	top: -8px !important;
}
.big_button {
	margin-bottom: 20px;
	display: block;
	padding: 15px 60px;
	min-height: 60px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 15px;
	background: #4A2283;
	color: #fff;
}
	.big_button_detail {
		font-weight: 400;
		float: right;
	}
	.big_button .badge {
		margin-top: 3px;
		background: #fff;
		color: #4A2283;
		float: right;
	}
	.big_button:hover {
		color: #fff;
	}	
.err {
	color: red;
}
.area_register .err {
	display: block;
	font-weight: bold;
	background: #fff;
	font-size: 12px;
	padding: 15px 20px;
	color: #7B4EAB;
}
.area_register .err a {
	text-decoration: underline;
	color: #7B4EAB;
}
.lesson_list_container {
	overflow: hidden;
	border-radius: 15px;
	border: 1px solid #eee;
}
.lesson_list {
	border-collapse: collapse;
	padding: 30px;
	border: 1px solid #eee;
}
.lesson_list_question {
	background: #f3eff9;
	border-collapse: collapse;
	padding: 15px 30px;
	border: 1px solid #eee;
}
	.lesson_list h2, .lesson_list h3, .lesson_list p {
		margin: 0 0 5px 0 !important;
		padding: 0 !important;
	}
	.lesson_list p {
		width: 80%;
		line-height: 1.2em;
	}

.full_cover_image {
	border-radius: 15px;
	margin-bottom: 15px;
}
.corso_single {
	max-width: 960px;
	margin: 0 auto;
}
#corso_images {
	text-align: right;
	float: right;
	width: 30%;
}
#corso_images img {
	border-radius: 5px;
	max-width: 120px;
	margin-left: 15px;
	margin-bottom: 15px;
}


h1, h2, h3, h4, h5, h6,
.like_h1, .like_h2, .like_h3, .like_h4, .like_h5, .like_h6 { 
	font-weight: 600;
	margin: 1em 0 .2em 0;
}
.input-title {
	font-weight: 600;
}
.input-textarea {
	height: 120px;
}

h1, .like_h1 {
	font-size: 2em;
	font-weight: 700;
	margin-top: 0;
}
h2, .like_h2 {
	font-size: 1.7em;
}
h3, .like_h3 {
	font-size: 1.30em;
}
h4, .like_h4 {
	font-size: 1.25em;
}
h5, .like_h5 {
	font-size: 1.2em;
}
h6, .like_h6 {
	font-size: 1.1em;
}
h3m li::marker {
	color: #60269E;
}

strong {
	font-weight: 600;
}
.custom-control-label {
      cursor: pointer;
    }
.social a {
	font-size: 15px;
	margin: 0 15px;
}	

.statboard {
	display: none;
	font-weight: bold;
	font-size: 8px;
	text-transform: uppercase;
	width: 100%;
	z-index: 999;
	background: rgba(255,255,255,.5);
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 15px;
}
.statboard .form-control {
	margin: 0;
}
.visibility-tracker {
	display: none;
	position: absolute;
	z-index: 99999;
	font-weight: 400 !important;
	font-size: 10px;
	background: #fff;
	padding: 8px;
	color: #111;
	border: 1px solid #dedede;
}



body.hacker .statboard,
body.hacker .visibility-tracker
{
	display: block;
}



		#universe-alert {
            position: fixed;
            bottom: 20px;
            right: 20px;
			max-width: 320px;
			font-size: 17px;
            background-color: #60269E;
            color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 1000;
        }

        #universe-alert .progress-bar {
            height: 5px;
            background-color: #ff9800;
            width: 100%;
            border-radius: 5px;
            margin-top: 10px;
        }

        #universe-alert .progress-bar-inner {
            height: 100%;
            background-color: #4caf50;
            width: 0;
            border-radius: 5px;
        }

        #universe-alert .button-container {
            margin-top: 10px;
            text-align: right;
        }

        #universe-alert button {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
			
a  {
	color: #60269E;
}
.comeback {
	font-size: 14px;
	color: #fff !important;
}
.req {
    color: #FF5733; /* Red */
}
.form-control.token { 
	padding-top: 15px !important;
	padding-bottom: 15px !important;	
	text-align: center;
	font-size: 30px;
}
.iti__dropdown-content {
	color: #000;
}

.container_interno {
	margin: 0 auto;
	padding: 30px 45px;
}

#show-password, #check-password {
	z-index: 1;
	background: none;
	border: 0;
	outline: none;
	position: absolute;
	top: 30px;
	right: 15px;
}
#check-password {
	cursor: auto;
}
#strength-meter {
	margin-top: 10px;
	margin-bottom: 10px;
}
	#strength-meter div {
		transition: all .3s;
		width: 22%;
		background-color: #fff;
		padding: 3px 5px;
		margin-right: 1%;
		border-radius: 2px;
		border: 1px solid #dedede;
		float: left;
	}
	#strength-meter:after {
		content: '';
		clear: both;
		display: block;
	}
	#strength-meter div.weak {
    background-color: #FF5733; /* Red */
	}

	#strength-meter div.fair {
		background-color: #FFA500; /* Orange */
	}

	#strength-meter div.good {
		background-color: #90EE90; /* Light Green */
	}

	#strength-meter div.strong {
		background-color: #2E8B57; /* Green */
	}




#mainform {
}
#footer {
	background: #1e1a35;
	color: #fff;
	padding: 30px 0;
	font-size: 14px;
}
	#footer img {
		height: 80px;
	}
	#footer ul, #footer ul li {
		display: inline-block;
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	#footer a {
		padding: 0 15px 0 0;
		color: #fff
	}
	#footer i {
		font-size: 21px;
	}
	
img {
	max-width: 100%;
}

.searform {
	position: relative;
	padding: 15px;
	background: #fff;	
	border-radius: 25px;
}
	.searform input, .searform button {
		font-size: 18px;
		outline: none !important;
		background: none;
		color: #111;
		border: 0;
	}
	.searform input {
		width: 100%;
	}
	.searform button {
		font-size: 30px;
		position: absolute;
		top: 10px;
		right: 15px;
	}

.hero, .area {
	padding: 60px 0;
	color: #fff;
	font-size: 18px;
	background: linear-gradient(-45deg, #0f0915, #774ba5, #7c4fad, #694392);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
.get_the_app {
	float: right;
}
.get_the_app img {
	width: 150px;
}

.area a {
	color: #fff;
}

.hero_light {  
	background: #ecf0f1;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
	padding: 60px 0;
	color: #2c3e50;
	font-size: 18px;
}
.area {

}
.hero p {
	
}
.information, .sideb {
	padding: 30px;
	border-left: 1px solid #dedede;
	min-height: 600px;
}
.sideb {
	display: none;
}

.information, .single {
	padding: 30px 0;
	border: 0;
	font-size: 17px;
	line-height: 26px;
}
	.information h2 {
		font-size: 24px;
		font-weight: 600;
		margin-top: 70px;
		margin-bottom: 15px;
	}
	.information h2:first-of-type {
		margin-top: 0;
	}
.sideb {
	padding: 30px 0;
	border: 0;
}
.sideb ul, .sideb ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.sideb ul li {
	margin-bottom: 15px; 
}
.sideb ul li a {
	color: #34495e;
	font-size: 17px;
	line-height: 26px;
}
	.sideb ul li a:hover {
		color: #2c3e50;
	}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

#header {
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	z-index: 99;
	position: fixed;
	background: #fff;
	width: 100%;
	top: 0;
	left: 0;
	
}
	#mainmenu, #toolmenu {
		display: inline-block;
	}
	
	
	#toolmenu form {
		display: inline-block;
	}
	#toolmenu a {
		color: #fff;
		border: 0 !important;
		padding-left: 12px !important;
	}
	

	#header ul, #header ul li {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
		#header ul li {
			display: inline-block;
		}
		#header .common_link a { 
			padding: 5px 15px;
			text-decoration: none;
			transition: all .3s;
			color: #2c3e50;
			font-size: 17px;
			font-weight: 700;
			background: linear-gradient(-45deg, #2c3e50, #2c3e50);
			background-size: 400% 400%;
			animation: gradient 15s ease infinite;
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;		

		}
		
		
		#header .common_link a:hover, #header .common_link a.active {
			text-decoration: none;
			background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5,#23d5ab);
			background-size: 400% 400%;
			animation: gradient 15s ease infinite;
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;		
		}
		#header .mainmenu_trigger {
			font-size: 18px;
			margin-right: 15px;
		}
		a.logotipo img {
			height: 50px;
		}
		
		.tool_label {
			display: none;
		}
		
			#header .common_link a.cta_button { 
				border: 1px solid #4A2283 !important;
				color: #fff !important;
				border-radius: 50px !important;
			}
		
.header_container {
	padding: 15px 0;
}

.videoclip {

}
	.videoclip video {
		border-radius: 15px;
	}
	.videoclip:before {
		/*
		content: '\f144';
		font-size: 120px;
		color: #000;
		font-family: "Font Awesome 6 Pro";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		*/
	}
.plan_container, .app_item_container {
	text-align: center;
	background: #fff;
	opacity: .9;
	transition: all .3s;
	padding: 0;
	margin: 10px;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0,0,0,.25);
}
.plan_container {
	overflow: hidden;
	padding: 0 0 15px 0;
}
.app_item_container {
	text-align: left;
	margin: 10px;
}
	.app_item_container h2 {
		clear: both;
		display: block;
		margin: 0 0 15px 0;
		font-size: 24px;
		padding: 0 15px 0 15px;

	}
	.app_item_container h2 i {
		text-align: center;
		line-height: 50px;
		background: #eee;
		border-radius: 15px;
		width: 50px;
		height: 50px;
		margin: 0 15px 0 0;
		float: left;
		font-size: 30px;
	}
	.app_item_container .app_description {
		margin: 0;
		clear: both;
		display: block;
		padding: 0 15px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		font-size: 16px;
		height: 60px;
	}
	.app_item_container h2 a {
		text-decoration: none;
		color: #111;
	}
.plan_container:hover {
	padding: 0 0 15px 0;
	opacity: 1;
	margin: 0;
	border-radius: 15px;
	box-shadow: 0 0 30px rgba(0,0,0,.25);
}
.plan_container_inactive, .plan_container_inactive:hover {
	background: none;
	opacity: 1;
	padding: 20px 0;
	opacity: 1;
	margin: 0;
	box-shadow: 0 0 0 rgba(0,0,0,0);
}
.plan_container h3 {
	margin: 0;
	padding: 30px 0;
	font-size: 20px;
	text-align: center;
	color: #fff;
	background: #23d5ab;
}
.plan_container_inactive h3 {
	background: none;
	color: #111;
}
	.plan_container .plan_price {
		padding: 5px 0;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
	}
	.plan_container .plan_option {
		padding: 15px 0;
		font-size: 14px;
		border-bottom: 1px solid #eee;
		text-align: center;
	}
	.plan_container .plan_recurring_price {
		font-size: 30px;
		color: #000;		
		font-weight: 800;
	}
	.plan_container .plan_recurring_price .sup {
		font-size: 15px;
	}
	.plan_option_value {
		font-weight: 600;
		font-size: 20px;
	}
	.plan_button {
		color: #fff;
		margin: 15px;
	}
	.plan_button a {
		color: #fff;
	}
	
	
.carousel-container {
	position: relative;
}

.carousel-container::before {
	z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none; /* Per evitare che l'elemento interferisca con gli eventi del mouse */
}

.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none; /* Per evitare che l'elemento interferisca con gli eventi del mouse */
}

.carousel-container:hover .carousel-prev, .carousel-container:hover .carousel-next {
	opacity: 1;
}
.carousel {
	position: relative;
	width: 100%; /* Larghezza del carosello */
	overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease; /* Aggiungiamo una transizione animata */
}

.carousel-item {
	width: 415px; /* Larghezza di ciascun elemento */
	margin: 10px;
	flex: 0 0 auto;
}
.scheda_applicazione {
	transition: all .3s;
	position: relative;
	background: #eee;
	color: #000;
	padding: 15px;
	border-radius: 15px;
	height: 180px; /* Altezza di ciascun elemento */
}
.scheda_applicazione:hover {
	box-shadow: 0 0 30px rgba(0,0,0,.10);
}

.carousel-prev, .carousel-next {
	transition: all .3s;
	opacity: 0;
	z-index: 6;
	font-size: 24px;
	line-height: 64px;
	text-align: center;
	color: #000;
	border-radius: 50%;
	position: absolute;
	background: #fff;
	width: 64px;
	height: 64px;
	box-shadow: 0 0 30px rgba(0,0,0,.1);
}
.carousel-prev {
	left: -32px;
	top: 70px;
}
.carousel-next {
	right: -32px;
	top: 70px;
}


.tab_selector {
	text-decoration: none !important;
	transition: all .3s;
	display: inline-block;
	color: #aaa;
	font-size: 12px;
	font-weight: bold;
	border-radius: 20px;
	padding: 5px 15px;
	margin-right: 10px;
	margin-bottom: 30px;
	border: 1px solid #aaa;
}
.tab_selector.active {
	color: #fff;
	background: #aaa;
}
.application_item {
	font-size: 14px;
	text-decoration: none !important;
	color: #000;
}
.application_item h3 {
	font-size: 20px;
	margin: 8px 0 0 0;
}
.pos_applicazione {
	height: 64px;
	font-size: 17px;
	line-height: 64px;
	float: left;
	width: 30px;
}
.icona_applicazione {
    overflow: hidden;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 30px;
    text-align: center;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    position: relative; /* Per creare uno spazio per il gradiente */
}

.icona_applicazione_big {
    font-size: 36px;
    text-align: center;
    width: 128px;
    height: 128px;
    line-height: 128px;
}

.icona_applicazione::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(242, 242, 242, 0.25)); /* Utilizzo RGBA per regolare l'opacità */
    border-radius: 15px;
    z-index: 1; /* Per posizionare il gradiente dietro all'icona */
}


.scheda_applicazione a {
	color: #000;
}
.etichetta {
	transition: all .3s;
	padding: 5px;
	border-radius: 5px;
	display: inline-block;
	background: rgba(255,255,255,.7);
}
.scheda_applicazione:hover .etichetta{
	background: rgba(255,255,255,.9);
}

.scheda_applicazione h3 {
	font-size: 22px;
}
.scheda_applicazione .app_description {
	font-size: 17px;
}

.scheda_applicazione_dettagli {
	padding: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media (max-width: 768px) {
  .carousel-item {
  }
}






.accordion {
	border-bottom: 1px solid #dedede;
}
	.accordion .domanda {
		cursor: pointer;
		padding: 15px;
		margin-bottom: 5px;
		font-size: 22px;
		font-weight: bold;
	}
	.accordion .risposta {
		display: none;
		padding: 15px;
	}
	

.table {
	max-width: 100%;
	box-shadow: 0 15px 15px rgba(0,0,0,.15);
	border: 0 !important;
	margin: 30px 0;
	background: #fff;
	border-radius: 15px !important;
}
	.table th, .table td {
		font-size: 14px;
		padding: 5px 10px !important;
		border: 0 !important;
		border-bottom: 2px solid #ecf0f1 !important;
	}
	.table tr:last-child td {
		border: 0 !important;
	}

.tag {
	margin: 0 auto;
	margin-bottom: 5px;
	letter-spacing: 1px;
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}
.section_dark .tag {
	color: #28272d;
}
.section {
	font-size: 16px;
}
.section h2 { 
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	margin-bottom: 15px;
}
.btn, .btn-success {
	transition: all .3s;
	color: #fff;
	text-decoration: none;
	border: 1px solid #4a2283 !important;
	background: #4a2283  !important;
}
#welcome .btn {
	font-weight: 700;
	border: 1px solid #fff !important;
	background: none !important;	
}
#welcome .btn-success {
	border: 1px solid #fff !important;
	background: #fff !important;
	color: #573289;	
}
#welcome .btn-success:hover {
	border: 1px solid #fff !important;
	background: #fff !important;
	color: #573289;
}
#welcome .btn-success-2 {
	color: #fff;
	border: 1px solid #A97DE5 !important;
	background: #A97DE5 !important;
}

.stat_line {
	clear: both;
	display: block;
	font-size: 12px;
	padding: 5px 0;
	border-bottom: 1px dotted #dedede;
}
	.stat_line:after {
		width: 100%;
		content: '';
		display: block;
		clear: both;
	}
.stat_line span {
	float: right;
}

.input-readonly {
	background: #eee !important;
	border: 1px solid transparent !important;
	outline: none !important;
	box-shadow: 0 0 0 rgba(0,0,0,0) !important;
}
.black_link {
	color: #999;
}
.help_link {
	font-size: 12px;
	text-decoration: none;
	border-bottom: 1px dashed #221d55;
}
.btn:hover {
	color: #fff;
	background: #221d55;
}
.btn-white {
	transition: all .3s;
	color: #4a2283 !important; 
	background: #fff !important;
}

.main_logo {
	float: left;
	margin-right: 15px;
	width: 75px;
	height: 75px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	overflow: hidden;
	z-index: 2;	
}
#mainform {
	
}
	#mainform h1 {
		margin: 0 0 10px 0;
		font-weight: 600;
		font-size: 40px;
	}
	#mainform p {
		font-weight: 600;
		font-size: 20px;
	}
	p.lead {
		font-weight: 400;
		font-size: 20px;
	}
	#mainform p.secondary {
		font-weight: 700;
		font-size: 16px;
	}
	#mainform p.disclaimer {
		display: block;
		margin: 30px 0;
		font-weight: 400;
		font-size: 12px;
	}
	
	#mainform p span {
		background: #f1c40f;
		padding: 0 5px;
	}

.descr {
	font-size: 13px;
	margin-bottom: 15px;
}
.formail {
	border-radius: 15px;
	background: #fff;
	padding: 30px;
	box-shadow: 0 15px 15px rgba(0,0,0,.2);
}
.form-control-margin { 
	margin-bottom: 5px !important;
}
.section_light {
	background: #f5f5f5;
}
.section_dark {
	background: #e2d6ee;
	color: #462181;
}

.google_review_widget, .google_review_widget a {
	font-size: 16px;
	text-decoration: none;
	color: #444;
	font-weight: bold;
}
.google_review_widget .logo_google {
	background: #fff;
	color: #000;
	padding: 2px 5px;
	border: 1px solid #dedede;
}
	.google_review_widget i {
		color: #f9bc15;
		margin: 0 1px;
	}
	.google_review_widget .logo_google i {
	color: #4385F5;
	}

.section { 
	padding: 45px 0;
}
.section_notpadded {
	padding: 0;
}
#siamotop {
	padding: 30px 0;
}
.icon {
	text-align: center;
	margin: 30px auto;
	margin-bottom: 15px;
	font-size: 80px;
}
.iconize {
	display: block;
	text-align: center;
	padding: 0 30px;
}
.action_btn {
	color: #999;
	transition: all .3s;
	border-radius: 15px;
	padding: 30px;
	margin: 15px;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
	background: linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	color: #000;
	display: block;
	text-decoration: none !important;
	text-align: center;
	font-size: 20px;
}
.action_btn:hover {
	color: #000;
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
}
.action_btn i {
	margin-bottom: 15px;
	display: block;
	font-size: 50px;
}


.catalogo_container {
	margin: 0 -10px;
}	
.catalogo_item {
}
.catalogo_elems {
	display: block;
	margin: 15px 10px;
	height: 230px;
	overflow: hidden;
	position: relative;
	border-radius: 15px;
}
.catalogo_elems .catalog_image {
	transition: all .3s;
	width: 100%;
	z-index: 1;
	position: absolute;
}
.catalogo_elems:hover .catalog_image {
  transform: scale(1.2); /* Scala l'immagine del 20% quando passi il mouse sopra */
}

.catalogo_elems .catalogo_inner_elems {
	padding: 15px;
	color: #fff;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	width: 100%;
	bottom: 0;
	z-index: 2;
	position: absolute;
}
.catalogo_elems .catalogo_inner_elems h4 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
}
.catalogo_elems .catalogo_inner_elems p {
	margin: 0;
	font-size: 14px;
	white-space: nowrap; /* assicura che il testo non venga spezzato su più righe */
	overflow: hidden; /* nasconde il testo che supera la larghezza del contenitore */
	text-overflow: ellipsis; /* aggiunge ellissi per indicare che il testo è stato troncato */	
}





.taglist {
	text-transform: uppercase;
	color: #4a2283 ;
}
.btn-primary {
	color: #fff !important;
}
.btn-success {
	transition: all .3s;
	border: 0;
	background: #1abc9c;
	color: #fff;
}
.btn-success:hover {
	background: #16a085;
}




.dashboard_elem a {
	color: #1D1934;
	border-radius: 15px;
	overflow: hidden;
	margin: 0 30px 32px 0;
	text-decoration: none;
	display: block;
}
	.dashboard_elem a:hover {
		color: #60269E;
	}
	.dashboard_elem_parent a {
		border-radius: 5px;
		overflow: hidden;
		margin: 0 30px 32px 0;
		text-decoration: none;
		display: block;
	}
	
	.dashboard_elem .cover {
		border-radius: 5px;
		overflow: hidden;
		height: 222px;
	}
	.dashboard_elem .cover img {
		width: 100%;
	}
	.dashboard_elem_parent .cover {
		border-radius: 5px;
		overflow: hidden;
		height: auto;
	}
.dashboard_elem .date {
	display: block;
}
.dashboard_elem h5 {
	margin: 0;
}
.dashboard_elem .margin {
	margin: 0;
	padding: 15px;
}
.dashboard_elem_0 .margin {
	padding: 15px 30px;
}




.or_call {
	display: block;
	margin-top: 15px;
}
	.or_call a {
		text-decoration: none;
		border-bottom: 1px dashed #27ae60;
		color: #27ae60;
	}
	.section_dark .or_call a {
		border-bottom: 1px dashed #f1c40f;
		color: #f1c40f;
	}
	
	.caption {
		display: block;
		clear: both;
		position: relative;
		color: #111;
		margin-bottom: 30px;
		font-weight: 300;
		text-align: center;
	}
	.caption_author {
		color: #111;
		text-align: center;
		font-weight: 800;
		font-size: 16px;
	}
		.caption_author img {
			border: 1px solid #dedede;
			margin: 5px;
			width: 80px;
			height: 80px;
			border-radius: 50%;
		}
		.caption_author span {
			margin-bottom: 5px;
			color: #2C3E50;
			opacity: .9;
			display: block;
			clear: both;
		}
	.caption:before, .caption:after {
		opacity: .5;
		content: '';
		position: absolute;
		display: block;
	}
	.caption:before {
		content: '\f10d';
		left: 0;
		top: -30px;
		font-weight: 600;
		color: #2C3E50;
		font-size: 20px;
		font-family: "Font Awesome 6 Pro";

	}
	.caption:after {
		bottom: 0;
		right: 0;
		content: '\f10e';
		font-weight: 600;
		color: #2C3E50;
		font-size: 20px;
		font-family: "Font Awesome 6 Pro";

	}
	.parlano_di_noi {
		text-align: center;
		padding: 60px 0;
		color: #111;
		font-size: 17px;
		text-decoration: none;
	}
	.parlano_di_noi .tag {
		color: #000;
		font-size: 14px;
	}
	.parlano_di_noi a {
		color: #111;
		font-size: 17px;
		text-decoration: none;
	}
	.parlano_di_noi img {
		margin: 5px 0;
	}
.lenuslab_copyright {
	color: #dedede;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 5px 0;
	display: block;
}
.allineamento_centrale {
	text-align: center;
}
.cover {
	position: relative;
	border-radius: 15px; 
	overflow: hidden;
	filter: grayscale(20%) brightness(0.9) contrast(110%) sepia(30%) hue-rotate(-45deg) saturate(150%);
}
.single .cover {
	margin-bottom: 32px;
}
.cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(96, 38, 158, 0.4); /* Colore #60269E con opacità 80% */
    pointer-events: none; /* Permette di cliccare sull'immagine */
}


.mainmenu_trigger {
	display: none;
}

@media(max-width: 1024px){
	

	.mainmenu_trigger {
		display: inline-block;
	}
	#mainmenu, #toolmenu {
		display: block;
	}	
	#mainmenu_desktop_mobile {
		display: none;
		background: #fff;
		position: fixed;
		left: 0;
		padding: 15px;
		top: 50px;
		width: 100%;
		clear: both;
	}
		#header #mainmenu ul li {
			display: block;
			clear: both;
		}
			#header #mainmenu ul li a {
				padding: 10px 15px;
				display: block;
				clear: both;
			}
}
@media(min-width: 768px){
	
	.students_header {
		border-bottom: 1px solid #dedede;
	}
	.adattamento {
		min-height: 140px;
	}
	
	.kpi-container {
		display: flex;
		margin-top: -45px;
	}

	/* Stili generali per i KPI */
	.kpi {
		padding: 15px 35px;
		font-size: 18px;
		font-weight: 600;
		min-width: 260px;
		border-radius: 20px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
	}


	.kpi .kpi_val {
		font-size: 55px; /* Più grande rispetto all'attuale */
		font-weight: bold;
	}


	.unique_selling_proposition {
		font-size: 62px;
		line-height: 1.05em;
	}
	.container_homepage {
		width: 1200px !important;
		margin: 0 auto;
	}
	
	#toolmenu {
		float: right;
		text-align: right;
	}
	#header .common_link li {
		padding-top: 15px;
	}
	.container {
		width: 1280px;
	}

	.container .container, .container-fluid .container {
		width: 100% !important;
	}
	
	.full_cover_image {
		/*height: 450px;*/
		overflow: hidden;
		border-radius: 15px;
		margin-bottom: 15px;
	}
	.sideb {
		display: block;
	}
	body {
		margin-top: 80px;
	}
	


	.catalogo_item {
		float: left;
		width: 33%;
	}

	.container_interno {
		padding: 90px 60px;
	}
	
	#header .mainmenu_trigger {
		font-size: 20px;
		margin-right: 15px;
	}
	#header a.lenuslab {
		font-size: 24px;
	}
	
	
	.tool_label {
		display: inline-block;
	}
	#mainmenu {
		display: inline-block;
	}
	#header #mainmenu ul li a {

	}

	.searform {
		margin: 0 auto;
		width: 60%; 
	}
	
	.videoclip video {
		width: 640px;
		box-shadow: 0 0 30px rgba(0,0,0,.2);
	}
	.item {
		width: 33%;
		float: left;
	}
	.plan {
		width: 20%;
		float: left;
	}
	.plan_single .plan {
		color: #000;
		width: 100%;
		float: none;
	}
	.parlano_di_noi {
		margin: 0 auto;
		padding: 60px 240px;
	}
	
	.table th, .table td {
		font-size: 17px;
		padding: 15px 30px !important;
	}
	.section .btn {
		padding-left: 30px;
		padding-right: 30px;
		border-radius: 50px;
		font-size: 20px;
	}
	
	#mainform h1 {
		font-size: 48px;
	}
	#mainform p {
		font-size: 24px;
	}
	#mainform p.secondary {
		font-size: 20px;
	}
	#mainform p.disclaimer {
		font-size: 14px;
	}
		
	
	
	
	
	
	.section .tag {
		
	}		
	.section .container_interno {
		max-width: 90%;
	}
	.section h2 { 
		margin: 0;
		color: #60269E;
		font-size: 30px;
		margin-bottom: 12px;
	}
		
				
		
		


	.table {
		width: 60%;
		margin: 30px auto;
	}
	
	.allineamento_centrale {
	}
}




.select {
	width: calc(100% - 30px);
	position: relative;
}

        .select .select-trigger {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .select ul {
            list-style: none;
            padding: 0;
            margin: 0;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            max-height: 0;
            overflow-y: hidden;
            transition: max-height 0.3s ease-out;
            z-index: 10;
        }

        .select.open ul {
            max-height: 400px; /* Adjust based on the number of items */
            overflow-y: auto;
        }

        .select li {
			transition: all .3s;
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s;
        }
        .select li:last-child {
            border-bottom: none;
        }
        .select li:hover {
            background-color: #f9f9f9;
        }
		.select li.title:hover {
			background: none;
		}
		.select li.disabled {
			opacity: .5;
		}
		.select li.disabled:hover {
			background: none;
		}

        .select .title {
            font-weight: bold;
            margin-top: 15px;
            padding-left: 15px;
        }

        .select .description {
            display: block;
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }

        .select .badge {
            background-color: #60269E;
            color: #fff;
            border-radius: 12px;
            padding: 2px 8px;
            font-size: 12px;
            position: absolute;
            right: 15px;
            top: 15px;
        }


        label {
			position: relative;
			font-size: 15px;
            display: block;
            margin-top: 7px;
            margin-bottom: 7px;
            font-weight: bold;
        }
		.privacy_row {
			margin-bottom: 40px;
			line-height: 13px;
		}
		.privacy_row label {
			margin: 0;			
		}

        label .req {
            color: #d00;
        }

        .form-control-universe { 
            width: calc(100% - 30px);
			border-radius: 8px;
            padding: 15px;
			border: 1px solid #ddd;
			background: #fff;
            font-size: 16px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 5px;
        }

        .form-control-universe:focus {
            outline: none;
            border-color: #60269E;
            box-shadow: 0 0 5px rgba(96, 38, 158, 0.5);
        }

        .description {
			font-weight: 400;
            font-size: 14px; 
            color: #666;
            margin-top: 5px;
        }



.course-container{
	border-radius:12px;
	animation:fadeIn .4s ease;
}

.course-title{
	font-size:1.7rem;
	font-weight:700;
	color:#1e293b;
	margin-bottom:6px;
}

.course-subtitle{
	font-size:.95rem;
	color:#64748b;
	margin-bottom:14px;
}

.course-tags{
	margin-bottom:10px;
}

.keyword-pill{
	display:inline-block;
	padding:4px 10px;
	margin:3px;
	background:#eef2ff;
	color:#4338ca;
	border-radius:30px;
	font-size:.75rem;
	font-weight:500;
}

.section-title{
	font-size:.9rem;
	font-weight:600;
	color:#334155;
	margin-bottom:10px;
}

.module-card{
	border-radius:10px;
	transition:.25s;
}

.module-card:hover{
	transform:translateY(-2px);
	box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.module-title{
	font-size:.95rem;
	font-weight:600;
	color:#1e293b;
}

.module-description{
	font-size:.85rem;
	color:#64748b;
	margin-top:3px;
}

.image-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:8px;
}

.image-grid img{
	width:100%;
	height:80px;
	object-fit:cover;
	border-radius:8px;
	transition:.25s;
}

.image-grid img:hover{
	transform:scale(1.05);
}

.more-images{
	height:80px;
	border-radius:8px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#0f172a;
	color:white;
	font-weight:600;
	font-size:1rem;
}

.img-skeleton{
	height:80px;
	border-radius:8px;
	background:linear-gradient(90deg,#eee,#f6f6f6,#eee);
	background-size:200%;
	animation:skeleton 1.2s infinite;
}

@keyframes fadeIn{
	from{opacity:0;transform:translateY(10px)}
	to{opacity:1;transform:translateY(0)}
}

@keyframes skeleton{
	0%{background-position:200% 0}
	100%{background-position:-200% 0}
}

.course-header{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	margin-bottom:10px;
}

.course-actions{
	display:flex;
	gap:10px;
}

.course-cta{
	padding:8px 16px;
	font-size:.9rem;
	border-radius:8px;
}



.course-kpi{
	display:flex;
	gap:14px;
	margin:16px 0 12px 0;
	flex-wrap:wrap;
}

.kpi-card{

	background:linear-gradient(145deg,#f8fafc,#eef2ff);
	border-radius:14px;
	padding:10px 16px;

	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;

	min-width:120px;

	box-shadow:
	0 6px 14px rgba(0,0,0,0.05),
	inset 0 1px 0 rgba(255,255,255,0.7);

	transition:.25s;

}

.kpi-card:hover{
	transform:translateY(-3px);
	box-shadow:
	0 10px 20px rgba(0,0,0,0.08);
}

.kpi-card i{
	font-size:14px;
	color:#6366f1;
	margin-bottom:4px;
}

.kpi-value{
	font-size:15px;
	font-weight:700;
	color:#1e293b;
	line-height:1.2;
}

.kpi-label{
	font-size:11px;
	color:#64748b;
	text-transform:uppercase;
	letter-spacing:.4px;
}