/**
 * @file
 * Listing style specific for News, blog and case study.
 */
/* 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 */
/**
 * @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 */
/* ELEMENTS LIST */
.news-events-listing .content-wrapper,
.blog-listing .content-wrapper,
.case-studies-listing .content-wrapper,
.schema-listing .content-wrapper {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.news-events-listing .content-wrapper .views-row,
.blog-listing .content-wrapper .views-row,
.case-studies-listing .content-wrapper .views-row,
.schema-listing .content-wrapper .views-row {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 33.33333333%;
  margin-bottom: 1rem;
}
@media (max-width: 1023.98px) {
  .news-events-listing .content-wrapper .views-row,
  .blog-listing .content-wrapper .views-row,
  .case-studies-listing .content-wrapper .views-row,
  .schema-listing .content-wrapper .views-row {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .news-events-listing .content-wrapper .views-row,
  .blog-listing .content-wrapper .views-row,
  .case-studies-listing .content-wrapper .views-row,
  .schema-listing .content-wrapper .views-row {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* SPECIFIC OVERRIDE */
.blog-listing .header,
.schema-listing .header,
.news-events-listing .header {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  justify-content: center;
}
.blog-listing .header .form,
.schema-listing .header .form,
.news-events-listing .header .form {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .blog-listing .header .form,
  .schema-listing .header .form,
  .news-events-listing .header .form {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
@media (min-width: 1280px) {
  .blog-listing .header .form,
  .schema-listing .header .form,
  .news-events-listing .header .form {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

.blog-listing.has-featured-post .views-row:first-of-type {
  flex: 0 0 auto;
  width: 66.66666667%;
}
@media (max-width: 767.98px) {
  .blog-listing.has-featured-post .views-row:first-of-type {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .blog-listing.has-featured-post .views-row:first-of-type {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .blog-listing.has-featured-post .views-row:first-of-type .card {
    height: 100%;
    max-height: 23rem;
  }
}
.blog-listing .elements-results {
  width: 100%;
}
.blog-listing .elements-results__header, .blog-listing .elements-results__intro {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  box-shadow: none;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .blog-listing .content-wrapper .views-row {
    flex: 0 0 auto;
    width: 50%;
  }
}

.case-studies-listing .field {
  display: flex;
}
.case-studies-listing .field__label {
  margin-right: 10px;
}
.case-studies-listing .field__label::after {
  content: ":";
}
.case-studies-listing .field--item {
  font-weight: 700;
}
.case-studies-listing .views-exposed-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.schema-listing.only-main-categories .category-list.main-categories {
  padding-bottom: 1rem;
}
.schema-listing .elements-results {
  width: 100%;
}
.schema-listing .elements-results__header, .schema-listing .elements-results__intro {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  box-shadow: none;
}
.schema-listing .card__categories .badge {
  position: relative;
  padding-left: 2rem;
  font-size: 12px;
  color: #008444;
  background-color: #fff;
}
.schema-listing .card__categories .badge::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.9rem;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  background-image: url("../../../../images/icons/icon-download-green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: rigth 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.schema-listing .card__bg .field--name-field-media-file-cover::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  backdrop-filter: blur(1px) brightness(70%);
  backdrop-filter: blur(1px) brightness(70%);
}

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