html,
body {
	height: 100%;
	width: 100%;
	background-color: white;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
}

.loading {
	width: 100px;
	height: 100px;
	background: transparent;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	position: fixed;
	margin: auto;
	text-align: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
	font-size: 16px;
	color: #EEEEEE;
	display: none;
}

.msgbad {
	opacity: 0.6;
	border-radius: 10px;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 160px;
	z-index: 999;
	height: 160px;
	margin-left: -80px;
	margin-top: -120px;
	display: none;
}

.msgbad img {
	width: 180px;
	height: 180px;
}

.msgbad div {
	width: 100%;
	text-align: center;
	color: #666666;
	font-size: 16px;
	margin-top: 15px;
	margin-bottom: 15px;
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.alert_main {
	background: white;
	height: auto;
	margin-top: 3em;
	font-size: 14px;
	color: #333333;
}

.cd-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	opacity: 0;
	display: none;
	visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-popup.is-visible {
	display: block;
	opacity: 1;
	visibility: visible;
	padding: 20px;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0s;
}

.msg_error {
	opacity: 0.6;
	border-radius: 10px;
	width: 100%;
	z-index: 999;
	text-align: center;
	height: 160px;
	display: none;
}

.msg_error img {
	width: 180px;
	height: 180px;
}

.msg_error div {
	width: 100%;
	text-align: center;
	color: #666666;
	font-size: 16px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.line {
	width: 100%;
	height: 10px;
	background-color: #F2F2F2;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.align-center {
	text-align: center;
}

.display-inline-block {
	display: inline-block;
}

.bold {
	font-weight: bold;
}