.--nounderline {
    text-decoration: none !important;
}

.--underline {
    text-decoration: underline !important;
}
/* text effects */

.--titlecase {
    text-transform: capitalize !important;
}

.--uppercase {
    text-transform: uppercase !important;
}

.--italic {
    font-style: italic !important;
}

.--normal {
    &,
    & * {
        text-transform: none !important;
    }
}

.--nowrap,
.--no-wrap {
    white-space: nowrap !important;
}

.--wrap {
    white-space: normal !important;
}

.--bold {
    font-weight: bold !important;
}

.--text-left {
    text-align: left !important;
}

.--text-right {
    text-align: right !important;
}

.--text-center {
    text-align: center !important;
}

.--text-justify {
    text-align: justify !important;
}

//----------------------------------------
// SPECIAL TEXT EFFECTS
//----------------------------------------
.list {
    ul {
        padding: var(--x-ul-padding, 7px 0 10px 20px);
    }
    &--inline,
    &--unstyled {
        @include list-unstyled();
    }
    &--inline {
        li {
            display: inline-block;
            &:not(:last-child) {
                margin-right: 10px;
            }
        }
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    font-weight: normal;
}
