.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;
    }
}
