/*   breaking news  */
.blink_me {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  40% {
    opacity: 0;
  }
}

.showNewsTicker {
  animation: NewsTicker 0s 0.7s forwards;
  visibility: hidden;
}

@keyframes NewsTicker {
  to   { visibility: visible; }
}

.breaking-news {
  text-align: left;
  cursor: pointer;
  z-index: 2;
  position: fixed;
  padding-left: 10%;
  padding-right: 5%;
  bottom: 0px;
  left: 0;
  margin: auto;
  width: 100%;
/*  background: #333333eb;*/
/*  background: #c00;*/
  background: #8F45FF;
  color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
/*D000FF 8F45FF 5B23B4  */

/*background: rgb(208,0,255);*/
/*background: linear-gradient(90deg, rgba(208,0,255,1) 25%, rgba(143,69,255,1) 100%);*/
}

.breaking-news-content {
  padding: 15px;
/*  text-align: justify;*/
  margin: auto;
  font-size: 1.2em;
  font-weight: bold;

}

.breaking-news-content::before {
  /*content: "X"; 
  padding-right: 8px;
  color: yellowgreen; /* Or a color you prefer */
}

.breaking-news-content a, .breaking-news-content a:visited {
  color: #90d0fd!important;
}

.ultima-ora {
  text-align: right;
  margin-right: 10px;
  padding: 12px 12px 10px 0;
  font-size: 1.3em;
  float: left;
  border-right: solid #40ACF9 4px;
  font-weight: bold;
  
}

#content_ticker {
/*  width: 80%;*/
}

@media  (max-width: 600px)  {
  .breaking-news {
    padding-left: 2px;
    padding-right: 2px;
    align-items: unset;
/*    background: rgb(208,0,255);
background: linear-gradient(90deg, rgba(208,0,255,1) 25%, rgba(143,69,255,1) 100%);*/
  }
  .breaking-news-content  {
    font-size: inherit;
    font-weight: unset;
  }

  .ultima-ora {
    margin-right: 0;
    font-size: unset;
    text-align: unset;
    padding: 12px 5px 10px 0;
    border-width: 2px;
  }

  

}