﻿.loading {
    position: relative;
    width: 90%;
    padding: 1rem;
    border-radius: 0.8rem;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
}

.loading__skeleton {
    background-image: linear-gradient( 90deg, #ccc 0px, rgb(229 229 229 / 90%) 40px, #ccc 80px );
    background-size: 300%;
    background-position: 100% 0;
    border-radius: inherit;
    animation: shimmer 1.5s infinite;
}

.loading__title {
    height: 15px;
    margin-bottom: 15px;
}

.loading__description {
    height: 100px;
}

@keyframes shimmer {
    to {
        background-position: -100% 0;
    }
}
