/* ****************************************
Utilities style file.
All instructions related to useful utilities.
**************************************** */

/* Wordpress admin nav menu hack */
/* Notes: Wordpress admin menu breakpoint is +/- 768px (mobile -> desktop).
          This code is useful for items that need full height minus wp admin bar.

.wp__is-active-full-height {
    height: calc(100% - 46px) !important;
}


@media (min-width: 768px)
{
	.wp__is-active-full-height {
        height: calc(100% - 32px) !important;
    }
}*/

.bg-danger {
    background-color: red !important;
}

.bg-success {
    background-color: green !important;
}

.bg-warning {
    background-color: yellow !important;
}

.bg-info {
    background-color: cyan !important;
}

.bg-black {
    background-color: rgb(0, 0, 0) !important;
}