
/* brand colors and inks */
.bg-primary, .alert-primary, .tag-primary {
	background-color: #3784c6 !important;
	color: rgba(255, 255, 255, 0.85) !important;
}

.bg-success, .alert-success, .tag-success {
   background-color: #37c679 !important;
   color: rgba(255, 255, 255, 0.85) !important;
}

.bg-danger, .alert-danger .tag-danger {
	background-color: #c6373c !important;
	color: rgba(255, 255, 255, 0.85) !important;
}

.bg-info, .alert-info .tag-info {
	background-color: #37c6c1 !important;
	color: rgba(255, 255, 255, 0.85) !important;
}
.bg-warning, .alert-warning .tag-warning {
	background-color: #cb8345 !important;
	color: rgba(255, 255, 255, 0.85) !important;
}

.bg-white, .bg-paper {
	background-color: white;
	color: #161616 !important;
}

.bg-dd {
    background-color: #ddd;
    color: #161616 !important;
}



.text-inverted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-inverted-muted {
    color: rgba(255, 255, 255, 0.7);
}



.text-primary {
	color: #3784c6 !important;
}
.text-success {
	color: #37c679 !important;
}

.text-danger {
	color: #c6373c !important;
}

.text-info {
	color: #37c6c1 !important;
}
.text-warning {
	color: #cb8345 !important;
}








/*
  transparents
*/
.bg-primary-tr {
    background-color: rgba(44,105,158, 0.9)!important;
    color:#eceeef !important;
}

.bg-success-tr {
    background-color: rgba(55, 198, 121, 0.9)!important;
    color:#fff !important;
}

.bg-danger-tr {
    background-color: rgba(198, 55, 60, 0.9)!important;
    color: #fff !important;
}

.bg-info-tr {
    background-color: rgba(55, 198, 193, 0.09) !important;
    color: #161616 !important;
}



.bg-faded-tr {
  background-color:  rgba(66, 66, 66, 0.9)!important;
}

.bg-mono-tr {
	background-color: rgba(0, 0, 0, 0.5)!important;
	color: #fff !important;
}

.bg-white-tr {
	background-color: rgba(255, 255, 255, 0.9)!important;
	color: #161616 !important;
}

.bg-success-tr a, .bg-primary-tr a, .bg-warning-tr a, .bg-danger-tr a {
    color: #fff !important;
    text-decoration: underline;
}

/*
	btn
 */

.btn-primary {
    color: #fff;
    background-color: #3784c6;
    border-color: #3784c6;
}

.btn-primary:hover {
    color: #fff;
    background-color: #2e70a7;
    border-color: #2e70a7;
}


.btn-success, .btn-success[disabled]:hover, .btn-success.disabled:hover {
    color: #fff;
    background-color: #37c679;
    border-color: #37c679;
}

.btn-success:hover {
    color: #fff;
    background-color: #2ea766;
    border-color: #2ea766;
}


.btn-info {
    color: #fff;
    background-color: #37c6c1;
    border-color: #37c6c1;
}
.btn-info:hover {
    color: #fff;
    background-color: #2ea7a3;
    border-color: #2ea7a3;
}


.btn-warning {
    color: #fff;
    background-color: #cb8345;
    border-color: #cb8345;
}
.btn-warning:hover {
    color: #fff;
    background-color: #a7662f;
    border-color: #a7662f;
}


.btn-danger {
    color: #fff;
    background-color: #c6373c;
    border-color: #c6373c;
}

.btn-danger:hover {
    color: #fff;
    background-color: #a72e33;
    border-color: #a72e33;
}




