.lesson-summary-grid {
	width: 100%;
    display: flex;
	flex-direction: column;
}
.category-container{
	width:100%;
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27px, 1fr));
    gap: 0px;
    padding-top: 15px;
	justify-content: center;
}

.lesson {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
    height: 27px;
    background-color: #f0f0f0;
    
    border-radius: 2px;
    text-align: center;
    font-size: 8px;
	line-height:12px;
	font-weight: bold;
	
}

.lesson a:link {
  text-decoration: none;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 100%;
}

.lesson.lesson-finished {
	color:rgb(153, 224, 123);
    /*background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 20%, rgb(153, 224, 123) 100%);*/
	background: rgba(153, 224, 123, 1);
	box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;   
}

.lesson.lesson-inprogress {
    color:rgb(252, 213, 63);
    /*background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 20%, rgb(252, 213, 63) 100%);*/
	background: rgba(252, 213, 63, 1);
	box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;   
}

.lesson.lesson-notstarted {
    color:#EDEDED;
    /*background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 20%, rgb(115, 114, 111) 100%);*/
	background: #EDEDED; /*rgba(243, 133, 135, 1);*/
	box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;   
}
