/* Login Button for Modal Control */
#myBtn {
	border: none;
	padding: 4px 4px 0 4px;
	margin: -6px 0 -2px 0;
	font-size: 0.65em;
	display: flex;
	line-height: 1.05em;
	text-align: left;
	height: 2.8em;
}

#myBtn::before {
	font-size: 1.8em;
	padding: 0;
	margin: 2px 3px 0 0;
	line-height: 1em;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.55); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #EFF1F2;
  margin: auto;
  padding: 20px;
  border: 1px solid #7F888F;
  border-radius: 5px;
  box-shadow:4px 4px 4px #383433;
  width: 95%;
  max-width: 560px;
}

/* The Close Button */
.close {
  color: #7F888F;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #f56a6a;
  text-decoration: none;
  cursor: pointer; 
}