<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* form-control-plaintext disabled */

.form-control-plaintext {
    pointer-events: none;
}

textarea[class='form-control-plaintext'] {
    pointer-events: initial;
    outline: none;
}

/* with-inline-button */

.with-inline-button .inline-wrap {
    margin-right: 64px;
}

.with-inline-button button {
    position: absolute;
    top: 0;
    right: 0;
}

/* check mark */

.form-helper .cil-check {
    display: inline !important;
    padding: 4px;
    border-radius: 50%;
}

/* erase last line  */

div.form-row:last-child {
    border-bottom: none !important;
}

/* p static */

p.form-control-static {
    height: 35px;
    margin-bottom: 0;
    padding-top: 7px;
    overflow-y: auto;
}

/* div static */

div.form-control-static {
    margin-bottom: 0;
    padding-top: 7px;
    max-height: 200px;
    overflow: auto !important;
}

/* inscribed image */

.img-inscribed {
    position: relative;
}

.img-inscribed &gt; span:first-child {
    display: inline-block;
    background-color: #fcf3f9;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
}

.img-inscribed &gt; span:first-child &gt; img:first-child {
    width: 100%;
    height: auto;
    opacity: 0;
}

/* image delete button */

.image-delete {
    position: absolute;
    bottom: 0;
    right: 0;
    width: initial;
    height: initial;
    color: #fff;
    background-color: #f00;
    padding: 4px;
    border: 0;
    border-radius: 4px 0px 4px 0px;
    cursor: pointer;
}

/* custom file input */
.custom-file-input {
    width: 140px !important;
}

.custom-file-label {
    width: 140px !important;
}

.custom-file-label::after {
    left: 0;
    right: initial;
    width: 138px !important;
    border: inherit;
    border-radius: 0.25rem;
    text-align: center;
}
</pre></body></html>