
.container1 {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.btn {
	border: none;
	cursor: pointer;
	outline: none;
}

.btn-open {
	background-color: #337357;
	color: #E4E3D3;
	font-size: 15px;
	border-radius: 4px;
	padding: 8px 16px;
}

.btn-close {
	font-size: 30px;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	position: fixed;
	right: 15px;
	top: 15px;
	line-height: 16px;
	background-color: rgb(44, 43, 43);
	color: #fff;
}

.relative{
	position: relative;
	width: 100%;
	min-height: 30%;
	padding: 32px 16px;
	text-align: center;
}

.modal-content {
	border-radius: 8px;
    min-height: 80%;
}

.credit {
	position: absolute;
	bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}

.credit a {
	display: block;
	margin: 0 auto;
	text-decoration: none;
	color: #E4E3D3;
	font-family: monospace;

}

#container-buttons-table{
	text-align: right;padding: 0.5rem;width: 100%;display: inline-block
}
.btn.btn-default.btn-table{
	background-color: var(--blue);color: var(--white);
}
.modal-wrapper { 
  width: 100%; 
  height: 100%; 
  min-height: 100%; 
  position: fixed; 
  top: 0; 
  left: 0; 
  background-color: rgba(0,0,0,.7); 
  transition: .4s; 
  visibility: hidden; 
  opacity: 0; 
  z-index: 2000;
}
.modal-content:nth-child(1){
	overflow-y: hidden;
}
.modal-content { 
border: none !important;
  overflow-x: hidden;
  max-width: 98%;
  width: 100%;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  background-color: #fff;
}

.modal-opened { 
  opacity: 1; 
  visibility: visible;
}

.noFound{
	display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    min-height: 75vh;
}