﻿@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100,300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,600,700,800,900');
@import url("reset.css");

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	
	overflow-x: hidden;
	overflow-y: auto;
}

/* automatically absolutely positioned */
div.overlay {
	width: 100%;
	display: none;
	color: #fff;
}

div.overlay a.close {
	display: block;
	position: absolute;
	right: 20px;
	top: 85px;
	width: 25px;
	height: 25px;
	padding: 0;

	color: #000000;
	text-decoration: none;
	border: 1px solid #000000;

	z-index: 700;
	cursor: pointer;
	transition: all .2s ease-in;
}

div.overlay a.close:before {
	content: "\2715";
	font-size: 20px;
	display: block;
	position: relative;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}

div.overlay a.close:hover  {
	background: rgba(255, 255, 255, 1);
	transition: all .2s ease-in;
}

#overlay {
	height: 100%;		
	background-color: #fff;
}

#overlay2 {
	background-image: url(../img/overlay.png)	
}

#img {
	position: absolute;		
}

.next, .prev {
	position: absolute;		
	cursor: pointer;
	display: block;
	width: 25px;
	height: 25px;
	background: url(../img/next.png) no-repeat;
}

.prev {
	left: 15px;		
}

.next {
	right: 15px;		
}

.info {
	position: absolute;
	bottom: 10px;
	background-color: #333;
	opacity: 0.7;
	padding: 4px 15px;
}

.info strong {
	display: block;	
}

.disabled {
	visibility: hidden;		
}
