/* Final file upload list */

.gif-color-filter {
    filter: hue-rotate(145deg) saturate(1.5) brightness(1.2);
}

.final-file-list,
#list-info {
    margin-top: 15px !important;
}

.file-item {
    padding: 10px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
}

.file-item button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid rgba(251, 199, 2, 1);
    cursor: pointer;
    color: white;
    font-size: 10px;
}

.file-item img {
    width: 100px;
    height: 80px;
    margin-left: 5px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 2px solid rgba(251, 199, 2, 1);
}

.pointer {
    cursor: pointer;
}

@media (max-width: 450px) {

    .file-item label {
        font-size: 12px;
    }
}

@keyframes scalepulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.scalepulse {
    display: inline-block;
    animation: scalepulse 1.5s infinite ease-in-out;
}