<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">input.input-validation-error {
    /* needed for .NET MVC validation */
    border-color: rgb(198, 35, 35);
    box-shadow: 0 0 0 0.2rem rgba(198, 35, 35, 0.15);
}

.field-validation-error {
    /* needed for .NET MVC validation */
    display: block;
    margin-top: 4px;
    color: rgb(198, 35, 35);
}

.datepicker svg {
    /* vkw.at-style.css sets all svg to absolute position */
    position: unset;
    top: unset;
    left: unset;
}

/* Meter reading inputs (Bootstrap v3 input group addon hack) */
.meter-reading-pre-group {
    padding-right: 0;
}

    .meter-reading-pre-group .input-group-addon {
        border-right: 0;
        border-radius: 0;
    }

.meter-reading-post-group {
    padding-left: 0;
}

/* Selectable contract list */
.list-item {
    padding: 0;
}

    .list-item.selectable, .list-item.selectable label, .list-item.selectable input {
        cursor: pointer;
    }

    .list-item &gt; label {
        -webkit-transition: background 150ms ease-out;
        -moz-transition: background 150ms ease-out;
        -ms-transition: background 150ms ease-out;
        -o-transition: background 150ms ease-out;
        transition: background 150ms ease-out;
        display: block;
        font-weight: normal;
        margin-bottom: 0 !important;
        padding: 1.6rem;
        min-height: 80px;
    }

        .list-item &gt; label label {
            padding-top: 10px;
        }

    .list-item .check-box-wrapper {
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
    }

        .list-item .check-box-wrapper input {
            opacity: 0;
        }

            /*position new box*/
            .list-item .check-box-wrapper input + label::before {
                content: "";
                position: absolute;
                top: -2px;
                right: 14px;
                height: 30px;
                width: 30px;
                border: 1px solid #C8C8C8;
            }

            /*svg background styles*/
            .list-item .check-box-wrapper input + label::after {
                content: "\f00c";
                opacity: 0;
                position: absolute;
                right: 25px;
                top: -2px;
                font-family: FontAwesome, sans-serif;
                font-size: 22px;
                height: 15px;
                width: 15px;
            }

/*position new box*/
.single-item-select .check-box-wrapper input + label::before {
    left: 15px;
}

/*svg background styles*/
.single-item-select .check-box-wrapper input + label::after {
    left: 19px;
}


/*reveal check for 'on' state*/
.list-item .check-box-wrapper input:checked + input + label::after,
.list-item .check-box-wrapper input:checked + label::after {
    opacity: 1;
}

/*focus styles*/
.list-item .check-box-wrapper input:focus + label::before {
    box-shadow: 0 0 0 3px #FFD078;
    outline: 3px solid transparent; /* For Windows high contrast mode. */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.error-block-validation-summary ul {
    list-style: none;
    margin: 5px 0 0 -40px;
}

.vertical-align {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.display-flex {
    display: flex;
}

.align-baseline {
    display: flex;
    align-items: baseline;
}

.display-flex &gt; div {
    float: none;
}

.col-auto {
    flex: none;
    width: auto;
    max-width: none;
}

.info-header {
    padding: 0 5px;
}

@media only screen and (min-width: 1200px) {
    .lg-fix-height-95 {
        height: 95px;
    }

    .lg-margin-top-2 {
        margin-top: 30px;
    }
}

.attachment {
    color: #333;
    position: relative;
    height: 200px;
    background: #f2f2f2;
    border: 1px dashed #8f8f8f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .attachment input {
        position: absolute;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        outline: none;
        opacity: 0;
        top: 0;
        left: 0;
    }

.attachment-info {
    display: flex;
    align-items: center;
    min-height: 4.5em;
}

.attachment-reset {
    position: relative;
    z-index: 10;
    font-size: 1.5em;
    padding: 0 3px;
    margin: 0 3px;
}

.attachment-sub-info {
    color: #7F7F7F;
    text-align: center;
    font-size: 12px;
}
</pre></body></html>