
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background-color: #2d87d2;
    opacity: 0.8;
}

.dpnDialog {
    max-width: 80% !important;
}

img {
    max-width: 100%;
    height: auto;
}
       
.modal-body i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}