.breadcrumb {
  position: relative;
  background-color: #333333;
  padding: 12px 130px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

.breadcrumb a:after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 3px;
  border: 2px solid #bcbcbc;
  margin: 0 15px;
  vertical-align: 0;
  transform: rotate(45deg);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 1023px) {
  .breadcrumb .breadcrumb-inner {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb {
    padding: 15px 20px;
  }
}

.breadcrumb.active {
  background-color: #000;
}

.breadcrumb.active .breadcrumb-inner {
  display: none;
}

/*# sourceMappingURL=single-breadcrumb.css.map */