.drop-zone__input {

display:none;
}
.drop-zone__thumb {
    width: 100%;
    height: 100%;
border-radius: 10px;
    overflow: hidden;
    background-color: #eee;
    background-size: contain;
    background-repeat:no-repeat;
    position: relative;
    background-position:center center;
}
.drop-zone {
    margin-top:-10px;
    width:100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    font-size: 15px;
    cursor: pointer;
    color: #a4ad16;
    border: 2px dashed #a4ad16;
}
.drop-zone i{
    font-size:30px;
}

