.col-centered {
  float: none;
  margin: 0 auto;
}
/*
 * Responsive text aligning
 * http://ohryan.ca/2014/08/14/set-responsive-text-alignment-bootstrap-3/
 */
.text-xs-left {
  text-align: left;
}
.text-xs-right {
  text-align: right;
}
.text-xs-center {
  text-align: center;
}
.text-xs-justify {
  text-align: justify;
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}
.zoo-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
}
.zoo-breadcrumb li {
  display: inline-block;
}
.zoo-breadcrumb li a {
  color: white;
  text-decoration: none;
  font-style: italic;
  padding: 10px 5px 10px 55px;
  background: #231f20;
  position: relative;
  display: block;
  float: left;
}
.zoo-breadcrumb li a:hover,
.zoo-breadcrumb li a.zoo-breadcrumb-active {
  background: #444041;
}
.zoo-breadcrumb li a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  /* Go big on the size, and let overflow hide */
  border-bottom: 50px solid transparent;
  border-left: 30px solid #231f20;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 100%;
  z-index: 2;
}
.zoo-breadcrumb li a:hover::after,
.zoo-breadcrumb li a.zoo-breadcrumb-active::after {
  border-left: 30px solid #444041;
}
.zoo-breadcrumb li a:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  /* Go big on the size, and let overflow hide */
  border-bottom: 50px solid transparent;
  border-left: 30px solid #ffe554;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  margin-left: 2px;
  left: 100%;
  z-index: 1;
}
.zoo-breadcrumb li:first-child a {
  padding-left: 10px;
}
.panel-heading {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  background: #231f20;
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 41px;
}
.panel-primary {
  border-color: #ffe554;
  border: 2px solid #ffe554;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.panel-body {
  flex: 1;
  padding: 0;
}
