/**
* DevExtreme (widgets/base/validation.less)
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
.dx-validationsummary-item {
    color: @VALIDATION_SUMMARY_COLOR;
}

.dx-validationsummary-item-content {
    .pseudo-link();
}

.dx-invalid-message > .dx-overlay-content {
    color: @VALIDATION_MESSAGE_COLOR;
    background-color: @VALIDATION_MESSAGE_BACKGROUND_COLOR;
}

@keyframes valid-badge-frames {
    from {
        opacity: 0;
        transform: scale(0.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.validation-badge-animation() {
    opacity: 0;
    transform: scale(0);
    animation: valid-badge-frames 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
}

