
.outer-akkordeon {
    padding: var(--paddingMobile);
    background-color: #EBF4FA;
    .s_container {
        max-width: var(--max-width);
        margin: 0 auto;
        .akkordeon {
            .akkordeon-element {
                padding: 3rem 2rem;
                margin-bottom: 2rem;
                border-bottom: 2px solid var(--farbedunkel);
                .akkrodeon-outer {
                    position: relative;
                    cursor: pointer;
                    h4 {
                        color: var(--farbedunkel);
                        text-transform: uppercase;
                        max-width: 80%;
                    }
                    &::after {
                        content: "";
                        position: absolute;
                        top: 0;
                        right: 0rem;
                        width: 53px;
                        height: 38px;
                        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzciIHZpZXdCb3g9IjAgMCA1MyAzNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjIiIHkxPSItMiIgeDI9IjIxLjMzNDUiIHkyPSItMiIgdHJhbnNmb3JtPSJtYXRyaXgoMC43MDcxMDcgLTAuNzA3MTA3IC0wLjcwNzEwNyAtMC43MDcxMDcgMTAgMjYuNSkiIHN0cm9rZT0iIzIzNTU5QyIgc3Ryb2tlLXdpZHRoPSI0IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPGxpbmUgeDE9IjQwLjE3MTYiIHkxPSIyNi41IiB4Mj0iMjYuNSIgeTI9IjEyLjgyODQiIHN0cm9rZT0iIzIzNTU5QyIgc3Ryb2tlLXdpZHRoPSI0IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==");
                        background-repeat: no-repeat;
                        background-size: cover;
                        transition: transform .3s;
                        transform: rotateZ(-180deg);
                    }
                }
                .akkordeon-inner {
                    opacity: 0;
                    height: 0;
                    margin: 0;
                    pointer-events: none;
                    transition: all .3s;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    align-items: center;
                    gap: 2rem;
                    .text {
                        flex: calc(50% - 2rem);
                        min-width: 250px;
                        h5 {
                            text-transform: uppercase;
                            margin-bottom: 1rem;
                            margin-top: 2rem;
                        }
                        ul {
                            font-size: 16px;
                            li {
                                list-style: none;
                                padding-left: 1.5rem;
                                margin-bottom: 1rem;
                                position: relative;
                                &::after {
                                    content: "";
                                    position: absolute;
                                    top: calc(50% - 7.5px);
                                    left: 0;
                                    width: 14px;
                                    height: 14px;
                                    background-image: url('/ake/images/gestaltung/listpoint.svg');
                                    background-repeat: no-repeat;
                                    background-size: cover;
                                }
                            }
                        }
                        p {
                            margin: 0;
                        }
                        .link-farbedunkel-button {
                            margin-top: 2rem;
                        }
                    }
                    .image {
                        flex: calc(50% - 2rem);
                        min-width: 250px;
                        min-height: 535px;
                        display: flex;
                        align-items: center;
                        background-color: var(--white);
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                }

                &.active {
                    .akkrodeon-outer {
                        &::after {
                            transform: rotateZ(0deg);
                        }
                    }
                    .akkordeon-inner {
                        margin-top: 1.5rem;
                        opacity: 1;
                        height: fit-content;
                        
                    }
                }
            }
        }
    }
}











@media (min-width: 1200px) {
    .outer-akkordeon {
        padding: var(--paddingDesktop);
        .s_container {
            
            
        }
    }
}