/*
 * blueimp Gallery Demo CSS
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * https://opensource.org/licenses/MIT
 */

body {
  background: Black;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;	
}
a {
  color: orange;
  text-decoration: none;
}
img {
  border: 0;
  vertical-align: middle;
}
.img-box {
  border: 0;
  width: 160px; /* Custom for RetroCOD */
  height: 120px; /* Custom for RetroCOD */
  vertical-align: middle;
}
.img-wrap {
    position: relative;
    display: inline-block;
    border: 1px red solid;
    font-size: 0;
}
.img-wrap .close {
    position: absolute;
    top: 2px;
    right: 2px;
	width: 20px;
	height: 20px;		
    z-index: 100;
    background-color: #FFF;
    padding: 5px 2px 2px 1px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    opacity: .2;
    text-align: center;
    font-size: 22px;
    line-height: 10px;
    border-radius: 50%;
}
.img-wrap:hover .close {
    opacity: 1;
}
.img-wrap .play {
    position: absolute;
    top: 2px;
    left: 2px;
	width: 20px;
	height: 20px;	
    background-color: #FFF;
    padding: 2px 2px 2px 1px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    opacity: .2;
    text-align: center;
	font-size: 25px;
    line-height: 15px;

	/*
	    z-index: 100;

		*/
    border-radius: 50%;
}
.img-wrap:hover .play {
    opacity: 1;
}
#triangle-right {
      width: 0;
      height: 0;
      border-top: 50px solid transparent;
      border-left: 100px solid red;
      border-bottom: 50px solid transparent;
    }

.blueimp-gallery > .slides > .slide > .text-content {
/* Original settings
  overflow: auto;
  margin: 60px auto;
  padding: 0 60px;
  max-width: 920px;
  text-align: left;
*/
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;	
}
.galleryLinks {
  text-align: center;
}