/*
 * 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-modal-cards {
  padding-top: clamp(2.1875rem, 3.2863849765vw + 1.4172535211rem, 4.375rem);
  padding-bottom: clamp(2.1875rem, 3.2863849765vw + 1.4172535211rem, 4.375rem);
}
.block-modal-cards .block-postcode-form {
  margin-top: 35px;
}

.block-modal-card .box {
  margin-bottom: 16px;
  padding-top: clamp(0.625rem, 0.4694835681vw + 0.5149647887rem, 0.9375rem);
  padding-bottom: clamp(0.625rem, 0.4694835681vw + 0.5149647887rem, 0.9375rem);
  padding-left: clamp(0.625rem, 0.4694835681vw + 0.5149647887rem, 0.9375rem);
  padding-right: clamp(0.625rem, 0.4694835681vw + 0.5149647887rem, 0.9375rem);
  background: var(--bs-white);
  border: 1px solid var(--bs-color-3);
  text-align: left;
}
.block-modal-card img {
  margin-right: 30px;
}
.block-modal-card .main > :first-child {
  margin-bottom: 10px;
}

.modal-card {
  --bs-modal-border-radius:10px;
}
.modal-card .modal-title-wrap {
  margin-bottom: 30px;
}
.modal-card .modal-title-wrap img {
  margin-right: 10px;
}