body {
	margin: 2em 4em;	
}
.container {
	transition: opacity 0.5s;
	opacity: 0;
}
.loaded .container {
	opacity: 1;
}

.container {
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.chart {
	max-height: 250px;
	overflow: auto;
}

.filter {
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 5em;
}

.container .dc-chart g.row text {
	fill: inherit;
	text-transform: capitalize;
}

#prev, #next {
	float: right;
}

.table td {
	white-space: pre-line;
	text-transform: capitalize;
	max-width: 20em;
}

svg {
    overflow: visible;
    display: block;
}

a.reset {
    cursor: pointer;
}

h1, h3 {
	text-align: center;
}
h3 {
	margin-top: 1em;
}

body:not(.loaded):before, body:not(.loaded):after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;	
}

body:not(.loaded):before {
	background-image: url(https://www.starburstdata.com/wp-content/uploads/2020/07/crunchbase-logo.png);
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150px;
}
body:not(.loaded):after {
	background-color: #fff;
	-webkit-mask-image: linear-gradient(to right, #000 0%, rgba(0,0,0,0.4) 50%, #000 100%);
	-webkit-mask-size: 300px;
	animation: shimmer 3s linear 0s infinite;	
}

@keyframes shimmer {
	from {
		-webkit-mask-position-x: 0;
	} to {
		-webkit-mask-position-x: 300px;
	}
}