.gallery_reorder{ 
    width:100%; 
}
.gallery_reorder ul{ 
    margin:0; 
    padding:0; 
    list-style-type:none;
}
.gallery_reorder ul li{
    padding:7px; 
    border:2px solid #ccc; 
    display: inline-block;
    margin:10px 7px; 
    background:none; 
    width:auto; 
    height:auto;
    position: relative;
}
.gallery_reorder ul li .gallery_img_delete{
    position: absolute;
    top: 3px;
    right: 3px;
    display: none;
}
.gallery_reorder ul li:hover .gallery_img_delete{
    display: block;
}
.gallery_reorder ul li a .gallery_img{
    width: 150px;
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
}
.pointer{
    cursor: pointer;
}

table tr td div{ 
    max-height: 40px;
    overflow: hidden;
    transition: max-height 0.15s ease-out;
    scroll-behavior: smooth;
}

table tr td:hover div{ 
    max-height: 300px;
    overflow-y: auto;
    transition: max-height 0.25s ease-in;
}
