
.mzgr-content-1 .accordion-container {
	-webkit-transition: all 1s; /* Safari */
    transition: all 1s;
}

.mzgr-content-1 .accordion-content {
	overflow: hidden;
    max-height: 46px;
    height: 46px;
   	-webkit-transition: max-height 3s; /* Safari */
    transition: max-height 3s;
}

.mzgr-content-1 .open .accordion-content {
	height: auto;
	max-height: 500px; /* used max-height in order to make transitions work (height: auto;) */
}

.mzgr-content-1 .accordion-opener {
	position: relative;
	padding: 15px 0;
	cursor: pointer;
}

.mzgr-content-1 .accordion-container hr {
	margin:0;
}

.mzgr-content-1 .accordion-container hr:before {
	content: "\f078";
	color: #3d72a1;
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	background-color: #FFFFFF;
	padding: 0 4px;
	left: 50%;
	margin-left: -10px;
	position: absolute;
	top: 5px;
}

.mzgr-content-1 .open.accordion-container hr:before {
	content: "\f00d";
	color: #666666;
}