html {
    font-size: 14px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0px;
    background-color: #e4e4e4;
    color: #eee;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


.btn {
    background-color: #0A2546;
    color: #FFF;
}

    .btn:hover {
        color: #FFF !important;
        border: thin solid #00d4ff;
    }

.btn-white {
    background-color: #FFF;
}

    .btn-white:hover {
        color: black !important;
    }

.btn-full-size {
    height: 100%;
    width: 100%;
}

.footer {
    color: #FFF;
}

    .footer a {
        color: #FFF;
    }

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: unserline;
    }

.inputText {
    padding: 10px;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    background-color: #FFF;
    height: 100%;
    width: 100%;
    color: darkslategrey;
}

.chatContainer {
    margin: 0px;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.chatPanel {

}

.chatPagination {
    padding: 3px;
}

.chatBubbles {
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    height: calc(100vh - 110px);
    background-color: #FFF;
    border-color: #0A2546;
    padding: 15px;
    overflow-y: scroll;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

.chatResponse {
    height: 80px;
    margin-top: 10px;
}

.bubble {
    width: 70%;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    padding: 10px;
    color: #0A2546;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul li {
        overflow: hidden;
    }



.left {
    float: left;
}

.right {
    float: right;
}

.bubbleSend {
    background-color: #DAE2F1;
}

.bubbleReceive {
    background-color: #AFCBFF;
}

.jobsListContainer {
    padding-top: 10px;
    padding-left: 10px;
}

    .jobsListContainer li {
        background-color: #DBE2F0;
        color: #0A2546;
        padding: 5px;
        border-radius: 10px 0px 0px 10px;
        margin-bottom: 5px;
    }

        .jobsListContainer li:hover {
            cursor: pointer;
        }

.jobsContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100% !important;
    width: 100% !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    background-color: #ffffff;
    color: #FFF;
}

.jobElement {
    text-align: center;
    margin-right: 3%;
    border-radius: 10px !important;
    color: white !important;
}

.bgGreen {
    /*background-color: #2bd61d !important;*/
    background-color: #14aa06 !important;
}

.bgOrange {
    /*background-color: #ED7D31 !important;*/
    background-color: #ba530e !important;
}

.bgBlue {
    /*background-color: #3A75C4 !important;*/
    background-color: #0e50a5 !important;
}

.textSmall {
    font-size: 0.7em;
}

.hidden {
    display: none !important;
}

.virtual-hidden {
    visibility: hidden !important;
}

.truncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100px;
}

.iconSend {
    content: url('../images/send-message.png');
}

.iconSearch {
    content: url('../images/search.png');
}

.nav-search {
    padding: 1%;
}

.hover-pointer {
    cursor: pointer;
}

.msg-date {
    font-size: 0.8rem;
    float: right;
}