

/*-- Список модулей --*/

.stream-table {
    margin-left: 0;
}

.modulelist .stream-table tr {
    display: block;
    background: #FFFFFF;
    box-shadow: 0px 4px 32px 0px rgba(52, 56, 85, 0.10);
    border-radius: 0px;
    margin-bottom: 24px;
    min-height: 168px;
    transition: all .3s;
}

.dip .modulelist .stream-table tr:hover {
    background: #D9E0FE!important;
   }

.tema .modulelist .stream-table tr:hover {
    background: #E7D3F9!important;
   }

.modulelist .stream-table tr:hover td {
    background: none !important;
}

.modulelist .stream-table tr td {
    display: block;
    width: 100%;
    min-height: 168px;
    padding: 25px 30px!important;
    position: relative;
    transition: all .3s;
}

.modulelist .stream-table tr a {
  display: grid!important;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0px 15px;
  grid-auto-flow: row;
  grid-template-areas:
    "image title "
    "image descr";
}

.modulelist .stream-table tr .stream-img { 
  grid-area: image; 
  width: 120px;
}

.modulelist .stream-table tr .stream-title { 
  grid-area: title; 
}

.modulelist .stream-table tr a span {
    font-family: 'Averta CY',sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px !important;
    line-height: 26px;
    color: #343855;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 184px;
    right: 30px;
}
.modulelist.modulelist_2 .stream-table tr a span {
    top: none;
    transform: none;
    }

.modulelist .stream-table tr a > div:last-child { 
  	grid-area: descr; 
  	display: none;
}

.modulelist.modulelist_2 .stream-table tr a > div:last-child { 
  	grid-area: descr; 
  	display: block!important;
    font-family: 'Averta CY',sans-serif;
    font-size: 14px !important;
    margin-top: 40px;
    margin-left: 20px;
}

@media (max-width:600px) {
   
 .modulelist .stream-table tr a span {
    font-size: 22px !important;
    line-height: 24px;
    left: 164px;
   }
.modulelist .stream-table tr .stream-img {
    width: 110px;
}   
}
@media (max-width:500px) {
.modulelist .stream-table tr a span {
    font-size: 20px !important;
    line-height: 22px;
    }
}
@media (max-width:480px) {
.modulelist .stream-table tr a span {
    font-size: 18px !important;
    line-height: 20px;
    }
}
@media (max-width:425px) {
   .modulelist .stream-table tr td {
       padding: 50px 20px!important;
    }
    
 .modulelist .stream-table tr a span {
    left: 110px;
    right: 20px;
}
 .modulelist .stream-table tr .stream-img {
    width: 70px;
    }     
}

@media (max-width:375px) {
  .modulelist .stream-table tr a span {
    font-size: 16px !important;
    line-height: 18px;
    right: 10px;
}  
}



