@charset "UTF-8";

.popup-container {
    display: none;
    position: fixed;
    width: 80vw;
    max-width: 320px;
    bottom: 24px;
    right: 24px;
    z-index: 10001;
}

@media (max-width: 768px) {
    .popup-container {
        width: calc(100% / 2.5);
    }
}

.popup-content img {
    width: 100%;
}

.popup-close {
    cursor: pointer;
    position: absolute;
    top: -18px;
    right: -18px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
