body {
    font-family: "Lato", sans-serif;
  }
.sidepanel  {
    width: 0;
    position: fixed;
    z-index: 2000;
    height: 370px;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  .sidepanel p {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 12px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  .sidepanel a:hover {
    color: #f1f1f1;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }
  
  .openbtn {
    /*style=" "*/
    position: fixed;
    display:flex;
    z-index: 1500;
    left: 15px;
    top: 60px;
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  
  .openbtn:hover {
    background-color:#444;
  }
  .mapname {
    text-align: center;
    z-index: 3000; 
    position: absolute;
    left: 40%;
    top: 60px;
    font-size: 20px;
    background-color:#f0f0f0;
    padding: 10px 10px 10px 10px;
    /*-webkit-animation: cssAnimation 5s forwards; 
    animation: cssAnimation 5s forwards;
    */
  }

  @keyframes cssAnimation {
      0%   {opacity: 1;}
      90%  {opacity: 1;}
      100% {opacity: 0;}
  }
  @-webkit-keyframes cssAnimation {
      0%   {opacity: 1;}
      90%  {opacity: 1;}
      100% {opacity: 0;}
  }

@media (max-width:900px){
    .mapname{
        top:-100%;
        /*
        bottom: 80px;
        left:20%;
        font-size: 16px;
        */
    }
}
@media (max-width:768px){
    .openbtn{
        font-size: 14px;
        top: unset;
        bottom: 65px;
    }
    .sidepanel{
        top: unset;
        bottom: 65px;
        font-size: 14px;
    }
}