/*   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 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #8F45FF;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10%;
  padding-right: 5%;
  z-index: 2;
  text-align: left;
  overflow: hidden;
}

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

}


.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;
  
}

.breaking-news__close {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 44px;                 
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
 
  padding: 0;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.2s ease;
 
}

.breaking-news__close:focus,
.breaking-news__close:active {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 1;
}



@media  (max-width: 600px)  {
  .breaking-news {
    padding-left: 2px;
    padding-right: 2px;
    align-items: unset;

  }
  .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;
  }

  .breaking-news__close {
    left: 8px;
    top: 53px;
    font-size: 3.5em;

      }

}