/* modules/wb_giftbox/views/css/front.css */

.wb-giftbox-badge {
    position: absolute;
    top: -5px;
    right: -5px;
}

.wb-giftbox-img {
    border-radius: 4px;
}

.giftbox-success-alert {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
