.px-downloads .inner_section {
  max-width: 1200px;
  width: var(--baseWidth);
  margin: 0 auto;
  position: relative;
  margin: 50px auto;
}
.px-downloads .inner_section .downloads-filters {
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  background: transparent;
  padding: 30px;
  margin: 50px auto;
  transition: all 0.3s ease;
  will-change: transform, position, top;
}
.px-downloads .inner_section .downloads-filters.sticky {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: var(--maxWidth) !important;
  max-width: var(--maxWidth) !important;
  box-shadow: 0px 9px 45px 10px rgba(0, 0, 0, 0.06);
  top: 0;
  background: var(--mainGradient);
}
.px-downloads .inner_section .downloads-filters.sticky * {
  border-color: #fff;
}
.px-downloads .inner_section .downloads-filters.sticky .clear-filters {
  background: #fff;
  color: var(--mainColor);
}
.px-downloads .inner_section .downloads-filters #download-search {
  background-image: url("../../img/search.svg");
  background-position: 20px;
  background-size: 25px;
  background-repeat: no-repeat;
}
.px-downloads .inner_section .downloads-filters > * {
  flex: 1 15%;
  min-width: 200px;
}
.px-downloads .inner_section .downloads-filters input {
  background: #fff;
  padding: 12px 12px 12px 55px;
  border: 2px solid var(--mainColor);
  border-radius: 50px;
  font-size: 16px;
}
.px-downloads .inner_section .downloads-filters select {
  border: 2px solid var(--mainColor);
  border-radius: 50px;
  font-size: 16px;
  color: var(--fontColor);
  padding: 12px 30px 12px 15px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.287346 5.71909C-0.0957825 5.31356 -0.0957825 4.69251 0.287346 4.31066C0.670475 3.9288 1.29362 3.9288 1.7005 4.31066L8 10.5891L14.2995 4.31065C14.6826 3.9288 15.3295 3.9288 15.7127 4.31065C16.0958 4.69251 16.0958 5.31358 15.7127 5.71909L8.69442 12.6897C8.31129 13.0715 7.68814 13.0715 7.28126 12.6897L0.287346 5.71909Z' fill='url(%23paint0_linear_6868_7846)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6868_7846' x1='8.00003' y1='4.02427' x2='8.00003' y2='12.9761' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2305142e'/%3E%3Cstop offset='1' stop-color='%2305142e'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, repeat !important;
  background-position: right 0.7em top 50%, 0 0 !important;
  background-size: 16px auto !important;
}
.px-downloads .inner_section .downloads-filters .clear-filters {
  display: inline-block;
  width: auto;
  padding: 12px 35px;
  background: var(--mainGradient);
  transition: var(--baseTransition);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--baseFontSize);
  background-size: 100%;
  border: 0;
  overflow: hidden;
  line-height: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: none;
  white-space: nowrap;
  word-break: keep-all;
}
.px-downloads .inner_section .downloads-filters .clear-filters:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--mainColor);
  z-index: -1;
  transition: var(--baseTransition);
}
.px-downloads .inner_section .downloads-filters .clear-filters:hover {
  opacity: 1;
  color: #fff;
}
.px-downloads .inner_section .downloads-filters .clear-filters:hover:before {
  opacity: 1;
}
.px-downloads .inner_section .downloads-filters .clear-filters.active {
  display: inline-block;
}
.px-downloads .inner_section .downloads-grid {
  transition: padding-top 0.3s ease;
}
.px-downloads .inner_section .downloads-grid .download-item {
  background: #fff;
  opacity: 1;
  transition: var(--baseTransition);
  position: relative;
  margin-bottom: 15px;
}
.px-downloads .inner_section .downloads-grid .download-item:nth-child(even) {
  background: var(--backgroundColorLightBlue);
}
.px-downloads .inner_section .downloads-grid .download-item:nth-child(even) .download-link .download-content .download-category {
  background: #fff;
}
.px-downloads .inner_section .downloads-grid .download-item:nth-child(odd) {
  box-shadow: 0px 9px 45px 10px rgba(0, 0, 0, 0.06);
}
.px-downloads .inner_section .downloads-grid .download-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: var(--mainGradient);
  transition: var(--baseTransition);
}
.px-downloads .inner_section .downloads-grid .download-item.hidden {
  display: none;
  opacity: 0;
}
.px-downloads .inner_section .downloads-grid .download-item:hover:before {
  opacity: 1;
  visibility: visible;
}
.px-downloads .inner_section .downloads-grid .download-item .download-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 1.2rem;
  height: 100%;
}
.px-downloads .inner_section .downloads-grid .download-item .download-link .download-content {
  position: relative;
  padding-left: 45px;
}
.px-downloads .inner_section .downloads-grid .download-item .download-link .download-content .download-icon {
  position: absolute;
  left: 0;
  top: 0;
}
.px-downloads .inner_section .downloads-grid .download-item .download-link .download-content .download-title {
  margin: 0;
  font-size: 1.1rem;
}
.px-downloads .inner_section .downloads-grid .download-item .download-link .download-content .download-category {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--mainColor);
  background: var(--backgroundColorLightBlue);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.px-downloads .inner_section .downloads-grid .no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  background: var(--backgroundColorLightBlue);
  font-size: 1rem;
  display: none;
}
.px-downloads .inner_section .downloads-grid .no-results.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-columns .px-downloads .inner_section,
.px-frame-layout .px-downloads .inner_section,
.accordion-content .px-downloads .inner_section,
.tab_wrapper .px-downloads .inner_section {
  width: 100%;
}