/*!
 * Onpaste JS:   v1.0.0
 * Version Date: 08/12/2023
 * Developed by: Rogério Saraceni
 * Licensed MIT
 * https://github.com/rogeriosaraceni/onpaste-js
 */

 .wrapper-file{
    position: relative;
    display: inline-block;
    text-align: center;
    width: 170px;
    padding-bottom: 0.20rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background-color: rgb(243, 235, 233);
}
.wrapper-file .input-img{
    color: #fff!important;
    height: 100px;
    z-index: 10;
}
.wrapper-file .input-img:focus{
    border: 0;
    box-shadow: none;
}
.wrapper-file .btn-del{
    visibility: hidden;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    border-radius: 0.75rem;
}

.content-img-upload{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    transition: all 0.3s;
}
.content-img-upload .btn-zoom{
    position: absolute;
    top: -5px;
    right: -5px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    background-color: #666;
    transition: all 0.3s;
}
.content-img-upload img{
    width: 100%;
    max-width: 130px;
    height: auto;
    border-radius: 0.25rem
}
