.alerts-container {
    position: fixed;
    z-index: 1001;
    right: 1rem;
    bottom: 2rem;
}

.alert--animated {
    transform: translateX(calc(100% + 1rem));
    width: 20rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
}

.alert--animated.show {
    transform: translateX(0rem);
}

.alert.alert--animated:not(.show) {
    display: block !important;
}

