.breadcrumbs {
  margin-top:8px;
  width: auto;
  min-width: 320px;
  display: inline-block;
  overflow: hidden;
  border-radius: 5px;
  counter-reset: flag;
  font-family: arial;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 15px;
}
.breadcrumbs .item {
  position: relative;
  display: block;
  float: left;
  width: auto;
  background: #e3e3e3;
  color: #3d3d3d;
  text-decoration: none;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  line-height: 44px;
  white-space: nowrap;
  padding: 0 5px 0 30px;
}
@media screen and (max-width: 991px) {
  .breadcrumbs .item {
    font-size: smaller;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs .item {
    line-height: 17px;
    text-align: center;
    padding-bottom: 4px;
    padding-left: 15px;
    padding-right: 5px;
  }
  .breadcrumbs .item:not(.active) {
    padding-top: 2px;
    padding-bottom: 6px;
  }
  .breadcrumbs{
      max-width: 320px;
  }
}
.breadcrumbs .item:first-child {
  border-radius: 5px 0 0 5px;
}
.breadcrumbs .item:first-child:before {
  left: 14px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .item:first-child:before {
    left: 0;
  }
}
.breadcrumbs .item:first-child:last-child {
  border-radius: 0 5px 5px 0;
}
.breadcrumbs .arrow {
  position: absolute;
  top: 22px;
  right: 1px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .arrow {
    top: 24px;
  }
}
.breadcrumbs .arrow:after, .breadcrumbs .arrow:before {
  content: " ";
  position: absolute;
  height: 0;
  width: 0;
  border: solid transparent;
}
.breadcrumbs .arrow:after {
  border-color: transparent;
  border-left-color: #e3e3e3;
  border-width: 20px;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .arrow:after {
    margin-top: -23px;
    right: -12px;
    border-width: 23px 0 24px 12px;
  }
}
.breadcrumbs .arrow:before {
  border-color: transparent;
  border-left-color: #fff;
  border-width: 23px;
  margin-top: -23px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .arrow:before {
    margin-top: -28px;
    border-width: 28px 0 28px 15px;
  }
}
.breadcrumbs .item:before {
  content: counter(flag);
  counter-increment: flag;
  position: absolute;
  top: 0;
  left: 30px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin: 8px 0;
  background: white;
  box-shadow: 0 0 0 1px #ccc;
  font-size: 18px;
  font-weight: bold;
  color: #eb0a1e;
  line-height: 24px;
  display:none;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .item:before {
    position: relative;
    display: block;
    left: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 14px;
    margin: 6px auto 4px;
    display:none;
  }
}
.breadcrumbs .item:hover, .breadcrumbs .active {
  background: #fff;
}
.breadcrumbs .item:hover .arrow:after {
  border-left-color: #fff;
}
.breadcrumbs .active {
  border-top: 2px solid #09f;
  border-bottom: 2px solid #09f;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .active {
    line-height: normal;
  }
}
.breadcrumbs .active:before {
  color: #09f;
}
.breadcrumbs .active .arrow {
  top: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .active .arrow {
    top: 22px;
  }
}
.breadcrumbs .active .arrow:before {
  border-left-color: #09f;
}
.breadcrumbs .active .arrow:after {
  border-left-color: #fff;
}
.breadcrumbs .active:first-child {
  border-left: 2px solid #09f;
}
.breadcrumbs .active:last-child {
  border-right: 2px solid #09f;
}
.breadcrumbs .item.completed {
  background: #444;
  color: #fff;
}
.breadcrumbs .item.completed .arrow:before, .breadcrumbs .item.completed .arrow:after {
  border-left-color: #444;
}
.breadcrumbs .item.completed:after {
  box-shadow: 2px -2px 0 2px #444, 3px -3px 0 2px #444;
}
@media screen and (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}
.show-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .show-mobile {
    display: inline-block;
  }
}
*, :after, :before {
  box-sizing: border-box;
}