/* The Modal (background) */
.blocker {
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/*Popup css for the modals*/
.modalDeleteCollab {
  display: none; /* Hidden by default */
  z-index: 10000; /* Sit on top */
  position: absolute;
 top: 0; right: 0; bottom: 0; left: 0;
  width:100%;
  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 */
  max-height: 100%;
  position: fixed;
}

/* Modal Content/Box */
.modalDeleteCollab-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  z-index: 10000;
}

/* The Close Button */
.closeDeleteCollab {
  color:  #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

.button {
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.button:hover {
  background-color: #008CBA; /* Green */
  color: white;
}