/* Keep the country flag clear of the select text in the location form. */
.rzmc-select-with-flag {
  position: relative;
  min-width: 0;
}

.rzmc-select-with-flag::after {
  position: absolute;
  z-index: 4;
  top: 50%;
  inset-inline-end: 10px;
  width: 0;
  height: 0;
  border-top: 5px solid #555;
  border-inline-start: 4px solid transparent;
  border-inline-end: 4px solid transparent;
  content: "";
  transform: translateY(-35%);
  pointer-events: none;
}

.rzmc-select-with-flag #rzmc-country-flag {
  position: absolute;
  z-index: 3;
  top: 50%;
  inset-inline-start: 10px;
  display: block;
  width: 28px !important;
  height: 18px !important;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 2px;
  object-fit: fill;
  object-position: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.rzmc-select-with-flag select.form-control {
  min-width: 0;
  padding-inline-start: 48px !important;
  padding-inline-end: 30px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
