@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900&display=swap');

/**
*   =================
*   #### GLOBALS ####
*   =================
*/

* {
    box-sizing: border-box;
}

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #000000;
    --accent-color: #006c82;
}

#root {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

/**
*   =============
*   #### MAP ####
*   =============
*/

#map {
    height: 100vh;
    width: 100%;
}

#controls {
    max-width: 100%;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#controls > * {
    margin: 8px 0;
}

[id$="address"] {
    border-radius: 50px;
    margin: 8px 0;
}

.autocomplete-wrapper {
    height: 32px;
}

#controlsTitle {
    text-align: center;
}

#computeRoute {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    border: solid 1px var(--accent-color);
    min-height: 32px;
    min-width: 175px;
    margin: 16px;
}

.primaryBtn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    border: solid 1px var(--accent-color);
    min-height: 32px;
    min-width: 175px;
    margin: 16px;
}

#marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a73e8;
    border: 3px solid white;
    box-shadow: 0 0 8px rgba(26,115,232,.6);
}

.mapInfo {
    width: 100%;
    min-height: 100px;
    padding: 8px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.bi {
    color: white !important;
    font-size: 40px !important;
    size: 40px !important;
}

#icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 40%;
}

#instructionMeta {
    height: 100%;
    width: 60%;
}

#instructionsContainer {
    display: none;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    height: 100px;
    width: 100%;
}