.section-accordion .accordion-item {
    border: none;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}

.accordion-header {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.accordion-button:focus {
    box-shadow: none;
}
.section-accordion button:hover {
    text-decoration: none;
    font-weight: 500;
}

.section-accordion button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--moerk-primary);
    font-size: 2.5rem;
    line-height: 7.3rem;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width:768px) {
    .section-accordion button {
        font-size: 2rem;
    }
}

.section-akkordeon ul li a.opened span {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.section-akkordeon ul li a.opened span svg:last-child {
    display: none;
}

.section-akkordeon ul li a span {
    width: 31px;
    height: 31px;
    background-color: var(--moerk-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section-akkordeon ul li a span svg:first-child {
    display: none
}

.section-akkordeon ul li a span svg:last-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}