/* CSS Document */
.popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.popup.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.popup.hide {
    transform: translateY(50px);
    opacity: 0;
}

.popup-content {
    display: flex;
    align-items: center;
}

.popup img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
