section.team .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: var(--_gap);
}
@container main (min-width: 64.0625rem) {
  section.team .filters {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  section.team .filters .dropdowns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@container main (min-width: 48rem) {
  section.team .filters .dropdowns {
    grid-auto-flow: column;
  }
}
@container main (max-width: 64rem) {
  section.team .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}
@container main (max-width: 47.9375rem) {
  section.team .filters .dropdowns {
    grid-auto-flow: row;
  }
}
section.team .select-dropdown {
  position: relative;
  display: inline-block;
}
@container main (min-width: 64.0625rem) {
  section.team .select-dropdown {
    min-width: 15.625rem;
  }
}
section.team .select-dropdown .toggle {
  width: 100%;
  display: block;
  text-align: initial;
  cursor: pointer;
  border: none;
  position: relative;
  padding: 0.8125rem 1.0625rem;
  background: transparent;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}
section.team .select-dropdown .toggle span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.team .select-dropdown .toggle span:after {
  background-color: var(--primary);
  content: "";
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: var(--icon-chevrondown);
          mask-image: var(--icon-chevrondown);
  display: inline-block;
  position: relative;
  width: 0.875rem;
  height: 0.4375rem;
  margin-left: 0.625rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
section.team .select-dropdown.active .toggle span:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
section.team .select-dropdown.active .drop-down-box {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
section.team .select-dropdown .drop-down-box {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  left: 0;
  background: var(--secondary);
  margin-top: -0.625rem;
  -webkit-transition: opacity 0.3s, margin 0.3s;
  transition: opacity 0.3s, margin 0.3s;
  width: 100%;
  border: #dfdfdf;
  -webkit-box-shadow: 0px 0px 10px #ededed;
          box-shadow: 0px 0px 10px #ededed;
}
section.team .select-dropdown .drop-down-box ul.drop-down__menu {
  margin: 0;
  list-style: none;
  width: 100%;
}
section.team .select-dropdown .drop-down-box ul.drop-down__menu li button {
  color: var(--primary);
  padding: 0.8125rem 1.0625rem;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: block;
  text-align: initial;
  line-height: 1.4;
  width: 100%;
}
section.team .select-dropdown .drop-down-box ul.drop-down__menu li button:hover {
  background-color: var(--action-light);
}
section.team .select-dropdown .drop-down-box ul.drop-down__menu li button.active {
  background-color: var(--action-light);
}
section.team .input-wrapper {
  position: relative;
}
@container main (min-width: 64.0625rem) {
  section.team .input-wrapper {
    min-width: 15.625rem;
  }
}
section.team .input-wrapper .search-input {
  color: var(--primary);
  display: block;
  width: 100%;
  padding: 0.8125rem 1.0625rem;
  padding-left: 2.5rem;
  padding-right: 0.0625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-bottom: 1px solid var(--primary);
  background: transparent;
}
section.team .input-wrapper .search-input::-webkit-input-placeholder {
  color: var(--primary);
  opacity: 1;
}
section.team .input-wrapper .search-input::-moz-placeholder {
  color: var(--primary);
  opacity: 1;
}
section.team .input-wrapper .search-input:-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}
section.team .input-wrapper .search-input::-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}
section.team .input-wrapper .search-input::placeholder {
  color: var(--primary);
  opacity: 1;
}
section.team .input-wrapper button.search-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.3125rem;
  height: 2.3125rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section.team .input-wrapper button.search-submit [class^=icon] {
  width: 1.0625rem;
  height: 1.0625rem;
}
section.team .input-wrapper button.search-submit [class^=icon]:after {
  background: var(--primary);
}
section.team p {
  font: var(--body-font);
}
section.team p.length-error {
  color: #c70000;
}
section.team p.info-text.hidden,
section.team p.searched-text.hidden {
  display: none;
}
section.team .output-grid.loading:after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: var(--spinner);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  margin: 0 auto;
  grid-column: 1/-1;
}
section.team .output-grid .loader-cell {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
section.team .output-grid .loader-cell p {
  text-align: center;
}
section.team .fade-in {
  -webkit-animation: fadeIn 0.5s ease-in;
          animation: fadeIn 0.5s ease-in;
}