/**
 * @file
 * Accordion style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
/* HEADING */
/* TEXT & CONTENT */
.accordion-item__label-inside, .accordion-item__label {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.accordion-item {
  border-top: 1px solid #d6d6d6;
}
.accordion-item:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.accordion-item__label {
  position: relative;
  padding-top: 1.5rem;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
  padding-left: 0;
  cursor: pointer;
}
.accordion-item__label::after {
  transition: background-image 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  background-image: url("../../../images/icons/icon-plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.accordion-item__label[aria-expanded=true]::after {
  background-image: url("../../../images/icons/icon-minus.svg");
}
.accordion-item__label[aria-expanded=false]:hover::after {
  background-image: url("../../../images/icons/icon-plus.svg");
  transform: rotate(45deg);
}
.accordion-item__label[aria-expanded=true] {
  color: #008444;
}
.accordion-item__label:hover {
  color: #008444;
}
.accordion-item__label-inside {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
.accordion-item__content {
  height: 0;
  transition: height 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
}
.accordion-item__content.show {
  height: auto;
}

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