.bg-theme {
    background-color: #016bff !important;
}

.nav>li.active {
    border-left: 4px solid #016bff;
    background: #016bff;
}

.navbar-default .nav>li>a:hover,
.navbar-default .nav>li>a:focus {
    background: #016bff52;
    color: white;
}

body.mini-navbar .nav-header {
    padding: 0;
    background-color: #016bff;
}

.btn-theme {
    color: #fff;
    background-color: #016bff;
    border-color: #016bff;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme.focus {
    background-color: #0056cc;
    border-color: #0056cc;
    color: #ffffff !important;
}

.nav-header {
    background-color: #343a40;
    background-image: none;
    padding: 33px 25px;
}

.navbar-default {
    background-color: #343a40;
    border-color: #343a40;
}

.chat-message .message {
    width: fit-content;
}

.chat-message.right .message {
    float: right;
    margin-right: 0 !important;
}

.chat-message .typing-dots {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 25px;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #919191;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.15s;
}

.dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-10px);
    }

    20%,
    100% {
        transform: translateY(0);
    }
}

.chat-message-form .form-control {
    height: calc(2em + .75rem + 2px);
}

.footer {
    display: flex;
    align-items: center;
}

.footer .footer-label {
    padding-top: 10px;
}

[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.data-ng-cloak {
    display: none !important;
}

.text-ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fit-content {
    width: fit-content;
}

.subscription-badge{
    border: 1px solid #1c84c6 !important;
    background: none !important;
    color: #1c84c6 !important;
}