/*!
 * jQuery Conveyor Ticker (jConveyorTicker)
 * Description: jQuery plugin to create simple horizontal conveyor belt animated tickers.
 *
 * Copyright (c) 2017 Luis Luz - UXD Lda
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Project home:
 *   https://github.com/lluz/jquery-conveyor-ticker
 *
 * Version:  1.1.0
 *
 */.jctkr-wrapper, .jctkr-wrapper * {
	box-sizing:border-box;
}
.jctkr-wrapper {
	display:inline-block;
	position:relative;
	width:100%;
	height:35px;
	vertical-align:top;
	overflow:hidden;
}
.jctkr-wrapper ul {
	position:absolute;
	left:0;
	top:0;
	height:100%;
	margin:0;
	padding:0;
	list-style:none;
	white-space:nowrap;
	font-size:0;
	text-align:left;
	opacity:0;
	-webkit-transition:opacity 1s;
	transition:opacity 1s;
}
.jctkr-wrapper.jctkr-initialized ul {
	opacity:1
}
.jctkr-wrapper ul li {
	display:inline-block;
	font-family:sans-serif;
	font-size:16px;
	margin:0 8px;
	position: relative;
	margin-left: 30px;
}


.jctkr-wrapper ul li:before {
    position: absolute;
    border-top: solid 5px transparent;
    border-bottom: solid transparent 5px;
    border-left: solid 5px #ff7236;
    content: "";
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.jctkr-label {
	display:inline-block
}

.d-demo-wrap{
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background: #fff;

}
.d-demo-wrap .jctkr-label{
  padding: 0 17px;
  line-height: 42px;
  background:#233d77;
  font-style: italic;
  font-size: 19px;
  color: #fff;
  cursor: default;
}
.d-demo-wrap .jctkr-label:hover{
  background: rgba(69, 78, 140,0.9);
}


.ft-ntc > li > a .dt {
    background-color: #e41d43;
    padding: 5px;
    vertical-align: middle;
    font-weight: bold;
    color: #fff;
    margin-right: 11px;
}

.section-footer ul >li a {
	font-size: 0.9rem;
}
.section-footer .color-text-a, .section-footer .w-footer-a, .nav-footer ul li > a {
	font-size: 0.9rem;
}


.d-demo-wrap {
	width:100%;
	background:#FFF;
	box-sizing:border-box;
	position:relative;
	line-height:40px;
	overflow:hidden;
	border-radius:2px;
	text-align:auto;
	font-size:14px;
	position:fixed;
	z-index:100;
	bottom:0;
}