:host {
  flex: 1;
}

/* make up for left, right and top margin on outer boxes */
:host .row-layout {
  margin: -0.5rem;
  margin-bottom: 1rem;
}


.experiment {
  margin: 0.5rem;

  display: flex;
  align-items: center;

  padding: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);

  transition: box-shadow 0.2s ease;
  /*color: white;*/
  /*background-color: #0D1D3B;*/

  color: #0D1D3B;
  background-color: white;

  position: relative;
}

.experiment .details {
  margin-left: auto;
  font-size: 14px;
  color: #808080;
}

.experiment:hover {
  cursor: pointer;
  box-shadow:
    0 4px 2px -2px rgba(0,0,0,.3), 
    0 3px 2px 0 rgba(0,0,0,.18), 
    0 2px 5px 0 rgba(0,0,0,.18);
}