.tabSortAreaGallery {
    display:grid;
    grid-gap:3px;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.tabSortAreaGallery .tabSortElement {
    display:block;
    position:relative;
    float:left;
    color:#AAA;
}
.tabSortAreaGallery .tabSortElement img {
    width:100%;
}
.tabSortAreaGallery .tabSortElement a {
    top:0;
    right:0;
    position:absolute;
    background-color:black;
    border-left:white;
    border-bottom:white;
    color:#AAA;
    display:flex;
    align-items:center;
    justify-content:center;
    border:solid 1px white;
    width:24px;
    height:22px;
    font-size:12px;
}
.tabSortAreaGallery .tabSortElement a:hover {
    color:#FFF;
    background-color:#444;
}
.tabSortAreaGallery .tabSortElement .trash {
    right:0;
}
.tabSortAreaGallery .tabSortElement .download {
    right:23px;
}
@media screen and (max-width:767px){
    .tabSortAreaGallery {
        grid-template-columns:1fr 1fr;
    }
}


.tabSortAreaFiles .tabSortElement .preview {
    width:80px;
    min-width:80px;
}
.tabSortAreaFiles .tabSortElement .icon {
    border:dotted 1px white;
    background-color:rgba(128,128,128,0.3);
    width:80px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
}

.tabSortAreaFiles .tabSortElement .title-desktop,
.tabSortAreaFiles .tabSortElement .title-mobile {
    padding-left:10px;
    align-items:center;
    max-width:230px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.tabSortAreaFiles .tabSortElement .title-mobile {
    max-width:150px;
}
.tabSortAreaFiles .tabSortElement .empty {
    width:100%;
}
.tabSortAreaFiles .tabSortElement .addImage {
    min-width:45px;
    text-align:center;
}
.tabSortAreaFiles .tabSortElement .download {
    min-width:25px;
    text-align:center;
}
.tabSortAreaFiles .tabSortElement .size {
    min-width:65px;
    font-size:12px;
    text-align:right;
    padding-right:5px;
}
.tabSortAreaFiles .tabSortElement .trash {
    min-width:25px;
    text-align:center;
}
.tabSortAreaFiles .tabSortElement .ext {
    font-size:12px;
    min-width:27px;
    text-align:center;
}
.tabSortAreaFiles .tabSortElement .data {
    min-width:90px;
    text-align:center;
}
.tabSortAreaFiles .title .name {
    font-size:14px;
    line-height:15px;
    max-width:220px;
    text-overflow:ellipsis;
    overflow:hidden;
    height:1.2em;
    white-space:nowrap;
}
.tabSortAreaFiles .title .path {
    font-size:12px;
    line-height:13px;
}
