<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(../style.css);
.gala-con {
    margin-top: 2%
}

.pop-wrapper {
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .6);
    transition: opacity ease-in-out .4s;
    display: flex;
    opacity: 0;
    pointer-events: none;
}

.pop-wrapper.show {
    opacity: 1;
    pointer-events: all;
}

.pop-image-container {
    margin-top: 5rem;
    transition: all ease-in-out .4s;
}

.pop-wrapper.show .pop-image-container {
    animation: popdown .4s ease-in-out forwards;
}

.img-info-row {
    background: #002B36;
}

.btn-pop-close {
    font-size: 24px;
    border-radius: 0;
    background-color: brown;
}

.btn-pop-close:hover {
    background-color: rgba(165, 42, 42, 0.75);
}

.pop-img-title {
    font-size: 16px;
    word-wrap: break-word;
    word-break: break-all;
}

@keyframes popdown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.pop-img-box {
    max-height: 560px;
}

.pop-img-box img {
    max-height: 100%;
}

.img-con {
    position: relative;
    transition: all ease-in-out .4s;
    width: 100%;
    height: auto;
}

.msg-txt {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out .4s
}

.img-con img {
    transition: all ease-in-out .4s;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.img-con:hover&gt;img {
    opacity: .4
}

.img-con:hover&gt;.msg-txt {
    opacity: 1;
    pointer-events: all;
    color: #000;
    z-index: 100
}

@media(min-width:986px) {
    .custom-pop-box {
        width: 60%;
    }
}</pre></body></html>