html, body {
    height: 100%;
    margin: 0;
}

#map {
    background-color: #161616;
    width: 100%;
    height: 100%;
}

p {
    margin-top: -5;
    margin-bottom: -5;
}

.reset-prompt {
    position: inherit;
    left: 50%;  
    justify-content: center;
}

#reset, .reset-prompt-btn {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #d8d9d3;
    background-color: #2c2c2c;
    border: none;
    border-radius: 0;
    outline: none;
    margin-top: 15px;
    padding: 10px 20px;
}

.note {
    font-weight: 700;
    font-style: italic;
    font-size: 11px;
    color: #2c2c2c;
    line-height: 1.2;
}

.found {
    font-weight: 700;
    color: #2c2c2c;
}

.vert-space {
    margin-top: 30px;
}

.map-filter{
    font-family: 'Merriweather', serif;
    font-weight: 5  00;
    background:#dad5cf;
    display: block;
    width: 310px;
    height: 100%;
    line-height: 40px;
    text-decoration: none;
    transition: ease all 0.3s;
    position: fixed;
    z-index: 999;
    margin-bottom: 200px;
    padding-left: 0px;
    padding-bottom: 20px;
}

.filter-header {
    font-size: 20px;
    margin-top: -20px;
    padding-top: 10px;
    padding-left: 10px;
    color: #d8d9d3;
    background-color: #2c2c2c;
}

.content-header {
    padding-left: 10px;
    margin-right: 14px;
    color: #f1f1f1;
    background-color: #2c2c2c;        
}

.filter-content {
    margin-top: 0px;
    padding-left: 10px;
}

.version {
    font-size: 14px;
    font-weight: 300;
}

.changelog {
    color: #fb7558;
    font-size: 12px;
}

.test {
    margin-top: -30px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    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 */
  }
  
  /* Modal Content/Box */
  .modal-content {
    font-family: 'Merriweather', serif;
    line-height: 1.5;
    background-color: #dad5cf;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .filter-float-btn{
    display: none;
}

@media (max-width: 987px) {
    .map-filter{
        width: 100%;
        height: 30%;
        overflow-y: scroll;
        -webkit-overflow-scrolling: auto;
    }

    ::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 7px;
      }
      
    ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
    }

    /* Modal Content/Box */
    .modal-content {
        width: 80%; /* Could be more or less, depending on screen size */
    }

    .filter-float-btn{
        background:#2c2c2c;
        display: block;
        width: 2em;
        height: 2em;
        line-height: 50px;
        text-align: center;
        color: white;
        font-size: 30px;
        font-weight: bold;
        border: none;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        text-decoration: none;
        transition: ease all 0.3s;
        position: fixed;
        right: 20px;
        top: 28%;
        z-index: 999;
        outline:none;
    }
}