#customBceAddressModal button.close, #customBceAddressSuggetionsModal button.close {
  margin-top: -25px !important;
}

#customBceAddressModal .modal-dialog {
  width: 450px;
}

#customBceAddressSuggetionsModal .modal-dialog {
  width: 530px;
}

#customBceAddressModal .modal-body, #customBceAddressSuggetionsModal .modal-body {
  padding: 20px 30px 30px 30px;
}

#customBceAddressModal select[data-chosen='0'] {
  color: #beb3b3;
}
#customBceAddressModal option[value='0'] {
  color: #beb3b3;
  display: none;
}
#customBceAddressModal option {
  color: black;
}

#bceDismissButton, #bceDismissSuggestionButton {
  color: #acb0c0;
  background-color: #f3f6f9;
  border-color: #f3f6f9;
}

#customBceAddressFormButtonsContainer, #customBceAddressSuggestionFormButtonsContainer {
  margin-top: 30px;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 15px;
}

#customBceAddressFormButtonsContainer button, #customBceAddressSuggestionFormButtonsContainer button {
  width: 90px;
}

#customBceAddressFormButtonsContainer #bceSaveButton, #customBceAddressSuggestionFormButtonsContainer #bceSaveSuggestionButton {
  background-color: #3699ff;
  border-color: #3699ff;
}

#customBceAddressFormButtonsContainer .bceWarning {
  color: red;
  margin-top: 6px;
  font-size: 13px;
}

.loader {
  z-index: 999;
  display: none;
  position: absolute;
  margin-right: 37px;
  margin-top: 8px;

  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;

  width: 15px;
  height: 15px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
