/* ========================================================================
   TEXT
   ======================================================================== */
/* Header Page */

.text__err {
    color: #e02020;
}

.text--white {
    color: #fff !important;
}

.text--primary {
    color: #FF3F05 !important;
}

.text--sub--primary {
    color: rgba(20, 20, 20, 0.6) !important;
}

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

.text--underline {
    text-decoration: underline;
}

.text--link {
    display: inline-block;
    color: #FF3F05;
}

.text--gold {
    color: #ac9175 !important;
}

.text--black {
    color: #000000 !important;
}

.text--grey {
    color: #8c9796;
}

.text--blue-light {
    color: rgb(94, 112, 157);
}


.text--content {
    line-height: 1.6;
    word-wrap: break-word;
    color: #56605f;
    font-size: 16px;
}

.text--content img {
    margin: 25px auto;
    display: block;
    height: auto !important;
}

.text--content img.alignleft {
    margin: 25px 0;
}

.text--content ol li {
    padding-left: 10px;
}

.text--content ol li::marker {
    font-weight: bold;
    margin-right: 10px;
}


.text-line-limit--3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .text--content {
        padding-right: 0;
    }
}