* {
    font-family: "Roboto", sans-serif;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #888;
    }

body {
    padding-top: 50px;
}

.custom_nav {
    background: #0672cb !important;
}

    .custom_nav .navbar-brand {
        display: flex;
    }

        .custom_nav .navbar-brand span {
            display: inline-block;
            font-size: 13px;
            line-height: 14px;
            border-left: 1px solid #ccc;
            padding-left: 14px;
            margin-left: 14px;
        }

.dropdown.nav_dropdown .dropdown-toggle {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.blue_btn,
.blue_btn:hover {
    background: #0772ca;
    border-color: #0772ca;
    color: #fff;
    border: 1px solid;
    font-size: 0.8rem;
    font-weight: 300;
    padding: 7.5px 20px;
    text-decoration: none;
}

.dropdown.nav_dropdown .dropdown-toggle::after {
    background: url(../images/arrow_down.svg) no-repeat;
    border: none;
    width: 10px;
    height: 10px;
    background-position: center;
    vertical-align: middle;
}

.dropdown.nav_dropdown .dropdown-toggle img {
    margin-right: 10px;
}

h1 {
    font-size: 30px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.search_bar,
.search_bar:focus {
    outline: none;
    border: 1px solid #c8c9ca;
    background: url(../images/search_icon.svg) no-repeat;
    padding: 5px 0 5px 30px;
    border-radius: 2px;
    font-size: 0.8rem;
    color: #4e4e4e;
    background-position: 8px center;
    width: 230px;
}

.card-title {
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
}

a.view_button {
    color: #0772ca;
    text-decoration: none;
    font-size: 0.9rem;
}

    a.view_button img {
        width: 15px;
        margin-left: 5px;
    }

nav .dropdown-menu.show {
    display: block;
    right: 0;
    left: auto;
}

.breadcrumbs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
}

    .breadcrumbs li {
        color: #000000;
        font-weight: 600;
        padding: 10px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .breadcrumbs li::after {
            content: "";
            background: url(../images/arrow_right_gray.svg) no-repeat;
            width: 7px;
            height: 7px;
            position: absolute;
            background-position: center;
            right: -5px;
            background-size: 100%;
        }

        .breadcrumbs li:last-child::after {
            display: none;
        }

        .breadcrumbs li a {
            color: #6e6e6e;
            font-weight: 300;
            text-decoration: none;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .breadcrumbs li a img {
                margin-right: 5px;
            }

nav .dropdown-item {
    font-size: 0.8rem;
}

.bottom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-top: 10px;
}

.custom_table th span {
    font-size: 12px;
    white-space: nowrap;
}

.custom_table td {
    font-size: 12px;
}

button.ghost-btn {
    white-space: nowrap;
    color: #0772ca;
    border: 1px solid #0772ca;
    background: no-repeat;
    padding: 5px 20px;
    font-size: 11px;
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

.bottom label {
    font-size: 12px;
}

div.dt-container div.dt-info {
    font-size: 12px;
    padding: 0;
    margin: 0 5px;
}

.dt-length .form-select.form-select-sm {
    font-size: 12px;
    padding: 5px 25px 5px 5px;
}

.dt-scroll-body {
    border-bottom: none !important;
}

.pagination li a {
    font-size: 10px;
}

.pagination li .first,
.pagination li .previous,
.pagination li .next,
.pagination li .last {
    font-size: 14px;
    padding: 3px 10px;
}

.custom_select_lang {
    background: url(../images/glob_icon.svg) no-repeat 10px center #fff;
    padding-left: 30px;
    font-size: 11px;
    color: #636363;
}

.chat_input_field {
    position: relative;
    height: 26px;
}

    .chat_input_field::after {
        content: "";
        background: url(../images/down_arrow.svg) no-repeat center;
        z-index: 999;
        height: 15px;
        width: 10px;
        display: inline-block;
        top: 50%;
        position: absolute;
        right: 10px;
        background-size: 100%;
        transform: translateY(-7px);
    }

.chat_header {
    background: #f9fafc;
    border: 1px solid #dee5f3;
    padding: 5px 15px;
}

    .chat_header h2 {
        color: #6e6e6e;
        font-size: 0.9rem;
        margin: 0;
        padding: 0;
    }

.chat_body {
    border: 1px solid #dee5f3;
    padding: 15px;
    height: calc(100vh - 300px) !important;
    /*min-height: 500px;*/
    overflow: auto;
    /*max-height: 268px;*/
}

.chat_footer {
    background: #f9fafc;
    border: 1px solid #dee5f3;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.send_btn img {
    display: block;
    width: 30px;
    margin: 4px;
}

.chat_footer textarea,
.chat_footer textarea:focus,
.chat_footer textarea:hover {
    width: 100%;
    border: 1px solid #dee5f3;
    outline: none;
    font-size: 11px;
    color: #4e4e4e;
    /*padding: 10px;
    height: 60px;*/
    border-radius: 3px;
}

.send_btn {
    background: #40586d;
    width: 50px;
    margin: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 11px;
    padding: 0px;
    border: 1px solid #40586d;
    border-radius: 2px;
}

.message.sender span,
.message.receiver span {
    width: 30px;
    height: 30px;
    background: #0c2a55;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 4px;
}

.message.receiver span {
    background: #fff;
    margin: 0 5px 0 10px;
}

.message.sender {
    width: 50%;
    background: #f1f3f4 0% 0% no-repeat padding-box;
    border: 1px solid #dee5f3;
    padding: 5px;
    border-radius: 1px;
    clear: both;
}

    .message.sender p {
        margin: 0;
        padding: 5px 0 0px 10px;
        font-size: 0.8rem;
        color: #4e4e4e;
    }

.chat_suggestion {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 3px;
}

    .chat_suggestion li {
    }

        .chat_suggestion li:first a {
            margin-left: 0;
        }

        .chat_suggestion li a {
            background: #f8f9fa 0% 0% no-repeat padding-box;
            border: 1px solid #dee5f3;
            color: #4e4e4e;
            text-decoration: none;
            font-size: 0.7rem;
            padding: 2px 5px;
            margin: 4px;
        }

.chat_only {
    display: flex;
}

    .chat_only p {
        margin: 0;
    }

.message.receiver .chat_only {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.message.receiver {
    display: flex;
    justify-content: flex-start;
    background: #184478;
    max-width: 60%;
    float: right;
    flex-direction: row-reverse;
    color: #fff;
    margin: 0;
    padding: 5px 0 5px 10px;
    font-size: 0.8rem;
    border-radius: 2px;
}

    .message.receiver p {
        color: #fff;
        font-size: 0.8rem;
        font-weight: normal;
    }

.message {
    margin-top: 30px;
    padding: 2px 5px;
    margin-bottom: 8px;
}

.ghost_btn,
.ghost_btn:hover {
    color: #0772ca;
    border: 1px solid #0772ca;
    border-radius: 3px;
    font-size: .8rem;
    padding: 7px;
    width: 120px;
    background: #fff;
}

.min_width {
    width: 120px;
}

.blue_btn,
.blue_btn:hover {
    color: #fff;
    border-radius: 2px;
    background: #0772ca;
    border: 1px solid #0772ca;
    font-size: .8rem;
}

.pdf_outer {
    width: 91%;
    background: #dee5f3;
    /*height: calc(100vh - 140px);*/
    display: flex;
    justify-content: center;
    padding: 10px;
    /* overflow: auto;*/
}


.email_heading {
    padding: 20px 0;
    text-align: center;
}

.banner {
    background: #F1F1F1;
    padding: 15px;
    text-align: center;
}

    .banner h2 {
        font-size: 1.7rem;
        font-weight: 400;
    }

input.classic_btn {
    background: #0772CA;
    border: 1px solid #0772CA;
    outline: none;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 20px;
    min-width: 180px;
    display: block;
    margin: auto;
}

.email_temp {
    width: 620px;
    background: #fff;
    display: block;
    margin: auto;
}

.email_body {
    width: 80%;
    margin: 20px auto;
}

    .email_body strong {
        font-size: 13px;
        font-weight: normal;
    }

    .email_body p {
        font-size: 13px;
    }

    .email_body h2 {
        font-size: 13px;
        margin-top: 20px;
        margin-bottom: 0px;
    }

.email_table td {
    font-size: 13px;
    padding: 5px;
    padding-left: 0;
    width: 150px;
    vertical-align: top;
}

    .email_table td:last-child {
        width: 60%;
    }

strong.tagline_new {
    width: 100%;
    text-align: center;
    display: block;
    margin: 20px 0;
    font-weight: 600;
}

.Qieries {
    font-size: 12px;
    border-top: 1px solid #dcdcdc;
    padding: 15px 0;
}

    .Qieries a {
        text-decoration: none;
    }

.footer_email {
    background: #f5f6f7;
    border-top: 1px solid #ccc;
    padding: 15px;
}

    .footer_email a {
        color: #0d6efd !important;
        font-size: 11px;
    }

    .footer_email p {
        margin: 0;
        padding: 0;
        color: #0f0f0f;
        font-weight: 300;
        font-size: 10px;
    }

.editable {
    border: 2px dashed #007bff;
    padding: 20px 60px;
    margin: 5px;
    display: inline-block;
    min-width: 320px;
    background: #c2dbf5;
    position: relative;
}

    .editable h2,
    .editable p {
        padding: 0;
        margin: 0;
    }

    .editable::after {
        content: "AI";
        color: #007bff;
        font-size: 11px;
        font-weight: 600;
        position: absolute;
        right: 5px;
        top: 1px;
    }

.email_body .editable {
    display: block;
    padding: 20px;
    margin: 0;
}

.popover.fade.show.bs-popover-bottom {
    left: 0% !important;
    width: 100%;
    max-width: 94%;
}

.email_temp {
    position: relative;
}

.ghost_btn.small {
    width: 80px;
}

.send_cancel {
    display: flex;
    flex-direction: column;
}

button.cancel_btn {
    background: none;
    padding: 0;
    border: none;
    font-size: 0.9rem;
    color: #4c5d6c;
}

.suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .suggestions li {
        border: 1px solid #ccc;
        margin: 5px 0;
        padding: 5px;
        border-radius: 5px;
        font-size: 0.8rem;
        cursor: pointer;
        min-height: 35px;
        box-shadow: 2px 3px 6px 0px rgba(0,0,0,.5);
        padding-left: 25px;
        display: flex;
        align-items: center;
    }

        .suggestions li.active {
            position: relative;
            border: 1px solid #0772ca;
        }

            .suggestions li.active::before, .suggestions li.active::after {
                position: absolute;
                /*content: "";*/
                width: 15px;
                height: 15px;
                background: #ffffff;
                left: 5px;
                top: 50%;
                border-radius: 10px;
                border: 1px solid #0772ca;
                margin-top: -7px;
            }

            .suggestions li.active::after {
                width: 9px;
                height: 9px;
                background: #0772ca;
                margin-left: 3px;
                margin-top: 3px;
                margin-top: -4px;
            }

.pageloader {
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    background-size: 150px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.66);
    z-index: 9999;
}

.disabledA {
    pointer-events: none;
    opacity: 0.6;
}

.tooltipnew {
    position: relative !important;
    display: inline-block !important;
}

    .tooltipnew .tooltiptextnew {
        visibility: hidden !important;
        width: 400px !important;
        height: fit-content !important;
        background-color: #f1f3f4 !important;
        color: darkblue !important;
        text-align: left !important;
        border-radius: 6px !important;
        padding: 5px 0 !important;
        position: absolute !important;
        z-index: 1 !important;
        top: 150% !important;
        left: 80% !important;
        margin-left: -60px !important;
        font-size: 0.7rem;
    }

        .tooltipnew .tooltiptextnew::after {
            content: "" !important;
            position: absolute !important;
            bottom: 100% !important;
            left: 10% !important;
            margin-left: -5px !important;
            border-width: 5px !important;
            border-style: solid !important;
            border-color: transparent transparent gray transparent !important;
        }

    .tooltipnew:hover .tooltiptextnew {
        visibility: visible !important;
    }

.k-button {
    box-sizing: border-box !important;
    border-width: 1px !important;
    border-style: solid !important;
    color: inherit !important;
    background: none !important;
    font-family: inherit !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    vertical-align: middle !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
    cursor: pointer !important;
    outline: none !important;
    -webkit-appearance: none !important;
    position: relative !important;
    transition: color 0.2s ease-in-out !important;
}

.k-toolbar > * {
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-content: center !important;
    vertical-align: middle !important;
}

.k-button-flat-primary {
    color: #1274AC !important;
}

.k-button-flat {
    border-color: transparent !important;
    color: inherit !important;
    background: none !important;
    box-shadow: none !important;
}

.k-button-md {
    padding-block: 4px !important;
    padding-inline: 8px !important;
    font-size: 14px !important;
    line-height: 1.4285714286 !important;
}

.k-rounded-md {
    border-radius: 4px !important;
    border: 1px solid #0772ca !important;
}

.k-button-icon {
    color: inherit !important;
    align-self: center !important;
    position: relative !important;
}

.k-button *,
.k-button *::before,
.k-button *::after {
    box-sizing: border-box !important;
    font-size: .8rem !important;
    font-family: "Roboto", sans-serif !important;
}

.k-svg-icon {
    width: 16px !important;
    height: 16px !important;
    outline: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    position: relative !important;
}

.popover-body {
    padding: 0.7rem 0.7rem 0rem 0.4rem !important;
}


.popover-large {
    left: 0% !important;
    width: 50% !important;
    max-width: 60% !important;
}


.pdf_outer .popover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    border: none !important;
    padding: .5rem 1rem;
}

.pdf_outer .popover-body label.form-label {
    font-weight: 600;
    font-size: small;
}

.pdf_outer .popover .mb-3 .form-control {
    margin-bottom: .4rem;
    z-index: 9;
    position: relative;
}

.pdf_outer .popover ul.suggestions {
    background: #e7e9ec;
    margin-top: -.5rem;
    border-radius: 0 0 .5rem .5rem;
    padding: .6rem 1rem;
}

.pdf_outer .popover .suggestions li {
    border: 1px solid transparent !important;
    box-shadow: none;
    margin: .5rem 0;
    background: #fff;
    padding: .5rem .8rem;
    border-radius: .3rem;
}

    .pdf_outer .popover .suggestions li:hover {
        border: 1px dashed #0772ca !important;
        color: #0772ca;
    }

button#AcceptEditSubject {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

button#Accept_Edit {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

button#AcceptEditStatusBtn {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

button#AcceptEditEmailBody {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

button.blue_btn.mx-2 {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

button.ghost_btn.small.close {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}

button.button.blue_btn {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}
button.ghost_btn.mx-3 {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}
button#btnContinue {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}
button.send_btn {
    box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, .5) !important;
}