/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #333;
}
*/


#breadcrumb-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 480px;
/*   padding: 0 40px; */
  line-height: 15px;
}

.breadcrumb {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  text-align: center;
  top: 50%;
  width: 100%;
  height: 57px;
/*   transform: translateY(-50%); */
/*   box-shadow: 0 1px 1px black, 0 4px 14px rgba(0, 0, 0, 0.7); */
  box-shadow: 0 1px 1px grey, 0 4px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  font-size: 14px;
  padding: 0 !important;
  margin: 1em 0 1em 0 !important;
}
/* Limit width of first menu item */
.breadcrumb a:nth-of-type(1)  {
  max-width: 150px !important;
  padding-left:1em;
  margin: auto 1em;
}
.breadcrumb a {
  position: relative;
  display: flex;
  flex-grow: 1;
  text-decoration: none;
  margin: auto;
  height: 100%;
  padding-left: 38px;
  padding-right: 0;
  color: #666;
  background-color: #f5f5f5;
}

.breadcrumb a:first-child {
  padding-left: 15.2px;
}

.breadcrumb a:last-child {
  padding-right: 15.2px;
}

.breadcrumb a:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 57px;
  height: 57px;
  top: 0;
  right: -28.1481481481px;
  background-color: #f5f5f5;
  border-top-right-radius: 5px;
  transform: scale(0.707) rotate(45deg);
  box-shadow: 3px -3px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.breadcrumb a:last-child:after {
  content: none;
}

.breadcrumb_inner {
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  padding: 0;
}

.breadcrumb_title {
  font-weight: lighter;
  line-height: 11px;
  font-size: 10px;
}

.breadcrumb_desc {
  font-weight: bold;
  line-height: 14px;
  font-size: 14px;
  padding-top:.5em;
}
.breadcrumb > a {
  max-width: 50%;
}
.breadcrumb a.active, .breadcrumb a:hover {
/*   background: #e02200; */
  background: #fff;
/*   color: white; */
}

.breadcrumb a.active:after, .breadcrumb a:hover:after {
  background: #fff;
/*   color: white; */
}

@media all and (max-width: 1000px) {
  .breadcrumb {
    font-size: 12px;
  }
}
@media all and (max-width: 710px) {
  .breadcrumb_desc {
    display: none;
  }

  .breadcrumb {
    height: 38px;
  }

  .breadcrumb a {
    padding-left: 25.3333333333px;
  }

  .breadcrumb a:after {
    content: "";
    width: 38px;
    height: 38px;
    right: -19px;
    transform: scale(0.707) rotate(45deg);
  }
}

/*# sourceMappingURL=ui-templates-breadcrumb.css.map */
