/*
 * 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
 */
.accordion .card-header {
  margin-bottom: 0;
}
.accordion .card-header .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 0;
  line-height: 1.2;
  text-align: left;
  border-width: 1px;
}
.accordion .card-header .btn .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.accordion .card-header .btn[aria-expanded=true] .icon {
  transform: rotate(180deg);
}

.block-accordion {
  padding-top: clamp(3.4375rem, 4.2253521127vw + 2.4471830986rem, 6.25rem);
  padding-bottom: clamp(1.875rem, 4.2253521127vw + 0.8846830986rem, 4.6875rem);
}
.block-accordion .accordion {
  margin-top: 40px;
}
.block-accordion .item {
  margin-bottom: 15px;
}
.block-accordion .item:last-child {
  margin-bottom: 0;
}
.block-accordion .panel {
  padding-top: clamp(1.25rem, 0.4694835681vw + 1.1399647887rem, 1.5625rem);
  padding-bottom: clamp(1.25rem, 1.4084507042vw + 0.9198943662rem, 2.1875rem);
}
.block-accordion-type-1 .card-header .btn {
  padding: 26px 25px;
}
.block-accordion-type-1 .panel {
  padding-left: 25px;
  padding-right: 25px;
}
.block-accordion-type-2 .card-header .btn {
  padding: 15px 10px 15px 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
}
.block-accordion-type-2 .card-header .btn[aria-expanded=true], .block-accordion-type-2 .card-header .btn.collapsed {
  border-top: 0;
}