@CHARSET "UTF-8";

div.accordeon_container {
	clear: both;
	margin-bottom: 20px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

div.accordeon_header {
	padding-right: 20px;
	cursor: pointer;
	position: relative;
}

h3.accordeon_header_plusminus {
	position: absolute;
	right: 10px;
	top: 5px;
	margin: 0px;
	display: none;
}

div.accordeon_header h3 {
	margin-left: 50px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 32px;
}

div.accordeon_header p {
	margin-left: 50px !important;
	margin-top: 0px !important;
	font-size: 1rem !important;
	height: 16px !important;
	line-height: 16px !important;
}

div.accordeon_content {
	padding: 30px;
	display: none;
	background-color: rgba(149,193,31,1);
}

div.accordeon_content p {
	padding: 0px !important;
	width: 100%;
	color: #fff;
}

div.accordeon_content a {
	color: #fff;
}

div.accordeon_content ul {
    padding-left: 0px;
    padding-right: 0px;
    color: #fff;
}

div.accordeon_content > h3 {
	margin-top: 0px;
}

div.accordeon_content p:last-child {
	margin-bottom: 0px;
}

div.accordeon_header_begin {
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	width: 32px;
	height: 32px;
	background-image: url("../img/arrow_icon_50x50px.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-color: rgba(149,193,31,1);
	background-position: center;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.accordeon_open div.accordeon_header_begin {
	transform: rotate(90deg);
}

.accordeon_closed {
	
}

div.accordeon_header_end {
	display: none;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
	
	div.accordeon_header_begin {
		width: 25px;
		height: 25px;
		background-size: 5px 10px;
	}
	
	div.accordeon_header h3 {
	    margin-left: 40px;
	    margin-top: 0px;
	    margin-bottom: 0px;
	    font-size: 1rem;
	    line-height: 25px;
	}
	
	div.accordeon_header p {
	    margin-left: 40px !important;
	    font-size: 0.8rem !important;
	    height: 10px !important;
	    line-height: 14px !important;
	    margin-bottom: 20px !important;
	}
	
	div.accordeon_content {
	    padding: 20px;
	}
}