#missionMap {
    height: 800px;
	width: 100%;
    margin-left:auto;
    margin-right:auto;
 }
 
 .c19-label {
    background-color: yellow;
    color: black;
  }
  
  #zoneList {
    text-align: left;
    background-color: white;
    border-radius: 5px;
    box-shadow: 5px 5px 5px black;
    box-sizing: content-box;
    width: 100%;
  
  }

  .location-label {
    background-color: red;
    color: black;
  }

/* ------------------ */
/* SPINNER LOADER MAP */
/* ------------------ */

.loader-map {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loader-map > img {
    width: 100px;
  }
  
  .loader-map.hidden {
    animation: fadeOut 2s;
    animation-fill-mode: forwards;
  }
  