/* --------------------------------------------------------------- */
/* --------------------------- BG COLOR -------------------------- */
/* --------------------------------------------------------------- */

.bg-color-white {
    background-color: rgba(var(--custom-rgb-color-white),1) !important;
}
.bg-color-gray {
    background-color: rgba(var(--custom-rgb-color-gray),1) !important;
}
.bg-color-gray-light {
	background-color: rgba(var(--custom-rgb-color-gray-light),1) !important;
}

.bg-color-primary {
	background-color: rgba(var(--custom-rgb-color-primary),1) !important;
}
.bg-color-primary-dark {
	background-color: rgba(var(--custom-rgb-color-primary-dark),1) !important;
}
.bg-color-primary-light {
	background-color: rgba(var(--custom-rgb-color-primary-light),1) !important;
}

/* --------------------------------------------------------------- */
/* ----------------------------- COLOR --------------------------- */
/* --------------------------------------------------------------- */

[class*="hover-text-color"] {
	transition: color 0.5s ease;
	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
}

.text-color-primary,
.hover-text-color-primary:hover,
.text-color-hl {
	color: rgba(var(--custom-rgb-color-primary),1) !important;
}
.text-color-primary-light {
	color: rgba(var(--custom-rgb-color-primary-light),1) !important;
}
.text-color-primary-dark {
	color: rgba(var(--custom-rgb-color-primary-dark),1) !important;
}


/* .text-color-light-secondary {
	color: rgba(25,165,58,1) !important;
} */
.text-color-white {
	color: rgba(var(--custom-rgb-text-color-white),1) !important;
}
.text-color-black {
    color: rgba(var(--custom-rgb-text-color-black),1) !important;
}
.text-color-gray {
    color: rgba(var(--custom-rgb-text-color-gray),1) !important;
}
.text-color-gray-light {
    color: rgba(var(--custom-rgb-text-color-gray-light),1) !important;
}
.text-color-red {
	color: rgba(var(--custom-rgb-text-color-red),1) !important;
}
.text-color-red-dark {
	color: rgba(var(--custom-rgb-text-color-red-dark),1) !important;
}
.text-color-green {
	color: rgba(var(--custom-rgb-text-color-green),1) !important;
}
.text-color-orange {
	color: rgba(var(--custom-rgb-text-color-orange),1) !important;
}