@charset "utf-8";

/*slideshow*/
.work .slideshow {
  position: relative;
}
#target {
  cursor: pointer;
  user-select: none;
}
#prev, #next {
  position: absolute;
  top: 43%;
  color: gainsboro;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}
#prev {
  left: 10px;
}
#next {
  right: 10px;
}
/*thumbnails*/
.tbn_container {
  margin-top: 10px;
}
ul#thumbnails {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul#thumbnails li {
  float: left;
  opacity: 0.6;
  cursor: pointer;
}
ul#thumbnails li.current {
  opacity: 1;
}
ul#thumbnails li:hover {
  opacity: 1;
}
ul#thumbnails li + li {
  margin-left: 13px;
}
#play, #pause {
  float: right;
  display: inline-block;
  padding: 0;
  width: 74px;
  height: 21px;
  line-height: 22px;
  background: lightgray;
  color: white;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}
/*#play:hover, #pause:hover {
  background: rgb(0, 160, 233);
}*/
#play.hidden, #pause.hidden {
  display: none;
}
ul#thumbnails li img {
  width: 32px;
  height: 21px;
}
/* medium */

@media (min-width: 570px) {

  #prev, #next {
    top: 40%;
    font-size: 30px;
  }
  #prev {
    left: 15px;
  }
  #next {
    right: 15px;
  }

}

/* large */

@media (min-width: 900px) {

  #prev, #next {
    top: 45%;
    font-size: 40px;
  }
  #prev {
    left: 20px;
  }
  #next {
    right: 20px;
  }

}
