﻿.cursor-pointer {
    cursor: pointer;
}

.cursor-help {
    cursor: help;
}

.cursor-disabled {
    cursor: not-allowed;
}

.cursor-default {
    cursor: default;
}

.no-text-decoration {
    text-decoration: none !important;
}

.grey-text {
    color: #212529 !important;
}

.black-text {
    color: #000000 !important;
}

.text-bold {
    font-weight: bold;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-08rem {
    font-size: .8rem;
}

.text-09rem {
    font-size: .9rem;
}

.text-1rem
{
    font-size: 1rem;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radius-10px {
    border-radius: 10px;
}

.rotate-180 {
    transform: rotate(180deg);
}

.no-outline {
    outline: none !important;
    border-color: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.text-preformatted {
    white-space: pre-wrap;
}

.text-italic {
    font-style: italic;
}

.text-underline {
    text-decoration: underline;
}

.overflow-x-auto {
    overflow-x: auto;
}

.invalid {
    border: 1px solid #da534f !important;
}

.no-list-style {
    list-style: none;
}

.transparency-50 {
    opacity: .50;
}

.transparency-75 {
    opacity: .75;
}

.column-gap-3rem {
    column-gap: 3rem;
}

.lh-09rem {
    line-height: .9rem;
}