/* used on multiple pages for initially hidden confirmation message after a work request is submitted
- js is used to detect a value in query string that will trigger the confirmation message */
section .dynamic-content {
    display: none;
}
section .dynamic-content h4 {
    border: 2px solid #ccc;
    padding: 2em 1em 1em 1em;
    margin: 1em;
    text-align: center;
    -webkit-box-shadow: 10px 10px 11px -7px rgba(0,0,54,0.6);
    -moz-box-shadow: 10px 10px 11px -7px rgba(0,0,54,0.6);
    box-shadow: 10px 10px 11px -7px rgba(0,0,54,0.6);
    color: red;
}

