/*
 * __ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ
 * ------ 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;
}
textarea {
	min-height: 100px;
}
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 #f1f2f6 inset;
}
select {
	-webkit-appearance: none;
	line-height: 1.2em !important;
	cursor: pointer;
}
/*
 * __ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ
 * ---- Input Placeholder ----
 * ‾‾¯‾‾¯‾‾¯‾‾¯‾‾¯‾‾¯‾‾¯‾‾¯‾‾¯
 */
::-webkit-input-placeholder {
	color: #7ea9be;
}
:-moz-placeholder {
	color: #7ea9be;
}
::-moz-placeholder {
	color: #7ea9be;
}
:-ms-input-placeholder {
	color: #7ea9be;
}
/*
 * __ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ__ˍ
 * ------ 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: 14px;
	font-family: "Open Sans", Arial, sans-serif;
}
html,
body {
	background: #fff;
	color: #7a7a7a;
	overflow-x: hidden;
}
input[disabled],
input[readonly] {
	background: #f9f9f9;
	color: #7a7a7a;
}
select {
	padding: 0 24px 0 8px;
}
b,
strong {
	font-weight: 800;
}
a {
	color: #7a7a7a;
	-webkit-transition: color 0.27s;
	-moz-transition: color 0.27s;
	-o-transition: color 0.27s;
	transition: color 0.27s;
	text-decoration: none;
}
a:hover {
	color: #38e5a3;
}
ul {
	list-style-type: none;
}
::-webkit-scrollbar {
	width: 8px;
	background: #ccc;
}
::-webkit-scrollbar-thumb {
	background: #38e5a3;
	width: 6px;
}