#searcherMyTours {
    /* background-color: #68a0ee; */
    /* padding: 10px; */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 1px 2px 4.5px 0px #00000078;
    border-radius: 18px;
    height: 50px;
    width: 80%;
    margin: auto;
}
#searcherMyTours:hover i {
    background-color: #67b1ce;
}
#buscadorTours {
    /* border-radius: 50px; */
    border: none;
    padding: 6px;
    width: 92%;
    /* margin: auto; */
    display: block;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    /* outline: dashed;
            outline-width: 2px;
            outline-color: blue; */
}
#buscadorTours:focus-visible {
    outline-color: #67b1ce;
    outline-style: solid;
    outline-width: 2px;
}
#searcherMyTours > i {
    color: #fff;
    font-size: 32px;
    height: 100%;
    display: flex;
    background: rgb(0, 0, 0);
    width: 8%;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    transition: all 0.3s ease-in-out;
}
/* #buscadorTours::before {
            content: "<i class='fa-solid fa-magnifying-glass-location'></i>";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
        } */

@media (max-width: 768px) {
    #searcherMyTours {
        width: 100%;
    }
    #searcherMyTours > i {
        width: 14%;
    }

    #buscadorTours {
        width: calc(100% - 14%);
    }
}
