/* #region Content-Table */
.content__table {
  margin: 20px 0;
  padding: 20px;
  box-shadow: 0px 0px 14px 7px rgba(102, 89, 188, 0.04), 0px 0px 9px -5px rgba(102, 89, 188, 0.6);
  border-radius: 20px;
  overflow: auto;
}
table {
  /* display: grid; */
  text-align: left;
  width: 100%;
}
.content__table th{
  font-weight: 400;
}
thead tr{
  padding: 0 20px;
}
tbody{
  display: grid;
  width: 100%;
  margin-top: 15px;
}
tr{
  display: grid;
  width: 100%;
  padding: 20px;
  grid-template-columns: repeat(var(--countCol), minmax(200px, 1fr));
  border-radius: 20px;
  transition: all 0.2s;
}
tbody tr:hover{
  cursor: pointer;
}
td{
  display: flex;
  gap: 15px;
}
input[type='radio']{
  position: absolute;
  left: -999999999px;
}
td img{
  /* box-shadow: 2px 2px 0px 0px #F6F4FF; */
}
/* #endregion */
#table-lessons tbody{
  row-gap: 10px;
}
#table-lessons tbody tr{
  background: #FFECE7;
  padding: 28px 20px;
}
#table-lessons .completed{
  background: #ECF6FF;
}
@media (max-width: 1220px) {
  #table-lessons tr{
    padding: 20px !important;
    background: #ffff !important;
    box-shadow: 0px 0px 9px -5px rgba(102, 89, 188, 0.60), 0px 0px 14px 7px rgba(102, 89, 188, 0.04);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    color: #6659BC;
  }
  #table-lessons tr p{
    display: none;
  }
  #table-lessons tr td:nth-child(1){
    order: 1;
  }
  #table-lessons tr td:nth-child(2){
    order: 2;
    font-weight: 700;
  }
  #table-lessons tr td:nth-child(3){
    order: 3;
    font-weight: 600;
  }
  #table-lessons tr td:nth-child(4){
    order: 4;
    width: 100%;
    padding: 15px 30px;
    justify-content: center;
    border-radius: 20px;
    font-weight: 700;
    color: #ffff;
    background: #FB7B9D;
    box-shadow: 7px 9px 19px 3px rgba(229, 96, 131, 0.20);
  }
  #table-lessons tr td:nth-child(5){
    order: 0;
    align-self: center;
  }
}