/* The Modal (background) */
.App__Window {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1s;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background:#ffff;
  animation: fadeEffect 0.7s; /* Fading effect takes 1 second */
}

.modal__heading{
  position: absolute;
  top: 5%; right: 50%;
  transform: translate(50%,-50%);
}

.modal__content{
  margin-top:3%;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* The Close Button */
.close_ {
	position:absolute;
	padding-right:30px;
	top:0;
	right:0;
	color: #2E277E;
	float: right;
	font-size: 28px;
	cursor:pointer;
	font-weight: bold;
}