@import url(https://fonts.googleapis.com/css?family=Montserrat);


.ticker {
 
  width: 100%;
  padding: 5px 0 100px;
  position: fixed;
  bottom: -90px;
  left: 0;
  font-family: 'Montserrat', Arial;
  z-index:9199;
}

.ticker-logo-channel {
  position: absolute;
  top: -20px;
  left: 20px;
  color: #2793e8;
  font-size: 60px;
  font-weight: bold;
  font-style: italic;
}

.ticker-logo {
  position: absolute;
  top: -140px;
  left: 30px;
  z-index: 1000;
}

.ticker-logo:before {
  display: table;
  content: "";
  width: 260px;
  height: 91px;
  position: absolute;
  top: 2px;
  left: -100px;
  
  /* W3C */
}

.ticker-tip {
  width: 40%;
  padding: 6px 0;
  margin-left: 200px;
  box-shadow: inset 0 -3px 3px rgba(255, 255, 255, 0.5);
  background-color: #c9373e;
  color: #ffffff;
  -webkit-transform: skew(-45deg, 0);
          transform: skew(-45deg, 0);
}

.ticker-tip-info {
  margin-left: 50px;
  position: relative;
  -webkit-transform: skew(45deg, 0);
          transform: skew(45deg, 0);
}

.icon-info {
  display: block;
  padding: 0px 10px;
  border-radius: 50%;
  border: 3px solid green;
  box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: -6px;
  left: -45px;
  background-color: #c9373e;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.ticker-title {
  width: 2500px;
  margin-top: 5px;
  padding-bottom: 5px;
  color: green;
  font-size: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 2px #065b70;
  background-color: #fff;

  /* W3C */
}

.ticker-title > * {
  display: inline-block;
  margin-right: 50px;
  -webkit-animation: title 6s infinite linear;
          animation: title 6s infinite linear;
}

@-webkit-keyframes title {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-233px);
            transform: translateX(-233px);
  }
}

@keyframes title {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-233px);
            transform: translateX(-233px);
  }
}
.ticker-news {
  width: 3000px;
  padding: 10px 0;
  color: #ffffff;
  font-size: 26px;
  text-transform: uppercase;
  text-shadow: 0 0 5px black;
  background: #a7bcc5;
  /* W3C */
}

.ticker-news > * {
  display: inline-block;
  -webkit-animation: news 20s infinite linear;
          animation: news 20s infinite linear;
}

@-webkit-keyframes news {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-2135px);
            transform: translateX(-2135px);
  }
}

@keyframes news {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-2135px);
            transform: translateX(-2135px);
  }
}


@media (max-width: 992px) {
	


  .ticker-logo{
	  display:none;
  }
  
  .ticker-tip {
  width: 100%;
  padding: 6px 0;
  margin-left: 20px;
  box-shadow: inset 0 -3px 3px rgba(255, 255, 255, 0.5);
  background-color: #c9373e;
  color: #ffffff;
  font-size:14px;
  -webkit-transform: skew(-45deg, 0);
          transform: skew(-45deg, 0);
}

.ticker-title {
  width: 2500px;
  margin-top: 5px;
  padding-bottom: 5px;
  color: green;
  font-size: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 2px #065b70;
  background-color: #fff;

  /* W3C */
}

}