.card-design {
    /* padding: 12px;
    max-width: 476px;
    height: 300px;
    margin: 4rem auto;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #ffffff;
    margin-bottom: 16px; */
    opacity: .3;
    margin-top: -40px;
}

.header .message-content {
    width: 100%;
    margin: 15px
}

.header .skeleton-items {
    width: 100%;
}

.card-design .header {
    display: flex;
    align-items: center;
}

.header .img {
    height: 40px;
    width: 40px;
    background: #d3d3d3;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.message-content span,
.skeleton-items span {
    display: block;
    background: #d3d3d3;
    overflow: hidden;
    position: relative;
}

.message-content .content-1 {
    height: 16px;
}
.message-content .content-2 {
    height: 16px;
    margin-top: 6px;
}
.card-design .sub-messsage-content {
    /* margin: 25px 0; */
}
.sub-messsage-content .line {
    background: #d3d3d3;
    height: 13px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.sub-messsage-content .line-1 {
    width: 107px;
    height: 16px;
    margin-left: 54px;
}
.sub-messsage-content .line-2 {
    width: 159px;
    height: 19px;
    margin-left: 54px;
}

.header .img::before,
.message-content span::before,
.skeleton-items span::before,
.sub-messsage-content .line::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to right,
        #d3d3d3 5%,
        #858585 20%,
        #d3d3d3 40%,
        #d3d3d3 100%
    );
    background-repeat: no-repeat;
    background-size: 1000px 400px;
    animation: shimmer 2s linear infinite;
}

.header .img::before {
    background-size: 650px 600px;
}
.details span::before {
    animation-delay: 0s;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}


/* Dashboard */

.skeleton-items {
    width: 100%;
}

.skeleton-items span {
    display: block;
    background: #d3d3d3;
    overflow: hidden;
    position: relative;
}

.skeleton-items .content-1 {
    height: 50px;
    border-radius: 10px;
    opacity: .1;
    margin-bottom: 8px;
}

@media screen and (max-width:768px) {
    .skeleton-items .content-1 {
        height: 50px;
    }
    #categories .skeleton-items .content-1 {
        height: 50px;
    }
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(3px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation-duration: .3s;
    animation-fill-mode: both;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}