.file-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin: 5px;
    max-width: 250px;
    min-width: 200px;
}

.file-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-custom {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgb(50, 50, 50);
    font-size: 15px;
    color: #FFF;
	text-shadow: 1px 1px 3px black;
    padding: 10px;
    outline: none;
    border-radius: 10px;
    transition: all .3s;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.file-wrapper:hover .file-custom,
.file-wrapper.dragover .file-custom {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgb(70, 70, 70);
}
.file-wrapper.dragover .file-custom {
    background-color: rgb(80, 80, 80);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.file-text {
    opacity: 0.8;
    pointer-events: none;
}
.file-name {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #BBB;
    word-break: break-all;
}
.file{
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #333;
    border-radius: 5px;
    display: flex;
    padding: 5px;
    margin: 5px;
}