.jala-breadcrumb {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}

.jala-breadcrumb  .jala-breadcrumb__scroll {
  align-self: flex-start;
  display: flex;
}
.jala-breadcrumb::-webkit-scrollbar {
  display: none;
}
.jala-breadcrumb ol {
    display: flex;
    gap: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 16px;
    background-color: #C7FFEC;
    font-weight: 400;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

.jala-breadcrumb span[aria-current="page"] {
  color: #11354D;
  font-weight: 700;
  white-space: nowrap;
}

.jala-breadcrumb span {
  color: #2E5180;
}

.jala-breadcrumb li {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto; 
}

.jala-breadcrumb a {
    text-decoration: none;
    color: #11354D;
    white-space: nowrap;
}

.jala-breadcrumb a:hover {
    color: #11354D;
    text-decoration: underline;
}

.jala-breadcrumb a:active {
    color: #11354D;
    font-weight: 700;
}

.jala-breadcrumb .jala-breadcrumb__separator {
    margin-left: 4px;
}

.jala-breadcrumb ol li:first-child > a,
.jala-breadcrumb ol li:first-child > .home {
  position: relative;
  padding-left: 16px;
  font-size: 0;
}

.jala-breadcrumb ol li:first-child > a::before,
.jala-breadcrumb ol li:first-child > .home::before {
  content: "\e938";
  font-family: "HugeIcons";
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #11354D;
}

.jala-breadcrumb ol li:first-child > a::before:hover {
   color: #11354D;
}

.jala-breadcrumb ol li:first-child > a::before:active {
   color: #11354D;
   font-weight: 700;
}

@media (min-width: 641px) {
  .jala-breadcrumb .jala-breadcrumb__scroll {
    align-self: auto;
  }
  .jala-breadcrumb ol {
    overflow-x: unset;
    min-width: 0;
  }
  .jala-breadcrumb ol li:last-child {
    min-width: 0;
    flex: 1;
  }
  .jala-breadcrumb span[aria-current="page"] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
