/*!
 * 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.0.2
 *
 */
 
.jctkr-wrapper,
.jctkr-wrapper *{
  box-sizing: border-box;
}
.jctkr-wrapper{
  display: inline-block;
  position: relative;
  width: 100%;
  height: 45px;
  vertical-align: middle;
  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;
  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;
}
.jctkr-label{
  display: inline-block;
}

.wrap{
  width: 100%;
  max-height: 35px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background: #fff;
  border-radius: 0;
  /*box-shadow: inset 0 0 7px rgba(69, 78, 140,0.5);*/
}
.jctkr-label{
  height: 35px;
  padding: 8px 7px;
  line-height: 32px;
  /*background: rgba(69, 78, 140,0.7);*/
  /*font-style: italic;*/
  font-size: 17px;
  color: #8b0039;
  cursor: default;
}

.jctkr-wrapper ul{
  display: inline-block;
  opacity: 0.5;
}
.jctkr-wrapper ul li{
  padding: 8px 15px;
  line-height: 1.73;
  font-size: 16px;
}