@media only screen and (min-width: 1400px){
  div.filter {
    width: 200px;
    position: fixed;
    top: 8em;
    left: 1em;
    padding: 25px;
    background-color: var(--light);
  }

  div#show-filter {
    display: none;
  }

  div#close-filter a,
  div#close-filter {
    display: none;
  }
}

/* --------------------------------- */
/* -- Medium & Small Screen Sizes -- */
/* --------------------------------- */
@media only screen and (max-width: 1399px){
  div.filter {
    display: none;
    min-width: 200px;
    width: 300px;
    position: fixed;
    top: 20%;
    left: 5%;
    padding: 25px;
    background-color: var(--light);
  }
  div.filter label,
  div.filter select,
  div.filter span {
    font-size:x-large;
  }
  div#translucent {
    display: none;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    filter:opacity(90%);
  }
  div#close-filter {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: bold;
    font-size: 22px;
  }
  
  div#close-filter a {
    text-decoration: none;
    color: var(--black);
  }


  div#show-filter a {
    background-color: var(--blue);
    color: var(--light);
    font-family: "Figtree";
    font-size: 1.5em;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0px;
    padding: .4em 1.3em;
    margin-left: .75em;
    margin-right: .75em;
    transition: 0.3s;

    position: fixed;
    left: 0px;
    bottom: 0px;
  }
  div#show-filter a:hover {
    background-color: #4F7A7B;
  }
  div#show-filter a:active {
    background-color: #3F6A6B;
  }

}

