/**Typeo CSS End**/
.faq-item {
	width: 100%;
	margin: 7px 0px;
}

.faq-item .faq-label {
	position: relative;
	width: 100%;
	background-color: transparent;
	padding: 14px 50px 12px 20px;
	cursor: pointer;
	font-size: 15px;
	color: #000;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	border: 1px solid #dac78d;
}

.faq-item .faq-label i {
	width: 46px;
	height: 100%;
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: #000;
}

.faq-item .faq-label i:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 20px;
	height: 2px;
	background-color: #dac78d;
}

.faq-item .faq-label i:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 2px;
	height: 20px;
	background-color: #dac78d;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
}

.faq-item .faq-item-show .faq-label i:after {
	opacity: 0;
}

.faq-cont {
	/*border: #ebebeb 1px solid;*/
	background-color: transparent;
	transition: 0.3s all;
	overflow: hidden;
	padding: 0 20px;
	height: 0px;
	border: 1px solid #dac78d;
}

.faq-item .faq-item-show+.faq-cont {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: auto;
	height: auto;
}

.faq-cont p {
	margin: 0px 0 20px 0;
}

.faq-cont p:last-child {
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.faq-item .faq-label {
		padding: 10px 50px 8px 15px;
		cursor: pointer;
		font-size: 16px;
		line-height: 1.2;
	}

	.faq-cont {
		padding-left: 15px;
		padding-right: 15px;
	}

}