body {
	position: relative;
	z-index: -1;
	font-family: sans-serif;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
	color: #3b3b3b;
	-webkit-font-smoothing: antialiased;
	background: none;
	margin: 0 !important;
	padding: 0 !important;
}

html {
	margin: 0;
	padding: 0;
}

input {
	font-size: inherit;
	margin-left: 2px;
	padding-left: 2px;
}

button {
	padding: 5px 10px;
	font-size: 16px;
	text-transform: capitalize;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	background: #2980b9;
	border: none;
	border-radius: 5px;
	min-width: 60px;
}

.hidden {
	display: none !important;
}

.spotlight {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
}

.wrapper {
	margin: 0 auto;
	padding: 0 30px;
	max-width: 1200px;
}

.table {
	width: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	display: table;
}

@media screen and (max-width: 580px) {
	.table {
		display: block;
	}
}

.row {
	display: table-row;
	background: #f6f6f6;
}

.row:nth-of-type(odd) {
	background: #e9e9e9;
}

.row.header {
	font-weight: 900;
	color: #ffffff;
	background: #ea6153;
}

.row.green {
	background: #27ae60;
}

.row.orange {
	background: rgb(253, 140, 8);
}

.row.blue {
	background: #2980b9;
}

.link {
	font-weight: bold;
	color: #ffffff;
}

@media screen and (max-width: 580px) {
	.row {
		padding: 14px 0 7px;
		display: table-row;
	}

	.row.header {
		padding: 0;
		height: 6px;
	}

	.row.header .cell {
		display: none;
	}

	.row .cell {
		margin-bottom: 10px;
	}

	.row .cell:before {
		margin-bottom: 3px;
		content: attr(data-title);
		min-width: 98px;
		font-size: 10px;
		line-height: 10px;
		font-weight: bold;
		text-transform: uppercase;
		color: #969696;
		display: block;
	}
}

.cell {
	padding: 6px 12px;
	display: table-cell;
	vertical-align: top;
	text-align: left;
}

@media screen and (max-width: 580px) {
	.cell {
		padding: 2px 16px;
		display: block;
	}
}