/* -- All Templates except Centerpoint -- */
#trib-candles-container {
	width: 100%;
}
#candle-holder {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
.candle-outer {
	flex: 1;
	text-align: center;
	cursor: pointer;
	margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
	#candle-holder { flex-wrap: wrap; }
	.candle-outer { min-width: 120px; min-width: 45%; }
}

.candle-inner {
	max-width: 200px;
}
.candle-inner img {
	filter: brightness(0.5);
	border-radius: 50%;
	border: 15px solid transparent;
	margin-bottom: 10px;
	transition: all 250ms ease-in-out;
}
.candle-inner.candle-selected img,
.candle-inner:hover img {
	filter: brightness(1);
	border: 0px solid transparent;
	transition: all 300ms ease-in-out;
}
.candle-label {
	cursor: pointer;
}
.candle-inner:hover span,
.candle-inner.candle-selected span {
    font-weight: bold;
}

/* -- Centerpoint -- */

main#centerPoint .candle-outer {
	width: auto;
	margin-bottom: 1em;
}
