body.ajaxfileupload-overlay {
    position: relative;
    height: 100%;
}

body.ajaxfileupload-overlay:after {
    content: "";
    display: block;
    position: fixed;
    /* could also be absolute */
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
}

.ajaxfileupload-panel {
    z-index: 1000;
    border: solid 1px #999;
    transform: translate(-50%, -50%);
}

.ajaxfileupload-panel h4 {
    margin-bottom: 0;
}

#ajaxPanelClose {
    font-weight: bold;
    font-size: 30px;
    transform: rotate(45deg);
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
}

#ajaxFileUploadSubmit {}

#ajaxFileUploadSubmit:hover {
    background-color: #475089;
}

#ajaxFileUploadInner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.guide_h1:hover {
    background-color: rgb(228, 228, 228);
    cursor: pointer;
}