body {
    margin: 0;
    padding: 0px;
}
#fileupload {
    position: relative;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.pop_add_dropzone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 238, 238, 0.9);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.pop_add_dropzone.drag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}
.pop_add_dropzone.drag .dragText {
    font-size: 20px;
    font-weight: 900;
    pointer-events: none;
}
.fileControlBar {
    padding: 0.2em 0.4em;
    background-color: #00a8d2;
}
.fileControlBar  .icon {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
}
.icon.plus::before,
.icon.plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: #000;
}
.icon.plus::after {
    transform: rotate(-90deg);
}
.icon.unload::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform-origin: left top;
    transform: rotate(45deg);
}
.icon.unload::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #000;
}
.icon.cancel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: 50%;
    box-sizing: border-box;
}
.icon.cancel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background-color: #000;
    transform: rotate(-45deg);
}
.fileinput-button input {
    display: none;
}
.fileControlBar button {
    position: relative;
    padding: 5px 10px;
}
.fileControlBar button {
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
}
.fileControlBar button .icon {
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
}
.fileupload-contentBox {
    /* padding: 15px; */
    position: relative;
    height: 300px;
    overflow-y: auto;
    background-color: #fff;
    z-index: 1;
}
.fileupload-content .item {
    padding: 10px;
    display: flex;
    align-items: center;
}
.fileupload-content .Img {
    width: 80px;
}
.fileupload-content .Img img {
    display: block;
    width: 100%;
}

.fileupload-content .fileMessage.error {
    color: #f00;
}

.fileupload-content .fileName {
    word-break: break-all;
    padding: 10px;
    width: 150px;
    box-sizing: border-box;
}
.fileupload-content .fileSize {
    text-align: right;
    padding: 10px;
    width: 100px;
    box-sizing: border-box;
}
.fileupload-content .fileProcess  {
    margin: 0 10px;
    width: 120px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    overflow: hidden;
}
.fileupload-content .fileProcess span {
    display: block;
    height: 100%;
    width: 0;
    background-color: greenyellow;
}
.fileupload-content .fileUpload,
.fileupload-content .fileCancel {
    cursor: pointer;
    margin: 3px;
    padding: 5px 10px;
    background-color: #ccc;
    border-radius: 5px;
    font-size: 14px;
}
