﻿.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.flatpicker-date-input {
    font-size: 1.5rem !important;
    color: #FFF !important;
    background: steelblue !important;
}

.count-to:after {
    display: none;
}

.color-info {
    color: #5578eb !important;
}
.color-primary {
    color: #5867dd !important;
}
.color-brand {
    color: #5d78ff !important;
}
.color-dark {
    color: #282a3c !important;
}
.color-warning {
    color: #ffb822 !important;
}
.color-danger {
    color: #fd397a !important;
}
.color-success {
    color: #0abb87 !important;
}

.bg-info {
    background-color: rgba(85, 120, 235, 0.1) !important;
}

.bg-primary {
    background-color: rgba(88, 103, 221, 0.1) !important;
}

.bg-brand {
    background-color: rgba(93, 120, 255, 0.1) !important;
}

.bg-dark {
    background-color: rgba(40, 42, 60, 0.1) !important;
}

.bg-warning {
    background-color: rgba(255, 184, 34, 0.1) !important;
}

.bg-danger {
    background-color: rgba(253, 57, 122, 0.1) !important;
}

.bg-success {
    background-color: rgba(10, 187, 135, 0.1) !important;
}
