/* Professional country-code dropdown indicator — v0.3.08 */

.sds-booking-page .sds-phone-field {
  grid-template-columns: 88px minmax(0, 1fr);
}

.sds-country-picker__trigger {
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 0;
  padding: 0 5px 0 11px;
}

.sds-country-picker__dial {
  font-variant-numeric: tabular-nums;
  text-align: center;
  white-space: nowrap;
}

.sds-country-picker__chevron {
  position: relative;
  width: 24px;
  height: 30px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-left: 1px solid #e1e7ec;
  border-radius: 0 5px 5px 0;
  transition: background-color .18s ease;
}

.sds-country-picker__chevron::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid #52606c;
  border-bottom: 1.5px solid #52606c;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform .18s ease;
}

.sds-country-picker__trigger:hover .sds-country-picker__chevron,
.sds-country-picker__trigger:focus-visible .sds-country-picker__chevron,
.sds-country-picker.is-open .sds-country-picker__chevron {
  background: #f2f7fb;
}

.sds-country-picker.is-open .sds-country-picker__chevron::before {
  margin-top: 3px;
  transform: rotate(225deg);
}

@media (max-width: 680px) {
  .sds-booking-page .sds-phone-field {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .sds-country-picker__trigger {
    padding-left: 9px;
  }
}
