.v-charts-component-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsla(0, 0%, 100%, .9)
}

.v-charts-mask-status {
    -webkit-filter: blur(1px);
    filter: blur(1px)
}

.v-charts-component-loading .circular {
    width: 42px;
    height: 42px;
    -webkit-animation: a 2s linear infinite;
    animation: a 2s linear infinite
}

.v-charts-component-loading .path {
    -webkit-animation: b 1.5s ease-in-out infinite;
    animation: b 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 2;
    stroke: #20a0ff;
    stroke-linecap: round
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes b {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px
    }
}

@keyframes b {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px
    }
}

.v-charts-data-empty {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsla(0, 0%, 100%, .9);
    color: #888;
    font-size: 14px
}

#message-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

#message-container .message {
    background: #fff;
    margin: 10px 0;
    padding: 0 10px;
    height: 40px;
    box-shadow: 0 0 10px 0 #eee;
    font-size: 14px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: height .2s ease-in-out, margin .2s ease-in-out
}

#message-container .message .text {
    color: #333;
    padding: 0 20px 0 5px
}

#message-container .message .close {
    cursor: pointer;
    color: #999
}

#message-container .message .icon-info {
    color: #0482f8
}

#message-container .message .icon-error {
    color: #f83504
}

#message-container .message .icon-success {
    color: #06a35a
}

#message-container .message .icon-warning {
    color: #ceca07
}

#message-container .message .icon-loading {
    color: #0482f8
}

@keyframes message-move-in {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

#message-container .message.move-in {
    animation: message-move-in .3s ease-in-out
}

@keyframes message-move-out {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        transform: translateY(-100%)
    }
}

#message-container .message.move-out {
    animation: message-move-out .3s ease-in-out;
    animation-fill-mode: forwards
}