/**
 * @category    Netmatter
 * @package     Netmatter_MapSearch
 */

.googlemap #map {
    width: 100%;
}

.googlemap .map--cont {
    position: relative;
    clear: both;
}

.googlemap .googleMapsSearch {
    display: none;
    position: relative;
}

/** Slider */
.googlemap #slider-range .ui-slider-handle {
    background: #DE241E;
}

.googlemap div.ui-slider-horizontal {
    border-radius: 0;
    height: 20px;
}

.googlemap .ui-slider-handle {
    height: 30px;
    width: 10px;
    -webkit-border-radius: 0px;
    border-radius: 0;
    margin-top: -30px;
    cursor: pointer;
}

/** Buttons, input */
.googlemap .buttons {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.googlemap input#amount {
    border: 0;
    color: #DE241E;
    font-weight: bold;
    border: none;
    font-size: 1.5em;
    padding: 0;
}

.googlemap .buttons input,
.buttons select {
    width: 24%;
    margin-right: 2%;
    float: left;
    background-color: #dadada;
    color: #000;
}

.googlemap .buttons div {
    text-align: center;
    float: left;
}

.googlemap .map--button {
    text-transform: uppercase;
    background-color: #dadada;
    color: #DE241E;
    padding: 5px 30px;
    cursor: pointer !important;
    margin: 20px 5px;
}

.googlemap #drawOwnSearch.map--button {
    cursor: pointer;
    float: right;
}

.googlemap #clearMap.map--button {
    float: right;
    margin-right: 0;
}

.googlemap #searchCounterDiv {
    padding: 5px;
    margin: 20px 5px;
    color: #222;
    font-weight: bold;
    float: right;
}

.googlemap .loader {
    position: absolute;
    display: block;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #FF0000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
    bottom: 200px;
    z-index: 11;
    transform: translateZ(0);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.map-index-index .googlemap #slideOut,
.catalog-category-view .googlemap #slideOut {
    width: 400px;
    height: 80.5%;
    bottom: 0;
    top: unset;
}

.googlemap .price-container {
    padding: 0 20px;
}

.catalog-category-view .googlemap #slideOut .description {
    max-height: 250px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

