/* CSS Document */

.accordion__title {
	font-size: 14px;
	padding: 13px 30px 13px 15px;
	background: #e1e5e8;
	position: relative;
	display: block;
	cursor: pointer;
	/*margin-top: 15px;*/
	margin-bottom:0px;
	color: #34363b;
	font-weight: 600;
	border-top:1px solid #cccccc;
}
.accordion__title:first-child {
	border-top:0px;	
}
.accordion__title::after, 
.accordion__title::before {
	content: "";
	display: block;
	width: 14px;
	height: 2px;
	position: absolute;
	background: #34363b;
	right: 13px;
	top: 20px;
	
	-webkit-transition:.2s all;
	transition:.2s all;
}
.accordion__title:after{
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);
}
.accordion__title.active:after {
	-webkit-transform:rotate(0deg);
	transform:rotate(0deg);	
}

.accordion__content {
	border-top:1px solid #cccccc;
	background: #e1e5e8;
	padding-left:15px;
	padding-right:15px;
	padding-top:15px;
	padding-bottom:15px;
    /*padding: 14px 17px;*/
    /*width: calc(100% - 46px);*/
	display: none;
	/*box-shadow: inset 1px 1px 5px rgba(0,0,0,0.1);*/
}
.accordion__content > :last-child {
    margin-bottom: 0px !important;
}
.accordion__content > :first-child {
    margin-top: 0px !important;
}
.accordion__content .container {
	max-width: 100%;
}


.accordion .umbraco-forms-caption {
	font-size:14px;	
}
.accordion .umbraco-forms-form, 
.accordion .Terratype {
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -15px !important;
	margin-bottom: -15px !important;
}


#accordionMap {
	height:400px;	
}

.accordion__gallery .owl-prev, 
.accordion__gallery .owl-next {
	display: block;
	position: absolute;
	top: 50%;
	right: 11px;
	background: url(/media/2882/arrow-right-white.svg) no-repeat center center rgba(0,0,0,0.2);
	background-size: auto auto;
	height: 65px;
	width: 65px;
	border-radius: 40px;
	background-size: 25px auto;
	text-indent: -9000em;
	
	-webkit-transform: translatey(-50%);
	transform: translatey(-50%);
}
.accordion__gallery .owl-prev {
	background-image:url(/media/2969/arrow-left-white.svg);
	left:11px;
}
.accordion__gallery .owl-prev:hover, 
.accordion__gallery .owl-next:hover {
	background-color:rgba(0,0,0,0.4);	
}

.mobile--show .accordion__gallery .owl-prev, 
.mobile--show .accordion__gallery .owl-next {
	background-color:transparent;	
}