/*Модули*/
.stream-table {
    margin: 0 auto !important;
    counter-reset: list 0;
}

.stream-table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    gap: 20px;
}

.stream-table tbody tr {
    position: relative;
    flex: 0 0 calc(33.33% - 20px);
    min-height: 150px;
    border-radius: 16px;
    background: var(--color-3);
    transition: 0.3s;
}

.stream-table tbody tr:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 15px 0 rgba(28, 39, 49, 0.03);
    transition: 0.3s;
}

.stream-table tr td:hover {
    background: none !important;
}

.stream-table tr a {
    height: 100%;
    width: 100%;
    z-index: 2;
    position: relative;
    display: flex !important;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 16px;
    padding: 20px !important;
}

.stream-table tbody tr td {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    z-index: 9;
    opacity: 1!important;
}

/*Заголовок модуля*/
.stream-table tbody tr .stream-title {
    display: inline-block;
    color: var(--color-4);
    font-family: var(--font-2);
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 110% !important;
    order: 3;
}

.stream-table tbody tr div:not(.lesson-num) {
    order: 1;
    font-family: var(--font-5);
    font-size: 14px !important;
    font-weight: 300;
    color: var(--color-4);
}

.stream-table tbody tr .lesson-num {
    font-family: var(--font-5);
    font-size: 14px !important;
    background: var(--color-6);
    max-width: max-content;
    padding: 7px 8px;
    border-radius: 6px;
    order: 3!important;
}

@media(max-width: 1200px){
    .stream-table tbody tr {
        flex: 0 0 calc(50% - 10px);
    }
}

@media(max-width: 768px){
    .stream-table tbody tr {
        flex: 0 0 calc(100% - 10px);
    }
}