.chart-section .chart-container {
  border: 1px solid #ededed;
}

.chart-nav {
  background-color: #ededed;
  padding: 0 15px;
}
.chart-nav .iconfont {
  font-size: 1.5625rem;
  padding: 10px;
  background-color: #0e61bb;
  color: #fff;
  border-radius: 50%;
}
.chart-nav .nav-item {
  padding: 10px 5px;
}
.chart-nav .nav-item .nav-link {
  padding: 5px 15px;
  font-size: 1.375rem;
  color: #0e61bb;
  border-radius: 4px;
}
.chart-nav .nav-item .nav-link.active {
  background-color: #0e61bb;
  color: #fff;
}

.tab-nav-wrapper .nav-column-title .nav-item .nav-link.active {
  color: #333;
}

.indicator-section .section-title {
  display: flex;
  justify-content: center;
  font-size: 1.375rem;
}
.indicator-section .section-title:before, .indicator-section .section-title:after {
  z-index: 0;
  position: relative;
  top: -14px;
  content: "";
  flex: 1;
  border-bottom: 2px solid #e5e5e5;
}
.indicator-section .section-title .title {
  z-index: 1;
  padding: 0 15px;
  position: relative;
}
.indicator-section .section-title .title:before, .indicator-section .section-title .title:after {
  display: block;
  position: absolute;
  top: 14px;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0e61bb;
}
.indicator-section .section-title .title:before {
  left: -10px;
}
.indicator-section .section-title .title:after {
  right: -10px;
}

.indicator-list {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.indicator-list .entry {
  flex-basis: 20%;
  min-width: 220px;
  padding: 15px;
}
.indicator-list .entry .entry-link {
  padding: 20px 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: block;
  transition: 0.3s all ease;
}
.indicator-list .entry .entry-link:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.indicator-list .entry .entry-link:hover .iconfont {
  background-color: #0e61bb;
}
.indicator-list .entry .entry-link .iconfont {
  display: block;
  margin: 0 auto 10px;
  width: 68px;
  height: 68px;
  color: #fff;
  font-size: 36px;
  line-height: 68px;
  border-radius: 50%;
  background-color: #c9c9c9;
  transition: 0.3s all ease;
}

@media only screen and (max-width: 1199.9px) {
  .indicator-list .entry {
    flex-basis: 25%;
  }
}
@media only screen and (max-width: 991.9px) {
  .indicator-list .entry {
    flex-basis: 33.3333%;
  }
}
@media only screen and (max-width: 767.9px) {
  .indicator-list .entry {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 575.9px) {
  .indicator-list .entry {
    flex-basis: 100%;
  }
}