.uautbf,
.uautbf * {
  box-sizing: border-box;
}

.uautbf {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  min-height: 34px;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.uautbf__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 28px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.uautbf__item:first-child {
  padding-left: 0;
}

.uautbf__item + .uautbf__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, .45);
  transform: translateY(-50%);
}

.uautbf__item:hover,
.uautbf__item:focus {
  color: #fff;
  text-decoration: none;
}

.uautbf__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #fff;
}

.uautbf__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uautbf__text {
  display: inline-block;
}

@media (min-width: 992px) {
  .header-nav .row:has(.uautbf) {
    flex-wrap: nowrap;
    align-items: center;
  }

  .header-nav .left-nav:has(.uautbf) {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .header-nav .row:has(.uautbf) .center-nav {
    display: none;
  }

  .header-nav .row:has(.uautbf) .right-nav {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    white-space: nowrap;
  }

  .uautbf {
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
  }

  .uautbf__item {
    min-width: 0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .uautbf__text {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 991px) {
  .uautbf {
    justify-content: center;
    min-height: 30px;
    font-size: 12px;
  }

  .uautbf__item {
    min-height: 30px;
    padding: 0 12px;
  }

  .uautbf__item:first-child {
    padding-left: 12px;
  }
}

@media (max-width: 575px) {
  .uautbf {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .uautbf::-webkit-scrollbar {
    height: 0;
  }

  .uautbf__item {
    flex: 0 0 auto;
  }
}
