.doc_container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid #06213f; /*JC UPDATED 1-11-21 the border color*/
    border-radius: 3px;
    font-family: arial, sans-serif;
}
.add_another_doc{ /*JC ADDED 1-11-21 Control Font Family*/
	font-family: arial, sans-serif; 
	vertical-align:middle; 
	padding:0px; 
	margin:0px
}
.doc_header_div {
    display: flex;
}
.doc_header {
    color: #ff0000;
    width: 100%;
    text-align: center;
}
.doc_contents {
    display: flex;
    flex-direction: row;
    margin: 5px;
}
.doc_descriptions {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-around;
}
.doc_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 5px;
}
.doc_description {
    display: flex;
    flex-direction: row;
    padding-bottom: 2px;
}
.doc_uploads {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 2px;
}
.doc_types {
    display: flex;
    flex-direction: row;
    padding-right: 5px;
}
.doc_desc {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #ffffff;
    border: 2px solid #979797;
    box-shadow: none;
    border-radius: 0px;
    color: #000000;
    height: 25px;
    width: 100%;
}
/*Asked to add by TLW 1-11-21 for error messages*/
.status_display {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
	font-family: arial, sans-serif;
}
.status_display_progress {
    color: #06213F;
	font-family: arial, sans-serif;
}
.status_display_error {
    color: red;
	font-family: arial, sans-serif;
}
.status_display_invisible {
    display: none;
}
