/* custom combobox */
.combox_box_container {
  position: relative;
  width: 100%;
  width: -webkit-fill-available;
  cursor: pointer;
}


.combox_box_container table,
thead {
  width: 100%;
  color: black;
}

.combox_box_container tr {
  background: #ffffff;
  border-bottom: 1px solid gray;
  cursor: pointer;
  padding: 5px 5px;
  animation: none;
}

.combox_box_container tr:hover {
  background: var(--table-row-hover-color);
  color: black;
}

.combox_box_selected_item tr {
  background: var(--table-row-hover-color);
}

.combo_box_list_container {
  display: none;
  position: absolute;
  z-index: 100;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* border-radius: 10px; */
  overflow-x: hidden;
  overflow-y: auto;
  background: #e6e5e5;
  border-bottom-left-radius: 10px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-bottom-right-radius: 10px;
  border: 2px solid var(--fl-cont-activeBorderColor);
  right: 0;
  left: 0;
}

@keyframes stretchSnap {

  0% {
    transform: translateY(-20%);
    opacity: 0;
  }

  70% {
    transform: translateY(10%);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-dropdown {
  animation: stretchSnap 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.combo_box_list_table {
  max-height: 329px;
  /* position: absolute; */
  /* width: 100%; */
  overflow: auto;
}

.combo_box_search_input_container input {
  width: -webkit-fill-available;
  width: -moz-available;
  border: unset;
  outline: unset;
  background: #f9f9f9;
  font-size: medium;
  border: 3px groove gray;
}

.combo_box_list_item_cell_container {
  display: flex;
  justify-content: space-between;
}

.combo_box_list_item_text_container {
  min-height: 22px;
  display: flex;
  align-content: center;
  align-items: center;
  padding: 2px 2px;
  font-size: smaller;
}



.combo_box_user_input {
  display: flex;
  justify-content: space-around;
  /* background-color: #e9e8e8; */
  height: 100%;
  max-height: 100px;
  /* padding: 5px 8px; */
  /* padding-top: 5px; */
  border-radius: 5px;
  min-height: 39px;
  /* padding-left: 5px; */
  overflow: hidden;
  /* margin: 0px 2px; */
  align-items: center;
}

.combo_box_user_input input {
  background: transparent;
  border: unset;
  outline: unset;
  cursor: pointer;
}

.combo_box_icon {
  display: flex;
  /* background-color: var(--button-color); */
  color: black;
  align-items: center;
  justify-content: center;
  padding: 1px 6px;
  width: 48px;
  cursor: pointer;
  max-width: 33px;
  height: -webkit-fill-available;
  height: -moz-available;
}

.combo_box_progress_icon {
  max-width: 33px;
  background: #086968;
}

.combo_box_clear_icon {
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  margin: 2px;
  justify-content: center;
}

.combo_box_clear_icon i {
  width: 16px;
  height: 16px;
  color: white;
  display: flex;
  align-items: center;
  margin: 5px 5px;
  padding: 5px;
  border-radius: 58%;
  background: red;
  cursor: pointer;
  justify-content: center;
}

.tr_combo_item.selected {
  background: var(--table-row-hover-color) !important;
}

.tr_combo_item.keyboard-selected {
  background: #049c9b96 !important;
}

.tr_combo_item.hover {
  background: var(--table-row-hover-color) !important;
}

/* custom combobox */