/* custom helpers & properties */
.description {
  max-height: 0;
  opacity: 0;
  transition: max-height 300ms linear, opacity 150ms ease-in;
}
.description.open {
  margin-top: -10px;
  max-height: 300px;
  opacity: 1;
}
.accordion .title {
  color: var(--midnight-blue);
}
.accordion .row-wrapper.open .title {
  color: var(--primary-dark);
}
.accordion .title-row {
  cursor: pointer;
}
.accordion .row-wrapper {
  border-bottom: 1px solid var(--gray-200);
}
.accordion .row-wrapper.open {
  background-color: #fff;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
  border-bottom: none;
}
.accordion .row-wrapper.open .title-row {
  border-top: 4px solid var(--secondary);
}
.accordion .arrow {
  height: 24px;
  transition: transform 0.25s ease-in-out 0s;
}
.accordion .arrow-open {
  transform: rotate(180deg);
}
.accordion .arrow-link {
  margin-left: 14px;
  top: -20px;
}
.accordion .arrow-link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(https://f.hubspotusercontent20.net/hubfs/442271/2021%20DOC-FAC%20Merge%20Project/Icons/CaretRight.svg);
  position: absolute;
  top: -11px;
  margin: 15px 6px;
  background-repeat: no-repeat;
  transition: all 0.25s ease-in-out 0s;
}

/* pre-update fix */
.accordion ul {
  list-style: none;
  padding-left: 16px;
}
.accordion ul li {
  margin-bottom: 8px;
  position: relative;
}
.accordion ul li::before {
  content: url(https://f.hubspotusercontent20.net/hubfs/442271/2021%20DOC-FAC%20Merge%20Project/Common%20assets/Icons/UI/bullet-list-point.svg) !important;
  position: absolute;
  left: -17px;
  height: 7px;
  top: -2px;
  width: 7px;
}

@media (max-width: 575px) {
  .buttons-container a.btn {
    box-sizing: border-box !important;
    width: 100% !important;
  }
}
