#map {
    position: relative;
}

#map:after {
    width: 40px;
    height: 60px;
    display: block;
    content: ' ';
    position: absolute;
    top: 50%; left: 50%;
    margin: -40px 0 0 -11px;
    background: url('/assets/img/maps/marker.png') no-repeat;
    background-size: 40px 60px; /* Since I used the HiDPI marker version this compensates for the 2x size */
    pointer-events: none; /* This disables clicks on the marker. Not fully supported by all major browsers, though */
}

#edit_map {
    position: relative;
}

#edit_map:after {
    width: 40px;
    height: 60px;
    display: block;
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -11px;
    background: url('/assets/img/maps/marker.png') no-repeat;
    background-size: 40px 60px;
    /* Since I used the HiDPI marker version this compensates for the 2x size */
    pointer-events: none;
    /* This disables clicks on the marker. Not fully supported by all major browsers, though */
}


#address_map {
    position: relative;
}

#address_map:after {
    width: 40px;
    height: 60px;
    display: block;
    content: ' ';
    position: absolute;
    top: 50%; left: 50%;
    margin: -40px 0 0 -11px;
    background: url('/assets/img/maps/marker.png') no-repeat;
    background-size: 40px 60px; /* Since I used the HiDPI marker version this compensates for the 2x size */
    pointer-events: none; /* This disables clicks on the marker. Not fully supported by all major browsers, though */
}

.pac-container {
  width:auto!important;
  position:absolute!important;
  left:0px!important;
  right:0px!important;
  top:115px!important;
  z-index:99999;
}


.pac-item span{
    padding-right: 3px !important;
    color: #1f0757 !important;
    font-weight: bold !important;
}

.pac-item-query {
    font-size: 14px!important;
    padding-right: 3px !important;
    color: #1f0757 !important;
    font-weight: bold !important;
}

/* preloader */
.loader-div {
    background: #000;
    opacity: 0.5;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
}

.loader {
    border: 6px solid whitesmoke;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 65% auto;
    border-top: 6px solid #409AF6;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {

        transform: rotate(360deg);
    }

}

