.search-container-all {
  width: 100%;
}

.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;
}

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

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

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

.container_input.active2 .autocom_box {
  display: block;
  padding: 10px 8px;
  pointer-events: auto;
  opacity: 1;
  overflow-y: scroll;
  height: auto;
  max-height: 540px;
  position: absolute;
  background: white;
  width: 100%;
  left: 0;
  z-index: 250;
}

.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.5s linear infinite;
}

#search-blur-bg {
  position: fixed;
  top: 7rem;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease; 
}

#search-blur-bg.active {
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (min-width: 768px) {
  .container_input.active2 .autocom_box {
    max-height: 344px;
    right: 0;
    left: -100px; /* Advertencia: Esto es un "número mágico". */
    width: 550px;
  }
}