.navbar-default .navbar-brand {
    letter-spacing: 6px;
}

.group-list {
    background-color: var(--nav-bg-color);
    color: var(--white-color);
    padding: 18px 28px;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  
  .group-list label {
    display: inline !important;
  }
  
  
  .group-checkbox {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  
  .group-container {
    display: flex;
    gap: 20px;
    justify-content: left;
  }
  
  .group-checkbox+label {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 23px;
    color: rgb(255, 255, 255);
  }
  
  .group-checkbox+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    width: 21px;
    height: 21px;
    background-color: var(--nav-bg-color);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-radius: 2px;
    box-shadow: none;
    margin-top: -2px;
  }
  
  .group-checkbox:checked+label::after {
    content: " ";
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAACXBIWXMAAAsTAAALEwEAmpwYAAABCUlEQVR4nO2ZYQ6CMAxGdxa9gCHx0OLVIOoJniH4V8dGO5bPvt9k3aNlbF1KXyBDcsY8PiFkS2QoR5ScMVFyOf6u5IDBxWSNPRwh9ACuDjIXYPIQem2Qmi0z9cnMMmaOZ83g44aBzaQKZBZuNQHOW1JvIVUoMwEn13re8021iNEsYHMZz8CHyXhM4HAZy4l0I2Mxoe5k9kysW5nKf8dc+KzbPvEnhW+9z8w4Sh0vYyjVj4yBVH8yO6T6lZETQqnkUFoUUFq2UfqxorT1QWlzitLxAaUDHkpHcJSaJCi1sVBqNKLWCgbuLWQqpcaaAHLXKXIXXv91JZmcCaEckSFjouRyRMkZEyWXVt6ReEQpn+Mc8wAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 3px;
    top: 2px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 13px;
    width: 15px;
  }