@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
@keyframes ticker {
	0%   {margin-top: 0}
	25%  {margin-top: -30px}
	50%  {margin-top: -60px}
	75%  {margin-top: -90px}
	100% {margin-top: 0}
}

body { background: #333; width: 100%; height: 100% }

.news {
  /* box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);   */  /* nassima   comment*/  
  box-shadow: inset 0 -15px 30px rgb(255 255 255 / 40%), 0 5px 10px rgb(255 255 255 / 50%);   /* nassima */ 
  
  
  /* width: 350px;  */ /* nassima   comment*/ 
  width: 100%;   /* nassima   comment*/ 


  height: 30px;
  margin: 20px 5px;
  overflow: hidden;
  border-radius: 4px;
  /*  padding: 3px;      */      /*   nassima   comment     */ 
  -webkit-user-select: none;


  background: #f5f5f5;  /* nassima */


} 

.news span {

  background: #03a9f4;  /* nassima */



  float: left;
  color: #fff;
  padding: 6px;
  position: relative;
  top: 1%;
  border-radius: 4px;
  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);
  font: 16px 'Source Sans Pro', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  cursor: pointer
}

.news ul {

  background: #f5f5f5;   /* nassima */



  float: left;
  padding-left: 20px;
  animation: ticker 10s cubic-bezier(1, 0, .5, 0) infinite;
  -webkit-user-select: none
}

.news ul li {line-height: 30px; list-style: none }

.news ul li a {
   color: #000;
  text-decoration: none;
  font: 14px Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none
}

.news ul:hover { animation-play-state: paused }
.news span:hover+ul { animation-play-state: paused }

/* OTHER COLORS */
.blue { background: #347fd0 }
.blue span { background: #2c66be }
.red { background: #d23435 }
.red span { background: #c22b2c }
.green { background: #699B67 }
.green span { background: #547d52 }
.magenta { background: #b63ace }
.magenta span { background: #842696 }




  .container-title {
  /*width: 13%;*/
  height: 100%;
  overflow: hidden;
  padding: 4px 15px 0 15px;
  float: left;
  background: #03a9f4;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;

  box-sizing: initial;   /* nassima */

}




