/*-----------------------------
	News Ticker
------------------------------*/
.acme-news-ticker {
	
	position: relative;
	height: 45px;
	
	margin-top: 45px;
}

@media (min-width: 768px) {
	.acme-news-ticker {
		margin-top: 0;
	}
}

.acme-news-ticker-label {
	background: var(--primary-color-two);
	padding: 10px 50px;
	width: auto;
	float: left;
	margin-right: 15px;
	line-height: normal;
	height: 100%;
	color: #fff;
}

@media (max-width: 575px) {
	.acme-news-ticker-label {
		position: absolute;
		top: -45px;
	}
}

.acme-news-ticker-box {
	height: 100%;
	padding-top: 10px;
	overflow: hidden;
}

@media (max-width: 575px) {
	.acme-news-ticker-box {
		padding-left: 10px;
		padding-right: 120px;
	}
}

.acme-news-ticker-box ul {
	width: 100%;
	list-style-type: none !important;
	padding: 0;
	margin: 0;
}

	.acme-news-ticker-box ul li a {
		text-decoration: none;
		color:#fff;
	}

.acme-news-ticker-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
}

	.acme-news-ticker-controls button {
		height: 100%;
		background: var(--primary-color-two);
		padding: 0;
		width: 40px;
		border-color: #127aa7;
		border-style: solid;
		border-width: 0 0 0 1px;
		cursor: pointer;
		display: inline-block;
		
	}

		.acme-news-ticker-controls button:hover {
			background: #127aa7;
		}

		.acme-news-ticker-controls button.acme-news-ticker-arrow {
			margin: 0;
			display: inline-block;
			position: relative;
		}

			.acme-news-ticker-controls button.acme-news-ticker-arrow:after {
				border-color: #fff;
				border-bottom-style: solid;
				border-bottom-width: 2px;
				border-right-style: solid;
				border-right-width: 2px;
				content: '';
				display: inline-block;
				height: 8px;
				left: 50%;
				position: absolute;
				top: 50%;
				width: 8px;
			}

		.acme-news-ticker-controls button.acme-news-ticker-pause {
			position: relative;
			display: inline-block;
		}

			.acme-news-ticker-controls button.acme-news-ticker-pause:before {
				position: absolute;
				content: "";
				width: 10px;
				height: 10px;
				border-color: #fff;
				border-style: solid;
				border-width: 0 2px 0;
				-webkit-transform: translate(-50%, -50%);
				-ms-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
				left: 50%;
				top: 50%;
			}

	.acme-news-ticker-controls.acme-news-ticker-horizontal-controls button.acme-news-ticker-prev:after {
		-webkit-transform: translate(-50%, -50%) rotate(135deg);
		-ms-transform: translate(-50%, -50%) rotate(135deg);
		transform: translate(-50%, -50%) rotate(135deg);
	}

	.acme-news-ticker-controls.acme-news-ticker-horizontal-controls button.acme-news-ticker-next:after {
		-webkit-transform: translate(-50%, -50%) rotate(315deg);
		-ms-transform: translate(-50%, -50%) rotate(315deg);
		transform: translate(-50%, -50%) rotate(315deg);
	}

	.acme-news-ticker-controls.acme-news-ticker-vertical-controls button.acme-news-ticker-prev:after {
		-webkit-transform: translate(-50%, -50%) rotate(225deg);
		-ms-transform: translate(-50%, -50%) rotate(225deg);
		transform: translate(-50%, -50%) rotate(225deg);
	}

	.acme-news-ticker-controls.acme-news-ticker-vertical-controls button.acme-news-ticker-next:after {
		-webkit-transform: translate(-50%, -50%) rotate(405deg);
		-ms-transform: translate(-50%, -50%) rotate(405deg);
		transform: translate(-50%, -50%) rotate(405deg);
	}

/*# sourceMappingURL=style.css.map */

.content {
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

	.content * {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

.simple-marquee-container *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.simple-marquee-container {
	width: 100%;
	background: #c63438;
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 45px;
	position: relative;
	cursor: pointer;
}

	.simple-marquee-container .marquee-sibling {
		padding: 0;
		background: var(--primary-color-two);
		width: 20%;
		height: 45px;
		line-height: 42px;
		font-size: 18px;
		font-weight: 500;
		color: #ffffff;
		text-align: center;
		float: left;
		left: 0;
		z-index: 2000;
	}

.simple-marquee-container .marquee, .simple-marquee-container *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
}

.simple-marquee-container .marquee{
  margin-left: 25%;
}

.simple-marquee-container .marquee-content-items{
  display: inline-block;
  padding: 5px;
  margin: 0;
  height: 45px;
  position: relative;
}

.simple-marquee-container .marquee-content-items li{
  display: inline-block;
  line-height: 35px;
  color: #fff;
}
	.simple-marquee-container .marquee-content-items li a{
		
		color: #fff;
	}
.simple-marquee-container .marquee-content-items li:after{
	content: "|";
	margin: 0 1em;
}
