.tag.validating,
.tag.decompressing {
    width: 100%;
    background: linear-gradient(-90deg, #999, #eee), #999;
    background-size: 400% 400%;
    animation: gradientAnimation 5s ease infinite;
    color: white;
}

.loading {
    background: linear-gradient(-90deg, #999, #eee), #999;
    background-size: 400% 400%;
    animation: gradientAnimation 5s ease infinite;
    color: white;
    padding: 0.33em;
    border-radius: 0.16em;
}


.tag.invalid {
    background-color: #ff375a;
    color: white;
}

.tag {
    text-transform: uppercase;
    color: white;
}


.tag.valid {
    background-color: rgb(115, 187, 8);
    color: white;
}

.ready {
    background-color: rgb(115, 187, 8);
    color: white;

}

.card-content>p::first-letter {
    text-transform: uppercase;
}

.level-item.invalid {
    color: #ff375a;
}

.level-item.valid {
    color: rgb(115, 187, 8);
}

.filename {

    text-align: center;
    width: 0;
    overflow-wrap: break-word;
    padding: 0 1em;
    line-height: 1;
}

.participant-columns {
    margin-top: 1em;
    font-weight: bold;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
