#filter-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* 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 */
    padding-top: 0;
  }
  
  /* The Close Button (x) */
  .close {
    position: relative;
    top: 0;
    left: 0;
    color: var(--milk);
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: red;
    cursor: pointer;
  }
  .closecontainer {
    text-align: center;
    margin: 0;
  }

  #filter-modal .modal-content {
    position: relative;
    margin: 5% auto 15% auto;
    background: #0b1821;
    box-shadow: 0px 4px 40px rgba(173, 228, 255, 0.3);
    border-radius: 40px;
    width: 360px;
    padding: 20px 40px;
    /* Could be more or less, depending on screen size */
    top: 20%;
  }