.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.canceled {
    background: repeating-linear-gradient(
        45deg,
        #f87171,
        #f87171 10px,
        #fca5a5 10px,
        #fca5a5 20px
    );
    color: white;
    animation: slide 2s linear infinite;
}
@keyframes slide {
    0% { background-position: 0 0; }
    100% { background-position: 100% 0%; }
}
@keyframes slideDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(100vh - 100%));
    }
}
.bg-light-green-1 {
    background-color: #d4edda;
}
.bg-light-green-2 {
    background-color: #c3e6cb;
}
