/* Create Custom "Colour Matrix" to use within the bootstrap utility classes
----------------------------------------------------------------------------- */
/* 
    Expanded spacing options 
    For example the margin and padding classes now have extended capability (.mb-8 now outputs margin-bottom: 3rem)
*/
/*
    This variable affects the `.h-*` and `.w-*` classes.
    You can now do w-25 or h-80 and have it output width: 25% or height: 80%
*/
/*
    Components variables
    When you create the component you should create the variables with colors for this compontnt
*/
/*
  Custom Components Variables
*/
/*
    We have no variables for alt buttons
    Because the styles depends on the design and can be unique for each project
*/
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-button {
  position: relative;
  color: #0D1941;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  background-color: #F7F8FD;
  border: none;
  box-shadow: none;
  padding: 24px 64px 24px 24px;
}
.accordion .accordion-button:after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  content: "\f4f9";
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: bootstrap-icons !important;
  background-image: none;
  font-size: 24px;
  line-height: 0;
}
.accordion .accordion-button:not(.collapsed)::after {
  content: "\f2e5";
}
.accordion .accordion-body {
  background-color: #F7F8FD;
  padding: 0px 24px 24px 24px;
}

/*# sourceMappingURL=accordion.css.map */