#map_canvas {
    height: 100%;
}
.map-labels-mobile {
    width: 101%;
    padding: 1% 1%;
    background: #163b6b;
}
.planned {
    background: #556d87;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    color: white;
}

.inprogress {
    background: #4c4c4cad;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    color: white;
}

.completed {
    background: #009aff6e;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    box-shadow: 0px 0px 7px 3px #0090ff;
    color: white;
}

/* The popup bubble styling. */
.popup-bubble {
    /* Position the bubble centred-above its parent. */
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: none;
    padding: 5px;
    border-radius: 5px;
    font-family: sans-serif;
    overflow-y: auto;
    max-height: 60px;
    z-index: -10000;
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom: 8px;
    left: 0;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
    cursor: auto;
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
}

#bodyContent h1 {
    font-size: 14px;
    margin-bottom: 6px;
}

#place-autocomplete-card {
    background-color: #fff;
    color: #1993C1 !important;
    border-radius: solid 1px;
    margin: 12px;
    width: 25%;
    padding: 7px;
    border-radius: 2px;
}

#out-of-area-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 2px;
    background-color: rgb(248, 249, 250);
    display: block;
    position: absolute;
    z-index: 100;
    left: 211px;
    top: 60px;
}

gmp-place-autocomplete {
    position: relative;
}
label.place-label {
    padding-top: 0!important;
}
.map-labels {
    display: none;
    position: absolute;
    color: black;
    top: 85px;
    left: 8px;
    background: white;
    padding: 4px;
    border-radius: 2px;
}

.infowindow-button-wrapper {
    text-align: center;
}

.stellar-map-loader {
    height: 100%;
    width: 100%;
    opacity: 0.9;
    position: absolute;
    background: no-repeat center #000;
}
.svg-loader{
    width:60px;
    height:60px;
}
 img.img-loader {
      position: absolute;
      top: 86%;
      left: 74%;
  }
/*New loader Animation*/ 
    
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    webkit-transform: rotate(0deg);  }
  100% {
    transform: rotate(360deg);
    webkit-transform: rotate(360deg);  }
}
@-webkit-keyframes anti_spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);  }
}
@keyframes anti_spin {
  0% {
    transform: rotate(0deg);
    webkit-transform: rotate(0deg);  }
  100% {
    transform: rotate(-360deg);
    webkit-transform: rotate(-360deg);  }
}

.loader {
  position: absolute;
  top:40%;
  left:45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
 
}
.loader span {
  position: absolute;
  display: block;
  opacity: 0.75;
  margin: 5px auto;
  border-radius:50%;
  border: 20px solid;
}
.loader span.redCircle {
  height: 150px;
  width: 150px;
  background-color: transparent;
  border-color: #3498db transparent transparent transparent;
  animation: spin 5s infinite linear;
  -webkit-animation: spin 5s infinite linear;}
.loader span.yellowCircle {
  height: 130px;
  width: 130px;
  background-color: transparent;
  border-color: #3498db transparent transparent transparent;
  top: 10px;
  left: 10px;
  animation: spin 4s infinite linear;
  -webkit-animation: spin 4s infinite linear;}
.loader span.blueCircle {
  height: 110px;
  width: 110px;
  background-color: transparent;
  border-color: #3498db transparent transparent transparent;
  top: 20px;
  left: 20px;
  animation: spin 3s infinite linear;
  -webkit-animation: spin 3s infinite linear;}
.loader span.greenCircle {
  height: 90px;
  width: 90px;
  background-color: transparent;
  border-color: #3498db transparent transparent transparent;
  top: 30px;
  left: 30px;
  animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;}

 
 @media (max-width: 500px){
      .map-labels {
          display:none;
      }

    #place-autocomplete-card {
        background-color: #fff;
        color: #1993C1 !important;
        border-radius: solid 1px;
        margin: 10px;
        width: 83%;
        left: 0px !important;
        padding: 7px;
        border-radius: 2px;
    }
  }