.map-container {
    width: 800px;
    height: 800px;
    position: absolute;
    /* margin: 5px; */
}

.world-map { 
    z-index: 0;
    width: 100%;
    height: 100%;
    margin: 0px;
    background: #888888;
}

.region-map {
    z-index: -1;
    margin: 0px;
    /* position: fixed; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#worldMapBtn {
    position: absolute;
    top: 50px;
    left: 50px;
}

/************  Construction popups *************
All .popup coding from: 
How to Create Simple Popup Box / Modal using HTML CSS & JavaScript: https://www.youtube.com/watch?v=iE_6pQ3RlZU
*/
.popup .overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background:rgba(0, 0, 0, 0.7);
    z-index:1;
    display: none;
  }
  
  .popup .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: 350px;
    height: 200px;
    z-index: 2;
    text-align:center;
    padding: 20px;
    box-sizing:border-box;
    border-style: solid;
    border-radius: 5%;
    border-width: 1px;
  }
  
  .popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
  }
  
  .popup.active .overlay {
    display: outside;
  } 
  
  .popup.active .content {
    transition:all 500ms ease-in;
    transform: translate(-50%, -50%) scale(1);
  }
  /*********** Construction popups ************/