		.modal {
			display: block; /* Hidden by default */
			position: fixed; /* Stay in place */
			z-index: 1; /* Sit on top */
			left: 0;
			top: 0;
			width: 100%; /* Full width */
			height: 100%; /* Full height */
			overflow: auto; /* Enable scroll if needed */
			background-color: rgb(9,8,6); /* Fallback color */
			background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
		}
				/* Modal Header */
		.modal-header {
			position: relative;
			/* margin: 15% auto; */
			padding: 2px 16px;
			background-color: #5cb8b8;
			color: white;
			animation-name: animatetop;
			animation-duration: 0.4s
		}

		/* Modal Body */
		.modal-body {
			position: relative;
			/* margin: 15% auto; */
			padding: 20px 16px;
			background-color: white;
			color: white;
			animation-name: animatetop;
			animation-duration: 0.4s
		}

		/* Modal Footer */
		.modal-footer {
			padding: 15px 16px;
			background-color: #5cb8b8;
			color: white;
			animation-name: animatetop;
			animation-duration: 0.4s
		}

		/* Modal Content */
		.modal-content {
			position: relative;
			background-color: #fefefe;
			margin:auto;
			padding:60px;
			border: 1px solid #888;
			width: 80%;
			box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
			animation-name: animatetop;
			animation-duration: 0.4s
		}

		/* The Close Button */
		.close {
			position: relative;
			color: #aaa;
			float: right;
			font-size: 28px;
			font-weight: bold;
		}

		.close:hover,
		.close:focus {
			color: black;
			text-decoration: none;
			cursor: pointer;
		}

		.register{
			padding: 2px 4px;
			width: 10px;
			background-color: white;
			display: flex;

		}

		.center_span{
			text-align:center;
		}

		/* Add Animation */
			@-webkit-keyframes animatetop {
			from {top:-300px; opacity:0}
			to {top:0; opacity:1}
		}

			@keyframes animatetop {
			from {top:-300px; opacity:0}
			to {top:0; opacity:1}
		}





