.file img {
    cursor: pointer;
    max-width: 100%;
    max-height: 200px;
}

.deleteFileBtn {
    background: #545454;
    position: absolute;
    top: -9px;
    right: -10px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    display: none;
}

.file:hover .deleteFileBtn {
    display: flex;
}

.file {position: relative;max-width: 48%;max-height: 200px;height: 150px;width: 150px;}

.filesContainer {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.deleteFileBtn:hover {
    background: #ac1d1d;
}

.fileImg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    background-color: #ffffff1a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mimeType {
    font-size: 14px;
    background: #ffffff1c;
    padding: 7px 15px;
    border-radius: 4px;
}