.modal-abcpddp {
    display: none;
    position: fixed;
    z-index: 3;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.abcpostpddp-breakdown-link {
    cursor: pointer;
    font-size: 14px;
    color: #1d93ab;
    margin-top: 5px;
}

.modal-content-abcpddp {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal-content-abcpddp-close {
    background-color: #fefefe;
    margin: 50px auto 0px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close-abcpddppost {
    color: #aaaaaa;
    text-align: right;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer !important;
}

table td {
    padding: 0.5rem;
}

.close-abcpddppost:hover,
.close-abcpddppost:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8) url("loader.gif") center no-repeat;
}

/* Turn off scrollbar when body element has the loading class */
body.loading {
    overflow: hidden;
}

/* Make spinner image visible when body element has the loading class */
body.loading .overlay {
    display: block;
}



/* show global ajax loader */
#abcpostpddp_overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.abcpostpddp_cv_spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abcpostpddp_spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}