.imgLoader h3 {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -20px;
    font-size: 1.6rem;
}

.submit-btn:disabled {
    cursor: progress;
}

.form_wrapper {
    background: #f4f5f6;
    padding: 24px;
    border-radius: 2px;
    margin: 12px 0;
}

.inputSection {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.inputSection input {
    width: 100%;
    border: 1px solid #005f89;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #000;
}


.inputSection button {
    width: 30%;
    background: #005f89;
    color: white;
    border: 1px solid #005f89;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.inputSection button:focus {
    outline: none;
}

.form_wrapper p {
    color: #005f89;
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
}

.imgLoader {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
}

.imgLoader img {
    height: 60px;
}

.imgLoader h3 {
    margin-top: -5px;
    font-size: 24px;
}

#pdf_result {
    background-color: #fff;
    border: 1px solid #2aa738;
    margin: 12px 0;
}

#pdf_result img {
    height: 24px;
}

#pdf_result a:hover {
    text-decoration: none;
    background: #ecf9ff;
    cursor: pointer;
}

.disabled {
    opacity: 0.7;
}

#pdf_result .top_head {
    background: #2aa738;
    text-align: left;
    padding: 24px;
}

.top_head h4 {
    color: white;
    font-size: 28px;
    font-weight: 500;
}

.top_head p {
    color: white;
}

.btn_section {
    display: flex;
    height: 58px;
    align-items: center;
    /* justify-content: space-evenly; */
    /* gap: 5%; */
}

.download_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 32px;
}

.other_sec {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid #2aa738;
    padding: 15px;
    justify-content: center;

}

.btn_section i {
    font-size: 28px;
    margin-left: 6px;
    color: #2aa738;
    transition: transform 0.3s ease;
}

.btn_section i:hover {
    transform: scale(1.1);
}

.filename span {
    color: #000;
    font-size: 18px;
}

.filename p {
    margin: 0;
}

.other_sec,
.download_section {
    cursor: pointer;
}

.other_sec div {
    width: 100%;
    height: 100%;
    text-align: center;
}
#deletePdf .modal-header{
    padding: 4px 12px;
border: none;
}

#deletePdf .modal-header .close{
    padding: 4px 12px;
    border: none;
    font-size: 38px;
    font-weight: normal;
    color: #000;
}

#deletePdf .modal-body h5{
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: #005f89;
}
#deletePdf .modal-body p{
    color: #000;
}
#deletePdf .modal-footer button{
    border: none;
    background: #005f89;
    font-size: 16px;
    font-weight: normal;
    padding: 4px 12px;
    border-radius: 4px;
    color: white;
}
#deletePdf .modal-footer button:focus{
    outline: none;
}
.err_msg{
    background: #fbdcdc;
    border: 1px solid #f76c6c;
    padding: 4px;
    border-radius: 2px;
    color: #c81616;
    margin: 12px;
}

.succ_msg{
    background: #cfffd5;
    border: 1px solid #2aa738;
    padding: 4px;
    border-radius: 2px;
    color: #2aa738;
    margin: 12px;
}