/* Bild Links, Text Rechts */
.bild_text_rechts{
    background-color:#EDEDED;
    display:flex !important;
}
.bild_text_rechts .bild,
.bild_text_rechts .text_wrapper{
    display:inline-block;
    vertical-align: top;
}
.bild_text_rechts .bild {
    width: 40%;
    order:2 !important;
}
.bild_text_rechts .text_wrapper{
    width: 60%;
    order:1 !important;
    position:relative;
}
body.inhalte_bearbeiten .bild_text_rechts_off:after,
body.inhalte_bearbeiten .bild_text_rechts:after{
    opacity:1;
    transition: all .4s;
    text-transform: none;
    position:absolute;
    top:0px;
    right:0px;
    font-size:10px;
    max-height:20px;
    line-height:12px;
    background-color:rgba(0,0,0,.3);
    padding:5px;
    color:white;
    content:'Bild rechts Text links';
    z-index:701;
}
@media screen and (max-width:1220px){
    .bild_text_rechts .bild {
        width:50%;
    }
    .bild_text_rechts .text_wrapper{
        width:50%;
    }
}
@media screen and (max-width:980px){
    .bild_text_rechts{
        display:block;
    }
    .bild_text_rechts .bild,
    .bild_text_rechts .text_wrapper{
        display:block;
        vertical-align: top;
    }
    .bild_text_rechts .bild {
        width:100%;
        order:1;
    }
    .bild_text_rechts .text_wrapper{
        width:100%;
        order:2;
    }
}

