/* news single */
.update-single { padding: 20px; float: left; width: 100%; }

/* images */
.update-single .gallery {
	display: block;
	overflow: hidden;
	margin-bottom: 40px;
	opacity: 0;
	transition: opacity .2s;
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
}
.update-single .gallery.show { opacity: 1; }
.update-single .images { overflow: hidden; display: block; margin-bottom: 30px; }
.update-single .img-big {
	display: flex;
	overflow: hidden;
	align-items: center;
	float: left;
	width: 100%;
	height: 400px;
	position: relative;
	border: 1px solid #d4d4d4;
}
.update-single .image {
	width: 100%;
	float: left;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	transition: opacity .5s, visibility .5s;
	-webkit-transition: opacity .5s, visibility .5s;
	-moz-transition: opacity .5s, visibility .5s;
}
.update-single .image.show { visibility: visible; opacity: 1; }
.update-single .image:nth-child(2n+2) { padding-right: 0px; }
.update-single .image img { width: 100%; height: auto; }
.update-single .img-small .single-img {
	width: -webkit-calc(33.33334% - 1px);
	width: -moz-calc(33.33334% - 1px);
	width: -ms-calc(33.33334% - 1px);
	width: -o-calc(33.33334% - 1px);
	width: calc(33.33334% - 1px);
	float: left;
	margin-right: 1px;
	margin-top: 1px;
	border: 1px solid #d4d4d4;
}
.update-single .img-small .single-img img { width: 100%; height: auto; cursor: pointer; }

/* specifications */
.update-single .specifications {
	display: block;
	margin-bottom: 65px;
	margin-top: 40px;
}
.update-single .specifications p {
	line-height: 20px;
	padding-bottom: 0px;
}
.update-single .specifications p.align-right { text-align: left; }
.update-single .specifications p b { display: block; }

.update-single .button.down { cursor: pointer; }
.update-single .button.down:after { content: '\f0d7'; }

	/* media specific styles */
	@media( min-width: 768px ){
		.update-single .img-big { width: 80%; }
		.update-single .img-small { width: 20%; float: left; padding-left: 3px; }
		.update-single .img-small .single-img { width: 100%; }

		.update-single .specifications p.align-right { padding-left: 200px; }
		.update-single .specifications p b { width: 200px; display: inline-block; }
	}
	@media( min-width: 1024px ){
		.update-single .gallery { width: 45%; float: left; }
		.update-single .img-big { width: 100%; }
		.update-single .img-small { width: 100%; padding-left: 0px; }
		.update-single .img-small .single-img {
			width: -webkit-calc(33.33334% - 2px);
			width: -moz-calc(33.33334% - 2px);
			width: -ms-calc(33.33334% - 2px);
			width: -o-calc(33.33334% - 2px);
			width: calc(33.33334% - 2px);
			border: 1px solid #d4d4d4;
			margin-right: 3px;
			margin-top: 3px;
		}
		.update-single .img-small .single-img:nth-child(3n+3){ margin-right: 0; }
		.update-single .text { width: 55%; float: left; padding-left: 60px; }
	}	
	@media( min-width: 1170px ){

	}