#nm-pd {
    position: relative;
}
#nm-pd-response {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    display: none;
    transition: all linear 0.2s;
}
#nm-pd-form {
    transition: all linear 0.2s;
}
#nm-pd.sent #nm-pd-form {
    opacity: 0.6;
    filter: blur(5px);
}
#nm-pd.sent #nm-pd-response {
    display: block;
    opacity: 100;
}
