aside {
  padding-top: 1.5rem !important;
}

.bc-container {
  top: 1rem;
  margin-bottom: 1.5rem;
}

.bc {
  width: 100%;
  height: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.bc li {
  margin: 0px 6px 0 6px;
  flex: 0 0 auto;
}

.bc a {
  text-decoration: none;
  color: #777;
  /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15); */
  position: relative;
  height: 100%;
  font-size: 13px;
  line-height: 25px;
  margin-right: 5px;
}

.bc a.hasPage {
  color: #444;
  text-shadow: 1px 1px 1px rgba(18, 53, 70, 0.26);
}

.bc a.hasPage:hover {
  color: var(--dark-primary);
  text-shadow: 0px 0px 2px var(--primary);
  color: #444;
}

.bc a:after {
  content: '/';
  position: absolute;
  top: 75%;
  margin-top: -17px;
  left: -10px;
  font-size: 17px;
  color: #777;
  text-shadow: none;
}

.bc-title {
  line-height: 22px;
  opacity: 0.8;
  padding: 0 7px 0 0;
  background-image: linear-gradient(to right, var(--accent), var(--light-primary));
  box-sizing: border-box;
  height: 24px;
  position: relative;
  width: 61px;
  flex: 0 0 auto;
  margin-left: 10px;
  font-size: 11px;
}

.bc-title:after {
  content: '';
  position: absolute;
  right: 100%;
  height: 0;
  width: 0;
  border: 12px solid transparent;
  top: 0;
  border-right-color: var(--accent);
}

@media (min-width: 769px) {
  .bc {
    overflow: hidden;
    height: 34px;
  }

  .bc-title {
    display: none;
  }

  .bc li {
    margin: 0px 6px 0 18px;
    height: 34px;
  }

  .bc a {
    background-image: linear-gradient(left bottom, var(--light-primary) 31%, #f5f5f5 83%);
    background-image: -o-linear-gradient(left bottom, var(--light-primary) 31%, #f5f5f5 83%);
    background-image: -moz-linear-gradient(left bottom, var(--light-primary) 31%, #f5f5f5 83%);
    background-image: -webkit-linear-gradient(left bottom, var(--light-primary) 31%, #f5f5f5 83%);
    background-image: -ms-linear-gradient(left bottom, var(--light-primary) 31%, #f5f5f5 83%);

    background-image: -webkit-gradient(
      linear,
      left bottom,
      right top,
      color-stop(0.31, var(--light-primary)),
      color-stop(0.83, #f5f5f5)
    );
    padding: 6px 8px;
    float: right;
    color: #777;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 12px;
    margin-right: 0px;
  }

  .bc a.hasPage {
    text-shadow: none;
  }

  .bc a.hasPage:hover {
    background: var(--accent);
    color: var(--dark-primary);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
  }

  .bc a:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -17px;
    border-width: 17px 18px 17px 0px;
    border-style: solid;
    border-color: #f5f5f5 transparent #f5f5f5 #f5f5f5;
    right: -18px;
  }

  .bc a.hasPage:hover:before {
    border-color: var(--accent) transparent var(--accent) var(--accent);
  }

  .bc a:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -17px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-right: 17px solid var(--light-primary);
    left: -17px;
  }

  .bc a.hasPage:hover:after {
    border-right-color: var(--accent);
  }

  .bc .first {
    border-radius: 0 5px 5px 0;
    margin-right: -17x;
  }

  .bc .first:before {
    visibility: hidden;
  }

  .bc .current {
    border-radius: 0 5px 5px 0;
    color: #222;
  }

  .bc .current:after {
    content: normal;
  }

  .bc-container {
    position: absolute;
    right: calc(100% + 1rem);
    width: calc(300% - 1rem);
  }
}
