.location-search {
    color: var(--beep-turquoise);
}

.clear-cross {
    color: var(--beep-orange);
    cursor: pointer;
    pointer-events: auto;
    right: 0.2rem; left: unset;
}

.location-select-wrapper input.md-form-control {
    margin-bottom: 0;
}

.location-select-wrapper label {
    top: 0.4rem;
}

.location-select-wrapper {
    position: relative;
    color: black;
}

.location-select-dropdown {
    position: absolute;
    z-index: 1000;

    overflow-y: auto;
    overflow-x: hidden;

    width: calc(100% - 2 * 15px);
    max-height: 200px;
    padding: 0.5rem;

    border: 0;
    border-radius: 0;

    background-color: var(--beep-lightgray);

    font-size: 14px;
}

.location-select-dropdown > div {
    padding: 5px 5px 9px 5px;
    cursor: pointer;
}

.location-select-dropdown > div:hover,
.location-select-dropdown > div.selected {
    background-color: var(--beep-green);
    color: var(--beep-white);
}

#location-select-fullscreen-holder,
.location-select-fullscreen-holder {
    display: none;
}

@media screen and (max-width: 768px) {
    #location-select-fullscreen-holder {
        display: block;
        position: relative;
    }

    .location-select-fullscreen-wrapper {
        background-color: var(--beep-white);
        bottom: 0;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 1100;
        overflow: auto;
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-header {
        background-color: var(--beep-white);
        display: flex;
        justify-content: space-between;
        position: fixed;
        left: 0;
        right: 0;
        box-shadow: 0 2px 6px -4px rgba(0,0,0,.38);
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-header > .back-button {
        color: #888888;
        padding: 22px 24px;
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-header > .loading-icon {
        color: #888888;
        padding: 22px 24px;
        position: absolute;
        right: 0;
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-header > input {
        border: 0 solid #888888;
        padding: 14px 0;
        width: 100%;
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-header > input:focus {
        outline: none;
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-body {
        margin-top: 60px;
    }

    .location-select-fullscreen-wrapper > .location-select-fullscreen-body > div {
        padding: 1rem;
    }
}

.use-my-location {
    font-weight: bold;
    margin-bottom: 0.25rem;
}
