/* .stock-table__row--change {
    animation: blick linear 1s;
}
.stock-table__row--change.stock-table__row--positive {
    animation: blick-green linear 1s;
}
.stock-table__row--change.stock-table__row--negative {
    animation: blick-red linear 1s;
} */
.stock-table__name, .stock-table__market_cap, .stock-table__logo{
    position: relative;
}

.stock-table__row:not(.loaded-data) .stock-table__name:before,
.stock-table__row:not(.loaded-data) .stock-table__market_cap:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
    background-image: linear-gradient(90deg, #F2F2F2, #ffffff, #F2F2F2);
    background-size: 50px 100%;
    background-repeat: no-repeat;
    animation: skeleton-animation 1.5s ease-in-out infinite;
    z-index: 4;
    display: block;
    border-radius: 4px;

}
.stock-table__logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
}
.stock-table__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.stock-table__logo img.default-logo:not(.loaded){
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
}
img.replaced-to-empty-logo{
    width: 1.6rem;
    height: 1.6rem;
}
.stock-cards__logo img.default-logo:not(.loaded),
.stock-cards__logo img.replaced-to-empty-logo
{
    width: 1.6rem;
    height: 1.6rem;
}

@keyframes skeleton-animation {
    0% {
        background-position: -50px 0;
    }
    100% {
        background-position: calc(50px + 100%) 0;;
    }
}

@keyframes blick {
    0% {
        background-color: rgba(255, 255, 255, 0);
    }
    0% {
        background-color: rgba(237, 231, 225, 1);
    }
}
@keyframes blick-green {
    0% {
        background-color: rgba(255, 255, 255, 0);
    }
    0% {
        background-color: rgba(5, 128, 107, 0.7);
    }
}
@keyframes blick-red {
    0% {
        background-color: rgba(255, 255, 255, 0);
    }
    0% {
        background-color: rgba(172, 52, 46, 0.7);
    }
}