
.image-line{
    position: relative;
    height: 120px;
    width: 120px;
    border: 1px dashed #8d8fa7;
    border-radius: 10px;
    cursor: pointer;
    background-color: transparent;
    padding: 5px;
}

span.upload-icon svg{
    color: #8d8fa7;
    width: 40px;
    height: 40px;
}

.image-line span.upload-icon{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, visibility;
    transition: opacity .2s linear, visibility .2s linear;
}

.image-line:hover span.upload-icon{
    opacity: 1;
    visibility: initial;
    will-change: opacity, visibility;
    transition: opacity .2s linear, visibility .2s linear;
}
.image-line img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.image-container input[type="file"]{
    display: none;
}