.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
}
.line-with-text::before,
.line-with-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
}
.line-with-text::before {
    margin-right: 10px;
}
.line-with-text::after {
    margin-left: 10px;
}
.error {
	border: 2px solid red;
} 
.error-message {
	color: red;
	font-size: 14px;
	display: none;
}
.page-break {
	page-break-before: always;
	break-before: page;
}
.table-heading{
	max-width: 100%;
   	margin-bottom: 5px;
	color:white;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 200px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.3);
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}