  .multiselect {
    flex: 1 0 0;
    margin:5px;
  }
  
  .selectBox {
    position: relative;
  }
  
  .selectBox select {
    width: 100%;
    font-weight: bold;
  }
  
  .overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  
  .checkboxes {
    display: none;
    position: relative;
    border: 1px #dadada solid;
    background-color: white;
    z-index:100;
    padding: 0px 10px 10px 10px;
  }
  
  .checkboxes label {
    display: block;
  }
  
  .checkboxes label:hover {
    background-color: #1e90ff;
  }

  /* Style the submit button */
  .filter_search {
    width: 60px;
    height:60px;
    padding: 10px;
    margin-left: 10px;
    background: #870231;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none; /* Prevent double borders */
    cursor: pointer;
    border-radius:30px;
  }

  .filter_search:hover {
    background: #5f0021;
  }

  .filter_search:disabled {
    background: #a3a3a3;
    cursor: default;
  }
  .filter_search:disabled:hover {
    background: #a3a3a3;
  }

  /* Dropdowns */
  #interesse {
    height:60px;
    width:400px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius:5px;
    font-size:20px;
  }

  .filter-option
  {
    height: 30px;
  }

  /*Active Filters*/

  #filter-items {
    padding-bottom: 10px;
    display:flex;
    flex-wrap: wrap;
  }

  .active_filter
  {
    cursor: pointer;
    border: 1px solid rgb(160, 160, 160);
    border-radius: 4px;
    padding: 0px 5px 0px 5px;
    margin-right: 10px;
  }

  /*Results*/
  @keyframes grow_area {
    0%   {height:0px;}
    100% {height:300px;}
  }

  #results-count {
    border-bottom: 1px solid  rgb(160, 160, 160);
  }

  #results-container {
    position: relative;
  }

  #results-items {
    margin-top:10px; 
    min-height: 590px;
  }

  #results-loading {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.4);
    justify-content: center;
  }

  .project-filter-thumb  {
    background-size: cover;
    height:150px; 
    width: 100%;
    position: relative;
  }

  .pagination-page {
      padding-left:10px;
      cursor: pointer;
  }

  .pagination-page.selected {
    color:#870231;
    cursor: default;
  }

  /*Spinner*/
  .lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    align-self: center;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid rgb(82, 82, 82);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }