/* Start of MA News Ticker */
.jltma-news-ticker {
  width: 100%;
}

.jltma-ticker-content {
  display: flex;
  align-items: stretch;
  margin: 0 auto;
  width: 100%;
}

.jltma-ticker-heading {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  min-width: 130px;
  padding: 10px 15px;
  text-align: center;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  border-radius: 0 5px 5px 0;
  z-index: 2;
}
.jltma-ticker-heading:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #e81739;
  border-bottom: 10px solid transparent;
}

.jltma-ticker-content-details {
  display: flex;
  align-items: center;
  padding: 0 15px 0 15px;
  position: relative;
  width: 100%;
  min-height: 50px;
  overflow: hidden;
  margin-right: -1px;
  border-radius: 5px 0 0 5px;
}

.jltma-ticker-content-inner {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-right: 15px;
}
.jltma-ticker-content-inner.swiper {
  height: 50px;
}
.jltma-ticker-content-inner .swiper-wrapper {
  height: 100%;
  align-items: center;
}
.jltma-ticker-content-inner .swiper-slide {
  display: flex !important;
  align-items: center;
  height: auto !important;
  width: 100% !important;
}
.jltma-ticker-content-inner .swiper-slide img {
  width: 50px;
  height: auto;
  margin-left: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.jltma-ticker-content-inner .swiper-slide a {
  color: #999;
  margin: 0;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jltma-ticker-content-inner .swiper-slide a:hover {
  text-decoration: none;
}

/* News Ticker Navigation */
.jltma-ticker-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 15px;
}
.jltma-ticker-nav > span {
  color: #e81739;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  cursor: pointer;
  transition: color 0.3s ease;
}
.jltma-ticker-nav > span:hover {
  opacity: 0.7;
}

/* End of MA News Ticker */