@-webkit-keyframes stock-chart-skeleton-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}
.stock-chart-skeleton {
    height: 1420px;
    width: 100%;
    background: rgba(0, 0, 0, 0.11);
    border-radius: 4px;
    animation: stock-chart-skeleton-pulse 1.5s ease-in-out 0.5s infinite;
}