/*!
* Visual Designer JQuery Plugin
* Author: Sam Zielke-Ryner
* Licensed under ...
*/

.vd-icon-widget {
    min-width: auto !important;
    display: initial !important;
    /*display: flex !important;*/

    i,
    span {
        vertical-align: middle;
        display: inline-block;
        min-width: auto !important;
        display: initial !important;
    }

    >i {
        padding: 0px 3px;
        margin-top: -2px;
    }

    i.reverse {
        transform: rotate(90deg) scaleX(-1);
    }

    i.reverse-180 {
        transform: rotate(180deg) scaleX(-1);
    }
}

.vd-icon-responsive-style {
    .vd-icon-widget {
        padding: 0 @container-padding-mobile;
    }
}

body.vd-rtablet,
body.vd-rmobile {
    .vd-icon-responsive-style();
}

@media @mobiles,
@tablets {
    .vd-icon-responsive-style();
}