/* MINI LAYOUT BUILDER FRONTEND */
.mlbb-section,
.mlbb-box,
.mlbb-card,
.mlbb-notice,
.mlbb-cta{
    width:100%;
    box-sizing:border-box;
}

.mlbb-layout{
    display:flex;
    width:100%;
    box-sizing:border-box;
}

.mlbb-col{
    box-sizing:border-box;
    min-width:0;
}

.mlbb-100 > .mlbb-col{ flex:0 0 100%; }
.mlbb-50-50 > .mlbb-col{ flex:0 0 calc(50% - 15px); }
.mlbb-70-30 > .mlbb-col:first-child{ flex:0 0 calc(70% - 15px); }
.mlbb-70-30 > .mlbb-col:last-child{ flex:0 0 calc(30% - 15px); }
.mlbb-30-70 > .mlbb-col:first-child{ flex:0 0 calc(30% - 15px); }
.mlbb-30-70 > .mlbb-col:last-child{ flex:0 0 calc(70% - 15px); }
.mlbb-60-40 > .mlbb-col:first-child{ flex:0 0 calc(60% - 15px); }
.mlbb-60-40 > .mlbb-col:last-child{ flex:0 0 calc(40% - 15px); }
.mlbb-40-60 > .mlbb-col:first-child{ flex:0 0 calc(40% - 15px); }
.mlbb-40-60 > .mlbb-col:last-child{ flex:0 0 calc(60% - 15px); }
.mlbb-33-33-33 > .mlbb-col{ flex:0 0 calc(33.333% - 20px); }
.mlbb-25-25-25-25 > .mlbb-col{ flex:0 0 calc(25% - 23px); }

.mlbb-card{
    background:#fff;
    border:1px solid #e5e5e5;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.mlbb-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
    line-height:1.2;
}

.mlbb-hr{
    border:0;
    border-top:1px solid #ddd;
}

.mlbb-separator{
    width:100%;
    height:1px;
    clear:both;
}

.mlbb-separator-title{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.mlbb-separator-title:before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:1px;
    background:#ddd;
    z-index:0;
}

.mlbb-separator-title span{
    position:relative;
    z-index:1;
}

.mlbb-spacer-small{ height:20px; clear:both; }
.mlbb-spacer-large{ height:50px; clear:both; }
.mlbb-clear{ clear:both; display:block; width:100%; height:0; overflow:hidden; }

@media(max-width:768px){
    .mlbb-layout{
        flex-direction:column;
        gap:20px !important;
    }
    .mlbb-layout > .mlbb-col{
        flex:0 0 100% !important;
        width:100% !important;
    }
}
