/* 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-radius: 30px;
  border: none;
}
.accordion .accordion-collapse {
  transition: none !important;
}
.accordion .accordion-button {
  position: relative;
  color: #0d3d6b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  background-color: #eff6f6;
  border: none;
  box-shadow: none;
  padding: 24px 64px 24px 24px;
  border-radius: 30px 30px 0 0 !important;
}
.accordion .accordion-button.collapsed {
  border-radius: 30px !important;
}
.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: #eff6f6;
  padding: 0px 24px 24px 24px;
  border-radius: 0 0 30px 30px;
}
.accordion .accordion-button {
  font-family: "Newsreader", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.accordion .accordion-item--active {
  box-shadow: 0 16px 24px 0 rgba(14, 43, 92, 0.16);
}

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