
.with-events-none {
    pointer-events: none
}

.with-hide {
    display: none;
    visibility: hidden;
}

.with-show {
    display: block;
    visibility: visible;
}

.with-white {
    color: white !important;
}

.with-fa-large {
    font-size:6em;
}

.with-no-background {
    background: none!important;
}

.with-lr-light-border {
    border-right: solid 1px lightgray;
    border-left: solid 1px lightgray;
}


.with-left-light-border {
    border-left: solid 1px lightgray;
}


.with-right-light-border {
    border-right: solid 1px lightgray;
}


.with-right-dark-border {
    border-right: solid 1px gray;
}


.with-align-right {
    text-align: right;
}

.with-align-left {
    text-align: left;
}

.with-align-center {
    text-align: center;
}

.with-background {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.with-text-break {
    word-break: break-all;
}

.with-text-no-break {
    white-space: nowrap;
}

.with-text-justify {
    text-align: justify;
}

.with-glymp-smooth {
    font-size: 21px !important;
}

.with-padding {
    padding: 10px!important;
}

.with-margin {
    margin: 10px;
}

.with-margin-top {
    margin-top: 10px !important;
}

.with-margin-left {
    margin-left: 10px !important;
}


.with-no-margin {
    margin: 0 !important
}

.with-no-padding {
    padding: 0 !important
}

.with-no-padding-right {
    padding-right: 0 !important
}


.with-no-padding-left {
    padding-left: 0 !important;
}

.with-no-padding-top {
    padding-top: 0 !important
}


.with-no-padding-bottom {
    padding-bottom: 0 !important
}


.with-no-margin-right {
    margin-right: 0;
}

.with-no-margin-bottom {
    margin-bottom: 0 !important;
}


.with-margin-bottom {
    margin-bottom: 10px !important;
}

.with-margin-bottom-sm {
    margin-bottom: 5px !important;
}


.with-margin-right
{
    margin-right: 5px !important;

}

.with-margin-left {
    margin-left: 5px !important;
}

.with-padding-horizontal {
    padding-left: 10px !important;
    padding-right: 10px !important;
}


.with-float-right {
    float: right !important;
}


.with-float-left {
    float: left !important;
}

.with-larger {
    font-size:larger;
}

.with-padding-bottom {
     padding-bottom: 5px!important; 
}

.with-padding-top {
    padding-top: 5px !important;
}

.with-margin-top-sm {
    margin-top: 2px;
}



.with-padding-left {
    padding-left: 5px !important;
}

.with-padding-left-lg {
    padding-left: 15px !important;
}


.with-padding-right {
    padding-right: 5px !important;
}

.with-clear-both {
    clear: both;

}

.with-text-center {
    text-align:center;
}

.with-text-right {
    text-align: right;
}

.with-text-left {
    text-align: left;
}


.with-capitalize {
    text-transform: capitalize;
}

.with-uppercase {
    text-transform: uppercase;
}


.with-x-small {
    font-size:x-small;
}

.with-transparent-bg {
    background-color: transparent!important;
}

.with-no-focus:focus {
    box-shadow:none!important;
}

.with-width100per {
    width: 100%
}

.with-decor-through {
    text-decoration: line-through;
}


.with-valign-top {
    vertical-align: top;
}

.with-text-gray {
    color: darkgray;
    font-style:italic;
}

.with-center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5em;
}

.with-center-content-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 5em;
}

.with-center-content-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 5em;
}


.with-light-border {
    border: solid 1px lightgray;
}

.with-debug-border {
    border: solid 1px red;
}

.with-no-weight {
    font-weight:normal!important;
}

.with-no-border {
    border: 0!important;
}

.with-no-bold {
    font-weight: normal!important;
}


.with-fs-12 {
    font-size: 1.2em
}

.with-max-height-30 {
    max-height: 30px;
}

.with-border-gray {
    border-color: rgba(211, 211, 211, 0.59)
}

.with-border-white {
    border-color: rgba(255, 255, 255, 1)
}

.with-color-white {
    color:white;
}


.with-cursor-hand {
    cursor: pointer;
}

.with-font-monospace {
    font-family: Courier New, Courier, monospace;
}

.with-smaller {
    font-size: smaller;
}

.with-right-dotted::after{
    content: '';
    position: absolute;
    width: 2px;
    border-right: dotted 1px white;
    line-height: 20px;
    margin-top: -35px;
    /* display:inline-block; */
    height: 30px;
}

.with-right-dotted-stack::after {
    content: '';
    position: absolute;
    width: 2px;
    border-right: dotted 1px white;
    line-height: 20px;
    margin-top: -35px;
    /* display:inline-block; */
    height: 30px;
}


.with-right-dotted {
    padding-right: 5px;
}


.with-readonly {
    border: 0;
    border-bottom: solid 1px #eee;
    box-shadow: none;
    font-weight: 600;
    user-select: none;
    pointer-events: none;
}

.with-readonly.form-control:focus {
    border: 0;
    box-shadow: none;
}

input[type=radio].with-readonly {
    display: none;
    visibility: hidden;
}