/*! esri-leaflet-geocoder - v0.0.1-beta.5 - 2014-06-20
*   Copyright (c) 2014 Environmental Systems Research Institute, Inc.
*   Apache 2.0 License */

.geocoder-control-input {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-image: url(images/search.png);
    background-size: 40px;
    border: 0;
    padding: 0;
    text-indent: 6px;
    font-size: 16px;
    height: 40px;
    width: 100%;
    line-height: 40px;
    background-position: right center;
    cursor: pointer
}

.geocoder-control {
    width: 40px;
    height: 40px;
    -webkit-transition: width .175s ease-in;
    -moz-transition: width .175s ease-in;
    -ms-transition: width .175s ease-in;
    -o-transition: width .175s ease-in;
    transition: width .175s ease-in
}

.geocoder-control-expanded,
.leaflet-touch .geocoder-control-expanded {
    width: 100%;
}

.geocoder-control-input.geocoder-control-loading {
    background-image: url(images/loading.gif);
    background-size: 40px
}

@media only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min-device-pixel-ratio:2) {
    .geocoder-control-input {
        background-image: url(images/search.png)
    }
    .geocoder-control-input.geocoder-control-loading {
        background-image: url(images/loading.gif)
    }
}

.geocoder-control-input:focus {
    outline: 0;
    cursor: text
}

.geocoder-control-input::-ms-clear {
    display: none
}

.geocoder-control-suggestions {
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    overflow: hidden;
    display: none
}

.geocoder-control-suggestions .geocoder-control-suggestion {
    font-size: 13px;
    padding: 7px;
    background: #fff;
    border-top: 1px solid #f1f1f1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer
}

.geocoder-control-suggestions .geocoder-control-suggestion:first-child {
    border: 0
}

.geocoder-control-suggestions .geocoder-control-suggestion.geocoder-control-selected,
.geocoder-control-suggestions .geocoder-control-suggestion:hover {
    background: #00c0ff;
    border-color: #00c0ff
}

.leaflet-right .geocoder-control-suggestions {
    left: auto;
    right: 0
}

.leaflet-right .geocoder-control-input {
    left: auto;
    right: 0
}

.leaflet-touch .geocoder-control {
    width: 30px;
    height: 30px
}

.leaflet-touch .geocoder-control.geocoder-control-expanded {
    width: 275px
}

.leaflet-touch .geocoder-control-input {
    /*height: 30px;*/
    line-height: 30px;
    background-size: 30px
}

.leaflet-touch .geocoder-control-suggestions {
    top: 30px
}

.leaflet-oldie .geocoder-control-input,
.leaflet-oldie .geocoder-control-suggestions {
    border: 1px solid #999
}



.geocoder-control-input{
	font-family: "Clarika Pro Grotesque Regular";
    background-color: #EAFEFF;
    color: #4D4D4D;
}

.geocoder-control-suggestions .geocoder-control-suggestion{
	font-family: "Clarika Pro Grotesque Bold";
    background-color: #EAFEFF;
    color: #4D4D4D;
}

.geocoder-control-expanded{
    display: block;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    max-width: 750px;
    min-width: 280px;
    margin-right: 0px;
    margin-left: 0px;
}
.leaflet-left{
    width: 100%;
    /*height: 50px;*/
}