body {
  width: 100vw;
}

html, body {
  overflow-x: hidden;
}

.error-page-wrapper {
  background-color: #F4F5FC;
  height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  padding: 20px;
  flex: 1;
}

.error-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.error-description {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.error-header {
  margin: 0px;
  color: #777794;
  font-family: Poppins;
  font-size: 280px;
  font-style: Bold;
  font-weight: 700;
  line-height: 280px;
}

.error-text {
  margin: 0px;
  color: #565670;
  font-family: Poppins;
  font-size: 20px;
  font-style: Regular;
  font-weight: 400;
  line-height: 100%;
}

.error-home-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5D25D0;
  width: 169px;
  height: 40px;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 0px;
  color: #FFFFFF;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0%;
  white-space: nowrap;
  border: none;
}

body, html {
  height: 100%;
  display: flex;
  justify-content: center; /* Centers container horizontally */
  background-color: #F4F5FC;
  margin: unset;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.hidden-element {
  display: none !important;
}

/*header*/
.main-header {
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
}

.header-logo {
  width: 152.28px;
  height: 39.08px;
  flex-shrink: 0;
  aspect-ratio: 152.28/39.08;
}

.header-right {
  display: flex;
}

.header-right-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

header .menu-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

header .menu-text {
  color: #232C4C;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.divider {
  display: flex;
  padding: 14px 0;
}

.divider svg {
  width: 100%;
  stroke-width: 1px;
  stroke: #ECECF0;
}

/*header*/


.top-line svg {
  width: 100%;
  height: 0px;
  flex-shrink: 0;
  stroke-width: 1px;
  stroke: #EFEFEF;
}

.container {
  display: flex;
  width: 1300px;
  justify-content: space-between;
  align-items: flex-start;
}

.sidebar-filter-switcher {
  display: inline-block;
  cursor: pointer;
}

.sidebar-filter-title-inner {
  padding-left: 10px;
  padding-bottom: 7px;
}

.sidebar-filter-title-inner span {
  color: #A0A0B2;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 310px;
  background-color: #E4E6F3;
  border-radius: 8px;
}

.sidebar-filters-top {
  display: none;
}

.sidebar-filter-close {
  display: none;
}

.sort-by-section {
  display: none;
}

.search-section {
  display: flex;
  padding: 40px 10px 10px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  align-self: stretch;
  position: relative;
}

.right-section-main {
  width: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 8px;
  background: #E4E6F3;
  padding-top: 10px;
  margin-bottom: 14px;
}

.right-section {
  display: flex;
  width: 971px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.search-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.checkbox-list {
  list-style: none;
  padding-left: 0;
}

.categories-list {
  overflow-y: auto;
  max-height: 598px;
}

.clear-filter {
  float: right;
  font-size: 14px;
  color: #6a5acd;
  cursor: pointer;
}


/*card title hover*/
.card-title-block {
  position: relative;
}

.tooltip-block {
  display: flex;
  height: auto;
  padding: 3px 5px;
  justify-content: center;
  align-items: center;
  background: #2E2E3A;

  position: absolute;
  bottom: 87%;
  left: 25%;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.tooltip-block span {
  flex: 1 0 0;
  align-self: stretch;
  overflow: hidden;
  color: #F9FAFD;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Poppins;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  letter-spacing: 0.33px;
}

.tooltip-block .arrow-icon {
  position: relative;
  top: 10px;
  right: 42%;
}

.card-title-block:hover .tooltip-block {
  opacity: 1;
}

/*card title hover*/

.card-custom {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.special-card {

  border: 2px dashed #aaa;
  background: #f0f8ff;
}


.search-bar-inner {
  padding-left: 10px;
  padding-right: 10px;

  width: 100%;
  display: inline-block;
}

.search-bar {
  display: flex;
  width: 290px;
  padding: 3px 10px;
  box-sizing: border-box;
  height: 41px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;

  border-radius: 4px;
  border: 1px solid #E0E0E6;
  background: #F4F5FC;
}

.search-bar:hover {
  border-color: #888;
}

.search-input {
  background: transparent;
  border: 0;

  color: #747487;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  height: 100%;
  width: 100%;
}

.search-main {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  width: 100%;
}

.search-input:hover, .search-input:focus {
  outline: none;
  border-color: #2A2A2A;
  background: transparent;
}

.clear-icon {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.clear-icon:hover {
  stroke: #333;
}

.clear-icon {
  /*display: none;*/
  padding-right: 10px;
}

.checkbox-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.checkbox-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  cursor: pointer;
}

/*hover active effects*/
.checkbox-list li:hover{ background: unset}
.checkbox-list label:hover{
  background:#D2D4E8;
  color:#2E2E3A;
}
.checkbox-list label:active{
  background:#BCC0DC;
  color:#2E2E3A;
}
.checkbox-list li.selected label:hover span{
  color: #fff;
}
.checkbox-list li.selected label:hover{
  background: #4A1EB0;
}
.checkbox-list li.selected label:active{
  background: #3C188D;
}
/*hover active effects*/

.checkbox-list li label {
  padding: 3px 10px;
  border-radius: 4px;
}

.checkbox-list li:not(.selected) .checkbox-icon .active {
  display: none;
}

.checkbox-list li.selected .checkbox-icon .inactive {
  display: none;
}

.checkbox-list li.selected label {
  border-radius: 4px;
  background: #5D25D0;
  color: #FFF;
}

.checkbox-list label .checkbox-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-list input {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  border: 1px solid #2A2A2A;
  display: none;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;

  color: #2E2E3A;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}


.filter-section {
  width: 100%;
}

.categories-filter-section {
  width: 100%;
  border-bottom: 1px solid #C8CAE3;
}

.filter-section-inner {
  display: flex;
  padding: 0 10px 10px 10px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.ways-to-give-filter-section .filter-section-inner {
  padding: 10px 10px 10px 10px;
}

.sidebar-btns-part {
  display: none;
}

.sidebar-btns {
  display: flex;
  max-height: 75px;
  padding: 12px 16px;
}

.sidebar-btns btn {
  border: unset;
  background: transparent;
}

.btn-clear-part {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
  height: 40px;
  border: unset;
  font-size: 12px;
  color: #FF6B6B;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.btn-clear-part:active {
  color: #E84444;
}

.btn-clear-part input {
  color: #5D25D0;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: unset;
  background: transparent;
}

.show-results-part:active {
  background: #4A1EB0;
}

.show-results-part {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #5D25D0;
  height: 40px;
  border: unset;
  color: #FFF;
  font-size: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.show-results-part input {
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: unset;
  background: transparent;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding: 0 0 5px 0;
}

.categories-filter-section .filter-header {
  padding: 10px 0 5px 0;
}

.filter-title {
  color: #747487;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: unset;
}

.clear-filter {
  display: flex;
  align-items: center;
  gap: 5px;
}

.clear-text {
  color: #565670;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: bold;
  line-height: 20px;
}

/* For WebKit-based browsers */
.scroll-list {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #ccc transparent; /* Firefox */
}

.scroll-list::-webkit-scrollbar {
  width: 4px; /* Vertical scrollbar */
  height: 4px; /* Horizontal scrollbar */
}

.scroll-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.scroll-list::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-list::-webkit-scrollbar-button {
  display: none; /* Removes arrows */
}


.search-box {
  display: flex;
  width: 747px;
  min-height: 60px;
  justify-content: space-between;
  align-items: center;

  border-radius: 8px;
  border: 1px solid #5D25D0;
  background: #FAFAFA;

  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.search-box-inner {
  padding-left: 20px;
  display: flex;
  min-width: 67%;
}

.search-box-input {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
  width: 100%;
}

.search-box textarea {
  border: unset;
  color: #1C1C30;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  outline: none;
  background: transparent;
  width: 100%;
  resize: none;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;

  display: block;
  height: auto;
  max-height: 40px;
  box-sizing: border-box;
}

.search-box button {
  display: flex;
  height: 54px;
  padding: 0px 20px;
  align-items: center;
  gap: 10px;

  color: #343231;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */

  border-radius: 0px 8px 8px 0px;
  background: #FCD329;
  border: unset;

  cursor: pointer;
}

.filters-switcher-part {
  display: none;
}

.search-clear {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.reset-filters-part {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
}

.reset-filters-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-separator {
  width: 1px;
  height: 20px;
  background: #E4E4EA;
  border: none;
}

.reset-filters {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #FFEAEA;
  cursor: pointer;
}

.reset-filters:hover {
  background: #FFD5D5;
}

.reset-filters:hover span {
  color: #FF5A5A;
}

.reset-filters:active {
  background: #FFC2C2;
}

.reset-filters:active span {
  color: #E04E4E;
}

.reset-filters span {
  color: #FF6B6B;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/*search container dropdown*/
.search-dropdown {
  margin-top: 5px;
  width: 747px;
  max-width: 100%;
  display: flex;

  border-radius: 8px;
  border: 1px solid #C2A9F4;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  max-height: 250px;

  justify-content: center;
  align-items: center;
}

.search-results-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: calc(100% - 10px);
  z-index: 1;
}

.dropdown-closed {
  display: none;
}

.dropdown-opened {
  display: flex;
}

.search-dropdown-inner {
  width: 100%;
  padding: 5px;
  flex-direction: column;
  display: flex;;
}

.search-item {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.search-item:hover {
  background-color: #EFEAFB;
}

.search-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.search-item span {
  color: #1C1C30;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.search-part {
  margin-bottom: 14px;
}

/*search container dropdown*/


.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.filters button {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 8px;
  background: #F9F7FD;

  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.filters button span {
  color: #5D25D0;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.filters button img {
  width: 20px;
  height: 20px;
}

.filters .active {
  background-color: #6b2fda;
}

.filters .active span {
  color: #FFF;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tags span {
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.main-title {
  margin: 0;

  color: #5D25D0;
  text-align: center;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.main-description {
  color: #5E5E71;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 14px 0;
}

.main-title, .main-description {
  width: 100%;
}

.filters-selected-point {
  display: none;
}

.filter-advanced-switcher {
  display: none;
}

.filter-info-bar {
  display: flex;
  height: 34px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;

  border-radius: 8px;
  background: transparent;
}

.no-filters-selected {
  display: none;
}

.filter-advanced-inner {
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.filter-count {
  color: #2E2E3A;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}

.filters-selected-info {
  color: #48485C;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: none;
}

.filter-count span {
  color: #2E2E3A;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.filter-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-buttons .popular {
  border-radius: 4px;
  background: var(--Primary-Scale-25, #F9F7FD);
  color: var(--Primary-Principal, #5D25D0);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}

.filter-buttons .underserved {
  border-radius: 4px;
  background: var(--Primary-Scale-25, #F9F7FD);
  color: var(--Primary-Principal, #5D25D0);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}

.filter-button {
  display: flex;
  padding: 5px 10px;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: 100ms;
}

.filter-button {
  display: flex;
  padding: 5px 10px;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  border: 0px solid;

  color: #2E2E3A;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  height: 30px;


}

.filter-buttons .selected {
  background: var(--Primary-Principal, #5D25D0);
  color: #FFFFFF
}

.filter-button.selected {
  background: #5D25D0;
  color: #FFF;
}

.filter-button:hover {
  background: rgba(93, 37, 208, 0.08);
}

.filter-button.selected:hover {
  background: #4A1EB0;
  color: #FFF;
}

.filter-button:active {
  background: rgba(93, 37, 208, 0.16);
}

.filter-button.selected:active {
  background: #3C188D;
  color: #FFF;
}

.filter-buttons .filter-buttons .selected:active {
  color: var(--Primary-Principal, #5D25D0);
}

.filter-button img {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  border: unset;

  width: 20px;
  height: 20px;
}


.filter-button:not(.selected) .active {
  display: none;
}

.filter-button.selected .inactive {
  display: none;
}

.filter-tags {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  flex-wrap: wrap;
}

.filter-tag {
  display: flex;
  height: 25px;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: unset;
  border-radius: 40px;

  background: #F4F5FC;
  color: #585961;
  cursor: pointer;

}

.filter-tag:hover {
  background: #E6E8F7;
  color: #585961;
}

.filter-tag:active {
  background: #D9DDF3;
  color: #43454D;
}

.filter-tag img {
  cursor: pointer;
}

.filter-tag div {
  display: flex;
  gap: 3px;
}

.filter-tag span {
  color: #2A2A2A;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.filter-tag svg {
  width: 24px;
  height: 24px;
}

.cards-container {
  display: flex;
  padding: 20px 0px 10px 0px;
  justify-content: center;
  align-items: center;
  align-content: center;
  align-self: stretch;
  flex-wrap: wrap;

  border-radius: 8px;
  background: #FFF;

  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.search-options-block-texts-top {
  color: #2E2E3A;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: unset;
}

.search-options-block-texts-bottom {
  color: #2E2E3A;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: unset;
}

.search-options-block {
  display: flex;
  width: 100%;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.row-container {
  display: grid;
  padding: 10px;
  row-gap: 13px;
  column-gap: 13px;
  width: 100%;
  place-items: center;

  grid-template-columns: repeat(auto-fit, minmax(181px, 1fr));
  justify-content: center;
}

/*.no-results*/
.no-results-block-texts {
  display: flex;
  padding-bottom: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;

  color: #2E2E3A;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;

  line-height: 20px;
}

.no-results-block-texts-top {
  font-weight: 700;
  padding: unset;
  margin: unset;
}

.no-results-block-texts-bottom {
  font-weight: 400;
  padding: unset;
  margin: unset;
}

/*.no-results*/

/*no matches card*/
.no-matches-card {
  display: flex;
  width: 250px;
  height: 250px;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  background: url('../images/npos/no-match-card-bg.png') lightgray 50% / contain no-repeat;
}

.no-matches .search-options-block {
  display: none;
}

.no-matches-card-inner {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: unset;
}

.no-matches-card-block-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-icon {
  width: 36px;
  height: 31.5px;
  flex-shrink: 0;
}

.heart-icon img {
  width: 100%;
}

.no-matches-card-block-middle {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.no-matches-card-heading-text, .no-matches-card-secondary-description {
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-matches-card-heading-text span {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

.no-matches-card-secondary-description span {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.no-matches-card-block-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-matches-card-learn-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.no-matches-card-learn-more button {
  color: #FFF;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border-radius: 4px;
  background: #5D25D0;
  border: unset;
  padding: 5px 10px;
  cursor: pointer;
}

/*no matches card*/
.card-row {
  display: flex;
  gap: 39px;
}

.card {
  display: flex;
  width: 181px;
  height: 150px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;

  border: 1px solid #EFEAFB;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}

.card:hover {
  border: 1px solid #DCD0F8;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}

.card:active {
  border: 1px solid #EFEAFB;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
}

.card-inner {
  display: flex;
  padding: 5px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  text-decoration: unset;
}


.row-container .special-card:nth-of-type(2) {
  background-color: #f8d7da;
}

.special-card {
  grid-row: 1 / span 1;
  grid-column: 5 / span 1;
  background: url('../images/donate-to-any-nonprofit.svg') no-repeat center center/cover;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: unset;
}

.special-card-other {
  grid-row: 4 / span 1;
  grid-column: 1 / span 1;
  background: url('../images/fundraiser.svg') no-repeat center center/cover;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: unset;
}

.card-header-top-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.card-header-top {
  display: flex;
  width: 140px;
  justify-content: space-between;
  align-items: flex-start;
}

.card-header-top-elem {

  justify-content: center;
  align-items: center;
  gap: 1px;

  color: #B378E4;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px;
}

.card-header-top-left {
  display: flex;
}

.card-header-top-right {
  height: 12px;
  flex-shrink: 0;
}

.card-main-image-section {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
}

.card-no-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #2E2E3A;
  font-family: Poppins;
}

.card-header-img {
  display: block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
}

.card-title-block {
  display: flex;
  height: 33px;
  padding: 8px 5px 4px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.card-title-block p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex: 1 0 0;

  overflow: hidden;
  color: #2E2E3A;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;

  margin: unset;
}

.card-block-second {
  display: flex;
}

.share-npo {
  width: 14px;
  cursor: pointer;
}

.donate-section {
  display: flex;
  padding: 5px 10px 5px 14px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.donate-button {
  display: flex;
  width: 37px;
  height: 12px;
  flex-direction: column;
  justify-content: center;

  color: #8B64ED;
  font-family: Poppins;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 9px;
  border: unset;
  cursor: pointer;
  text-decoration: unset;
}

.donate-img {
  width: 14px;
  height: 14px;
}

.arrow-top-section {
  display: none;
}

.load-more-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;

  padding: 10px 0;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.load-more {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 8px;
  background: #5D25D0;

  color: #FFF;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: unset;
  cursor: pointer;
}

.load-more:hover {
  background: #4A1EB0;
}

.load-more:active {
  background: #3C188D;
}

.banner-section-part {
  margin-top: 40px;
}

.banner-section {
  display: flex;
  width: 1300px;
  height: 339px;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;

  border-radius: 8px;
  background: url('../images/banner.png') no-repeat center center / cover,
  linear-gradient(91deg, rgba(132, 72, 255, 0.25) 30.36%, rgba(132, 72, 255, 0.35) 50.32%, rgba(132, 72, 255, 0.50) 81.27%),
  #000;
}

.banner-section-inner {
  display: flex;
  align-items: center;

  padding: 20px 50px;
  width: 100%;
  gap: 25px;
}

.banner-video-section {
  padding: 8px 0 8px 120px;
}

.banner-video {
  width: 291px;
  height: 291px;
  flex-shrink: 0;
  border-radius: 8px;
  background: url('../images/video-thumbnail.png') no-repeat center center / contain;
}

.banner-info {
  display: flex;
  width: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 17px;
  flex-shrink: 0;
}

.banner-info-inner {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.banner-info-header {
  color: #FFF;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  align-self: stretch;
}

.banner-info-content {
  display: flex;
  width: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 17px;
  flex-shrink: 0;

  color: #FFF;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  align-self: stretch;
}

.banner-info-button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #A7A7BA;
  width: fit-content;
  text-decoration: none;
}

.banner-info-button span {
  color: #A7A7BA;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.mt-middle {
  margin-top: 42px;
}

.mt-large {
  margin-top: 51px;
}

footer {
  width: 100vw;
  margin-left: calc(-51vw + 49%);

  display: flex;
  padding: 30px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #ECEFF7;
  margin-top: 50px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0px -5px;
  flex-wrap: wrap;
}

footer .title span {
  color: #5D25D0;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

footer .content {
  display: flex;
  flex-direction: column;
  gap: 10px;

  color: #565670;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

footer .content .content-title {
  text-align: center;
}

footer .content img {
  width: 152.28px;
  height: 39.08px;
  aspect-ratio: 152.28/39.08;
}

footer .content .content-main {
  color: #565670;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

footer .content .content-main a {
  color: #565670;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}

.filter-switcher {
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  .checkbox-list li:not(.selected) label:hover,
  .checkbox-list li:not(.selected) label:active,
  .filter-button:hover:not(.selected),
  .filter-button:active:not(.selected),
  .sort-by-button:hover:not(.selected),
  .sort-by-button:active:not(.selected) {
    background: inherit !important;
    box-shadow: none !important;
    color: inherit !important;
  }

  .filter-button.selected:hover,
  .filter-button.selected:active,
  .checkbox-list li.selected label:hover,
  .checkbox-list li.selected label:active,
  .sort-by-button.selected:hover,
  .sort-by-button.selected:active {
    background: #5D25D0 !important;
    color: #FFF !important;
  }
}
