@charset "utf-8";

#gallery {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(129, 128, 122, 0.6);
	z-index: 100;
	padding: 10px 10px 0 10px;
	display: none;
	opacity: 0;
}
#gallery .image {
	background-color: white;
	margin: 0 auto;
	position: relative;
	border: 3px solid #f35459;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;/*
	padding-bottom: 58px;*/
}
#gallery .image .img {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
#gallery .image img {
	display: none;
}
#gallery .info {
	height: 58px;
	padding: 0 25px;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
#gallery .info div {
	height: 58px;
	width: 100%;
	display: table-cell;
	vertical-align: middle;
	color: #3a3a3a;
	font-size: 14px;
}
#gallery .thumbs {
	position: absolute;
	bottom: 10px;
	height: 100px;
	overflow: hidden;
	left: 50%;
	margin-left: -245px;
	width: 490px;
}
#gallery .thumbs .left,
#gallery .thumbs .right {
	background-color: #989898;
	height: 35px;
	cursor: pointer;
	width: 20px;
	margin-top: 32px;
	text-align: center;
	line-height: 35px;
	color: white;
	font-size: 24px;
	font-family: Arial;
}
#gallery .thumbs .left {
	float: left;
}
#gallery .thumbs .right {
	float: right;
}
#gallery .thumbs .left:hover,
#gallery .thumbs .right:hover {
	background-color: #f35459;
}
#gallery .close {
	height: 20px;
	width: 19px;
	position: absolute;
	right: -10px;
	top: -10px;
	cursor: pointer;
	color: #989898;
	background-color: white;
	z-index: 101;
	font-family: Arial;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	padding-left: 1px;
	line-height: 18px;
	border: 3px solid #f35459;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
#gallery .close:hover {
	color: #f35459;
}

#gallery .thumbs .slide {
	position: relative;
	overflow: hidden;
	margin: 0 30px;
}

#gallery .thumbs li {
	float: left;
	margin-left: 10px;
}
#gallery .thumbs li:first-child {
	margin-left: 0;
}
#gallery .thumbs li a {
	display: block;
	height: 96px;
	width: 96px;
	border: 2px solid #989898;
	background-color: white;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#gallery .thumbs li a.active {
	border-color: #f35459;
}
#gallery .thumbs li a span {
	display: none;
}