.upper-title {
  position: absolute;
  top: 90px;
  margin-top: 10px;
  width: 100%;
}

.white-box {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  border: solid 1px rgba(170, 170, 170, 0.6);
}

.text-blue {
  color: #5c9adc;
}

.cursor-pointer {
  cursor: pointer;
}

.text-dark-gray {
  color: #666666;
}

.delivery-address-input-wrapper {
  position: relative;
}

.delivery-suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 2000;
  display: none;
}

.delivery-suggestion-item {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.delivery-suggestion-item-icon {
  margin-right: 8px;
  color: #888;
}

.delivery-suggestion-item-main {
  font-weight: 600;
  margin-right: 4px;
}

.delivery-suggestion-item-sub {
  color: #777;
  font-size: 12px;
}

.delivery-suggestion-item:hover {
  background-color: #f5f5f5;
}

.delivery-suggestion-item.active {
  background-color: #e6f0ff;
}

.form-control, .form-select {
  background-color: #fff !important;
}
.form-control:not(.exclude), .form-select:not(.exclude) {
  background-color: #fffbef !important;
}

.form-control:focus, .form-select:focus {
  border-color: #97b7c1 !important;
  background-color: #fff !important;
}
.form-control:focus:not(.exclude), .form-select:focus:not(.exclude) {
  background-color: #fffbef !important;
}

.required-field::after {
  content: "*";
  color: red;
  margin-left: 5px;
}

.delivery-select {
  position: relative;
  font-size: 14px;
}

.delivery-select-toggle {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  background-color: #fff;
}
.delivery-select-toggle:not(.exclude) {
  background: #fffbef !important;
}
.delivery-select-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.delivery-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background-color: #fff;
}
.delivery-select-menu:not(.exclude) {
  background: #fffbef !important;
}
.delivery-select-menu {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  max-height: 260px;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.delivery-select.open .delivery-select-menu {
  display: flex;
}

.delivery-select-search {
  padding: 6px 8px;
  border-bottom: 1px solid #eee;
}

.delivery-select-search input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 4px 8px;
  font-size: 14px;
}

.delivery-select-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  overflow-y: auto;
}

.delivery-select-option {
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.delivery-select-option:hover {
  background: #f5f5f5;
}

textarea::-moz-placeholder {
  white-space: pre-line;
}

textarea::placeholder {
  white-space: pre-line;
}/*# sourceMappingURL=anpin.css.map */