.card_loader {
    padding: 12px;
    margin-bottom: 10px;
}

.card__inner {
    animation: shimmer 1s linear infinite forwards;
    background: #f6f7f9 linear-gradient(to right, #f6f7f9 0%, #e9ebee 20%, #f6f7f9 40%, #f6f7f9 100%) no-repeat;
    background-size: 800px 104px;
    height: 104px;
    position: relative;
}

.card__inner div {
    background: #fff;
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.card__inner div:nth-child(1) {
    height: 40px;
    left: 40px;
    right: auto;
    top: 0;
    width: 8px;
}

.card__inner div:nth-child(2) {
    height: 8px;
    left: 48px;
    top: 0;
}

.card__inner div:nth-child(3) {
    left: 136px;
    top: 8px;
}

.card__inner div:nth-child(4) {
    height: 12px;
    left: 48px;
    top: 14px;
}

.card__inner div:nth-child(5) {
    left: 100px;
    top: 26px;
}

.card__inner div:nth-child(6) {
    height: 10px;
    left: 48px;
    top: 32px;
}

.card__inner div:nth-child(7) {
    height: 20px;
    top: 40px;
}

.card__inner div:nth-child(8) {
    left: 410px;
    top: 60px;
}

.card__inner div:nth-child(9) {
    height: 13px;
    top: 66px;
}

.card__inner div:nth-child(10) {
    left: 440px;
    top: 79px;
}

.card__inner div:nth-child(11) {
    height: 13px;
    top: 85px;
}

.card__inner div:nth-child(12) {
    left: 178px;
    top: 98px;
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}