body {
  margin: 0;
  background-color: #111;
}

.searchbox-container {
  position: absolute;
  left: 50%;
  top: 50%;	
  transform: translate(-50%, -50%);
}

.searchbox-wrapper {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 576px;
  max-height: 200px;
  height: auto;
  padding: 10px 31px 10px 10px;
  font-size: 18px;
  border: 1px;
  /* margin: 0 auto; */
  border-radius: 20px;
  line-height: 1.5;
  white-space: initial;
  word-wrap: break-word;
  resize: none;
  align-items: flex-end;
  justify-content: flex-start;
  transition: all 0.15s ease-in-out;
}

.searchbox-filler {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 509px;
  max-height: 200px;
  height: 27px;
  /* height: auto; */
  padding: 10px 32px 10px 10px;
  background-color: #222;
  opacity: 0.92;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
  line-height: 1.5;
  white-space: initial;
  word-wrap: break-word;
  overflow: hidden hidden;
  resize: none;
  transition: all 0.15s ease-in-out;
  outline: #fff;
  overflow: hidden;
}

.searchbox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 509px;
  max-height: 200px;
  /* height: auto; */
  padding: 0px 31px 0px 9px;
  background-color: #22222200;
  /* opacity: 0.95; */
  border: none;
  outline: none;
  border-radius: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
  line-height: 1.5;
  white-space: initial;
  word-wrap: break-word;
  overflow: hidden hidden;
  resize: none;
  transition: all 0.15s ease-in-out;
}

.searchbox::-webkit-scrollbar {
  width: 8px;
  max-height: fit-content;
}

.searchbox::-webkit-scrollbar-track {
  background: transparent;
}

.searchbox::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
  background-clip: padding-box;
  z-index: 2;
}

.searchbox::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-webkit-scrollbar-vertical {
  width: 8px;
  height: 8px;
  background-color: #f5f5f5;
}

@media (max-width: 300px) {
  .searchbox {
    width: 100%;
    max-width: 200px;
  }
}

.search-interact {
  position: relative;
  display: flex;
  width: 50px;
  bottom: -11px;
  height: 50px;
  cursor: pointer;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row-reverse;
  z-index: 1;
}

.search-icon {
  width: 25px;
  height: 25px;
  fill: grey;
  transition: fill 0.15s ease;
}

.search-interact:hover .search-icon {
  fill: lightgrey;
  transition: fill 0.1s ease;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #958888;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
