/* Color Tokens */
.color-tokens {
	color: #58A4AD; /* $primary */
	background-color: #546A76; /* $secondary */
	border-left-color: #F9B95E; /* $tertiary */
	border-right-color: #F5F5F5; /* $light */
	border-top-color: #FFFFFF; /* $white */
	border-bottom-color: #4A4B4C; /* $dark */
}
/* End Color Tokens */

/* Accolades */
.accolade-panel {
	background-color: #F5F5F5; /* $light */
	padding: 2em 0;
}

.accolade-panel .flex {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.accolade-panel .flex div {
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	position: relative;
}

.accolade-panel .flex div h3, .accolade-panel .flex div p.likeh3 {
	color: #58A4AD;
	font-style: italic;
	padding-bottom: 1em;
	font-size: 1.388em;
	font-weight: normal;
	margin: 0 0 1em 0;
	font-family: 'Prompt', sans-serif;
	line-height: 1.2em;
}

.accolade-panel .flex div.accolade-list {
	-webkit-flex: 1 1 100%;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
}

.accolade-panel ul {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.accolade-panel ul:not(:only-child) {
	-webkit-animation: fade2Ul 5s linear 0s infinite forwards;
	animation: fade2Ul 5s linear 0s infinite forwards;
	opacity: 1;
}

.accolade-panel ul:nth-child(2) {
	-webkit-animation: fade2Ul 5s linear -2.5s infinite forwards;
	animation: fade2Ul 5s linear -2.5s infinite forwards;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@-webkit-keyframes fade2Ul {
	0% { opacity: 1; }
	25% { opacity: 0; }
	75% { opacity: 0; }
	100% { opacity: 1; }
}

@-moz-keyframes fade2Ul {
	0% { opacity: 1; }
	25% { opacity: 0; }
	75% { opacity: 0; }
	100% { opacity: 1; }
}

@-o-keyframes fade2Ul {
	0% { opacity: 1; }
	25% { opacity: 0; }
	75% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes fade2Ul {
	0% { opacity: 1; }
	25% { opacity: 0; }
	75% { opacity: 0; }
	100% { opacity: 1; }
}

.accolade-panel ul li {
	padding: 0 1em;
}
/* End Accolades */

/* IE Fallbacks */
.no-flexbox .accolade-panel ul {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.no-flexbox .accolade-panel ul li {
	display: table-cell;
}
/* End IE Fallbacks */

/* Responsive */
@media (max-width:800px) {
	.accolade-panel .flex {
		display: block;
		text-align: center;
	}

	.accolade-panel ul li {
		padding: 1em 2%;
	}
}

@media (max-width:600px) {
	.accolade-panel {
		display: none;
	}
}
/* End Responsive */
