.accordion { margin: 2rem 0; }

.accordion input[type=radio] { display: none; }

.accordion label { position: relative; display: block; font-weight: 700; padding: 10px; cursor: pointer; border: 1px solid #DBE2E6; border-bottom: none; }

.accordion label:after { content: ''; position: absolute; right: 0; top: 30%; margin-top: -3px; background-repeat: no-repeat; background-position: 50%; background-image: url(/profiles/contrib/faqtool/themes/coldskin/assets/arrow-down.svg); width: 24px; height: 24px; background-size: 20px; }

.accordion__tab__content { overflow: hidden; height: 0; transition: height 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87); border-left: 1px solid #DBE2E6; border-right: 1px solid #DBE2E6; }

.accordion input:checked + label:after { background-image: url(/profiles/contrib/faqtool/themes/coldskin/assets/arrow-up.svg); }

.accordion input:checked ~ .accordion__tab__content { height: auto; padding: 10px; }

.accordion__item:last-child input:checked + label { border-bottom: none; }

.accordion__item:last-child .accordion__tab__content { border-bottom: 1px solid #DBE2E6; }
