.dfg-topbar-wrap {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(183,28,28,.08), rgba(183,28,28,0) 45%),
    var(--dfgtbp-bg, #0f0f10);
  color: var(--dfgtbp-text, #c9c6c6);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.03);
  z-index: 9999;
  margin: 0 !important;
}

.dfg-topbar-wrap .page-width,
.dfg-topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.dfg-topbar-inner {
  min-height: var(--dfgtbp-height, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  position: relative;
}

.dfg-topbar-track {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.dfg-topbar-item {
  display: none;
}

.dfg-topbar-item.is-active,
.dfg-topbar-wrap.mode-fixed .dfg-topbar-item:first-child {
  display: block;
}

.dfg-topbar-link {
  min-height: var(--dfgtbp-height, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dfgtbp-text, #c9c6c6) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: var(--dfgtbp-font, 11px) !important;
  line-height: 1.25;
  font-weight: 800;
  padding: 8px 0;
  text-align: center;
}

.dfg-topbar-link:hover {
  color: #ffffff !important;
  text-shadow: 0 0 14px rgba(183,28,28,.18);
}

.dfg-topbar-text {
  display: inline-block;
}

.dfg-topbar-arrow {
  appearance: none;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--dfgtbp-text, #c9c6c6);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  flex: 0 0 28px;
}

.dfg-topbar-arrow:hover {
  background: rgba(183,28,28,.18);
  color: #fff;
  border-color: rgba(183,28,28,.45);
}

@media (max-width: 991px) {
  .dfg-topbar-inner {
    padding: 0 10px;
    gap: 8px;
  }

  .dfg-topbar-link {
    letter-spacing: .07em;
    font-size: calc(var(--dfgtbp-font, 11px) - .5px) !important;
  }
}

@media (max-width: 767px) {
  .dfg-topbar-inner {
    min-height: auto;
    padding: 7px 10px;
  }

  .dfg-topbar-link {
    min-height: auto;
    padding: 3px 0;
    letter-spacing: .05em;
    font-size: calc(var(--dfgtbp-font, 11px) - 1px) !important;
  }

  .dfg-topbar-arrow {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
}

body > .dfg-topbar-wrap {
  width: 100%;
}
