.file-documento {
    border-radius: 100%;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
    max-width: 350px;
    width: 90%;
    transform: scale(0.95);
    transition: all 0.3s ease-in-out;
}
.file-documento:hover,
.file-documento:focus,
.file-documento:active {
    transform: scale(1);
}
.file-documento:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.file-documento-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.file-documento .icona {
    width: 20%;
    margin:  0 auto;
}
.file-documento .icona svg .cls-1 {
    fill: #E3E3E3;
}
.file-documento .titolo {
    color: black;
    text-align: center;
    font-size: 20px;
    width: 85%;
    margin: 0 auto;
    margin-top: 15px;
}

.file-documento-edit p {
    color: black;
}

@media screen and (max-width: 978px) {
    .file-documento .titolo {
        font-size: 18px;
    }
}
@media screen and (max-width: 678px) {
    .file-documento .titolo {
        font-size: 30px;
    }
    .file-documento {
        margin-top: 30px;
    }
}