.breaking-news-ticker{
  display: block;
  width: 100%;
  height: 80px !important;
  box-sizing: border-box;
  position: relative;
  line-height: 26px !important;
  /*overflow: hidden;*/
  text-align: auto;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 !important;
}
.breaking-news-ticker *{
  box-sizing: border-box;
}
.breaking-news-ticker.bn-fixed-top{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.breaking-news-ticker.bn-fixed-bottom{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

/*********************************/
/*title styles start**************/
.bn-label{
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  background-color: #D82E2A;
  text-align: center;
  color: #FFF;
  z-index: 3;
  padding-right: 40px;
  white-space: nowrap;
    font-weight: 600;
}
/*title styles end****************/



/*********************************/
/*news item style start **********/
.bn-news{
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  height: 100%;
  right: 0;
  overflow: hidden;
}
.bn-news ul{
  display: block;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}
.bn-news ul li{
  white-space: nowrap;
  overflow:hidden !important;
  text-overflow: ellipsis;
  text-decoration: none;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
  position: absolute;
  width: 100%;
  /*display: none;*/
  color: #333;
}
.bn-news ul li a{
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  padding: 1px 10px 1px 40px;
  color: #000;
  position: relative;
  display: block;
  overflow: hidden;
}
.bn-news ul li a > span {
    display: inline-block;
    margin-left: 15px;
    position: relative;
}
.bn-news ul li a > span:before {
  color: #727272;
  content: "#";
  padding-right: 4px;
}
.bn-news ul li a:hover{
  color: #D82E2A;
}
.bn-loader-text{
  padding: 0 10px;
}
.bn-seperator{
  display: inline-block;
  float: left;
  margin-right: 15px;
  width: 30px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.bn-seperator.bn-news-dot{
  margin-right: 0;
}
.bn-seperator.bn-news-dot:after{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -4px;
}
.bn-prefix{
  color: #d65d7a;
  margin-right: 15px;
  padding-left: 10px;
}
.bn-positive{
  color: #0b8457;
  font-weight: bold;
}
.bn-negative{
  color: #dc2f2f;
  font-weight: bold;
}
/*news item style end ************/



/*********************************/
/*controls style start ***********/
.bn-controls{
  width: auto;
  right: -10px;
  top: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bn-controls button{
  width: 35px;
  float: left;
  height: 100%;
  cursor: pointer;
  border:none;
  text-align: center;
  outline: none;
    background-color: transparent;
}
.bn-controls button:hover .bn-arrow:after{
    border-color: #000;
}

.bn-arrow {
  margin: 0;
  display: inline-block;
  height: 8px;
  position: relative;
  width: 8px;
  top: 0px;
}
.bn-arrow:after {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
  content: '';
  display: inline-block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
.bn-arrow.bn-next {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  left:-3px;
}
.bn-arrow.bn-prev {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 3px;
}
.bn-arrow:after{
  border-color: #B7B7B7;
}
.bn-arrow:before{
  background-color: #999999;
}
.bn-play{
  position: relative;
  background: #999999;
  width: 0;
  height: 12px;
  display: inline-block;
  margin-left: -5px;
}
.bn-play:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #999999;
  border-width: 8px;
  margin-top: -8px;
}
.bn-pause{
  position: relative;
  width: 0;
  height: 14px;
  display: inline-block;
  top: 1px;
  left:-1px;
}
.bn-pause:before{
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 3px;
  background-color: #999999;
}
.bn-pause:after{
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: -3px;
  background-color: #999999;
}
/*controls style end *************/
/*********************************/
.bn-direction-rtl{
  direction: rtl;
}
.bn-direction-rtl .bn-label{
  left: auto;
  right: 0;
}
.bn-direction-rtl .bn-controls{
  right: auto;
  left: 0;
}
.bn-direction-rtl .bn-seperator{
  margin-left: 15px;
  margin-right: 0;
  float: right;
}
.bn-direction-rtl .bn-prefix{
  margin-left: 15px;
  margin-right: 0;
  padding-left: 0;
  padding-right: 10px;
}
.bn-direction-rtl .bn-controls button{
  border-left: none;
  border-right: solid 1px #EEE;
}

.bn-effect-scroll .bn-news ul{
  display: block;
  width: 100%;
  position: relative;
}
.bn-effect-scroll .bn-news ul li{
  display: list-item;
  float: left;
  position: relative;
  width: auto;
}
.bn-effect-scroll.bn-direction-rtl .bn-news ul li{
  float: right;
}


.breaking-news-ticker .col-lg-2 {
  width: 20%; 
  font-size: 20px; 
  color:#376067; 
  box-shadow: rgba(0, 0, 0, 0.15) 0.95px 0.05px 0.6px;
}

.breaking-news-ticker .item {
  font-size: 20px; 
  color:#376067; 
  box-shadow: rgba(0, 0, 0, 0.15) 0.95px 0.05px 0.6px;
  text-align: center;
}
.g-rate-box.row {
    margin-left: 15px;
  margin-right: 15px;
  }
.g-rate-box {
 /* background: linear-gradient(180deg, rgb(232, 232, 232) 22%, rgb(167, 167, 167) 100%);
  border: 1px solid #d7d7d7;
  border-radius: 5px;*/
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 6px;
  padding-bottom: 10px;
}
.breaking-news-ticker .col-lg-2 .divider{
  border-style: solid;
  border-width: 0px;
  border-image: linear-gradient(to left, rgba(0, 0, 0, 0) 1%, rgb(100, 195, 195) 50%, rgba(0, 0, 0, 0) 100%) 100% 0 100% 0/0px 0 3px 0 stretch; 
  margin-top: 6px;
  padding-top: 6px;
}

.breaking-news-ticker .divider{
  border-style: solid;
  border-width: 0px;
  border-image: linear-gradient(to left, rgba(0, 0, 0, 0) 1%, rgb(100, 195, 195) 50%, rgba(0, 0, 0, 0) 100%) 100% 0 100% 0/0px 0 3px 0 stretch; 
  margin-top: 6px;
  padding-top: 6px;
}

 .breaking-news-ticker h3 { color: #376067;}

.breaking-news-ticker h3 i{
font-weight: 500;
  line-height: 1.2;
  font-size: 1.75rem;
    color: #376067;
}
 .breaking-news-ticker .owl-carousel .owl-item img {
  width: auto;
  /* width: ; */
  display: initial;
    margin-left: 5px;
}

.breaking-news-ticker .img-tri{
 /* width: 100%;
  max-width: 300px;*/
}
.breaking-news-ticker .img-tri{
  animation: rotate-logo 10s linear infinite;
}
@keyframes rotate-logo {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
@media (max-width: 767px) {

  }

/*********************************/
/*********************************/
