#publicationsPanel {
  height: 0px;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 260;
  bottom: 0;
  border-top: 1px solid rgb(0, 99, 220);
  background-color: rgba(128, 128, 128, 0.7);
}

body[publications-visible="true"] #publicationsPanel {
  height: auto;
  overflow-x: auto;
}

.no-touch body[publications-visible="false"] #publicationsPanel:hover,
.touch body[publications-visible="false"] #publicationsPanel:active {
  height: 20px;
  background-color: rgba(0, 99, 220, 0.3);
}

#pubContainer {
  display: flex;
}

body[publications-visible="true"] .pubThumbImage {
  height: 200px;
  cursor: pointer;
}

.pubThumbTitle {
  color: #000000;
  font-family: "Open Sans Light", sans-serif;
  font-size: 21px;
  font-weight: normal;
  line-height: 27px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
}

.pubThumbTitle.currentPublication {
  font-weight: bold;
}

.pubThumbele {
  display: inline-block;
  padding: 18px;
  margin: 9px;
  text-align: center;
}

.pubThumbele > .pubThumbImage {
  border: 6px solid transparent;
  width: auto;
  z-index: 1;
}

.pubThumbele > img {
  transition: border 0.1s ease-out 0s;
}

.pubThumbImage.currentPublication {
  box-shadow: 0 0 10px #4d4d4d;
  border-color: rgba(0, 99, 220, 0.3);
}

.no-touch .pubThumbImage:hover,
.touch .pubThumbImage:active,
.touch .pubThumbImage.active {
  border-color: rgba(0, 99, 220, 0.8);
}