/* TABS */
.is-style-tabs-content-title{
    display:flex;
    gap:12px;
    flex-wrap: wrap;
}

.is-style-tabs-content-title .wp-block-heading {
    cursor:pointer;
    border-radius:12px;
    padding:12px 20px;
    text-align:center;
    font-size: var(--wp--preset--font-size--medium);
    background-color:#eeeeee;
    color:#999999;
}

.is-style-tabs-content-title .wp-block-heading.actif{
    background-color:#333333;
    color:#eeeeee;
}

.is-style-tabs .acf-innerblocks-container .tab {
    display:none;
}

.is-style-tabs .acf-innerblocks-container .tab.actif, div#editor .is-style-tabs .acf-innerblocks-container .tab{
    display:block;
}

/* ACCORDÉONS */
.is-style-accordion .tab {
    margin-top: 5px;
    padding: 10px 0;
    border-bottom: 1px solid var(--wp--preset--color--custom-color-1);
}
.is-style-accordion .tab .wp-block-heading {
    cursor: pointer;
    width: fit-content;
    border-radius: 12px;
    padding: 0;
    text-align: left;
    color: black;
    font-size: 23px;
    box-sizing: border-box;
    position: relative;
    margin: 0;
}

.is-style-accordion .tab .wp-block-heading::before, .is-style-accordion .tab .wp-block-heading:after {
    content: "";
    background: var(--wp--preset--color--custom-color-1);
    position: absolute;
    left: 105%;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    display: block;
    transition: 0.5s all ease-in-out;
}

.is-style-accordion .tab .wp-block-heading:after {
    transform: rotate(90deg) translateY(-50%);
}

.is-style-accordion .tab .wp-block-heading.actif{
    color: black
}

.is-style-accordion .tab .wp-block-heading.actif:after {
    transform: rotate(0) translateY(-50%);
}

.is-style-accordion .tab .tab-content{
    max-height: 0vh;
    overflow: hidden;
    transition: 0.5s all ease-in-out;
}

.is-style-accordion .tab .tab-content.actif {
    display: block;
    /*margin: 0 0 40px;*/
    max-height: 200vh;
}

.is-style-accordion .tab .tab-content.actif > *:first-child {
    margin-top: 0;
}