﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

::selection {
    color: #fff;
    background: #1b6ec2;
}

.wrapper-upload {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    padding: 30px;
}

    .wrapper-upload header {
        color: #1b6ec2;
        font-size: 27px;
        font-weight: 600;
        text-align: center;
    }

    .wrapper-upload .form-upload {
        height: 167px;
        display: flex;
        cursor: pointer;
        margin: 30px 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 5px;
        border: 2px dashed #1b6ec2;
        transition: background-color 0.3s ease;
    }
        .wrapper-upload .form-upload:hover {
            background-color: #C2E2E8;
            border: none;
        }

        .form-upload :where(i, p) {
            color: #1b6ec2;
        }

.form-upload i {
    font-size: 50px;
}

.form-upload p {
    margin-top: 15px;
    font-size: 16px;
}

.container-select-all {
    margin-left: 20px;
}

.uploaded-area .row-upload {
    background: #e9f0ff;
    list-style: none;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .uploaded-area .row-upload i {
        color: #1b6ec2;
        font-size: 30px;
    }

.uploaded-area .details span {
    font-size: 14px;
}

.progress-area .row-upload .content-upload {
    width: 100%;
    margin-left: 15px;
}

.progress-area .details {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    justify-content: space-between;
}

.progress-area .content-upload .progress-bar {
    height: 6px;
    width: 100%;
    margin-bottom: 4px;
    background: #fff;
    border-radius: 30px;
}

.content-upload .progress-bar .progress {
    height: 100%;
    width: 0%;
    background: #1b6ec2;
    border-radius: inherit;
}

.uploaded-area {
    max-height: 232px;
    overflow-y: scroll;
    min-height: 0;
}
    .uploaded-area.onprogress {
        max-height: 150px;
    }

    .uploaded-area::-webkit-scrollbar {
        width: 0px;
    }

    .uploaded-area .row-upload .content-upload {
        display: flex;
        align-items: center;
    }

    .uploaded-area .row-upload .details {
        display: flex;
        margin-left: 15px;
        margin-right: 15px;
        flex-direction: column;
        text-align: left;
    }

        .uploaded-area .row-upload .details .size {
            color: #404040;
            font-size: 11px;
        }

    .uploaded-area i.fa-trash {
        font-size: 16px;
    }

    .uploaded-area i.fa-pen {
        font-size: 16px;
    }

.actions-card-upload {
    display: flex;
    gap: 16px;
}

.container-upload-file{
    margin-bottom: 8px;
}
