H2 {
	font-size: 28px;
}

#HeadlineContainer {
	position: relative;
	text-align: center;
	min-height: 150px;
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	grid-template-columns: calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px) calc(10% - 18px);
	overflow: hidden;
	max-width: 100%;
}

.HeadlineBlockContainer {
	display: inline-block;
}

.HeadlineTitle {
	text-align: center;
	font-size: 20px;
	margin: 10px 0 10px 0;
}

.HeadlineValue {
	text-align: center;
	font-size: 16px;
	margin: 5px 0 10px 0;
}

.HeadlineBlock {
	width: 100%;
	height: 150px;
	border-radius: 4px;
	border: solid 1px #F0F0F0;
	overflow: hidden;
}

.StrengthBlock {
	width: 100%;
	height: 100%;
	background: #F7F7F7;
	position: relative;
	overflow: hidden;
}

.PositiveContainer {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #CCCCFF;
	width: 100%;
	height: 50%;
	transform: rotate(180deg) scaleX(-1);
}

.NegativeContainer {
	display: none;
	position: absolute;
	top: 50%;
	left: 0;
	background: #FFE0E0;
	width: 100%;
	height: 50%;
}

.StrengthBlock.Positive .PositiveContainer {
	display: block;
}
.StrengthBlock.Negative .NegativeContainer {
	display: block;
}

.NegativeValue {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #D00000;
}

.PositiveValue {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #0000F0;
}

#DetailContainer {
	text-align: center;
	min-height: 200px;
}

.DetailBlockContainer {
	margin: 20px 20px 20px 20px;
	display: inline-block;
}

.DetailTitle {
	text-align: center;
	font-size: 20px;
}

.DetailBlocks {
}

.DetailBlockOuter {
	display: inline-block;
	margin: 0 5px 0 5px;
}

.DetailBlockStrength {
	height: 100px;
	width: 30px;
	border-radius: 4px;
    overflow: hidden;
}

.DetailBlockTitle {
	text-align: center;
	margin: 5px 0 5px 0;
	color: #808080;
}

.DetailBlockValue {
	text-align: center;
	margin: 5px 0 5px 0;
	font-size: 11px;
	color: #808080;
}

.CustomSettingsTable TH {
	text-align: left;
	font-weight: normal;
	padding-right: 20px;
}


@media screen and (max-width: 800px) {
	#HeadlineContainer {
		grid-template-columns: calc(20% - 16px) calc(20% - 16px) calc(20% - 16px) calc(20% - 16px) calc(20% - 16px);
	}
}

@media screen and (max-width: 400px) {
	#HeadlineContainer {
		grid-template-columns: calc(25% - 20px) calc(25% - 20px) calc(25% - 20px) calc(25% - 20px);
	}
}


/* ---------------------------------------------------------------------------
More-tools tile 
--------------------------------------------------------------------------- */

.WidgetMoreToolsTileContainer {
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	grid-template-columns: calc(33.33% - 13.33px) calc(33.33% - 13.33px) calc(33.33% - 13.33px);
}

@media screen and (max-width: 1000px) {
	.WidgetMoreToolsTileContainer {
		grid-template-columns: calc(50% - 10px) calc(50% - 10px);
	}
}

@media screen and (max-width: 650px) {
	.WidgetMoreToolsTileContainer {
		grid-template-columns: 100%;
	}
}

.WidgetMoreToolsTile {
	border-radius: 15px;
	box-shadow: 0px 0px 10px #00000029;
	padding: 15px;
	cursor: pointer;
}

.WidgetMoreToolsTile .TileTitle {
	font-weight: bold;
	color: #070056;
	font-size: 16px;
}

.WidgetMoreToolsTile .TileBody {
	margin: 10px 0 2px 0;
	line-height: 150%;
	min-height: 65px;
	font-size: 16px;
}

.WidgetMoreToolsTile .TileArrow {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px 0 20px;
	font-family: FA6;
	text-align: right;
	color: #FFD400;
	border: 0;
	text-decoration: none;
	font-size: 32px;
}
