﻿.app {
    display: flex;
    flex-direction: column;
}

#app__files {
    overflow-y: auto;
    max-height: 300px;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.app__file {
    display: flex;
    align-items: center;
    marign-bottom: 1rem;
}

    .app__file img {
        object-fit: contain;
    }

.app__file__content {
    margin-left: 2rem;
    display: block;
    width: 100%;
}

/*.app__file__content */ .file__content {
    display: flex;
    align-items: center;
}

.app__file__content .file__title {
    font-size: 12pt;
    color: #6e6e6e;
    font-weight: 400;
    max-width: 300px;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.app__file__content .file__percent {
    margin-left: auto;
    color: #db9421;
    font-size: 11pt;
}

.app__file__content .file__remove {
    margin-left: auto;
    color: #ff0000;
    font-size: 11pt;
    cursor: pointer
}

.app__file__content .file__progress {
    width: 100%;
    height: 4px;
    background-color: #00000020;
    border-radius: 9999px;
    overflow: hidden;
}

    .app__file__content .file__progress span {
        display: block;
        background-color: #808080;
        width: 0;
        height: 100%;
        transition: all 300ms ease;
    }

.app input {
    display: none
}


.d-none {
    display: none;
}

.file__remove {
    cursor: pointer;
}