/* File: domain-switcher.css */
.domain-switcher {
  position: relative;
  display: inline-block;
}

.domain-switcher-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 5px !important;
}

.domain-switcher-list > li {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.domain-switcher-list > li img {
  height: 12px;
  width: auto;
  border-radius: 3px;
  display: inline-block;
}

.domain-switcher-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: white;
  border: 1px solid #ccc;
  z-index: 999;
  padding: 5px 10px !important;
    border-radius: 10px;
    transform: translateX(-50%);
    left: 50%;
}

.domain-switcher-dropdown li {
  margin: 5px 0;
  list-style-type: none;
}

.domain-switcher-dropdown li img {
    height: 12px;
    width: 18px;
    max-width: 36px;
}

/* Show dropdown on hover (desktop) */
.domain-switcher-list > li:hover .domain-switcher-dropdown {
  display: block;
}

/* Show dropdown on click (mobile) */
.domain-switcher .active-flag.clicked .domain-switcher-dropdown {
  display: block;
}

.geo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(18, 31, 40);
  padding: 10px 30px;
  text-align: center;
  font-size: 13px;
  z-index: 1000;
}

.geo-banner p {
  margin: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.geo-banner a {
    color: rgb(18, 31, 40) !important;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 99px;
    margin: 0px 5px;
    transition: background-color 0.5s;
}
.geo-banner a:hover {
    background-color: rgba(255, 255, 255, 1);
}
.geo-banner img {
  margin-left: 4px;
    margin-bottom: 2px;
  height: 12px;
  width: 18px;
  border-radius: 3px;
}

.geo-banner-close {
    position: absolute;
    top: 50%;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    min-height: unset;
    padding: 0;
    margin: 0;
    line-height: 0;
}
