/* deck-category-list/src/scss/widget.scss */
.featured-terms {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 24px;
  padding-bottom: calc(1.375rem + 1.5vw);
  margin-bottom: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .featured-terms {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .featured-terms {
    margin-bottom: 2.5rem;
  }
}
.featured-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.featured-term {
  display: flex;
  flex-flow: column;
  gap: 16px;
  position: relative;
  flex: 0 0 12.25rem;
  aspect-ratio: 1/1;
}
@media (max-width: 60rem) {
  .featured-term {
    flex-basis: 7.5rem;
  }
}
.featured-term img {
  max-width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #cccccc;
  border-radius: 8px;
}
.featured-term .term-name {
  margin: 0;
}
.featured-term .term-count {
  color: #808080;
  font-size: 0.875rem;
}
.featured-term > a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.term-search-filter .search-title {
  text-align: center;
  margin-bottom: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .term-search-filter .search-title {
    margin-bottom: 1.875rem;
  }
}
.term-search-filter .search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  gap: 15px;
  margin-bottom: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .term-search-filter .search {
    margin-bottom: 1.5rem;
  }
}
.term-search-filter .search input {
  max-width: 360px;
  background-color: var(--e-global-color-315f1e7);
  font-family: "Hind Siliguri", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-style: solid;
  border-color: var(--e-global-color-primary);
  border-radius: 5px;
  padding: 1.25rem calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .term-search-filter .search input {
    padding: 1.25rem 1.5rem;
  }
}
.term-search-filter .search .button-search {
  background-color: var(---e-global-color-primary, #2e7dff);
  border-color: var(---e-global-color-primary, #2e7dff);
  border-radius: 5px;
  color: #fff;
  flex: 1;
  padding: 1.125rem calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .term-search-filter .search .button-search {
    padding: 1.125rem 1.75rem;
  }
}
.term-search-filter .search .button-search:hover {
  background-color: var(--e-global-color-315f1e7);
  color: var(--e-global-color-primary);
}
@media (min-width: 992px) {
  .term-search-filter .search .button-search {
    flex: none;
  }
}
.term-search-filter .alpha-filter {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 12px;
}
.term-search-filter .alpha-filter > a {
  color: var(---e-global-color-primary, #2e7dff);
  text-transform: uppercase;
}
.grouped-terms > h3 {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1rem;
}
.grouped-terms > ul {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: calc(1.275rem + 0.3vw) 0 calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .grouped-terms > ul {
    margin: 1.5rem 0 2.5rem;
  }
}
.grouped-terms > ul .category-term {
  border: 1px solid #cccccc;
  border-radius: 8px;
  align-items: center;
  display: flex;
  flex-flow: nowrap;
  gap: 12px;
  position: relative;
  width: min(100%, 306px);
  padding: 1rem;
}
.grouped-terms > ul .category-term .category-term-icon {
  border: 1px solid var(--e-global-color-6374c115, #cccccc);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
.grouped-terms > ul .category-term .category-term-icon > img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
.grouped-terms > ul .category-term .category-term-details {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.grouped-terms > ul .category-term > a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
