#feedback-section {
	--feedback-title-width: 48px;
}

#feedback-section {
	position: relative;
	left: var(--vertical-title-width);
	width: var(--dashboard-width);
	height: var(--feedback-section-height);
	display: flex;
	flex-direction: row;
	left: var(--vertical-title-width);
}
#icon-area {
	min-width: 120px;
	max-width: 120px;
	flex-grow: 0;
	display: flex;
	background-color: var(--soft-white);
	border-top: 4px solid var(--pure-black);
	border-bottom: 4px solid var(--pure-black);
    border-radius: 12px;
    margin-left: 2px;
}
#icon-area a {
	display: inline-flex;;
    padding: 0 2px;
    box-sizing: border-box;
    border-bottom: none;
}
#icon-area a img {
    width: 100%;
}
#stats-area {
	flex-grow: 1;
	display: flex;
}
#global-stats-title,
#country-stats-title,
#summary-title {
	flex-grow: 1;
	width: 0;
	margin-left: var(--feedback-title-width);
}
#global-stats,
#country-stats {
	display: table;
	flex-grow: 1;
	font-size: 9pt;
	border-spacing: 0;
	width: 200px;
}
#global-stats tr,
#country-stats tr {
    background-color: var(--light-black);
	}
#global-stats tr:nth-child(2n),
#country-stats tr:nth-child(2n) {
    background-color: var(--black);
}
#global-stats th.column,
#country-stats th.column {
	font-weight: 300;
	text-align: right;
	border-top: 1px solid var(--pure-black);
	padding: 0 6px 0 0;
}
#global-stats td,
#country-stats td {
	border-left: 1px solid var(--pure-black);
	border-top: 1px solid var(--pure-black);
	padding: 0 0 0 6px;
}
#country-stats-name {
	font-size: 11pt;
	letter-spacing: 1px;
	color: var(--message-yellow);
	font-weight: bold;
}
.stats-vertical-title {
	position: absolute;
	bottom: 0;
	transform-origin: bottom left;
	transform: rotate(-90deg);
    width: 100px;
    height: var(--feedback-title-width);
	overflow: hidden;
	font-family: var(--sans-serif-font);
    font-weight: 600;
    font-size: 12pt;
    letter-spacing: 2px;
	text-align: center;
	margin: 0;
    padding: 8px 4px;
    line-height: 1;
	background-color: var(--black);
	color: var(--js-blue);
	box-sizing: border-box;
	border-bottom: 1px var(--dark-gray) solid;
	border-top: 2px var(--pure-black) solid;
}
#summary-title .stats-vertical-title {
	padding-top: 18px;
}
#summary-area {
	flex-grow: 1;
	max-width: 574px;
	overflow: hidden;
	padding: 4px 12px;
	font-size: 12pt;
}
#summary-area p {
	margin: 0 50px 0 0;
}		
#top-line {
	height: var(--top-line-height);
	width: 100%;
	background-color: var(--pure-black);
	border-top: 1px solid var(--gray);
	border-bottom: 2px solid var(--dark-gray);
	border-left: none;
	border-right: none;
}	

.indicator-name {
	color: var(--message-yellow);
	font-weight: bold;
	text-transform: uppercase;
}
