/*
 * This controls theme colors
 * Bootstrap will generate classes like btn-color-1, btn-black, text-color-1, bg-color-1, etc.
 * The classes can then be used across the site without repeating code
 */
/*
 * Do a sitewide search (CTRL + SHIFT + F if you're using Sublime Text or whatever your coding GUI has for a search in all files)
 * to see where these variables are used in the SASS code. They're all Bootstrap variables that control certain aspects of elements
 */
/**
 * Bootstrap removes the margin-left/right over the sm breakpoint and if we set it customly afterwards, it breaks the centered modal since it's no longer margin: auto.
 * We also can't remove this one because the value is used in a min-height calculation and removing causes the modal to go haywire on mobile
 * So set it at 15px and then after the sm breakpoint when it gets set to auto, add extra padding as need on .modal-dialog
 *
 * LE: messing with custom margins / paddings and modal-dialog is too much fuss. Simply ignore
 */
.block-postcode-form .block-inner {
  width: 100%;
  max-width: 445px;
}
.block-postcode-form form {
  width: 100%;
}
.block-postcode-form .field-btn-wrapper {
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid var(--bs-color-1);
}
.block-postcode-form input.form-control {
  padding: 9px 15px;
  border: 0;
  font-size: 13px;
  font-weight: 500;
}
.block-postcode-form input.form-control::placeholder {
  font-weight: 500;
}
.block-postcode-form .custom-select {
  display: none;
  margin-top: 5px;
}
.block-postcode-form .btn {
  flex: 1 0 auto;
  width: 100%;
  max-width: 165px;
  padding: 0;
}
.block-postcode-form .block-rating {
  margin-top: 15px;
}