.droparea {
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    max-width: 100%;
    height: 280px;
    border: 4px dashed grey;
    border-radius: 15px;
    }
.droparea i {
    font-size: 3rem;
    flex-grow: 1;
    padding-top: 1rem;
}
input[type='file'] {
    display: none
}
.uplabel {
    background-color: #08b6ad;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin: 10px;
    padding: 6px 20px
}
.green-border {
    border-color: #08b6ad;
}
.file-icon
{
    margin:auto;
}
.drag-here {
    margin:auto;
    color: #08b6ad;
}
.not-droparea {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    max-width: 100%;
    height: 280px;
    border: 4px dashed grey;
    border-radius: 15px;
    }
.not-droparea i {
    font-size: 3rem;
    flex-grow: 1;
    padding-top: 1rem;
}
.not-droparea p {
    text-align: center;
}
.loader {
    border: 7px solid #f3f3f3; /* Light grey */
    border-top: 7px solid #00e8dc; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    }
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
section .small {
    font-size: 12px;
}