html {

    padding: 0px;
    margin: 0px;
}

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

body #map {
    width: 100%;
    height: 100%;
}

body .over {}

input:focus {
    outline: none;
}


body .searches {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5%;
    z-index: 10;
    /* width: 100%; */
    /* padding: 15px; */
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.233);
    border-radius: 12px;
    left: 3%;
}

body .options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 5%;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.233);
    /* width: 100%; */
}

body #search {
    /* left: auto; */
    display: flex;
    flex-direction: row;

    height: 50px;
    width: max-content;
    font-size: x-large;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: white;
    /* padding: 5px 7px; */
    padding: 2px 10px;

}

/* 
body #search {
    left: auto;
    height: 50px;
    font-size: x-large;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 5px;
} */

body #search input {
    /* padding: 5px 7px; */
    height: 100%;
    padding-left: 12px;
    font-size: x-large;
    border: 0px;
    /* border-right: 2px solid rgba(0, 0, 0, 0.342); */
    margin-right: 10px;
    padding-right: 12px;
    background: transparent;
}

body #search2 input {
    /* padding: 5px 7px; */
    height: 100%;
    padding-left: 12px;
    font-size: x-large;
    border: 0px;
    /* border-right: 2px solid rgba(0, 0, 0, 0.342); */
    margin-right: 10px;
    padding-right: 12px;
    background: transparent;
}

body #search button {
    height: 100%;
    border: 0px;
    background: transparent;
    cursor: pointer;
}

body #search2 button {
    height: 100%;
    border: 0px;
    background: transparent;
    cursor: pointer;
}

body #search button:hover {
    transform: scale(1.1);
}

body #search2 button:hover {
    transform: scale(1.1);
}


body #search button img {
    width: 100%;
    height: 90%;
    /* background-color: red; */
}

body #search2 button img {
    width: 100%;
    height: 90%;
    /* background-color: red; */
}

body #addtoroute {}



/* #clearroute {
    background: transparent;
    border: 0px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 10;
}

#clearroute img {
    width: 100%;
} */

#distance {
    position: absolute;
    top: 0px;
    left: auto;
    font-size: larger;
    z-index: 10;
    /* background: rgba(0, 0, 0, 0.678);
    color: white; */

    padding: 2px 0px;
    margin: 10px 15px;
}

#queries {
    position: absolute;
    top: 0px;
    right: 0px;
    color: black;
}

.details {
    width: 20%;
    height: 65%;
    background: white;
    position: absolute;
    right: 0px;
    bottom: auto;
    z-index: 5;
    border-top-left-radius: 20px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 20px;
    /* border-radius: 20px; */
    box-shadow: 5px -5px 10px 5px rgba(0, 0, 0, 0.233);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#details {
    display: none;
}

/* /////////////////////////////////////////////////////// */




.marker-me {
    content: url("./images/me.png");
}

.marker-destination {
    content: url("./images/dest.png");
}

.marker-stops {
    content: url("./images/stops.png");
}











@media screen and (min-width: 200px) and (max-width: 500px) {
    body .searches {
        left: auto;
        top: 6%;
        /* width: 80%; */

        justify-content: center;
        border-radius: 17px;
    }

    body .options {

        border-radius: 17px;
        /* bottom: 6%; */
        bottom: auto;
        right: 0px;
        /* bottom: 10%; */
    }


    body .searches #search {
        height: 65px;
    }


    body .options #search {
        width: 75px;
        height: auto;
        padding: 10px 0px;
        flex-direction: column;
    }

    body #search input {
        width: 70vw;
    }

    body #search button img {
        /* width: 100%; */
        height: 70%;
        /* background-color: red; */
    }

    .details {
        width: 90%;
        height: 15%;
        background: white;
        position: absolute;
        left: auto;
        bottom: 0px;
        right: auto;
        z-index: 5;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        box-shadow: 5px -5px 10px 5px rgba(0, 0, 0, 0.233);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #distance {
        position: absolute;
        top: 0px;
        left: auto;
        font-size: larger;
        z-index: 10;
        /* background: rgba(0, 0, 0, 0.678);
        color: white; */

        padding: 2px 0px;
        margin: 10px 15px;
    }

}