:root {
	--theme-primary-color: #5cb85c;
	--theme-primary-active-color: #3e943e;
	--theme-secondary-color: #222;
	--theme-secondary-active-color: #444;
	--theme-background-color: #FFF;
	--theme-light-color: #EEE;
	--theme-dark-color: #222;
}

body, html {
	height: 100%;
	margin: 0;
	width: 100%;
	background-color: var(--theme-background-color);
	color: var(--theme-dark-color);
}

div.ratio {
	display: inline-block;
	width: 100px;
	height: 10px;
	border: 1px solid var(--theme-light-color);
	background-color: var(--theme-secondary-color);
	overflow: hidden;
}

div.ratio > div {
	height: 10px;
	background-color: var(--theme-primary-color);
}

g.received > rect {
	fill: var(--theme-primary-color) !important;
}

g.sent > rect {
	fill:var(--theme-secondary-color) !important;
}

g.received > path {
	stroke: var(--theme-primary-color) !important;
	fill: rgb(0,0,0,0) !important;
}

g.sent > path {
	stroke: var(--theme-secondary-color) !important;
	fill: rgb(0,0,0,0) !important;
}

th.position,
td.position {
	width: 60px;
}

th.received,
td.received,
th.sent,
td.sent,
th.total,
td.total,
th.average-rate,
td.average-rate {
	width: 120px;
	text-align: right;
}

th.ratio,
td.ratio {
	width: 120px;
}

button.normal {
	margin: 5px;
	padding: 3px 3px;
	font-size: 12px;
	width: 130px;
}

button.normal {
	margin: 5px;
	width: 140px;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--theme-dark-color);
	background-color: #fff;
	border: none;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	min-width: 54px;
	line-height: 30px;
	padding: 0 10px;
	border-radius: 4px;
	overflow: visible;
	transform: translate3d(0, 0, 0);
	transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 100ms cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
    vertical-align: baseline;
    text-align: center;
}

button.normal:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}

button.normal:active {
	background-color: var(--theme-primary-active-color);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}

button.selected {
	background-color: var(--theme-primary-color);
}

button.disabled, button.disabled:hover, button.active {
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	background-color: #CCC;
	color: #555;
	cursor: default;
}

.tablink {
	margin: 1px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background-color: #555;
	color: var(--theme-light-color);
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 5px 5px;
	font-size: 14px;
	width: calc(20% - 3px);
}

.tablink:hover {
	background-color: #777;
}

.tabcontent {
	display: block;
	padding: 40px 20px;
	width: 100%;
}

.comparetypelist {
	padding: 2px;
	margin: 5px;
}
