@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);

/********
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans';
}

h1 {
  font-weight: 100;
  margin: 0;
}

section {
  column-width:300px;
  column-gap: 5px;
  padding: 5px;
}

section img {
  width: 100%;
  cursor: pointer;
}
******/
.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
left:0;
  display: none;
  background: #241F31;
  perspective: 1000;
z-index:9999;
}

.filter {
  position: absolute;
  width: 100%;
  height: 100%;
/**  filter: blur(20px); **/
  opacity: 1.0;
  background-position: center;
/**  background-size: cover; **/
		background-size: contain;
  background-repeat: no-repeat;
 /** background-size: auto; **/
}

.lightbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg);
  max-height: 95vh;
  max-width: calc(95vw - 100px);
  transition: 0.8s cubic-bezier(0.7, 0, 0.4, 1);
  transform-style: preserve-3d;
}


/*.lightbox:hover img{
  transform: translate(-50%, -50%) rotateY(180deg);
}*/

[class^="arrow"] {
  height: 200px;
  /**width: 25px;**/
	width:0;
  /**background: rgba(0, 0, 0, 0.4);**/
	background:#fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;

}

[class^="arrow"]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 45px;
  height: 45px;
}

.arrowr {
  right: 40px;
}

.arrowr:after {
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.arrowl {
  left: 40px;
}

.arrowl:after {
  border-left: 2px solid white;
  border-top: 2px solid white;
}

.close {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  /**background: rgba(0, 0, 0, 0.4);**/
	background:transparent;
  /**margin: 25px;**/
	margin-right:12.5px;
	margin-top:12.5px;
  cursor: pointer;
}

.close:after,
.close:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #e74c3c;
}

.close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.title {
  font-size: 30px;
/**	font-weight:bold;**/
  color: #fff;
  z-index: 2000;
  position: absolute;
  top: 12.5px;
  left: 12.5px;
}

