.loader{
    background: #fff;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
}

.iconoContrasenia{
    border: 0px;
    position: absolute;
    left: 90%;
    top: 25%;
    z-index: 100;
    width: 10%;
    font-size: 20px;
    background-color: transparent;
    cursor: pointer;
}

.borderIconos{
    filter: drop-shadow(0 0 1px black);
}

.item {
    /*border: 3px dashed #da0b0b;*/
}

.dropzone {
    /*
    background: #ddd;
    border: 3px dashed #aaa !important;
    */
    transition: background 0.3s;
}

.dropzone.over {
    /*
    background: #a3d2ca;
    */
    border: 3px dashed #a3d2ca !important;
}

.img-wrapper {
    position: relative;
    display: inline-block;
}

.img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.img-wrapper::after {
    content: "x";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.4);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-wrapper:hover::after {
    opacity: 1;
}