/**
 * Chartsy Frontend CSS
 */
.chartsy-card-heading {
    margin: 0 0 10px 0;
}

.chartsy-chart {
    min-height: 300px;
    position: relative;
}

.chartsy-loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    width: 100%;
}

.chartsy-loader {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-bottom-color: #3b82f6;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}