.mouseover-box .mob-wrap{
    min-height: 524px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background-color: var(--farbe-oliv);
    padding: 24px;
    position: relative;
}

.mouseover-box .mob-wrap h3{
    color: #fff;
}

.mouseover-box a{
    color: #47DC89;
}

.mouseover-box a:hover{
    text-decoration: none;
}

.mouseover-box .mob-wrap .overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--farbe-oliv);
    padding: 24px;
    opacity: 0;
    -moz-transition: opacity 300ms ease-out 0s;
    -webkit-transition: opacity 300ms ease-out 0s;
    -o-transition: opacity 300ms ease-out 0s;
    transition: opacity 300ms ease-out 0s;
}

.mouseover-box:hover .mob-wrap .overlay{
    opacity: 1;
}

.mouseover-box .mob-wrap .overlay .overlayinner{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    color: #fff;
}

/* admin */

#editor .acf-block-preview .mouseover-box{
    height: 100px;
    max-width: 100%;
    background: url('../../images/ofek_pattern.png') center center #f4f4f4;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    margin: 0;
    padding: 0;
}

#editor .acf-block-preview .mouseover-box:after{
    content: "Mouseover Box";
    background: #fff;
    padding: 6px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#editor .acf-block-preview .mouseover-box > *{
    display: none;
}
