.news-list {
   display: flex;
   flex-direction: column;
   align-items: center;
}
.news-list .sport-title {
   display: flex;
   align-items: center;
   font-size: 24px;
   font-weight: 600;
   padding: 5px 10px;
   line-height: 38px;
   border-radius: 4px 4px 0 0;
   text-transform: uppercase;
   width: 100%;
}
.news-list .sport-title a {
   color: inherit;
}
.news-list .sport-title a:hover {
   text-decoration: underline;
}
.news-list .sport-title img {
   height: 38px;
   margin-right: 5px;
}
.news-list ul {
   width: 100%;
   list-style-type: none;
   margin: 0px;
}
.news-list ul li {
   padding: 0 10px;
   background-color: #e8e8e8;
   border-bottom: 1px solid #ddd;
}
.news-list ul li:nth-child(odd) {
   background-color: #f7f6f6;
}
.news-list ul li a {
   display: flex;
   flex-wrap: wrap;
   padding: 5px 0;
   line-height: 1.2em;
   font-size: 13px;
   color: #777;
}
.news-list ul li .news-title {
   color: #000;
   width: 100%;
   font-size: 15px;
   font-weight: 600;
   line-height: 20px;
   height: 20px;
   overflow: hidden;
   /*text-transform: capitalize;*/
/*   width: calc(100% - 15px);
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   max-width: 550px;*/
}
.news-list ul li a:visited .news-title {
   color: #777;
}
.news-list ul li a:hover,
.news-list ul li a:hover .news-title {
   color: var(--ast-global-color-1);
}
.news-list ul li .news-datetime {
   margin: 0 5px;
}
body:not(.logged-in) .news-list ul li .news-views {
   display: none;
}
.news-list .load-more-news-btn {
   display: flex;
   align-items: center;
   font-size: 17px;
   border: 2px solid #E8E8E8;
   border-radius: 4px;
   margin-top: 20px;
   text-align: center;
   color: #000;
   font-weight: 600;
   max-width: 250px;
   padding: 0 10px;
   cursor: pointer;
}
.news-list .load-more-news-btn.loading {
   display: none;
}
.news-list .load-more-news-btn:hover {
   background-color: #E8E8E8;
   /*color: #fff;*/
}
@media (min-width: 768px) AND (max-width: 940px) {
   .news-list .sport-title {
      font-size: 19px;
   }
}
@media (max-width: 500px) {
   .news-list .sport-title {
      font-size: 16px;
   }
   .news-list ul li a {
      font-size: 11px;
   }
   .news-list ul li .news-title {
      font-size: 13px;
   }
}
/* Load more spinner */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 40px;
  margin-top: 20px;
}
.news-list .load-more-news-btn:not(.loading) + .lds-ellipsis {
  display: none;
}
.lds-ellipsis div {
  position: absolute;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2271b1;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 21px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 36px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(15px, 0);
  }
}