﻿@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.dx-dashboard-notificator.dx-dashboard-success {
    animation-name: fadeOut;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

.dx-dashboard-item-container {
    border: 1px solid #999999;
}