/*
 * ---------------------------
 * ------ General Reset ------
 * ---------------------------
 */
* {
	margin: 0;
	padding: 0;
	border: 0 none;
	outline: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*
 * ---------------------------
 * ------- Input Reset -------
 * ---------------------------
 */
input[type="text"],
input[type="password"],
textarea,
select {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
input::-ms-clear {
	display: none;
}
a,
button,
select,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
}
input[type="search"] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield;
}
button[disabled],
input[disabled] {
	cursor: default;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset;
}
select {
	-webkit-appearance: none;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAHCAYAAAAS9422AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALtJREFUeNpi/P//PwMIqCgoZgIpDyAOvfvwwS8GLEBZXoEZSM0H4p13HtxfykAEYEJihwCxHxCvgBqEzfBFQBwLxAkMRAJkC3yBeD8QB4IMQrYEyGYEUnOBOAqITwFxALEWMMKCiJGREWQQF5C5FYgdgHgZEMcB8T8gngbEGVDD3YBB+BGmjyQLoK7lB1K7gNgM6urf6IaD1JFtARZLQOAKEDsBDX8NU0ORBUiW7AZidiB2QTacFAsAAgwAgMZJRnqL7s0AAAAASUVORK5CYII=) no-repeat right center;
	line-height: 1.2em !important;
	cursor: pointer;
}
/*
 * ---------------------------
 * ---- Input Placeholder ----
 * ---------------------------
 */
::-webkit-input-placeholder {
	color: #6d6e71;
}
:-moz-placeholder {
	color: #6d6e71;
}
::-moz-placeholder {
	color: #6d6e71;
}
:-ms-input-placeholder {
	color: #6d6e71;
}
/*
 * ---------------------------
 * ------ Base Elements ------
 * ---------------------------
 */
html,
body,
button,
.button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"],
textarea,
select {
	font-size: 13px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html,
body,
input[type="text"],
input[type="password"],
textarea {
	background: #fff;
}
html,
body,
input[type="text"],
input[type="password"],
textarea,
select {
	color: #333;
}
input[disabled],
input[readonly] {
	background: #f9f9f9;
	color: #a7a7a7;
}
select {
	padding: 0 32px 0 10px;
}
b,
strong {
	font-weight: 700;
}
.font-semi-bold {
	font-weight: 600;
}
hr {
	height: 1px;
	width: 100%;
	background: #e7e7e7;
	margin: 30px 0;
}