/*DISPLAY*/
.gr-display-none {
    display: none;
}

.gr-display-inline {
    display: inline;
}

.gr-display-block {
    display: block;
}


/*DISABLE SELECT*/
select[readonly] {
    pointer-events: none;
    touch-action: none;
}

/*FLOAT*/
.gr-float-left {
    float: left;
}

.gr-float-right {
    float: right;
}

/*VISIBILITY*/
.gr-visibility-hidden {
    visibility: hidden;
}

/*OVERFLOW*/
.gr-overflow-visible {
    overflow: visible !important;
}

.gr-overflow-auto {
    overflow: auto;
}



.gr-overflow-y-scroll {
    overflow-y: scroll;
}

/*Z-INDEX*/
.gr-z-index-999 {
    z-index: 999;
}

/*CURSOR*/
.gr-cursor-pointer {
    cursor: pointer;
}

/*PAGE-BREAK*/
.gr-page-break-inside-avoid {
    page-break-inside: avoid;
}

/*BACKGROUND*/
.gr-background-none {
    background: none;
}

/*POSITION*/
.gr-position-absolute {
    position: absolute;
}

.gr-position-relative {
    position: relative;
}

/*VERTICAL ALIGN*/
.gr-vertical-align-bottom {
    vertical-align: bottom;
}