/**
* DevExtreme (widgets/common/radioGroup.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/
*/
@import (once) "./radioButton.less";

.dx-radiobutton {
    display: table;
    cursor: pointer;
}

.dx-radio-value-container {
    display: table-cell;
    padding-right: 10px;
    padding-left: 5px;
    vertical-align: middle;

    .dx-rtl &,
    .dx-rtl& {
        padding-right: 5px;
        padding-left: 10px;
    }
}

.dx-radiogroup-horizontal {
    .dx-clearfix();

    .dx-radiobutton {
        float: left;

        .dx-rtl &,
        .dx-rtl& {
            float: right;
        }
    }

    .dx-radiobutton:last-of-type {
        margin-right: 0;
    }
}

.dx-state-disabled {
    .dx-radiobutton {
        cursor: default;
    }
}
