@charset "UTF-8";
/* CSS Document */

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

html,
body {
  height: 100%;
  background-color: fff;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 80%;
  min-width: 0px;
  padding: 0 40px;
}

.breadcrumb {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  text-align: center;
  top: 50%;
  width: 100%;
  height: 33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  box-shadow: 0 1px 1px #2A2828, 0 4px 14px rgba(0, 0, 0, 0.4);
  z-index: 1;
  background-color: #ddd;
  font-size: 14px;
  line-height: 14px;
}

.breadcrumb a {
  position: relative;
  display: flex;
  flex-grow: 1;
  text-decoration: none;
  margin: auto;
  height: 100%;
  padding-left: 22px;
  padding-right: 0;
  color: #666;
}

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

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

.breadcrumb a:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 33px;
  height: 33px;
  top: 0;
  right: -16.2962962963px;
  background-color: #ddd;
  border-top-right-radius: 5px;
  -webkit-transform: scale(0.707) rotate(45deg);
          transform: scale(0.707) rotate(45deg);
  box-shadow: 1px -1px 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;
}

.breadcrumb__title {
  font-weight: 700;
}

.breadcrumb a.active,
.breadcrumb a:hover {
  background: #ffffff;
  color: white;
}

.breadcrumb a.active:after,
.breadcrumb a:hover:after {
  background: #ffffff;
  color: white;
}

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

  .breadcrumb {
    height: 22px;
  }

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

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

