@media screen and (min-width: 0px) and (max-width:991px) {
	.contentDIV{
		width: 100%;
	}

	.myTable
	{
		width: 90%;
		font-size: var(--table-font-size);
		margin: auto;
	}

	.resultDIV
	{
		height: 90px;
	}
	h3{
		width: 90%;
		margin: auto;
	}
	.ngResultDIV {
		width: 90%;
		margin: auto;
	}
	.popup {
		margin: 25% auto;
		padding: 10px;
		background-color: #F2F2F2;
		border-radius: 5px;
		width: 85%;
	  }
	  .searchButton {
		min-width: 60%;
		/* margin-left: 20%; */
		margin-top: var(--margin);
		line-height: var(--search-name-line-height);
	  }
}


@media screen and (min-width: 992px) {
	.contentDIV{
		width: 600px;
		margin: auto;
		margin-top: 10px;
	}	
	
	.myTable
	{
		width: 50%;
		font-size: var(--table-font-size);
		margin: auto;
	}

	.resultDIV
	{
		height: 70px;
	}
	h3{
		width: 50%;
		margin: auto;
	}
	.ngResultDIV {
		margin-left: 25%;
	}
	.popup {
		margin: 15% auto;
		padding: 10px;
		background-color: #F2F2F2;
		border-radius: 5px;
		width: 35%;
	}
}

.titleDIV
{
	width:85%;
	height: 30px;
	margin: auto;
}

.resultDIV
{
	width:85%;
	margin: auto;
	/* margin-top: 15px; */
    margin-bottom: 25px;
	line-height: 22px;
}

.ngResultDIV
{
    font-weight: bold;
    color: red;
    display: none;
    font-size: var(--smaller-font-size);
}
.usernameNgResultDIV
{
    font-weight: bold;
    color: red;
    font-size: var(--smaller-font-size);
	height: 25px;
}

.mainDIV
{
	width: 85%;
	max-width: 85%;
	margin: auto;
}

.myTable tr
{
	height: 20px;
}


.myTable td input
{
	border: 1px solid #000000;
	width: 96%;
	margin-top: 5px;
}

.loginButtonDIV
{
	margin-top: 0.5em;
	width: 100%;
}

.btn
{
	width: 95%;
	color: white;
	background-color: #003399;
	margin-top: 25px;
}

.loginBtn
{
	width: 100%;
	margin-top: 25px;
}


.footerDIV
{
	text-align: center;
	font-size: var(--table-font-size);
	margin-top: 25px;
}

.footerDIV a
{
	color: #0070C0;
}
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup h4 {
	font-size: 1.1em;
}

.popup hr {
	margin: 6px 0;
}

.popup .content {
	margin: 0 8px;
}

.popup .inputDIV {
	margin-bottom: 25px;
}

.popup input {
	width: 100%;
}

.popup .btnArea {
	text-align: right;
}

.alertBtn{
	width: 120px;
}