.autoComplete_wrapper {
  /*display: inline-block;*/
  position: relative;
}

/*
.autoComplete_wrapper > input {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  font-size: 1rem;
  color: rgb(116, 116, 116);
  border-radius: 4px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  outline: none;
}
*/
.autoComplete_wrapper > input::-moz-placeholder {
  color: rgba(123, 123, 123, 0.5);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.autoComplete_wrapper > input::placeholder {
  color: rgba(123, 123, 123, 0.5);
  transition: all 0.3s ease;
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 400px;
  overflow: auto;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.1);
  z-index: 1000;
  outline: none;
}

.autoComplete_wrapper > ul > li {
  padding: 10px 20px;
  list-style: none;
  text-align: left;
  font-size: 20px;
  color: #212121;
  transition: all 0.1s ease-in-out;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.autoComplete_wrapper > ul > li::-moz-selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_wrapper > ul > li::selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(123, 123, 123, 0.1);
}

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: rgb(255, 122, 122);
  font-weight: bold;
}

.autoComplete_wrapper > ul > li mark::-moz-selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_wrapper > ul > li mark::selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_wrapper > ul > li[aria-selected=true] {
  background-color: rgba(123, 123, 123, 0.1);
}

:root {
  box-sizing: border-box;
}

*, *::before, *::after, *::marker {
  box-sizing: inherit;
}

body {
  margin: 80px 0 0 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  background-color: #f1f1f1;
  position: relative;
  overscroll-behavior-y: auto;
}

.pull-to-refresh {
  color: #2E294E;
  font-size: 80px;
  position: fixed;
  top: -50px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.7s ease-in-out;
}

.pull-to-refresh.visible {
  top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background-color: #f1f1f1;
}
header .top {
  display: flex;
  align-items: center;
  padding: 10px;
}
header .top .srcDiv {
  flex-grow: 1;
  margin-right: 1px;
}
header .top img {
  background-color: #fff;
  border-right: 6px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 1px;
  padding-bottom: 1px;
}
header .top input, header .top button {
  font-size: 150%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
}
header .top input {
  flex-grow: 1;
  width: 100%;
}
header .top input:focus {
  outline: none;
}
header .top button.newItmBtn {
  background-color: #fff;
  margin-right: 4px;
  padding-left: 20px;
  padding-right: 20px;
}
header .top button.refresh {
  color: #1B998B;
  font-size: 30px;
}

.container {
  padding: 0 10px 6px 10px;
}

.active-items {
  margin-bottom: 20px;
}
.active-items .item {
  background-color: #fff;
}

.inactive-items .item {
  background-color: #dfdede;
}

.item {
  display: flex;
  align-content: flex-start;
  background-color: #f1f1f1;
  margin-bottom: 2px;
  gap: 4px;
  font-size: 20px;
  cursor: pointer;
}
.item .item-name {
  flex-grow: 1;
  padding: 10px 0 10px 10px;
}
.item .item-delete {
  padding-right: 10px;
  color: #F46036;
  padding: 10px;
}/*# sourceMappingURL=style.css.map */