/* Mini Map */
#mini_map_range {
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    overflow: hidden;
    position: absolute;
    z-index: 1000;
}
#mini_map_range{
  cursor: -moz-grab;
  cursor: -webkit-grab; 
  cursor: grab;
}
#mini_map_range:active, #mini_map_range:focus { 
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing; 
  cursor: grabbing;
}

#mini_map_map {
    transform: scale(1.0);
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}
#mini_map_container {
    position: absolute;
}
.mini_map_layer {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    display: none;
    position: absolute;
    z-index: 2999;
    left: 0;
    top: 0;
}
.dotText {
    display: none;
    color: white;
    text-align: center;
    position: absolute;
    font-size: 0.8em;
    width: 150px;
    padding: 10px 5px;
    background-color: inherit;
    border-left-color: inherit;
    z-index: 11;
    top: -25%;
    right: 23px;
    word-break: break-word;
}
.dotTextRect {
    width: 0px;
    height: 0px;
    position: absolute;
    right: -6px;
    top: 4px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid;
    border-left-color: inherit;
}
.isDefaultDot {
    margin-top: 25px;
}
.mini_map_arrow {
    display: none;
    width: 0px;
    height: 0px;
    position: absolute;
    left: 20px;
    top: 10px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid white;
    transform: rotate(225deg);
    cursor: pointer;
}
.largeMap .mini_map_arrow {
    display: block !important;
    width: 50px;
    height: 50px;
    top: 0px;
    left: 0px;
    border: none;
    transform: none;
    background-image: url(/images/close_map.png);
}
/**********************************************************************************/
/****************************** Mini map effect css  ******************************/
/**********************************************************************************/
.largeMap {
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%); /* IE 9 */
    -webkit-transform: translate(-50%, -50%); /* Safari */
    transform: translate(-50%, -50%);

    visibility: visible !important;
    opacity: 1 !important;
}
.mini_map_rangeFull {
    width: 90% !important;
    height: 90% !important;
    right: 5% !important;
    bottom: 5% !important;
}
/**********************************************************************************/
/****************************** Mini map effect css  ******************************/
/**********************************************************************************/

#mini_map_button {
    display: none;
    width: 50px;
    height: 50px;
    /*background: rgba(255, 255, 255, 0.75) url(/images/pin.png) no-repeat center center;*/
    background-image: url(/images/mini-map-icon.png);
    position: absolute;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    right: 2em;
    bottom: 2em;
    z-index: 1001;
    cursor: pointer;
}

.not-imp-hide {
    display: none;
}

.not-imp-show {
    display: block;
}

.dotAndRadarBorder {
    border: 1px solid rgb(69, 182, 175);
}

@-webkit-keyframes pulsate {
    0% {-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);}
    50% {-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);}
    100% {-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

.noRadarSetSelected {
    border-radius: 50% !important;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
}

.noRadarSetSelected:hover {
    /*-webkit-animation: none;*/
}

@media (max-width: 900px) {
    .mini_map_rangeFull {
        width: 100% !important;
        height: 100% !important;
    }
    #mini_map_button {
        display: block !important;
    }
    #mini_map_range {
        display: none;
    }
}

/* Custom mini map */
#custom-map {
    width: 100px;
    height: 100px;
    bottom: 100px;
    left: 100px;
    position: absolute;
    border: 1px solid blue;
}

#custom-map-btn {
    position: absolute;
}

#custom-mini-map-range {
    overflow: hidden;
    position: absolute;
    cursor: -moz-grab;
    cursor: -webkit-grab; 
    cursor: grab;
    z-index: 10000;
}

#custom-mini-map-range:active, #custom-mini-map-range:focus { 
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing; 
    cursor: grabbing;
}

#custom-mini-map-container {
    position: absolute;
}

#custom-mini-btn {
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 1001;
    right: 20px;
    top: 50%;
    background-image: url(/images/custom_map.png);
    background-size: 100% 100%;
}

#custom-mini-btn-hide {
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 99;
    left: 0px;
    top: 0px;
    background-image: url(/images/close_map.png);
    background-size: 100% 100%;
}