.cw-tel {
  position: relative;
  width: 100%;
}

.cw-tel-combo {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cw-tel-combo:focus-within {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
}

.cw-tel-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 0 10px;
  border: none;
  border-right: 1px solid #e2e8f0;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}
.cw-tel-toggle:hover {
  background: #f1f5f9;
}

.cw-tel-flag {
  font-size: 16px;
  line-height: 1;
}

.cw-tel-dial {
  font-weight: 600;
  color: #1a1a1a;
}

.cw-tel-caret {
  color: #999999;
  font-size: 11px;
}

.cw-tel-input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  outline: none !important;
  padding: 10px 14px;
  font-size: 15px;
  color: #1a1a1a;
  background: transparent;
}
.cw-tel-input::-moz-placeholder {
  color: #999999;
}
.cw-tel-input::placeholder {
  color: #999999;
}

.cw-tel--invalid .cw-tel-combo {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.35);
}
.cw-tel--invalid .cw-tel-combo:focus-within {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.18);
}

.cw-tel-error {
  color: #dc3545;
  font-size: 13px;
}
.cw-tel-error:empty {
  display: none;
}

.cw-tel-list {
  position: absolute;
  z-index: 60;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 300px;
  display: none;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.cw-tel--open .cw-tel-list {
  display: flex;
}

.cw-tel-search-wrap {
  padding: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.cw-tel-search {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  outline: none !important;
}
.cw-tel-search:focus {
  border-color: #2196f3;
}

.cw-tel-items {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  overflow-y: auto;
  max-height: 236px;
}

.cw-tel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}
.cw-tel-item:hover, .cw-tel-item.is-selected {
  background: #f1f5f9;
}

.cw-tel-item-flag {
  font-size: 16px;
  line-height: 1;
}

.cw-tel-item-name {
  flex: 1 1 auto;
  color: #1a1a1a;
}

.cw-tel-item-dial {
  color: #999999;
}/*# sourceMappingURL=intl-phone.css.map */