/* stranica price */

.accordion {
	width:100%;
	margin: 0 0 30px;
}

.accordion .accordion_item {
	margin-bottom:1px;
	position:relative
}

.accordion .title_block {
	font-weight: 400;
	font-size: 18px;
	color: #eee;
	cursor:pointer;
	background: #9d9cab;
	padding:10px 55px 10px 15px;
	-webkit-transition:all .2s linear 0;
	-webkit-transition-delay:.2s 0;
	transition:all .2s linear 0
}

.accordion .title_block:before {
	content:'';
	height:8px;
	width:8px;
	display:block;
	border:2px solid #fefefe;
	border-right-width:0;
	border-top-width:0;
	-ms-transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	position:absolute;
	right:20px;
	top:15px
}

.accordion .active_block .title_block:before {
	border:2px solid #fefefe;
	border-left-width:0;
	border-bottom-width:0;
	top:18px
}
.accordion .title_block:hover {
	background: #9d9cab  
}

.accordion .active_block .title_block {
	background: #9d9cab;
	color:#fefefe
}

.accordion .info {
	display:none;
	overflow: hidden;
}

.accordion .info_first {
	display: block;
}

.accordion .info_item {
	margin-bottom:10px
}

.accordion .info img {
	height: auto;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.large-img {
	width: 100%;
	margin-bottom: 10px;
}

.img-left {
	width: 25%;
	float:left;
	margin:5px 15px 5px 0;
}

.img-right {
	width: 25%;
	float:right;
	margin:5px 0 5px 15px;
}