/* CSS RESET - Modernized */

* {
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	line-height: 1.6;
	font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	font-size: 16px;
	color: #2c3e50;
	background-color: #f8f9fa;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
	body {
		font-size: 15px;
	}
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	opacity: 0.8;
}

a:focus {
	outline: 2px solid #4a90e2;
	outline-offset: 2px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

/* CLEAR FIX */
.clearfix {
	zoom: 1;
}

.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/* MODERN FONT COLOR UTILITIES */
.tx-bold {
	font-weight: 600;
}

.tx-w {
	color: #ffffff !important;
}

.tx-b0 {
	color: #1a1a1a !important;
}

.tx-b4 {
	color: #4a5568 !important;
}

.tx-b6 {
	color: #718096 !important;
}

.tx-b8 {
	color: #a0aec0 !important;
}

.tx-primary {
	color: #4a90e2 !important;
}

.tx-success {
	color: #48bb78 !important;
}

.tx-danger {
	color: #f56565 !important;
}

.tx-warning {
	color: #ed8936 !important;
}

.tx-info {
	color: #4299e1 !important;
}

/* Legacy support */
.tx-r {
	color: #f56565 !important;
}

.tx-b {
	color: #4a90e2 !important;
}

.tx-p {
	color: #ed64a6 !important;
}

.tx-y {
	color: #f6e05e !important;
}

.tx-bb {
	color: #2d3748 !important;
}



