/******************/
/* Genome Browser */
/******************/

.genome-browser-info {
  position: absolute;
  z-index: 1;
}


/****************************/
/* Genome Browser List View */
/****************************/

.gallery-heading {
  margin-bottom: 25px;
}
.thumbnail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.thumbnail .caption {
  margin-top: auto;
}
.thumbnail img {
  width: 100%;
}
a.thumbnail:hover {
  border-color: black;
  text-decoration: none;
}
.item {
  margin-left: auto;
  margin-right: auto;
  max-width: 310px;
  position: relative;
}
.item .genome-browser-info {
  top: 10px;
  right: 10px;
  display: none;
}
.item:hover .genome-browser-info {
  display: block;
}
@media screen and (max-width: 767px) {
  .item .genome-browser-info {
    display: block;
  }
}


/******************************/
/* Genome Browser Detail View */
/******************************/

.genome-browser-holder {
  margin: 0 50px;
}
.genome-browser-info {
  top: 10px;
  right: 20px;
}
/* CMS Toolbar displaces Genome Browser Info */
.cms-toolbar-expanded .genome-browser .genome-browser-info {
  top: 40px;
}
@media screen and (max-width: 767px) {
  .genome-browser-holder {
    margin-left: 0;
    margin-right: 30px;
  }
  .genome-browser-info {
    right: 7px;
  }
}
