body.modal-open { // fix responsive scroll bar issue
  .woocommerce-breadcrumb {
    overflow: hidden;
  }
}

.site-breadcrumb {
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  color: #222;

  &--no {
    padding: 0;
  }

  &--full-width {
    padding: 60px 0;
  }

  &--image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    &::before{
      content: "";
      display: block;
      background: rgba(0,0,0,0.2);
      position: absolute;
      z-index: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

  .woocommerce-breadcrumb {
    margin-bottom: 0;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;


    a {
      font-size: 13px;
      color: inherit;
    }

    span {
      opacity: 0.5;
      padding: 0 2px;
    }

    span.current {
      font-size: 13px;
    }
  }
  .page-title{
    margin-bottom: 0;
    margin-top: 10px;
  }
  &--align-left{
    .woocommerce-breadcrumb{
      justify-content: flex-end;
    }
    .page-title{
      text-align: left;
    }
  }
  &--align-right{
    .woocommerce-breadcrumb{
      justify-content: flex-start;
    }
    .page-title{
      text-align: right;
    }
  }
  &--align-center{
    .woocommerce-breadcrumb{
      justify-content: center;
    }
    .page-title{
      text-align: center;
    }
  }
}

.single-product .site-breadcrumb {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}