.SkeletonSymbol {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox!important;
    display: flex !important;
}

.SkeletonSymbol .SK_A {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }
    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

.SkeletonSymbol .SkeletonBox {
    width: 100%;
    margin: 0.5rem;
}

.SkeletonSymbol .SKB {
    width: 100%;
    height: 9rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.SkeletonSymbol .SKT {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.SkeletonSymbol .SBB {
    width: 75%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}