<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.image-to-popup {
    cursor: pointer;
}

.image-modal-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    animation: 500ms fadeIn;
    display: none;
    max-height: 100vh;
    z-index: 1000;
}

.image-modal-popup .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    height: 100vh;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.image-modal-popup span {
    position: absolute;
    top: -1rem;
    right: 1rem;
    font-size: 4rem;
    height: 6.3rem;
    color: white;
    cursor: pointer;
    transition: all .5s;
    transform: translate(0);
}

.image-modal-popup span:hover {
    transform: rotateZ(180deg) translate(0);
}

.image-modal-popup img {
    margin: 2rem;
    margin-top: 4rem;
    max-height: 85vh;
}</pre></body></html>