/*
ramatech Template
creation Date: 2020-04-09
Author: Sebastian Osinski
http://www.sebbi.net
https://ddm-friends.de
*/

/* transitions */
.acc_wrap, .acc_wrap *{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.acc_cont{
	overflow: hidden;
	height: 0px;
}
.acc_cont.active{
	height: auto;
}

img.acc_indicator{
	display: inline-block;
	width: 15px;
	vertical-align: middle;
	margin-left: 10px;
	margin-right: 10px;
}
.acc_activator.active img.acc_indicator{
	transform: rotate(-180deg);
}
img.acc_indicator.alwaysright{
	transform: rotate(-90deg) !important;
}

.acc_head{
	padding: 20px;
	cursor: pointer;
	position: relative;
	font-size: 20px;
}
.acc_head:hover{
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,153,153,0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,153,153,0.75);
	box-shadow: 0px 0px 3px 0px rgba(0,153,153,0.75);
}
.acc_cont .acc_head{
	font-size: 16px;
}
.acc_cont{
	margin-bottom: 20px;
}
.acc_cont:last-child{
	margin-bottom: 0px;
}
.acc_cont.active{
	padding: 20px;
}

.acc_wrap .pluslink{
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	line-height: 34px;
	font-size: 20px;
}

@media (max-width: 1260px){
	.acc_head{
		font-size: 16px;
	}
}

@media (max-width: 600px){
	.acc_wrap .pluslink{
		display: none;
	}
}