/*  Custom Marker CSS - GPSTracking */

/* Marker Containers divs */
.custom-marker {
    display: block;
    position: relative;
    width: 100px;
    height: 100px;
    background: clear;
    border: 0px;
    content: "";
/*    z-index: 200;*/
}

.custom-marker.hidden{
    display: none;
}

.custom-marker-title {
    display: block;
    position: absolute;
    top: -15px;
    left: calc(50% + 16px);
    /*margin-left: calc();  TBD: determine width of lable ??? */
    padding: 1px 4px;
    text-align: left;
    width: 175px;
    height: 52px;
    background: rgba(244,200,0,0.8);
    border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
    border: 1px solid #000000;
    transform: rotate(0deg);
    content: "";
    z-index: 100;
    visibility: visible;
}

.hiddenflags .custom-marker-title {
    display: none;
}

.custom-marker-ping {
    display: block;
    position: absolute;
    margin: auto;
    padding: 0px 0px;
    background: clear;
    border: 0px;
    content: "";
    z-index: 2;
}
.custom-marker-device {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 0px 0px;
    background: clear;
    border: 0px;
    z-index: 3;
}

.smallmarker .custom-marker-device {
    width: 40px;
    height: 40px;
}

/* Item elements */
.marker-title {
    color: black;
    text-align: left;
    font-family: "Lucida Grande", Verdana, Arial;
    font-size: 10px;
    visibility: visible;
}
.marker-ping {
    visibility: visible;
}
.marker-device {
    visibility: visible;
}