.parent-loader {
    background: #a9a9a9;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9999;
    opacity: 0.7;
    left: 0;
    top: 0;
}

.loader {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #2a9fe8;
    border-bottom: 16px solid #2a9fe8;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.para-blog p{
    margin-bottom: 0px;
}