	.modallogin {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.7);
		z-index: 999;
		opacity:0;
		-webkit-transition: opacity 200ms ease-in;
		-moz-transition: opacity 200ms ease-in;
		transition: opacity 200ms ease-in;
		pointer-events: none;
	}

	.modallogin:target {
		opacity:1;
		pointer-events: auto;
	}

	.modallogin > div.login_muahang {
		width:30%;
		min-height:400px;
		background: #fff;
		position: relative;
		margin: 10% auto;
		padding: 20px;
	}
	@media screen and (max-width: 768px) {
		.modallogin > div.login_muahang {
			width:80%;
		}
	}
	.close {
		background: #606061;
		color: #FFFFFF;
		line-height: 25px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -10px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		-moz-box-shadow: 1px 1px 3px #000;
		-webkit-box-shadow: 1px 1px 3px #000;
		box-shadow: 1px 1px 3px #000;
	}

	.close:hover { background: #00d9ff; }





	.modaldk {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.4);
		z-index: 99999;
		opacity:0;
		-webkit-transition: opacity 200ms ease-in;
		-moz-transition: opacity 200ms ease-in;
		transition: opacity 200ms ease-in;
		pointer-events: none;
	}

	.modaldk:target {
		opacity:1;
		pointer-events: auto;
	}

	.modaldk > div.login_muahang {
		width:500px;
		min-height:250px;
		position: relative;
		margin: 3% auto;
		padding: 0px 0px 2px 0px;
		border-radius:4px;
		background: #fff;
		border:solid 1px #CCCCCC;
	}
