﻿.validation-summary-errors {
    background: rgb(255, 223, 223);
    padding: 5px 10px;
    margin: 5px 0px;
    border: solid 1px rgb(244, 185, 185);
    color: #de1111;
    font-size: 14px;
}
.validation-summary-errors.horizontal {
    margin-right: 5px;
}
/* Empty validation boxes did not appear in vbhtml, but they do now in mvc core. This hides a validation box with no text in it*/
.validation-summary-errors.horizontal:empty {
    display: none;
}

.validation-summary-errors > ul > li:before {
    content: "*";
}
.create-form-validation {
    width: 50%;
    padding: 15px;
    margin-left: 15px;
}
input > .input-validation-error {
    border-left: 2px solid #ff6a00;
    border-right: 2px solid #ff6a00;
}
