/* Get It Moving Global SaaS country/language switcher */
#gim-global-switcher {
  width: min(1180px, calc(100% - 28px));
  margin: 10px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-family: Inter, Arial, sans-serif;
  color: #0f172a;
  position: relative;
  z-index: 20;
}

#gim-global-switcher .gim-global-left {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

#gim-global-switcher .gim-global-badge {
  background: #eaf2ff;
  color: #0b5cff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

#gim-global-switcher .gim-global-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.25;
}

#gim-global-switcher .gim-global-text b {
  color: #0f172a;
}

#gim-global-switcher .gim-global-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

#gim-global-switcher select {
  min-height: 36px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  padding: 7px 10px;
  font-weight: 800;
  font-size: 13px;
}

#gim-global-switcher select:focus {
  outline: none;
  border-color: #0b5cff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, .12);
}

.gim-global-rtl {
  direction: rtl;
}

@media (max-width: 760px) {
  #gim-global-switcher {
    align-items: stretch;
    flex-direction: column;
  }

  #gim-global-switcher .gim-global-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #gim-global-switcher select {
    width: 100%;
  }
}
