@charset "utf-8";
/* CSS Document */

.breakingNews > ul > li > a {
  text-decoration: none;
  color: #333;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
}
.breakingNews > ul > li > a > span {
  color: #2096cd;
}
.breakingNews > ul > li > a:hover {
  color: #2096cd;
}

.breakingNews > .bn-navi {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
}
.breakingNews > .bn-navi > span {
  width: 20px;
  height: 30px;
  position: absolute;
  top: 0;
  cursor: pointer;
  opacity: 0.3;
  /* background-image: url(../img/bn-arrows.png); */
  background-repeat: no-repeat;
}
.breakingNews > .bn-navi > span:hover {
  opacity: 1;
}
.breakingNews > .bn-navi > span:first-child {
  background-position: left center;
  left: 0;
}
.breakingNews > .bn-navi > span:last-child {
  background-position: right center;
  right: 0;
}
.breakingNews:hover .bn-navi {
  opacity: 1;
}

.bn-large {
  height: 50px;
}
.bn-large > .bn-title {
  height: 50px;
}
.bn-large > .bn-title > h2 {
  line-height: 50px;
  font-size: 26px;
}
.bn-large > .bn-title > span {
  top: 15px;
}
.bn-large > ul {
  height: 50px;
  left: 250px;
  font-size: 20px;
}
.bn-large > ul > li {
  height: 50px;
  line-height: 50px;
}
.bn-large > .bn-navi {
  height: 50px;
}
.bn-large > .bn-navi > span {
  height: 50px;
}

.bn-small {
  height: 30px;
}
.bn-small > .bn-title {
  height: 30px;
}
.bn-small > .bn-title > h2 {
  line-height: 30px;
  font-size: 18px;
}
.bn-small > .bn-title > span {
  top: 5px;
}
.bn-small > ul {
  height: 30px;
  left: 200px;
  font-size: 14px;
}
.bn-small > ul > li {
  height: 30px;
  line-height: 30px;
}
.bn-small > .bn-navi {
  height: 30px;
}
.bn-small > .bn-navi > span {
  height: 30px;
}

/*color styles -----------------------------*/
.bn-red {
  border-color: #f44a56;
}
.bn-red > ul > li > a:hover,
.bn-red > ul > li > a > span {
  color: #ffa601;
}

.bn-green {
  border-color: #27ae60;
}
.bn-green > .bn-title {
  background: #27ae60;
}
.bn-green > .bn-title > span {
  border-left-color: #27ae60;
}
.bn-green > ul > li > a:hover,
.bn-green > ul > li > a > span {
  color: #27ae60;
}

.bn-purple {
  border-color: #795aac;
}
.bn-purple > .bn-title {
  background: #795aac;
}
.bn-purple > .bn-title > span {
  border-left-color: #795aac;
}
.bn-purple > ul > li > a:hover,
.bn-purple > ul > li > a > span {
  color: #795aac;
}

.bn-turquoise {
  border-color: #1fb5ad;
}
.bn-turquoise > .bn-title {
  background: #1fb5ad;
}
.bn-turquoise > .bn-title > span {
  border-left-color: #1fb5ad;
}
.bn-turquoise > ul > li > a:hover,
.bn-turquoise > ul > li > a > span {
  color: #1fb5ad;
}

.bn-orange {
  border-color: #f46e27;
}
.bn-orange > .bn-title {
  background: #f46e27;
}
.bn-orange > .bn-title > span {
  border-left-color: #f46e27;
}
.bn-orange > ul > li > a:hover,
.bn-orange > ul > li > a > span {
  color: #f46e27;
}

.bn-black {
  border-color: #333;
}
.bn-black > .bn-title {
  background: #333;
}
.bn-black > .bn-title > span {
  border-left-color: #333;
}
.bn-black > ul > li > a:hover,
.bn-black > ul > li > a > span {
  color: #333;
}

.bn-yellow {
  border-color: #d3ac23;
}
.bn-yellow > .bn-title {
  background: #d3ac23;
}
.bn-yellow > .bn-title > span {
  border-left-color: #d3ac23;
}
.bn-yellow > ul > li > a:hover,
.bn-yellow > ul > li > a > span {
  color: #d3ac23;
}

.bn-light {
  border-color: #ddd;
}
.bn-light > .bn-title {
  background: #ddd;
}
.bn-light > .bn-title > h2 {
  color: #333;
}
.bn-light > .bn-title > span {
  border-left-color: #ddd;
}
.bn-light > ul > li > a:hover,
.bn-light > ul > li > a > span {
  color: #ddd;
}

.bn-pink {
  border-color: #d65aac;
}
.bn-pink > .bn-title {
  background: #d65aac;
}
.bn-pink > .bn-title > span {
  border-left-color: #d65aac;
}
.bn-pink > ul > li > a:hover,
.bn-pink > ul > li > a > span {
  color: #d65aac;
}

.bn-darkred {
  border-color: #d01e1e;
}
.bn-darkred > .bn-title {
  background: #d01e1e;
}
.bn-darkred > .bn-title > span {
  border-left-color: #d01e1e;
}
.bn-darkred > ul > li > a:hover,
.bn-darkred > ul > li > a > span {
  color: #d01e1e;
}

.bn-bordernone {
  border: none;
}
.bn-italic > ul > li > a {
  font-style: italic;
}
.bn-bold > ul > li > a {
  font-weight: bold;
}

.breakingNews > .bn-navi,
.breakingNews > ul > li > a,
.breakingNews > .bn-navi > span {
  transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  -webkit-transition: 0.25s linear;
}

.text-warning {
  color: #ffc63c !important;
}

ul li {
  list-style-type: none;
}

.news_date h1 {
  margin-top: 0 !important;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
}

.d-flex {
  display: flex;
  align-items: center;
}

.m-0 {
  margin: 0;
}

.breakingNews ul {
  padding: 0px 15px !important;
  margin: 0 !important;
}

.breakingNews ul li {
  border-bottom: 1px #ffffff5e solid;
  padding: 15px;
}

.news_date {
  padding-right: 10px;
  border-right: 1px #eceff1 solid;
  text-align: center;
}

.news_discription {
  padding-left: 10px;
}

.news_date div {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    /* color: #fff; */
}

.text-light {
  color: #fff !important;
  font-weight: 400;
  line-height: 1.5;
}
.text-white{
  color: #fff;
}