/* The filter-modal (background) */
.filter-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* 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 */
}

/* filter-modal Content/Box */
.filter-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 25px 25px 50px 25px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  height: 75%;
}

/* The Close Button */
.filter-close {
  position: absolute;
  top: 0;
  right: 15px;

  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.filter-close:hover,
.filter-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#org-staff-filter::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
}
#org-staff-filter::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0,0,0,.5);
  -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
}

.org-filter-clear-button-shadow {
  -webkit-box-shadow: -1px -15px 44px -16px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -15px 44px -16px rgba(0,0,0,0.75);
  box-shadow: -1px -15px 44px -16px rgba(0,0,0,0.75);
}