.custum-file-upload {

    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cacaca;
    background-color: rgba(255, 255, 255, 1);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
}

.iconFile {
    width: 60px;
    height: 60px;
    background-image: url(../../img/iconos/upload.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

.custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custum-file-upload .text span {
    font-weight: 400;
    color: rgba(75, 85, 99, 1);
}

.custum-file-upload input {
    display: none;
}

.containerStyleGral {

    border: 1px solid var(--toneBoxShadow);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    box-shadow: 1px 1px 10px var(--toneBoxShadow);

}

.headerContainerGral {

    width: 100%;
    background-color: var(--toneGrey);
    border-radius: 10px 0px 0px;
    padding: 10px;
}

.bodyContainerGral {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    padding: 10px;
    gap: 5px 15px;

}

.contentMaxHeigth {

    max-height: 480px;
    overflow-y: auto;
}