.custom-accordion {
    width: 100%;
    margin: 20px auto;
}

.accordion-item {
    border: 1px solid #0D2E3E;
    
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    background: #fff;
    color: #727779;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    border-left: 10px solid #0D2E3E;
    position: relative;
}

.accordion-item .arrow-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.accordion-item.active .arrow-icon { 
    -webkit-transform: translateY(-50%) scale(1, -1);
    -moz-transform: translateY(-50%) scale(1, -1);
    -ms-transform: translateY(-50%) scale(1, -1);
    transform: translateY(-50%) scale(1, -1)
}

.accordion-item.active .accordion-title svg path {
    fill: #fff;
}

.accordion-item .accordion-title:hover svg path {
    fill: #fff;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #f9f9f9;
}

/* Geöffnetes Akkordeon */
.accordion-item.active .accordion-title,
.accordion-item:hover .accordion-title {
    background: #0D2E3E;
    color: #fff;
}

@media (max-width: 767px) {
	.accordion-title span {
		width: 85%;
	}
}

