.buscar_viaje {
    border: 4px solid #fca30b;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 13px;
    padding: 24px 10px;
    width: 100%;
    /* background-image: repeating-linear-gradient(90deg, hsla(298, 16%, 68%, 0.06) 0px, hsla(298, 16%, 68%, 0.06) 1px, transparent 1px, transparent 21px, hsla(298, 16%, 68%, 0.06) 21px, hsla(298, 16%, 68%, 0.06) 22px, transparent 22px, transparent 72px), repeating-linear-gradient(0deg, hsla(298, 16%, 68%, 0.06) 0px, hsla(298, 16%, 68%, 0.06) 1px, transparent 1px, transparent 21px, hsla(298, 16%, 68%, 0.06) 21px, hsla(298, 16%, 68%, 0.06) 22px, transparent 22px, transparent 72px), repeating-linear-gradient(135deg, hsla(298, 16%, 68%, 0.06) 0px, hsla(298, 16%, 68%, 0.06) 1px, transparent 1px, transparent 21px, hsla(298, 16%, 68%, 0.06) 21px, hsla(298, 16%, 68%, 0.06) 22px, transparent 22px, transparent 72px), linear-gradient(90deg, hsl(275, 3%, 97%), hsl(275, 3%, 97%)); */
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgb(88 51 10) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}


.contenedor_titulo{
    display: flex;
    justify-content: center;

}

.titulo_formulario{
    width: fit-content;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 21px;
    color: #fca30b;
    font-weight: 900;
    font-size: 35px;
   
}


/* .buscar_subcontainer{

} */

.buscar_item{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 22px 0px 30px 0px;
}



.item_titulo{
    background: #fca30b;
    color: white;
    padding: 3px 30px;
    text-align: center;
}


/*INPUTS*/
#busqueda_origen,
#busqueda_destino{
    height: 38px;
}


.btn-buscar {
    padding: 6px 100px;
    border: 1.5px solid #fca30b;
    border-radius: 5px;
    color: #fca30b;
    z-index: 1;
    background: white;
    position: relative;
    font-weight: 1000;
    font-size: 14px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    cursor: pointer;
    transition: all 250ms;
    overflow: hidden;
}

.btn-buscar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 3px;
    background-color: #fca30b;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms
}

.btn-buscar:hover {
    color: #e8e8e8;
}

.btn-buscar:hover::before {
    width: 100%;
}

