.container{
  justify-content: center;
}
.btns{
  z-index: 99;
  background-color: transparent;
  /*left: 40%;*/
  position: absolute !important;
  display: flex;
  flex-direction: column;
  right: 0%;
  top: 30%;
  
}
.blue, .orange, .all, .info{
  margin: 15px;
  background-color: white; /* Green */
  border: 3px solid black;
  border-radius: 10px;
  color: black;
  padding: 10px 15px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.blue:hover{
  transition: all 0.5s ease;
  border: 3px solid blue;
}

.orange:hover{
  transition: all 0.5s ease;
  border: 3px solid orange;

}

.all:hover{
  transition: all 0.5s ease;
  border: 3px solid red;

}
.info:hover{
  transition: all 0.5s ease;
  border: 3px solid #4095c6;


}
.container{
  height: 100%;
  position: relative;
}
/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
 #map {
    height: 100%;

  }

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    font-family: 'Poppins', sans-serif;

  }
  /* Modal Content */
  .modal-content {
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    height: auto;
    border-radius: 10px;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa; 
    font-size: 28px;
    font-weight: bold;
    text-align: right !important;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  
  .contBtn{
    height: auto;
    width: 150px;
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #FFFFFF;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-weight:300;
    color:#FFFFFF;
    text-align:center;
    transition: all 0.2s;
    background-color: #00A0D0;
    border: 1px solid #00A0D0;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;

    
  }

  .contBtn:hover{
    transition: all 0.5s ease;
    background-color: #03596E;
  }
  /* 
   * Optional: Makes the sample page fill the window. 
   */
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
  }


  @media only screen and (max-width: 600px) {
  .btns{
    position: fixed;
    flex-direction: row;
    left: 0%;
    top: 87%;
    width: 100%;
  }
  .blue, .orange, .all, .info{
    padding: 10px;
    font-size: 12px;
  }
  .modal-content{
    width: 300px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 850px) {
  .btns{
    flex-direction: row;
    left: 30%;
    top: 90%;
  }
  .blue, .orange, .all{
    padding: 10px;
}


}