.dm-lh-content.dm-lh-open {
    position: fixed;
    visibility: visible;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);

    width: 100svw;
    height: 100svh;

    padding: 5%;
}

.dm-lh-container {
    position: relative;
    break-inside: avoid;

    padding: 1rem 4vw;
}
.dm-lh-content {
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;

    top: 0;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}
.dm-lh-content img {
    border: #fff 3px solid;
    box-shadow: #333 0 0 100px 10px;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}
.dm-lh-content > div {
    max-width: 640px;
    max-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 100%;
    width: 100%;
}
.dm-lh-content > div::after {
    content: "X";
    color: #fff;
    font-size: 2.5rem;

    position: absolute;
    top: 1rem;
    right: 1rem;
}
.dm-lh-card img {
    max-width: 100%;
    max-height: 100%;
}
/* Tablet */
@media (max-width: 1279px) and 
(min-width: 801px) {
    .dm-lh-container {
        padding: 1rem 2vw;
    }
}

/* Mobile */
@media (max-width: 799px) {
    .dm-lh-container {
        padding: 1rem;
    }
}