.breaking-news-container {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    align-items: center;
	justify-content:center;
}

.breaking-news-wrapper {
    flex: 1 1 auto; /* Allow the wrapper to grow */
    max-width: 85%; /* Limit the width to 90% */
	padding:10px;
	text-align:center;
}

.last-news{
	font-family:"Marcellus";
}

.close-wrapper {
    flex: 0 0 auto; /* Allow the close-wrapper to maintain its size */
}
.close:hover{
	cursor:pointer;
}

.breaking-news-container a {
    color: #fff !important;
}

.breaking-news-container span {
    font-size: 12px;

    font-family: 'Source Sans 3';
    white-space: normal; /* Allow text to wrap */
    color: #fff;
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.breaking-news-container strong {
    display: inline; /* Remove any indentation caused by strong tags */
}

@media only screen and (max-width: 1023px) {
  .breaking-news-wrapper {
	padding:2% 0%;
  }
  .last-news{
	display:none;
  }
	.breaking-news-wrapper{
		text-align:left;
	}
}