/*
 * 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
 */
@media (min-width: 992px) {
  .info-strip .wrap {
    flex-wrap: nowrap !important;
  }
}
.info-strip .content > * {
  margin-bottom: 0;
}
.info-strip .content a:not(.btn) {
  text-decoration: underline;
}
.info-strip .content a:not(.btn):hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .info-strip .content figure {
    flex-basis: auto !important;
  }
}
.info-strip .wp-block-heading {
  flex: 1;
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 992px) {
  .info-strip .wp-block-heading {
    flex: 0 1 auto;
  }
}
.info-strip .block-postcode-form {
  flex: 1 0 100%;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .info-strip .block-postcode-form {
    flex-basis: auto;
  }
}
@media (min-width: 1440px) {
  .info-strip .block-postcode-form {
    flex: 0 0 440px;
  }
}
.info-strip .btn-group {
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .info-strip .btn-group {
    flex-basis: auto;
  }
}
@media (min-width: 992px) {
  .info-strip .btn-group .btn {
    min-width: 200px;
  }
}
.info-strip .block-rating {
  display: none !important;
}