/*
 * 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-logo-slider {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .block-logo-slider {
    padding: 25px 0;
  }
}
.block-logo-slider .wp-block-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .block-logo-slider .wp-block-heading {
    justify-content: flex-start;
    margin-bottom: 0;
    padding-right: 16px;
  }
}
.block-logo-slider .block-slider {
  min-width: 0; /* necessary to allow shrinking in a flexbox context! */
}
.block-logo-slider .splide__track {
  padding: 4px;
}
.block-logo-slider .slider .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 15px 15px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.block-logo-slider .slider img {
  width: 100%;
}