.stb-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--e-global-color-uicore_primary);
  color: white;
  padding: 8px 50px;
  font-family: var(--uicore-header--menu-typo-f,"Inter");
  font-size: 14px;
}
.stb-left a {
  margin-right: 12px;
  color: white;
  text-decoration: none !important;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.stb-left a svg {
  fill: white;
  width: 32px;
  height: 32px;
  transition: fill 0.3s ease;
}
.stb-left a:hover svg {
  fill: #dddddd;
}
.stb-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stb-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.stb-menu li {
  margin-left: 15px;
}
.stb-menu li a {
  color: black;
  text-decoration: none;
}
.stb-menu li a:hover {
  font-family: var(--uicore-header--menu-typo-f,"Inter");
  font-weight: var(--uicore-header--menu-typo-w,"600");
  line-height: var(--uicore-header--menu-typo-h,"1.2");
  letter-spacing: var(--uicore-header--menu-typo-ls,"-0.027em");
  text-transform: var(--uicore-header--menu-typo-t,"none");
  font-style: var(--uicore-header--menu-typo-st,"normal");
  font-size: var(--uicore-header--menu-typo-s,"10px");
  color: inherit;
}
.stb-language-switcher select {
  background: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 3px;
}

.stb-language-switcher img {
  display: inline-block !important;
  width: 18px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}
.stb-language-switcher li a {
  display: flex;
  align-items: center;
}


.stb-dropdown ul {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.stb-dropdown ul li {
  list-style: none;
  position: relative;
}

.stb-dropdown ul li a {
  display: flex;
  align-items: center;
  background: #333;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.stb-dropdown ul li a img {
  width: 18px;
  height: auto;
  margin-right: 6px;
}

.stb-dropdown ul li ul {
  display: none;
  position: absolute;
  background: #333;
  margin-top: 2px;
  border-radius: 4px;
  z-index: 999;
}

.stb-dropdown ul li:hover ul {
  display: block;
}

.stb-dropdown ul li ul li a {
  background: #333;
  padding: 6px 10px;
}

.stb-dropdown ul li ul li a:hover {
  background: #444;
}

.stb-custom-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  color: white;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.stb-custom-dropdown .stb-current {
  background: #333;
  padding: 6px 10px;
  border-radius: 4px;
}

.stb-custom-dropdown .stb-dropdown-list {
  display: none;
  position: absolute;
  background: #333;
  margin-top: 4px;
  border-radius: 4px;
  z-index: 9999;
 /* min-width: 150px;*/
  list-style: none;
  padding: 0;
}

.stb-custom-dropdown .stb-dropdown-list li a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.stb-custom-dropdown .stb-dropdown-list li a img {
  width: 18px;
  height: auto;
  margin-right: 8px;
}

.stb-custom-dropdown .stb-dropdown-list li a:hover {
  background: #444;
}


