<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* mb-modal START */

.mb-modal-cover {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 2000;
    display: flex;
    padding: 10px;
}

.mb-modal-box {
    position:absolute;
    left:8%;
    top:5%;
    right:8%;
    bottom:5%;
/* 
    border: 1px solid #555;
    border-radius: 4px;
 */
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.mb-modal-box-xl {
    max-width: 104px;
}

.mb-modal-box&gt;header {
    padding: 8px 12px;
    min-height: 32px;
    background:rgba(75, 75, 75, 0.3);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border:1px solid #555;

}

.mb-modal-box&gt;section {
    flex-grow: 1;
    padding: 12px 12px 12px 12px;
    overflow:auto;
    border-left:1px solid #555;
    border-right:1px solid #555;
    font-size:85%;
    background:rgba(0, 0, 0, 0.7);
    color:#ddd;
}

.mb-modal-box section a{
    color:inherit;
}

.mb-modal-box&gt;footer {
    padding: 8px 12px;
    background:rgba(75, 75, 75, 0.3);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border:1px solid #555;
}

.mb-modal-search {
    flex:1;
    position:absolute;
    max-width:none;
    top:80px;
    left:60px;
    right:60px;
    bottom:80px;
}

/* mb-modal END */</pre></body></html>