.mybreadcrumbs {
  border: 1px solid #2d2d2d;
  border-radius: 0.3rem;
  display: inline-flex;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mybreadcrumbs-item {
  background: #2d2d2d;
  color: #7e7e7e;
  outline: none;
  padding: 0.75em 0.75em 0.75em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background 0.2s linear;
}

.mybreadcrumbs-item:hover:after, .mybreadcrumbs-item:hover {
  background: #731a17;
  color: #fff;
}

.mybreadcrumbs-item:focus:after, .mybreadcrumbs-item:focus, .mybreadcrumbs-item.is-active:focus {
  background: #731a17;
  color: #fff;
}

.mybreadcrumbs-item:after, .mybreadcrumbs-item:before {
  background: #2d2d2d;
  bottom: 0;
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  transition: background 0.2s linear;
  width: 1em;
  z-index: 1;
}

.mybreadcrumbs-item:before {
  background: #717171;
  margin-left: 1px;
}

.mybreadcrumbs-item:last-child {
  border-right: none;
}

.mybreadcrumbs-item.is-active {
  background: #731a17;
  color: #fff;
}

.page-item:first-child .page-link {
  border-radius: 9px;
}

.page-item:last-child .page-link {
  border-radius: 9px;
}

.page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #c12924;
  border-color: #c12924;
  box-shadow: rgba(184,41,22,0.89) 0px 4px 16px;
}

.pagination {
  /*box-shadow: rgba(99,99,99,0.2) 0px 2px 8px 0px;*/
  margin: 16px 10px;
}

.page-link.active, .active > .page-link {
  z-index: 3;
  color: #c12924;
  background-color: rgba(140,32,28,0.37);
  border-color: #c12924;
}

.page-link {
  color: #c6c6c6;
  margin: 0 6px;
  border-radius: 9px;
  border-color: #4e4e4e;
  background-color: #212121;
}

.mybreadcrumbs-item h1 {
  font-size: 16px;
  margin: 3px;
}

