/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#dismiss_close,
#dismiss_busy {
    display: inline-block;
    width: 20px;
    height: 20px;
}

#dismiss_busy {
    animation: spin 1s linear infinite;
}
