@charset "utf-8";
/*-----------------------------------------------
    fileUpload
-----------------------------------------------*/
#fileUpload{
    position: relative;
    width: 62rem;
}
#fileUpload .dropArea{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#fileUpload .inputFile{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: block;
    opacity: 0;
}
#fileUpload .inputFile:hover{
    cursor: pointer;
}
#fileUpload .inputFile,
#fileUpload .btnUpload,
#fileUpload .btnDelete{
    width: 20rem;
    height: 5rem;
}
#fileUpload .btnUpload,
#fileUpload .btnDelete{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    font-size: var(--pcFS13);
    color: var(--whiteColor);
    background: var(--loginBtnColor_gradient_2);
    border-radius: 5px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
#fileUpload .btnDelete{
    z-index: 4;
    background: var(--blackColor_333);
    cursor: pointer;
}
#fileUpload .inputFile:hover + .btnUpload,
#fileUpload .btnDelete:hover{
    opacity: 0.8;
}
#fileUpload.selected .btnUpload,
#fileUpload:not(.selected) .btnDelete{
    display: none;
}
#fileUpload .boxTxtFile{
    width: 40rem;
    height: 5rem;
    font-size: var(--pcFS14);
    line-height: var(--pcLH14_21);
    color: var(--textColor);
    background: var(--tablebgColor);
    padding: 0 1rem;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
#fileUpload .txtFile{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media only screen and (max-width:1215px){
    #fileUpload{
        width: 100%;
    }
    #fileUpload .inputFile,
    #fileUpload .btnUpload,
    #fileUpload .btnDelete{
        width: 10rem;
        height: 4rem;
        font-size: var(--spFS10);
    }
    #fileUpload .boxTxtFile{
        width: calc(100% - 11rem);
        height: 4rem;
        font-size: var(--spFS11);
        line-height: var(--spLH11_16);
        padding: 0;
        text-align: center;
    }
}