/* modal box 
===========================*/
#tab-preview {
  display: none;
  height: auto;
  width: 300px;
  border-radius: 10px;
  position: absolute;
  bottom: 150px;
  right: 27px;
  z-index: 10;
  background-color: white;
  box-shadow: 0 2px 5px gray;
  overflow: hidden;
  cursor: pointer;
}

/* link */
#linked-page,
#linked-page:visited {
  display: none;
  font: 300 14px Helvetica, sans-serif; /* Web Safe Fonts. */
  text-decoration: none;
  text-indent: 0;
  text-align: left;
  width: 100%;
  color: black;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}

#linked-page p:first-child {
  font-weight: 500;
  padding: 10px 0 0 15px;
}

#linked-page p:nth-child(2){
  border-bottom: 2px inset gainsboro;
  padding: 0 0 5px 15px;
}

/* img tag */
#screenshotImg {
  border-radius: 0 0 10px 10px;
  pointer-events: auto; /* The pointer-events property defines whether or not an element reacts to pointer events. */
}

@media (min-width: 300px) and (max-width: 380px) {
  /* modal box*/
  #tab-preview {
    width: 270px;
   /* bottom: 240px;*/
  }
}


