@charset "utf-8";


.gobal-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    max-width: 600px;
    margin: auto;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from { bottom: -200px; opacity: 0; }
    to { bottom: 0; opacity: 1; }
}