#imp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

#imp-lightbox.visible {
    opacity: 1;
    visibility: visible;
}

#imp-lightbox img {
    max-width: 1240px;
    max-height: 90%;
    display: block;
}

.imp-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.imp-lightbox-close-inner {
    width: 22px;
    height: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imp-lightbox-close-inner::after,
.imp-lightbox-close-inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 13px;
    position: absolute;
}

.imp-lightbox-close-inner::after {
    rotate: 45deg;
}

.imp-lightbox-close-inner::before {
    rotate: -45deg;
}