

/* Определение переменных цветов */
body {
    --file-background-color: #ffffff; /* Цвет фона внутри квадрата */
    --file-border-color: rgba(0, 0, 0, 0.05); /* Цвет обводки */
    --file-shadow-color: rgba(0, 61, 166, 0.05); /* Тень квадрата */
    --file-icon-bg-color: linear-gradient(90deg, #333333 0%, #999999 50.43%, #333333 100%); /* Цвет иконки сверху справа */
    --file-text-color: #1F242C; /* Цвет текста (МБ) */
    --file-opacity: 1.00; /* Прозрачность текста (МБ)*/
    --file-hover-text-color: #e9b76e; /* Цвет текста при наведении */
    --file-svg-content: url(https://fs.getcourse.ru/fileservice/file/download/a/146641/sc/77/h/17056490762fdf25143ddb31b42b10ae.svg); /* Ссылка на  иконку в центре */

}

/* Файлы */
.lt-lesson-files .lt-block-wrapper {
    padding-bottom: 0;
}

.lt-lesson-files .files-row .col-md-12 {
    padding: 0;
}

.lt-lesson-files .table {
    margin-bottom: 0 !important;
}

.lt-lesson-files .table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.lt-lesson-files .table tbody tr {
    flex: 1 1 30%;
    max-width: calc(100% / 3 - 15px);
    
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    padding: 30px 0;
    
    text-align: center;
    background: var(--file-background-color);
    border: 1px solid var(--file-border-color);
    box-shadow: 0px 2px 16px var(--file-shadow-color);
    border-radius: 15px;

    overflow: hidden;
    transition: all .3s;
}

.lt-lesson-files .table tbody tr:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0px 7px 16px var(--file-shadow-color);
}

.lt-lesson-files .table tbody tr::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    
    width: 42px;
    height: 42px;
    background: url(https://fs.getcourse.ru/fileservice/file/download/a/637822/sc/63/h/13f89a35f962800f661c73fd945f052c.svg) no-repeat center,
        var(--file-icon-bg-color);
    
    border-radius: 0 0 0 15px;
}

.lt-lesson-files .table tbody tr td {
    flex: 1 1 100%;
    border: none;
}

.lt-lesson-files .table tbody tr td:nth-child(1) > div {
    position: relative;
    margin: 0 auto;
}

.lt-lesson-files .table tbody tr td:nth-child(1) > div::before {
    content: var(--file-svg-content);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lt-lesson-files .table tbody tr td:nth-child(1) > div img {
    opacity: 0;
}

.lt-lesson-files .table tbody tr td:nth-child(2) {
    padding: 0 !important;
    
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--file-text-color);
    
    opacity: var(--file-opacity); /* Использование переменной для прозрачности */
}

.lt-lesson-files .table tbody tr td:nth-child(3) > div a {
    font-family: var(--main-font);
    font-size: 15px;
    line-height: 120%;
    color: var(--file-text-color);
    text-decoration: none !important;
}

.lt-lesson-files .table tbody tr:hover td:nth-child(3) > div a {
    color: var(--file-hover-text-color);
}

@media (max-width: 700px) {
    .lt-lesson-files .table tbody tr {
        flex: 1 1 100%;
        max-width: 400px;
    }
}

