/**
 * Simple Breadcrumb styles
 */
.vsw-simple-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  line-height:1.2;
  color:#fff;
}

.vsw-simple-breadcrumb .vsw-breadcrumb__icon{
  display:block;
  fill: currentColor;
}

.vsw-simple-breadcrumb .vsw-breadcrumb__label{
  white-space:nowrap;
}

.vsw-simple-breadcrumb .vsw-breadcrumb__home{
  white-space:nowrap;
  text-decoration:none;
  color:inherit;
}

.vsw-simple-breadcrumb .vsw-breadcrumb__home:hover{
  color:#fff;
  opacity:0.9;
}

.vsw-simple-breadcrumb .vsw-breadcrumb__sep{
  opacity:0.8;
}

.vsw-simple-breadcrumb .vsw-breadcrumb__current{
  white-space:nowrap;
}

