

/* Увеличить шрифт текста в раскрывающемся блоке */

/*div.builder-item.part-textHeaderExpand div.lt-text-header-expand div.text.f-text {
font-size: 1.2em;
}*/

/*Стили страницы тренингов*/
.stream-table
{
    --min-width: 100%;  /*ширина*/
    --min-height: 300px; /*высота*/
    --white: #fff; /*цвет*/
}

.stream-table {
    padding-right: 0 !important;
    margin-left: 0 !important;
}

.stream-table tbody {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.stream-table tbody tr {
    width:var(--min-width);
    min-height: var(--height);
    margin: 0 10px 10px 0 !important;
}

.stream-table tbody tr:last-child {
    margin-bottom: 0
}

.stream-table tr td {
	position: relative;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 0 !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: .3s ease-in-out
}

.stream-table tr a {
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
    display: flex !important;
    flex-direction: column;
}

a:focus {
    outline: none;
    outline-offset: unset;
}

a:focus, a:hover {
    text-decoration: none;
}

.stream-table tr a p {
    overflow: hidden;
}

.stream-table tr a div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.stream-table tbody tr:hover td {
    background-color: var(--blue) !important;
    color: #fff !important;
    border-radius: 10px;
    transition: .3s ease-in-out;
    transform: scale(1.03);
    z-index: 10
}

.stream-table tr td:hover {
    background-color: inherit !important;
}

.stream-table .stream-title {
    font-size: 1.2em !important;
    font-weight: 700;
    letter-spacing: normal;
    /*color: var(--dark-gray) !important;*/
    margin-bottom: 15px;
    display: block;
    padding: 20px 20px 0;
    transition: .3s ease-in-out
}
.stream-table tbody tr:hover .stream-title,
.stream-table tbody tr:hover div {
    /*color: #fff !important;*/
    transition: .3s ease-in-out
} 

.stream-table tbody tr:hover .stream-title {
    font-size: 1.5em;
    
}

.stream-table tr td a div b {
    margin-bottom: 5px;
    color: var(--dark-gray);
    font-weight: normal;
    transition: .3s ease-in-out
}
.stream-table tr td:hover a div b {
    /*color: #fff;*/
}

/*Завершение стилей тренингов*/

/* ОБЩИЕ настройки списка уроков в тренингах */

/* Анимация уроков */
.lesson-list li:not(.divider) {
    transition: 1s ease-out; /*Переход срабатывает когда убираем курсор мыши*/
}
.lesson-list li:hover:not(.divider) {
    box-shadow: grey 0 8px 25px 0;
    transform: scale(1.04);
    transition: 1s ease; /*какой переход, сколько он длится и к какому свойству применяется*/
}

/*Вид списка уроков*/

.lesson-list {
    background: none !important;
}

.lesson-list li:not(.divider) {
    border-radius: 5px;
    box-shadow: grey 0 1px 7px 0;
}

/* Настройки для недоступных уроков */
.lesson-list li.user-state-not_reached .state-icon-block:before {
    font-family:FontAwesome!important;
    font-size: 1.7em;
    content: "\f023";
    color: #d00;
}

.lesson-list li.user-state-not_reached .info,
.user-state-not_reached .user-state-bg {
    background-color: #f0f0f0 !important;
    background-image: url(https://fs.getcourse.ru/fileservice/file/download/a/627879/sc/239/h/ea62152b64c38b49b48c3412ddbde48f.png) !important;
    background-repeat: repeat !important;
}

/* Тень и анимация изображений-обложек модулей/подтренингов */

.img-shadow {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    /*display: flex;
    flex-direction: column;
    overflow: hidden;*/
    transition: .3s ease-in-out
}

.img-shadow:hover {
    border-radius: 10px !important;
    transition: .3s ease-in-out;
    transform: scale(1.03);
    z-index: 10
}

.img-shadow img {
    border-radius: 10px !important;
}

/*НАСТРОЙКИ в мобильной версии*/
@media (max-width: 767px) {
    /* Рамки для уроков */
    .user-state-need_accomplish .user-state-bg div.info {
        border: 3px solid #d00;
        border-radius: 10px;
    }
    
    .user-state-accomplished .user-state-bg div.info {
        border: 3px solid #27ae60;
        border-radius: 10px;
    }
    
    .user-state-label.is-stop-lesson:not(.has-start-at) {
        font-weight: bold;
        color: #d00;
    }
        
    /*Настройки для недоступных уроков*/
    
    .lesson-list li.user-state-not_reached .info,
    .user-state-not_reached .user-state-bg {
        background-color: #f0f0f0 !important;
        background-image: url(https://fs.getcourse.ru/fileservice/file/download/a/627879/sc/239/h/ea62152b64c38b49b48c3412ddbde48f.png) !important;
        background-repeat: repeat !important;
    }
    .user-state-not_reached .vmiddle:before {
        font-family: FontAwesome!important;
        font-size: 2em!important;
        content: "\f023"!important;
        color: #d00!important;
    }
    
       
}
