/* 
    TABLE
*/
.tableThreeCol{
    margin: 20px 0;
}
.tableThreeCol .tableHeader{
    border: 1px solid rgb(var(--gray-color), 1);
    background-color: rgb(var(--main-color), 1);
    color: rgb(var(--white-color), 1);
}
.tableThreeCol .tableElement{
    border: 1px solid rgb(var(--gray-color), 1);
}
.tableThreeCol .tableHeader,
.tableThreeCol .tableElement{
    padding: 10px 15px;
    font-size: 14px;
    align-items: center;
    display: flex;
}
.tableThreeCol .text-center{
    text-align: center;
    justify-content: center;
}
@media screen and (max-width: 767px){
    .tableThreeCol .tableHeader{
        font-size: 12px;
        padding: 5px;
    }
}
/* 
    FILE/DOCUMENT
*/
.oneFileBlock{
    display: flex;
    background-color: rgb(var(--main-color), 1);
    border-radius: 5px;
}
.oneFileBlock .description{
    color: rgb(var(--white-color), 1);
}
.oneFileBlock .fileDocument{
    border-left: 1px solid rgb(var(--white-color), 1);
    color: rgb(var(--white-color), 1);
    font-size: 14px;
    padding-left: 60px;
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}
@media screen and (max-width: 767px){
    .oneFileBlock{
        flex-direction: column;
    }
    .oneFileBlock .fileDocument{
        border-left: none;
        border-top: 1px solid rgb(var(--white-color), 1);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}