
/* transition */
section.m17_akkordeon .m17_akkordeon_item_head_icon_container,
section.m17_akkordeon .m17_akkordeon_item_content,
section.m17_akkordeon .m17_akkordeon_item_head {
    -webkit-transition: background-color 0.4s;
    -moz-transition: background-color 0.4s;
    -ms-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
}
/* *** */

/* item */
section.m17_akkordeon .m17_akkordeon_item {
    border-bottom: 1px solid #eeeff1;
}

section.m17_akkordeon .m17_akkordeon_item:last-child {
    border-bottom: none;
}
/* *** */

section.m17_akkordeon .m17_akkordeon_item_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 42px 98px 42px 94px;
    background-color: #fff;
    cursor:pointer;
    transition: padding-bottom .4s;
}

/* beschriftung */
section.m17_akkordeon .m17_akkordeon_item_head_beschriftung *{
    font-size:1.375rem;
    font-weight: 700;
    
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
}
/* ** */

/* icon */
section.m17_akkordeon .m17_akkordeon_item_head_icon_container{
    width:35px;
    height:35px;
    border:1px solid rgba(18, 51, 91, .3);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:transparent;
}

section.m17_akkordeon .m17_akkordeon_item_head_icon_container svg{
    width: 13px;
    fill: #12335b;
    
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    -o-transform:rotate(90deg);
    transform:rotate(90deg);
    
    -webkit-transition: transform 0.4s;
    -moz-transition: transform 0.4s;
    -ms-transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
}
/* *** */

/* content */
section.m17_akkordeon .m17_akkordeon_item_content{
    display:none;
    overflow:hidden;
    
    padding: 0 98px 0 94px;
    
    background-color: #fff;
}

section.m17_akkordeon .m17_akkordeon_item_content_main{
    padding-bottom: 44px;
}
/* *** */

/* active & hover */
section.m17_akkordeon .m17_akkordeon_item_head:hover .m17_akkordeon_item_head_icon_container,
section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container{
    background-color: transparent;
}

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head,
section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_content {
    background-color: #fff;
}

section.m17_akkordeon .m17_akkordeon_item:hover .m17_akkordeon_item_head_icon_container svg,
section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container svg {
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    transform:rotate(-90deg);
}

/* *** */

section.m17_akkordeon.less_padding_top {
    padding-top: 76px;
}

section.m17_akkordeon .m17_akkordeon_item_head_image_container svg {
    /* fill: #004f9f; */
    height: 52px;
}

section.m17_akkordeon .m17_akkordeon_item_head_beschriftung p {
    color: #004f9f;
    font-size: 1.375rem;
}

section.m17_akkordeon .m17_akkordeon_item_head_unterbeschriftung p {
    color: #6baee6;
}

section.m17_akkordeon .m17_akkordeon_item_head_content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: calc(100% - 35px - 20px);
}

section.m17_akkordeon .m17_akkordoen_item_head_beschriftung_container {
    width: calc(100% - 52px - 24px);
}

section.m17_akkordeon .m17_akkordeon_item_head_image_container {
    display: flex;
}

section.m17_akkordeon .m17_titel {
    margin-bottom: 90px;
}

@media screen and (max-width: 1199px) {
    section.m17_akkordeon {
        .m17_akkordeon_item .m17_akkordeon_item_head {
            padding: 42px 48px 42px 44px;
        }
        
        .m17_akkordeon_item_content {
            padding: 0 48px 0 44px;
        }
    }
}

@media screen and (max-width: 767px) {
    section.m17_akkordeon .m17_titel {
        margin-bottom: 58px;
    }
    
    section.m17_akkordeon.less_padding_top {
        padding-top: 58px;
    }
}

@media screen and (max-width: 575px) {
    section.m17_akkordeon .m17_akkordeon_item_head_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    section.m17_akkordeon .m17_akkordoen_item_head_beschriftung_container {
        width: 100%;
    }
    
    section.m17_akkordeon .m17_akkordeon_item_head_beschriftung p {
        font-size: 1.1rem;
        hyphens: auto;
    }
    
    section.m17_akkordeon .m17_akkordeon_item .m17_akkordeon_item_head {
        padding: 22px 28px 22px 24px;
    }
    
    section.m17_akkordeon .m17_akkordeon_item_content {
        padding: 0 28px 0 24px;
    }
    
    section.m17_akkordeon .m17_akkordeon_item_head_image_container svg {
        width: auto;
    }
}