.index-list {
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: 'Lato';
  max-height: 95vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .index-list .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 992px) {
  .index-list .header .title {
    display: none;
  }
}
.index-list .header .mobile-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  outline: none;
  background-color: var(--secondary);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (min-width: 993px) {
  .index-list .header .mobile-title {
    display: none;
  }
}
.index-list .header .mobile-title i {
  display: inline-block;
  color: var(--primary);
  margin-left: 10px;
}
@media (min-width: 992px) {
  .index-list .header .mobile-title i {
    display: none;
  }
}
.index-list .header p {
  font-size: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'Lato';
  font-weight: 900;
  line-height: 40px;
}
@media (max-width: 992px) {
  .index-list .header p {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .index-list {
    position: sticky;
    top: 50px;
    z-index: 99;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: var(--secondary);
  }
}
.index-list #list {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .index-list #list {
    display: none;
    background-color: var(--secondary);
  }
}
.index-list #list li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.index-list #list a {
  color: black;
  font-size: 16px;
  padding: 5px 0;
}
.index-list #list a:hover {
  color: var(--primary);
  text-decoration: none;
}
