.ct-sticky-container.rn-switcher-overlay-on {
    z-index: 9;
}

.rn-switcher {
  position: relative;
  display: inline-block;
  font-family: inherit;
}

.rn-switcher__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border: none;
    border-radius: 25px;
    background: var(--theme-palette-color-2);
    color: #fff;
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
}

.rn-switcher__chevron {
  display: flex;
}
.rn-switcher__chevron svg.ct-icon {
  height: 12px;
  width: 12px;
  fill: #fff;
}

.rn-switcher__flag {
  /* width: 20px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center; */
}

.rn-switcher__flag svg {
  width: 20px;
  height: 100%;
  /* border-radius: 2px; */
  display: block;
}

.rn-switcher__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
}
.rn-switcher__overlay[hidden] {
  display: none !important;
}

.rn-switcher__panel {
  width: 320px;
  max-width: 90vw;
  background: #f5f5f5;
  height: 100%;
  padding: 24px 24px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rn-switcher__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rn-switcher__panel-title {
  font-weight: 800;
  text-transform: uppercase;
}

.rn-switcher__close {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.rn-switcher__field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.rn-switcher__field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.rn-switcher__currency {
  text-align: center;
  font-weight: 700;
}

.rn-switcher__apply {
}

.rn-switcher__apply:hover {
}

@media (max-width: 600px) {
  .rn-switcher__panel {
    width: 100%;
  }
}
