/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11.08.2022, 13:35:16
    Author     : waldeck
*/

.accordion {
	margin: auto;
	/*width: 400px;*/
}
.accordion input {
	display: none;
}
.accordion-box {
	position: relative;
        background-image:linear-gradient(90deg, #73BC66, transparent);
    height: 64px;
    transition: all .15s ease-in-out;
    margin-bottom: 2em;

}
.accordion-box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: 0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
}
header.accordion-box {
	background: #00BCD4;
	z-index: 100;
	cursor: initial;
	box-shadow: 0 -1px 0 #e5e5e5,0 0 2px -2px rgba(0,0,0,.12),0 2px 4px -4px rgba(0,0,0,.24);
}
header .box-title {
	margin: 0;
        font-family: "Roboto Slab", serif;
	font-weight: normal;
	font-size: 1.25em;
	color: white;
	cursor: initial;
}
.box-title {
	width: calc(100% - 40px);
     	font-size: 1.15em;
	height: 64px;
	line-height: 64px;
	padding: 0 20px;
	display: inline-block;
	cursor: pointer;
	-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
}
.box-content {
	width: calc(100% - 40px);
	padding: 30px 20px;
	font-size: 12pt;
	color: rgba(0,0,0,.75);
	display: none;
}
.box-close {
	position: absolute;
	height: 64px;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}
input:checked + .accordion-box {
	height: auto;
	margin: 16px 0;
    box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);
}
input:checked + .accordion-box .box-title {
	border-bottom: 1px solid rgba(0,0,0,.18);
}
input:checked + .accordion-box .box-content,
input:checked + .accordion-box .box-close {
	display: inline-block;
}
.arrows section .box-title {
	padding-left: 44px;
	width: calc(100% - 64px);
}
.arrows section .box-title:before {
	position: absolute;
	display: block;
	content: '\203a';
	font-size: 18pt;
	left: 20px;
	top: -2px;
	transition: transform .15s ease-in-out;
	color: rgba(0,0,0,.54);
}
input:checked + section.accordion-box .box-title:before {
	transform: rotate(90deg);
}
/*#accordion_sustainability {
    padding: 0px 35% 0px 0px ;
    text-align: justify;
}*/

@media screen and (max-width: 1280px) {
    .box-content {
       font-size: 10pt;
    }
    
    .box-content {
       font-size: 10pt;
       width: calc(100% - 15px);
       text-align: left; 
    }
    
    .box-title {
        line-height: 20px;
        font-size: 1em;
        padding: 10px 0 0 0;
        text-align: left;
    }
    .arrows section .box-title {
        width: calc(100% - 15px);
    }
    .arrows section .box-title:before {
        padding: 8px 0 0 0;
    }
    .accordion-box {
        height: 75px;
    }
}