/*---------- Start breadcrumb-container-------------*/
	  .breadcrumb-container {
      -webkit-overflow-scrolling: touch;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      scroll-behavior: smooth;
      padding: 6px 6px;
      background-color: #f8f9fa;
      border-bottom: 1px solid #e0e0e0;
      font-family: 'Roboto', Arial, sans-serif;
      touch-action: pan-x;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
	  margin-bottom: 10px;
    }

    .breadcrumb-container::-webkit-scrollbar {
      display: none;
    }

    .breadcrumb-scroll {
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .breadcrumb-scroll span {
      display: inline-block;
      font-size: 14px;
      color: #202124;
    }

    .breadcrumb-scroll span a {
      text-decoration: none;
      color: #1a73e8;
      font-weight: 500;
      white-space: nowrap;
    }

    .breadcrumb-scroll .breadcrumb-last {
      font-weight: 700;
      color: #202124;
      white-space: nowrap;
    }

    .breadcrumb-scroll span:not(:last-child)::after {
      content: "›";
      margin: 0 6px;
      color: #5f6368;
    }	
		
/*----------End breadcrumb-container-------------*/	

