#app {
    margin-top: 80px;
    text-align: center;
    display: block;
}
#gallery_content {
    display: inline-block;
    width: 1200px;
    max-width: 90%;
    text-align: center;
}
#albums {
    padding: 0;
}
#albums li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
#albums li .empty {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#albums li .title {
    position: absolute;
    display: block;
    margin: 0 auto;
    left: 0;
    right: 0;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    font-size: 20px;
    width: max-content;
    height: min-content;
    top: 15px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(179, 179, 179, 0.9);
}
#albums li {
    width: 250px;
    max-width: 100%;
    height: 250px;
    
    display: inline-block;
    vertical-align: top;
    border: 1px solid #aaaaaa;
    margin: 5px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.album_images {
    visibility: hidden;
    display: none;
}
.viewer-canvas {
    transform: translate3d();
}
.viewer-canvas img {
    will-change: transform;
}
#back_to_albums {
    padding: 5px;
    
}
#back_to_albums a {
    text-decoration: none;
    color: rgb(54, 54, 54);
}
#album_images li:hover .delete_image{
    opacity: 1;
}
#album_images li:hover .delete_image i {
    transform: scale(1);
}
.delete_image {
    border: none;
    background-color: rgba(0, 0, 0, 0.5) !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    outline: none;
    opacity: 0;
    transition: all .5s;
    transition-timing-function: ease-in-out;
}
.delete_image i {
    font-size: 50px;
    color: white;
    opacity: 0.78;
    transform: scale(0.7);
    transition: all .4s;
    transition-timing-function: ease-in-out;
}
@media screen and (max-width: 420px) {
    #albums {
        padding: 0 18px;
        padding: 0 10vw;
        box-sizing: border-box;
    }
    #albums li {
        width: 100%;
        height: unset;
        margin: 9px 0;
        margin: 5vw 0;
    }
    #albums canvas {
        width: 100%;
    }
}