﻿.map-pin-center {
    height: 90%;
    margin: 0;
}

    .map-pin-center .centerMarker {
        position: absolute;
        /*url of the marker*/
        /*background: url(http://maps.gstatic.com/mapfiles/markers2/marker.png) no-repeat;*/
        background: url(../Images/marker/map-center-icon.svg) no-repeat;
        /*center the marker*/
        /*top: 50%;*/
        left: 50% !important;
        z-index: 1;
        /*fix offset when needed*/
        /*margin-left: -10px;
        margin-top: -34px;*/
        margin-left: -13px;
        margin-top: -33px;
        /*size of the image*/
        height: 40px;
        width: 24px;
        cursor: pointer;
        background-size: cover;
    }

    .map-pin-center #modal-confirm-address {
        margin-bottom: 30px;
        min-width: 200px;
        padding: 10px 20px;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
    }


    .map-pin-center .alert-message {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        display: none;
        background-color: #FFE1E1;
        padding: 10px;
        font-size: 12px;
        color: #EC5252;
    }

/**********************Add My Location*****************************/

.content-mylocation-map {
    background-color: rgb(255, 255, 255);
    border: 0;
    cursor: pointer;
    height: 40px;
    width: 40px;
    margin: 10px 10px 10px 10px
}

.widget-mylocation-button-icon {
    display: block;
    background-image: url('https://maps.gstatic.com/tactile/mylocation/mylocation-sprite-2x.png');
    background-size: 240px 24px;
    height: 24px;
    left: 8px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 8px;
    width: 24px;
}

.address-info {
    position: absolute;
    bottom: 50%;
    margin-bottom: 45px;
    left: 50%;
    margin-left: -200px;
    color: #fff;
    background-color: #37474F;
    padding: 15px;
    width: 400px;
    text-align: center;
    z-index:0;
}

    .address-info::after {
        background: white;
        box-shadow: -2px 2px 2px 0 rgba(178,178,178,.4);
        content: "";
        height: 15px;
        left: 50%;
        position: absolute;
        bottom:-15px;
        transform: translate(-50%,-50%) rotate(-45deg);
        width: 15px;
        background-color: #37474F;
    }

@media (max-width: 480px) {

    .address-info {
        width: 300px;
        margin-left: -150px;
    }
}