.sari-search {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
}

.sari-search-input-container {
  position: relative;
  width: 100%;
  
  display: flex;
  align-items: center;
  background-color: white;
  height: 27px;
  z-index: 100;

    border: 1px solid;
    z-index: 1000;
    height: 29px;
    border-color: var(--bs-border-color);
    padding: 1rem;
    border-radius: 8px;
    transition: border-radius 300ms ease-in-out;

}


.sari-search:has(.sari-search-dropdown.show) .sari-search-input-container {
  border-radius: 8px 8px 0 0;
}

.sari-search-input {
  border: none;
/*  border-bottom: 1px solid;*/
  
  background-color: inherit;
  background-repeat: no-repeat;
  background-size: 18px;
/*  background-size: 0px;*/
  background-position: left center;
  padding-left: 26px;
  padding-right: 26px;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;

}

.sari-search-input:focus {
  outline: none;
/*  border-bottom: 1px solid var(--s-primary);*/
}

.sari-search-cancel {
  position: absolute;
  right: 24px;
  font-size: 16px;
/*  width: 8px;*/
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: fit-content;
}

.sari-search-dropdown-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: fit-content;
  transition: transform 300ms ease-in-out;
}

.sari-search:has(.sari-search-dropdown.show) .sari-search-dropdown-arrow {
  transform: rotate(-180deg);
}



/* DROPDOWN */


.sari-search-dropdown {
  width: 100%;
  overflow-y: auto;
  border: 1px solid var(--bs-border-color);
  max-height: 300px;
  padding-top: 16px;
  padding-bottom: 8px;
  position: absolute;
  top: 27px;
  left: 0;
  z-index: -1;
  transform: translateY(-100%);
  background-color: white;
  border-radius: 0 0 8px 8px;
}

.sari-search-dropdown.hide {
  z-index: -1;
  transform: translateY(-100%);
  animation: sariSearchHideDropdown 300ms linear 1;
}

.sari-search-dropdown.show {
  z-index: 1001;
  transform: translateY(0%);
  animation: sariSearchShowDropdown 300ms linear 1;
}

@keyframes sariSearchShowDropdown {
  0% {
    z-index: -1;
    transform: translateY(-100%);
  }
  50% {
    z-index: -1;
    transform: translateY(-50%);
  }
  80% {
    z-index: -1;
    transform: translateY(-15%);
  }
  100% {
    z-index: 1;
    transform: translateY(0%);
    
  }
}

@keyframes sariSearchHideDropdown {
  0% {
    z-index: 1;
    transform: translateY(0%);
  }
  50% {
    z-index: -1;
    transform: translateY(-10%);
  }
  80% {
    z-index: -1;
    transform: translateY(-50%);
  }
  100% {
    z-index: -1;
    transform: translateY(-100%);
    
  }
}

.sari-search-dropdown-option {
  margin-bottom: 4px;
  padding-left: 24px;
  padding-right: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.sari-search-no-results {
  padding-left: 24px;
  padding-right: 16px;
  text-align: center;
  font-size: .8rem;
  color: var(--bs-secondary);
}

.sari-search-dropdown-option:hover {
  background-color: var(--gm-grey-50);
}

.sari-search-dropdown-option-header {
  font-size: 1rem;

}

.sari-search-dropdown-option-trailing {
  font-size: .8rem;
  color: var(--bs-secondary);
  line-height: 16px;
}


.sari-search-dropdown-label {
  padding-left: 16px;
  font-size: .7rem;
  font-weight: bold;
  margin: 0;
}

.sari-search-validation-text {
  display: none !important;
}
/* DROPDOWN END */






























































































