#buscadorFull {
    position: fixed;
    width: 0%;
    height: 0%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: grid;
    grid-template-rows: auto 1fr;
}

#buscadorFull.invisible * {
    display: none !important;
}

#buscadorFull.visible {
    width: 100%;
    height: 100%;
    opacity: 1;
}

#buscadorFull .cabecera {
    display: flex;
    justify-content: flex-end;
}

#buscadorFull .cabecera svg {
    fill: #FFF;
    margin: 16px;
    width: 58px;
    height: 58px;
}

label[for="entradaTextoPredictivo"] button {
    pointer-events: none;
}
label[for="buscadorNavegadorPredictivo"] {
    cursor: pointer;
}

#buscadorFull .input {

    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid white;
}

#buscadorFull .buscador {
    margin-top: 20vh;
    justify-items: center;
}
@media only screen and (max-width: 480px) {

    #buscadorFull .buscador {
        margin-top: 0vh !important;
        justify-items: center;
    }
}


#buscadorFull .predictivo {
    position: relative;
}

#entradaTextoPredictivo {
    border: 0;
    background: transparent;
    color: #FFF;
    font-size: 30px;
    font-weight: 300;
    padding: 8px;
    width: 100%;
}

#buscadorFull .input label {
    cursor: pointer;
    align-self: center;
}

#buscadorFull .input button {
    border: 0;
    background: transparent;
}

#buscadorFull .input img {
    filter: brightness(0) invert(1);
}

#buscadorFull .buscador>* {
    max-width: 1140px;
    width: 90% !important;
    align-items: center;
    margin: 0 auto;
    left: 0 !important;
}

#buscadorFull .predictivo {

    border: none;
    background: white;
    padding-right: 0px;
    padding-left: 0px;
    color: var(--main);
}

#buscadorFull .predictivo .prediccion {
    padding: 20px;
    font-size: 14px;
    color: var(--main);
    font-weight: 500;
    width: 100% !important;
    line-height: 140%;
}

#buscadorFull .predictivo .prediccion-correcta:hover {
    background-color: var(--neutral-50);
  color: var(--secondary);
  border-radius: 4px;
}

#top-menu .predictivo {
    top: -2px !important;
    bottom: auto;
    border-radius: 4px;
  }

  #buscadorFull .predictivo .prediccion:last-child{
    border:0px
  }