#breaking-news {
    display: flex;
    flex-direction: row;
    background-color: #E4E4E4!important;
}

.breaking-title {
    width: auto;
    background: #bc1812;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breaking-title > h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 7px;
    line-height: 40px;
    font-size: 20px;
    color: #ffffff;
    box-sizing: border-box;
}

.breaking-title > span {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #ffffff;
}

.breaking-title span {
    animation: blinker 1s linear infinite;
}

.btn-breaking-close {
    position: absolute;
    font-size: 20px;
    top: 25%;
    right: 1%;
    color: gray;
}

.btn-breaking-close:hover {
    cursor: pointer;
    color: black;
}

.breaking_news_content {
    width: 100%;
    background-color: #E4E4E4;
    font-size: 20px;
    align-items: center;
}

@keyframes blinker {
    50% {
        opacity: .1;
    }
}

