*{
	margin: 0;
	padding: 0;
	font-family: pyidaungsu;
}
@font-face{
	font-family: "pyidaungsu";
	src:
	url("../Font/PyidaungsuRegular.ttf") format("ttf"),
	url("../Font/PyidaungsuBold.ttf") format("ttf")
}

.popup{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	min-width: 1300px;
	min-height: 600px;
	background-color: rgba(0, 0, 0, 0.1);
	z-index: 5;
}
.popupShow{
	display: inline-block;
	margin: 50px;
	background-color: white;
	box-shadow: 0 0 10px black;
	border-radius: 5px;
}
.headingRow, .buttonRow{
	padding: 10px 15px;
}
.bodyRow{
	padding: 0 15px;
}

.btn{
	padding: 0 10px;
	border-radius: 3px;
	border: none;
	box-shadow: 0 0 2px black;
	cursor: pointer;
}
.bgRed{
	background-color: darkred;
	border: none;
	color: white;
	height: 30px;
	border-radius: 3px;
	cursor: pointer;
}
.bgRed:hover{
	background-color: red;
}
.bgGreen{
	background-color: darkgreen;
	border: none;
	color: white;
	height: 30px;
	border-radius: 3px;
	cursor: pointer;
}
.bgGreen:hover{
	background-color: green;
}
.bgOrange{
	background-color: darkorange;
	border: none;
	color: white;
	height: 30px;
	border-radius: 3px;
	cursor: pointer;
}
.bgOrange:hover{
	background-color: orange;
}
.bgGray{
	background-color: darkgray;
	border: none;
	color: white;
	height: 30px;
	border-radius: 3px;
	cursor: pointer;
}
.bgGray:hover{
	background-color: gray;
}
a{
	text-decoration: none;
}

.in{
	border: 1px solid gray;
	height: 28px;
	border-radius: 3px;
	outline: none;
	box-sizing: border-box;
	font-size: 13px;
}
.in[type="text"],
.in[type="password"]{
	padding: 0 5px;
}