/* Base Colors */
.bg-black {
    background: rgba(27,27,27,1) !important;
}
.bg-black2 {
    background: rgba(22,22,22,1);
}
.bg-black3 {
    background: rgba(10,10,10,1);
}

.bg-black-trans {
    background: rgba(27,27,27,0.5);
}

.bg-gray {
    background: rgba(50,50,50,1) !important;
}
.bg-gray-trans {
    background: rgba(50,50,50,0.5);
}

.bg-white {
    background: rgba(241,241,241,1) !important;
}
.bg-white-trans {
    background: rgba(241,241,241,0.5);
}

.bg-blue {
    background: rgba(0,168,204,1) !important;
}
.bg-blue-trans {
    background: rgba(0,178,214,0.5);
}

.bg-orange {
    background: rgba(235,124,0,1) !important;
}
.bg-orange-trans {
    background: rgba(235,124,0,0.5);
}

/* Text Color */
.black {
    color: rgba(27,27,27,1);
}
.black-trans {
    color: rgba(27,27,27,0.5);
}
.orange {
    color: rgba(235,124,0,1);
}
.orange-trans {
    color: rgba(235,124,0,0.5);
}
.white {
    color: rgba(241,241,241,1);
}
.white-trans {
    color: rgba(241,241,241,0.5);
}

