.ticker {
  margin: 0 auto;
  padding: 10px 15px;
  width: 420px;
  text-align: left;
  position: absolute;
  overflow: hidden;
  background-color:#FFF;
	bottom: 60px;
	right: 40px;
	z-index: 100;
	border: #FFF 0px solid;
	padding-left: 20px;
	padding-right: 60px;
	border-radius: 8px;
}
.ticker::before {
    /*content: 'NEWS';
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 20px;
    position: absolute;
	font-weight: 600;
    color: #000;
    top: 12px;
    left: 15px;
	letter-spacing: 0;*/
}
.ticker ul {
  width: 100%;
  position: relative;
}

.ticker ul li {
  width: 100%;
  display: none;
	line-height: 1.5em;
	
}
.ticker ul li a{
	color: #313131;
	display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
	font-size: 13px;
	text-decoration: none;
}
.ticker ul li a:hover{
	text-decoration: underline;
}
.ticker ul li a span{
	font-family: 'Roboto', sans-serif;
font-weight: 600;
	margin-right: 10px;
	color: #00b9e7;
	letter-spacing: 0;
}
.tickMore{
	width: 45px;
	height: 45px;
	position: absolute;
	right: 0px;
	top: 0;
	text-decoration: none;
	background-image: url("../images/right_arrow_circle_wht.png");
	background-size: 18px 18px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #00b9e7;
	border-radius: 0 8px 8px 0;
}
.tickMore a{
	position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 11;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
transition-property: all;
transition: 0.2s ease;
}

@media screen and (max-width:834px){
.ticker {
  width: calc(100% - 110px);
  bottom: 40px;
  right: 20px;
	padding-left: 20px;
  padding-right: 50px;
	height: 45px;
	
	
}
.ticker ul li{
	height: 25px;
	overflow: hidden;
}
}