.list-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0;
}

.list-container .list-left {
  border-right: 1px solid var(--theme-color);
  /* padding: 0; */
}

.list-container .list-right {
  flex: 1;
  /* padding: 0; */
}

.list-footer {
  font-size: 1rem;
}

.list-footer .page-label span {
  border-width: 0;
}

.list-footer .page-link {
  font-size: 1rem;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border: 1px solid var(--theme-color);
}

.list-footer .active .page-link {
  color: #fff;
  background-color: var(--theme-color);
}

.article-list {
    margin: 0;
    padding: 0;
}

.article-list li {
  width: 100%;
  font-size: 1.25rem;
  line-height: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-list li a::before{
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: rgb(2, 2, 33);
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}



.article-list li:nth-child(5n + 5) {
  margin-bottom: 2rem;
}

.article-list li a {
  overflow: hidden;
  width: 85%;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-list .article-time {
  font-size: 0.8rem;
}

.nav-channel {
    width: 100%;
    height: 4rem;
    border: 1px solid var(--theme-color);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(var(--theme-color-lighten), var(--theme-color) 50%, var(--theme-color-lighten));
 }

 .nav-channel-item a{
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
 }

.channel-list{
    margin: 1rem 0;
}

.list-group-item{
    font-size: 1.25rem;
    padding: .8rem 1rem;
    border: 1px dashed var(--theme-color);
}

.list-group-item.active{
    background-color: var(--theme-color-lighten);
    border-color: var(--theme-color-lighten);
}

.list-group-item-child {
    font-size: 1rem;
}

.d-lg-block .page-item:nth-child(2) .page-link{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

@media (max-width: 768px) {

    .list-container .list-left {
        border: 0;
        padding: 0;
        border-bottom: 1px solid var(--theme-color);
      }
      
      .list-container .list-right {
       
        padding: 0;
      }

    .article-list li {
      font-size: 1rem;
      line-height: 2rem;
    }

    .article-list li a {
        overflow: hidden;
        width: 100%;
        display: block;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      
      .article-list .article-time {
        width: 0;
        display: none;
      }
  }


.slidable ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.slidable .title-container {
    display: block;
}

.slidable .title {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.5rem;
}

.slidable .title.active {
    border-bottom: 1px solid var(--theme-color);
}

.btn-search-button {
    background-color: var(--theme-color);
}

.btn-search-button:hover {
    background-color: var(--theme-color-darken);
}

.search_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .search_list li {
        border-bottom: 1px dashed #333;
    }

        .search_list li span {
            font-size: 0.8rem;
        }

    .search_list p {
        line-height: 2;
        font-size: 0.9rem;
        padding-left: 1rem;
    }

    .search_list .li-category {
        color: #fd7e14;
    }

    .search_list .li-title {
        color: #111;
        font-size: 1.25rem;
    }

.search-block {
    border-radius: 5px;
    border: 1px solid var(--theme-color);
    padding: 1rem 1rem;
}

