@charset "utf-8";
/* CSS Document */

.accordion { width:100%; float:left; margin:0 0 0;}
.accordion h3 { width:100%; float:left; background:#fb9a06; border-radius:22.5px; cursor:pointer; padding:16px 9% 16px 5.5%; position:relative; z-index:9;}
.accordion h3:before { content:""; width:20px; height:20px; float:right; background:url(../images/plus-minus-white-circle-icon.svg) no-repeat top center / 100%; transform:translateY(-50%); transition:all 0.25s ease-out 0s; margin:0 0 0; position:absolute; top:50%; right:4.6%;}
/*.accordion h3:hover:before { background:url(../images/plus-minus-white-circle-icon.svg) no-repeat bottom center / 100%;}*/
.accordion h3.active:before { background:url(../images/plus-minus-white-circle-icon.svg) no-repeat bottom center / 100%;}
.accordion .content { width:100%; float:left; padding:24px 8.2% 24px 5.5%;}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.accordion h3 { width:100%; padding:16px 11% 16px 5%;}
.accordion h3:before { width:16px; height:16px; margin:0 0 0; position:absolute; right:5%;}
.accordion .content { width:100%; padding:18px 5% 22px 5%;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.accordion h3 { width:100%; padding:16px 9% 16px 5%;}
.accordion h3:before { width:16px; height:16px; margin:0 0 0; position:absolute; right:5%;}
.accordion .content { width:100%; padding:18px 5% 22px 5%;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.accordion h3 { width:100%; padding:16px 8.5% 16px 5%;}
.accordion h3:before { width:16px; height:16px; margin:0 0 0; position:absolute; right:5%;}
.accordion .content { width:100%; padding:18px 5% 22px 5%;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.accordion h3:before { width:16px; height:16px;}
.accordion .content { padding:16px 4.2% 22px 4.8%;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.accordion h3:before { width:18px; height:18px;}
.accordion .content { padding:19px 4.2% 25px 4.8%;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {

}