.dropzone{
    background-color: rgba(248,249,250)!important;
    padding-bottom: 1rem!important;
    padding-top: 1rem!important;
    border-radius: 0.25rem!important;
    border: 1px solid #dee2e6!important;
    margin-top: 1.5rem!important;
    margin-bottom: 1.5rem!important;
}

.myDropzone {
    position: relative;
    border: 3px dashed rgb(99, 99, 99);
    border-radius: 10px;
    color: rgb(124, 124, 124);
    font: bold 18px arial;
    height: 100px;
    margin: 30px auto;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
    padding-top: 3px;
    padding-left: 3px;
    vertical-align: middle;
}

.myDropzone.hover {
    border: 10px solid rgb(66, 66, 66);
    color: rgb(66, 66, 66);
}

.myDropzone #inputDropzoneText{
    position: absolute;
    right: 0;
    left: 0;
    top: 30%;
}

.myDropzone #img{
    position: relative;
    width: fit-content;
    left: 3;
    z-index: 1;
}

.myDropzone #textFichier{
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.myDropzone.dropped {
    background: rgb(199, 199, 199);
    border: 3px dashed #444;
}

.myDropzone img {
    border-radius: 10px;
    vertical-align: middle;
    max-height: 90px;
}

.myDropzone [type="file"] {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.removeFile {
    color: rgb(226, 38, 38);
    position: absolute;
    top:0%;
    right: 0%;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.4);
    display: none;
    cursor: pointer;
}

.addFromFile{
    z-index: 10;
}