/*!
 * 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: 55px;
  vertical-align: top;
  overflow: hidden;
  border-top: 2px solid #e30613;
  border-bottom: 2px solid #e30613;
  padding: 1em 0;
}
.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: 'DM Sans', sans-serif;
  font-size: 18px;
  padding: .5em 1em;
}
.jctkr-label {
  display: inline-block;
}
