.accordion-wrap {
width: 100%;
margin-bottom: 20px;
}
.accordion-wrap > .accordion-title{
margin: 30px 0 15px 0;
font-size: 28px;
}
.accordion-wrap > .tabs {
border-radius: 0;
overflow: hidden;
}
.accordion-wrap > .tabs .tab {
width: 100%;
color: white;
overflow: hidden;
margin-bottom: 5px;
}
.accordion-wrap > .tabs .tab-label {
cursor: pointer;
margin: 0;
font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
font-size: 18px;
line-height: 42px;
background: #f2f2f2;
text-decoration: none;
color: #2d3347;
text-transform: uppercase;
display: block;
padding: 5px 5px 5px 50px;
position: relative;
font-weight: normal;
}
.accordion-wrap > .tabs .tab-label:hover {
background-color: #e1e1e1;
}
.accordion-wrap > .tabs .tab-label::after {
position: absolute;
left: 20px;
content: "\276F";
font-size: 28px;
-webkit-transition: all .35s;
transition: all .35s;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
height: auto;
width: auto;
}
.accordion-wrap > .tabs .tab-content {
display: block;
float: left;
width: 100%;
max-height: 0;
padding: 0 50px;
color: #404040;
background: #f2f2f2;
-webkit-transition: all .35s;
transition: all .35s;
}
.accordion-wrap > .tabs .tab> input[type="checkbox"]{
visibility: hidden;
display: none;
}
.accordion-wrap > .tabs .tab> input:checked + .tab-label {
background: #e1e1e1;;
}
.accordion-wrap > .tabs .tab> input:checked + .tab-label::after {
left: 20px;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.accordion-wrap > .tabs .tab> input:checked ~ .tab-content {
max-height: unset;
padding: 1em 50px;
}