.container_all {
  width: 100%;
  height: 100vh;
  background-color: #0B2739b0;
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  z-index: 99991;
}

.content_searcher {
  padding-left: 15px;
  background-color: #fff;
  width: 100%;
}

.content_searcher input {
  width: 100%;
  height: 50px;
  border-radius: 0px 4px 4px 0px;
  border: 0;
  text-align: left;
  padding-left: 36px;
  box-shadow: 0px 1px 5px rgb(0, 0, 0, 0.1);
}

.content_images {
  display: none;
}

.input-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 1px 5px rgb(0, 0, 0, 0.1);
}

.input-wrapper__search {
  display: none;
}

.autocom__link {
  display: block;
  color: #313235;
  position: relative;
  padding: 8px 20px 8px 28px;
  width: 100%;
}

.autocom__icon {
  position: absolute;
  top: 50%;
  left: 4px;
  color: #b5b5b6;
  transform: translateY(-50%);
}

.autocom__icon--arrow {
  left: auto;
  right: 4px;
  transform: translateY(-50%) rotate(45deg);
  font-size: 80%;
}

.autocom__link:hover {
  background-color: #efefef;
}

.input-wrapper .autocom_box {
  display: none;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}

.icon_arrow {
  position: absolute;
  top: 14px;
  left: 10px;
}

.autocom__error {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-bottom: 10px;
}

.autocom__error img {
  width: 30px;
  margin: 0;
}

.input-wrapper.active2 .autocom_box {
  display: block;
  padding: 10px 8px;
  pointer-events: auto;
  opacity: 1;
  overflow-y: scroll;
  height: auto;
  max-height: 540px;
}

.box-spinner-search {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.icon-spinner-search {
  height: 24px;
  width: 24px;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.7s linear infinite;
}

@media only screen and (min-width: 768px) {

  .input-wrapper.active2 .autocom_box {
    max-height: 344px;
  }

  .content_searcher {
    display: grid;
    position: fixed;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    background-color: #039be5;
    padding: 10px;
    width: 100%;
    height: 66px;
    top: 0;
  }

  .content_searcher input {
    height: 40px;
  }

  .content_images {
    display: flex;
    height: 40px;
    align-items: center;
  }

  .content_images i {
    display: block;
    width: 16px;
    margin-left: 10px;
  }

  .container_input {
    display: flex;
  }

  .input-wrapper {
    position: relative;
    width: 88%;
    margin: 0;
  }

  .input-wrapper--100 {
    width: 100%;
  }

  .input-wrapper__search {
    display: block;
    position: absolute;
    left: 8px;
    top: 12px;
    font-size: 18px;
  }

  .icon_arrow {
    display: none;
  }

}

@media only screen and (min-width: 1024px) {
  .content_searcher {
    grid-template-columns: 28% 44% 28%;
  }
}