.multiple_file {
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.multiple_file p {
    font-weight: bold;
    color: #0086fe;
}

.multiple_file .drag-area {
    height: 150px;
    border-radius: 10px;
    border: 2px dashed #ccc;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    padding: 20px;
    text-align: center;
}

.multiple_file .drag-area .visible {
    font-size: 18px;
}


.multiple_file .select:hover {
    opacity: 0.6;
}

.multiple_file .container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 10px;
}

.multiple_file .container .image {
    width: 75px;
    margin-right: 5px;
    height: 75px;
    position: relative;
    margin-bottom: 8px;
}

.multiple_file .container .image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


.multiple_file .container .image span {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: red;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.multiple_file input,
.multiple_file .drag-area .on-drop,
.multiple_file .drag-area .visible {
    display: none;
}

.delete {
    z-index: 999;
    color: #fff;
    cursor: pointer;
}
