.fundraiserSkeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: rgb(230, 230, 230);
    }
    100% {
        background-color: rgb(245, 245, 245);
    }
}
.fundraiserSkeleton {
    margin-bottom: -15px;
    border-radius: 8px;
    width: 300px;
    height: 160px;
}

@media (max-width: 767px) {
    .fundraiserSkeleton {
        animation: none;
        margin-top: 0px;
        margin-bottom: 20px;
        margin-right: 0px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        height: max-content;
        width: 100%;
    }

    .fundraiserSkeleton .fundraiserSkeletonValue {
        border-radius: 8px;
        height: 100px;
        width: 100px;
        animation: skeleton-loading 1s linear infinite alternate;
    }

    .dark .fundraiserSkeleton {
        animation: none;
    }
    .dark .fundraiserSkeleton .fundraiserSkeletonValue {
        animation: skeleton-loading-dark 1s linear infinite alternate;
    }
}

/* DARK MODE */
.dark .fundraiserSkeleton {
    animation: skeleton-loading-dark 1s linear infinite alternate;
}

@keyframes skeleton-loading-dark {
    0% {
        background-color: rgba(255, 255, 255, 0.1);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.2);
    }
}
