/**
* DevExtreme (widgets/common/widget.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-color-scheme {
    // NOTE: To override 'font-family' default value.
    // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
    font-family: "#";
}

.dx-widget {
    display: block;
    -ms-content-zooming: none;
    -webkit-tap-highlight-color: ~"rgba(0, 0, 0, 0)"; // Q457671
    -webkit-text-size-adjust: none; // stylelint-disable-line property-no-vendor-prefix
    -webkit-touch-callout: none;
    padding: 0;
    outline: 0;
    color-adjust: exact;

    &,
    &:before,
    &:after,
    *,
    *:before,
    *:after {
        box-sizing: border-box;
    }
}

.dx-item {
    outline: 0;
}

.dx-rtl {
    direction: rtl;
    unicode-bidi: embed;
}

.disabled-widget(@opacity: .3) { // stylelint-disable-line selector-class-pattern
    opacity: @opacity;
    .user-select(none);

    cursor: default;
}

.dx-state-disabled {
    pointer-events: none;
}
