.phone-field {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: visible;
  width: 100%;
  min-height: 44px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fafafa;
  transition: border-color 0.2s, background-color 0.2s;
}

.phone-field:focus-within {
  border-color: #f07e02;
}

.phone-field.is-open {
  border-color: #f07e02;
}

.phone-field.is-error {
  border-color: #dc3545;
}

.phone-field__code-button,
.booking-help-popup__phone-code-button {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 78px;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 0 32px 0 16px !important;
  border: 0 !important;
  border-right: 1px solid #e6e6e6 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font: inherit;
  line-height: 1;
  color: inherit;
  text-decoration: none !important;
  cursor: pointer;
}

.phone-field__code-button:focus-visible,
.booking-help-popup__phone-code-button:focus-visible {
  outline: none;
}

.phone-field__code-button:after,
.booking-help-popup__phone-code-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #909090;
  border-bottom: 2px solid #909090;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.phone-field.is-open .phone-field__code-button:after,
.phone-field.is-open .booking-help-popup__phone-code-button:after {
  transform: translateY(-20%) rotate(-135deg);
}

.phone-field__flag,
.booking-help-popup__phone-flag {
  width: 22px;
  height: 16px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.phone-field__flag[data-country="dk"],
.booking-help-popup__phone-flag[data-country="dk"] {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='26' height='20' rx='2' fill='%23C60C30'/%3E%3Crect x='8' y='0' width='3' height='20' fill='white'/%3E%3Crect x='0' y='8.5' width='26' height='3' fill='white'/%3E%3C/svg%3E");
}

.phone-field__flag[data-country="se"],
.booking-help-popup__phone-flag[data-country="se"] {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='26' height='20' rx='2' fill='%23006AA7'/%3E%3Crect x='8' y='0' width='4' height='20' fill='%23FECC00'/%3E%3Crect x='0' y='8' width='26' height='4' fill='%23FECC00'/%3E%3C/svg%3E");
}

.phone-field__flag[data-country="no"],
.booking-help-popup__phone-flag[data-country="no"] {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='26' height='20' rx='2' fill='%23BA0C2F'/%3E%3Crect x='6' y='0' width='6' height='20' fill='white'/%3E%3Crect x='0' y='7' width='26' height='6' fill='white'/%3E%3Crect x='7.5' y='0' width='3' height='20' fill='%2300247D'/%3E%3Crect x='0' y='8.5' width='26' height='3' fill='%2300247D'/%3E%3C/svg%3E");
}

.phone-field__flag[data-country="fi"],
.booking-help-popup__phone-flag[data-country="fi"] {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='26' height='20' rx='2' fill='white'/%3E%3Crect x='7' y='0' width='4' height='20' fill='%23003580'/%3E%3Crect x='0' y='8' width='26' height='4' fill='%23003580'/%3E%3C/svg%3E");
}

.phone-field__code-list,
.booking-help-popup__phone-code-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 5;
  width: 88px;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff !important;
  box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
  overflow: hidden;
}

.phone-field__code-option,
.booking-help-popup__phone-code-list button {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  margin: 0;
  min-height: 0;
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #161818 !important;
  font: inherit;
  line-height: 1.4;
  text-decoration: none !important;
  cursor: pointer;
}

.phone-field__code-option:hover,
.phone-field__code-option:focus-visible,
.booking-help-popup__phone-code-list button:hover,
.booking-help-popup__phone-code-list button:focus-visible {
  background: #f6f6f6 !important;
  outline: none;
}

.phone-field__code-option[aria-pressed="true"],
.booking-help-popup__phone-code-list button[aria-pressed="true"] {
  background: transparent !important;
  color: #161818;
}

.phone-field__code-text {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.phone-field__input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  border: 0 !important;
  border-radius: 0 10px 10px 0;
  background: transparent;
  color: #161818;
  padding: 0 16px;
}

.phone-field__input::placeholder {
  color: #909090;
}

.phone-field__input:focus-visible {
  outline: none;
}
