﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Mukta:400,500,600,700&display=swap');

body {
    font-family: 'Mukta', sans-serif !important;
}

nav {
    height: calc(100vh - 150px);
    display: table;
}

    nav .mcd-menu {
        display: table-cell;
        vertical-align: middle
    }

.left-nav {
    background: #3166DE;
    width: 85px;
    position: fixed;
    height: 100%;
    z-index: 9999
}

    .left-nav .hub_logo {
        position: absolute;
        width: 100%;
        bottom: 25px;
        text-align: center
    }

#agentImage {
    width: 90px;
    height: 90%;
    margin: auto
}

.profile_pic {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

    .profile_pic img {
        border-radius: 50px;
        width: 54px;
        height: 54px
    }

.mcd-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    /*height: 100px;*/
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px; /* == */
    /* == */
}

    .mcd-menu li {
        position: relative;
        /*float:left;*/
        padding: 12px;
        text-align: center
    }

        .mcd-menu li a {
            display: inline-block;
            text-decoration: none;
            padding: 12px 15px;
            color: #AAD7FFE6;
            /*text-align: center;
  border-right: 1px solid #E7E7E7;*/
            /* == */
            text-align: left;
            position: relative; /* == */
        }

            .mcd-menu li a i {
                /*display: block;
  font-size: 30px;
  margin-bottom: 10px;*/
                /* == */
                float: left;
                font-size: 20px; /* == */
            }
            /* == */
            .mcd-menu li a p {
                float: left;
                margin: 0;
            }
            /* == */
            .mcd-menu li a strong {
                display: block;
                text-transform: uppercase;
            }

            .mcd-menu li a small {
                display: block;
                font-size: 10px;
            }

            .mcd-menu li a i, .mcd-menu li a strong, .mcd-menu li a small {
                position: relative;
                transition: all 300ms linear;
                -o-transition: all 300ms linear;
                -ms-transition: all 300ms linear;
                -moz-transition: all 300ms linear;
                -webkit-transition: all 300ms linear;
            }

        .mcd-menu li:hover > a i {
            opacity: 1;
            -webkit-animation: moveFromTop 300ms ease-in-out;
            -moz-animation: moveFromTop 300ms ease-in-out;
            -ms-animation: moveFromTop 300ms ease-in-out;
            -o-animation: moveFromTop 300ms ease-in-out;
            animation: moveFromTop 300ms ease-in-out;
        }

        .mcd-menu li:hover > a {
            color: #fff;
            border: 0;
            background: #09215775;
            border-radius: 12px;
        }

        .mcd-menu li a.active {
            position: relative;
            color: #fff;
            border: 0;
            background: #09215775;
            /*border-top: 4px solid #e67e22;
  border-bottom: 4px solid #e67e22;
  margin-top: -4px;*/
            border-radius: 12px;
        }

        .mcd-menu li ul li:hover > a {
            background: #1F46A1;
            color: #fff
        }

        .mcd-menu li ul li a {
            display: block;
            border-radius: 0 !important;
            background: #E6EEF4;
            color: #1F46A1
        }

        .mcd-menu li ul li {
            padding: 0px;
        }

@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-webkit-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.mcd-menu li ul, .mcd-menu li ul li ul {
    position: absolute;
    height: auto;
    min-width: 200px;
    padding: 0;
    margin: 0;
    background: #FFF;
    /*border-top: 4px solid #e67e22;*/
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    /*top: 130px;*/
    z-index: 1000;
    /* == */
    left: 150px;
    top: 0px;
    border-left: 4px solid #1F46A0; /* == */
}

    .mcd-menu li ul:before {
        content: "";
        position: absolute;
        /*top: -8px;
  left: 23%;
  border-bottom: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
        /* == */
        top: 25px;
        left: -9px;
        border-right: 5px solid #1F46A0;
        border-bottom: 5px solid transparent;
        border-top: 5px solid transparent; /* == */
    }

    .mcd-menu li:hover > ul, .mcd-menu li ul li:hover > ul {
        display: block;
        opacity: 1;
        visibility: visible;
        /*top: 100px;*/
        /* == */
        left: 85px;
        box-shadow: 1px 1px 11px #11429f4d; /* == */
    }

    .mcd-menu li ul li {
        list-style-type: none
    }

        .mcd-menu li ul li a {
            padding: 10px;
            text-align: left;
            border: 0;
            border-bottom: 1px solid #AAD7FFE6;
            font-size: 13px;
            height: auto;
        }

            .mcd-menu li ul li a i {
                font-size: 16px;
                display: inline-block;
                margin: 2px 10px 0 0;
            }

        .mcd-menu li ul li ul {
            left: 230px;
            top: 0;
            border: 0;
            border-left: 4px solid #e67e22;
        }

            .mcd-menu li ul li ul:before {
                content: "";
                position: absolute;
                top: 15px;
                /*left: -14px;*/
                /* == */
                left: -9px;
                /* == */
                border-right: 5px solid #e67e22;
                border-bottom: 5px solid transparent;
                border-top: 5px solid transparent;
            }

        .mcd-menu li ul li:hover > ul {
            top: 0px;
            left: 200px;
        }
/*.mcd-menu li.float {
  float: right;
}*/
.mcd-menu li a.search {
    /*padding: 29px 20px 30px 10px;*/
    padding: 10px 10px 15px 10px;
    clear: both;
}

    .mcd-menu li a.search i {
        margin: 0;
        display: inline-block;
        font-size: 18px;
    }

    .mcd-menu li a.search input {
        border: 1px solid #EEE;
        padding: 10px;
        background: #FFF;
        outline: none;
        color: #777;
        /* == */
        width: 170px;
        float: left; /* == */
    }

    .mcd-menu li a.search button {
        border: 1px solid #e67e22;
        /*padding: 10px;*/
        background: #e67e22;
        outline: none;
        color: #FFF;
        margin-left: -4px;
        /* == */
        float: left;
        padding: 10px 10px 11px 10px; /* == */
    }

    .mcd-menu li a.search input:focus {
        border: 1px solid #e67e22;
    }

.search-mobile {
    display: none !important;
    background: #e67e22;
    border-left: 1px solid #e67e22;
    border-radius: 0 3px 3px 0;
}

    .search-mobile i {
        color: #FFF;
        margin: 0 !important;
    }

.prof-fieldropbtn {
    cursor: pointer;
    color: #606060;
    font-size: 16px;
}

.prof-fieldropdown {
    position: relative;
    display: inline-block;
    width: 100%
}

.prof-fieldropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 10px 10px;
    top: 25px;
    left: 85px
}

    .prof-fieldropdown-content::before {
        content: "";
        position: absolute;
        top: 25px;
        left: -7px;
        border-right: 7px solid #fff;
        border-bottom: 7px solid transparent;
        border-top: 7px solid transparent;
    }

.prof-fieldropdown:hover .prof-fieldropdown-content {
    display: block;
}

.prof-fieldropdown:hover .prof-fieldropbtn {
    color: #404040;
}
/*login styles*/

.log_div {
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center
}

    .log_div .loginbox {
        width: 50%;
        background: #fff;
        padding: 24px 15px;
        color: #999;
        border-radius: 8px !important;
        margin-top: 100px;
        box-shadow: 0px 0px 10px #dce0ee;
        background-image: url(../img/log_bg.png);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: contain;
    }

.userImg {
    margin-top: 50px;
}
/*common classes*/
input::placeholder {
    color: #AFAFAF !important
}

textarea {
    resize: none
}

input, select {
    font-size: 13px !important
}

.font-dark-blue {
    color: #40567C !important
}

.font-blue {
    color: #3166DE !important
}

.font-lite-blue {
    color: #4F6799;
}

.font-g-red {
    color: #F14336
}

.bold {
    font-weight: bold
}

.b6 {
    font-weight: 600;
}

.f_11 {
    font-size: 11px
}

.f_12 {
    font-size: 12px
}

.f_13 {
    font-size: 13px
}

.f_14 {
    font-size: 14px !important
}

.f_15 {
    font-size: 15px
}

.f_17 {
    font-size: 17px
}

.f_20 {
    font-size: 20px !important
}

.pad10 {
    padding: 10px;
}

.pad15 {
    padding: 15px;
}

.title_head {
    color: #40567C;
    font-size: 16px;
    font-weight: 600;
}

.no_border, .no_border th, .no_border td {
    border: none !important
}

input.input-circle {
    border-radius: 50px !important
}

.input-group .input-icon i {
    position: absolute;
    color: #BFBFBF;   
    right: 7px
}

.input-group .input-icon {
    width: 100%
}

    .input-group .input-icon .form-control {
        padding: .375rem 1.6rem .375rem 0.75rem
    }

.full-w {
    width: 100% !important
}

.btn-blue {
    background: #3166DE;
    color: #fff
}

    .btn-blue:hover {
        background: #2456C8;
        color: #fff;
    }

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.fa_6p {
    font-size: 6px;
    vertical-align: middle
}

.txt-lite-grey {
    color: #8D95A0;
}

.blocked {
    display: block;
}

.pointer {
    cursor: pointer
}

.input-inline {
    display: inline;
    width: auto !important
}

.btn-circle {
    border-radius: 50px;
}

.scrollable {
    /* width: 24rem;
  background: #eee;
  margin: 0 auto;
  padding: 2.4rem;
  border: 1px solid #ccc;
  overflow: hidden;*/
}

.btn-blue-circle {
    background: #3166DE;
    color: #fff;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/*common classes end*/

.field_name {
    color: #8D95A0;
    font-size: 13px;
    display: block
}

.prof-links {
    margin: 0px;
    padding: 0px
}

    .prof-links li {
        list-style-type: none;
        line-height: 22px;
        padding: 10px 0px;
        border-bottom: 1px solid #e8e8e8;
    }

        .prof-links li:last-child {
            border-bottom: none
        }

        .prof-links li a {
            color: #8D95A0;
            font-size: 13px;
        }

            .prof-links li a:hover {
                color: #40567C
            }

.prof-name {
    font-size: 13px;
    color: #40567C;
    font-weight: 600;
}

.v-line-f {
    margin-left: -10px;
    margin-right: -10px;
}

.v-line-15 {
    margin-left: -15px;
    margin-right: -15px;
}

.main {
    margin-left: 85px;
    position: relative;
    padding: 20px;
}

.cont_box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 6px #dddddd;
    position: relative
}

.table_reports th {
    background: #F4F8FB;
    color: #8D9EB5;
    font-weight: 500
}

.table_reports td {
    color: #4c4c4c
}

.table_reports th, .table_reports td {
    font-size: 13px;
}

.table_reports tr:nth-child(even) {
    background: #F8FBFE
}

.table_reports tr th, .table_reports tr td {
    vertical-align: middle
}

    .table_reports tr th label, .table_reports tr td label {
        margin-bottom: .01rem
    }

.table_reports td img {
    cursor: pointer
}

.skill_tag {
    background: #EFF4F8;
    border-radius: 4px;
    border: 1px solid #D2DCE3;
    padding: 0.15rem 0.5rem 0;
    font-size: 13px;
    color: #6B8295;
    margin-bottom: .3rem !important
}

.skill_tag_add {
    background: #EFF4F8;
    border-radius: 4px;
    border: 1px solid #D2DCE3;
    padding: 0.3rem 0.7rem 0;
    font-size: 13px;
    color: #6B8295;
    margin-bottom: .5rem !important;
    margin-right: .3rem;
}

    .skill_tag_add input[type="checkbox"] {
        vertical-align: baseline
    }

.green_tag {
    background: #F3FFFB;
    border-radius: 4px;
    border: 1px solid #8DF1BF;
    padding: 0.15rem 0.5rem 0;
    font-size: 13px;
    color: #37A859;
}

.red_tag {
    background: #FFF6F6;
    border-radius: 4px;
    border: 1px solid #F38A8A;
    padding: 0.15rem 0.5rem 0;
    font-size: 13px;
    color: #C86262;
}

#liveStatsData .red_tag {
    width: 95px
}

.icn_round_call {
    background: #edf6ff;
    border-radius: 50px !important;
    width: 23px;
    height: 23px;
    text-align: center;
    border: 1px solid #116fff;
    padding: 2px;
    color: #3b77ff;
    font-size: 12px;
}

.btn-lite-blue {
    background: #F4F8FB;
    color: #3166de !important;
    border: 1px solid #3166de7a;
}

    .btn-lite-blue:hover {
        color: #3166de !important
    }

.btn-lite-green {
    background: #f0ffeb;
    color: #36cc3a;
    border: 1px solid #36cc3a;
}

    .btn-lite-green:hover {
        color: #36cc3a;
    }

.btn-lite-red {
    background: #fff6eb;
    color: #cc6036;
    border: 1px solid #cc6036;
}

    .btn-lite-red:hover {
        color: #cc6036;
    }

.ind_num {
    width: 75%;
    float: left;
    margin-right: 5px;
}

.featureListBox {
    background: #F5F8FB;
    padding: 8px 8px;
    color: #636473;
    font-size: 13px;
    box-shadow: 1px 1px 3px #cccccc;
}

    .featureListBox input[type="checkbox"] {
        vertical-align: middle
    }

    .featureListBox .field_name {
        color: #40567C
    }

    .featureListBox .inp-details label {
        color: rgba(0,0,0,.6);
        font-size: 12px;
        margin-right: 1rem;
        margin-bottom: .25rem
    }

    .featureListBox .inp-details input {
        color: rgba(0,0,0,.6);
        font-size: 12px !important;
        width: 50px;
    }

    .featureListBox .inp-details select {
        color: rgba(0,0,0,.6);
        font-size: 12px !important;
    }

.md-accordion .card {
    box-shadow: 1px 1px 3px #0000001c
}

    .md-accordion .card .card-header a:not(.collapsed) .rotate-icon {
        transform: rotate(180deg)
    }

    .md-accordion .card .card-header {
        background: rgba(40, 146, 164, 0.03)
    }

    .md-accordion .card .fa-angle-down {
        float: right
    }

    .md-accordion .card .card-header a h5 {
        font-size: 1.03rem;
        color: #40567C
    }

    .md-accordion .card .card-header a:hover, .md-accordion .card .card-header a:active, .md-accordion .card .card-header a:focus {
        text-decoration: none
    }

.md-accordion .card {
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,.125) !important
}

    .md-accordion .card .card-body .nav-pills .nav-link {
        font-size: 14px;
        padding: 0.3rem 0.8rem
    }


.placeholders {
    margin: 0px;
    padding: 2px 0px 0px 2px;
}

    .placeholders li {
        list-style-type: none;
        float: left;
        margin-right: 15px;
        margin-bottom: 15px;
        padding: 12px 15px;
        border-radius: 8px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22)
    }

        .placeholders li .head {
            color: #8D95A0;
            font-size: 13px;
            margin-top: 0px;
            margin-bottom: 5px;
            font-weight: normal
        }

        .placeholders li .content {
            color: #525760;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 0px;
        }

.status_tag {
    background: #fff;
    border-radius: 25px !important;
    padding: 5px 8px;
    color: #4b6c8b;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #dcdcdc;
    font-size: 0.95rem
}


    .status_tag img {
        cursor: pointer
    }

.panel-grey-bg {
    background: rgba(90, 126, 132, 0.04) !important;
}

.prior_status {
    background: #f8f9fa;
    padding: .5rem;
    margin-bottom: .5rem;
}

    .prior_status label {
        margin-bottom: 0px
    }

    .prior_status img {
        cursor: pointer
    }

.agent_label {
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    padding: 0.35rem 0.5rem 0;
    font-size: 13px;
    color: #5F5F5F;
}

    .agent_label span i {
        cursor: pointer
    }

.time-tb-head {
    padding: .5rem;
    background: #f8f9fa;
    width: 350px
}

.time_table {
    width: 350px;
}

    .time_table th, .time_table td {
        font-size: 13px;
    }

    .time_table th {
        color: #A2A2A2;
        font-weight: normal;
        border-top: 0px
    }

    .time_table td:first-child {
        color: #5f5f5f;
        border-right: 1px solid #dee2e6
    }

    .time_table td:last-child {
        color: #4F6799
    }

.ivr-draft-panel {
    background: rgba(40, 146, 164, 0.03);
    position: relative;
    box-shadow: 1px 1px 3px #afafbf;
    margin-bottom: 8px;
    padding: 10px
}


.close_top {
    position: absolute;
    right: 7px;
    top: 4px;
    z-index: 9999;
    color: #8D95A0;
    font-size: 12px;
}

.mod_tab td {
    font-size: 13px;
}

    .mod_tab td:first-child {
        color: #8D95A0
    }

    .mod_tab td label {
        margin-bottom: 0px;
    }



.agent_pic {
    position: relative;
    width: 90px;
    margin: auto
}



    .agent_pic img {
        float: none;
        margin: 0 auto;
        width: 80px;
        height: 80px;
        -webkit-border-radius: 50% !important;
        -moz-border-radius: 50% !important;
        border-radius: 50% !important;
        border: 5px solid #f9f9f9;
    }

.profile_name {
    font-weight: 600;
    font-size: 1rem;
    color: #4F6799;
    text-transform: uppercase;
    margin-left: 10px;
}



.label-edit {
    background: #4485ee;
    color: #fff;
    height: 30px;
    width: 30px;
    border-radius: 50px !important;
    padding-top: 7px;
    text-align: center;
    position: absolute;
    right: 6px;
    top: 50px;
    font-size: 12px;
    cursor: pointer
}

.profie_pic img {
    float: none;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    border: 5px solid #f9f9f9;
}

.profile_location {
    color: #32cfef;
    font-size: 13px;
}

.profile_rate {
    margin-top: 15px;
    text-align: center;
}

    .profile_rate .rate {
        color: #28a745;
    }

.agent_avail {
    background: #3CD9C4;
}

.agent_call {
    background: #35D0EF;
}

.agent_work {
    background: #F39620;
}

.agent_break {
    background: #E05469;
}

.agent_avail span {
    color: #c6fff8;
}

.agent_call span {
    color: #d8f8ff;
}

.agent_work span {
    color: #ffead0;
}

.agent_break span {
    color: #ffd8de;
}

.agent_avail span, .agent_call span, .agent_work span, .agent_break span {
    font-size: 13px;
}

.agent_avail, .agent_call, .agent_work, .agent_break {
    text-align: center;
    padding: 15px;
}

    .agent_avail label, .agent_call label, .agent_work label, .agent_break label {
        color: #fff;
        font-size: 22px;
    }

.staff_list {
    margin-right: 8px;
    padding-right: 8px;
    margin-bottom: 10px;
}


.chats {
    margin: 0;
    margin-top: 0px;
    padding: 0;
    margin-top: -15px;
}

    .chats li {
        list-style: none;
        padding: 5px 0;
        margin: 10px auto;
        font-size: 12px;
    }

        .chats li.in .avatar {
            float: left;
            margin-right: 10px;
        }

        .chats li .avatar {
            height: 45px;
            width: 45px;
            -webkit-border-radius: 50% !important;
            -moz-border-radius: 50% !important;
            border-radius: 50% !important;
        }

        .chats li.in .message {
            text-align: left;
            border-left: 2px solid #1BBC9B;
            margin-left: 65px;
            background: #fafafa;
        }

        .chats li .message {
            display: block;
            padding: 5px;
            position: relative;
        }

        .chats li.in .message .arrow {
            display: block;
            position: absolute;
            top: 5px;
            left: -8px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #1BBC9B;
        }

        .chats li .name {
            color: #3590c1;
            font-size: 13px;
            font-weight: 400;
        }

        .chats li .datetime {
            color: #333;
            font-size: 13px;
            font-weight: 400;
        }

        .chats li .body {
            display: block;
        }















/*Hover Drop box*/

.fieldropbtn {
    color: #17a2b8;
    font-size: 13px;
    margin-bottom: 0px;
}

.fieldropdown {
    position: relative;
    display: inline-block;
}

.fieldropdown-content {
    display: none;
    position: absolute;
    background-color: #f3f6f9;
    min-width: 235px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px;
    border: 1px solid #c2cfd5;
    font-size: 12px;
    text-align: left
}

.fieldropdown:hover .fieldropdown-content {
    display: block;
}

.fieldropdown:hover .fieldropbtn {
    color: #404040;
}

.device_inform {
    padding: 0px;
    margin: 0px;
}

    .device_inform li {
        list-style-type: none;
        line-height: 22px;
        font-size: .74rem;
        color: #86898a
    }

        .device_inform li span {
            font-weight: bold;
            margin-left: 8px;
        }

        .device_inform li b {
            margin-left: 7px;
        }
/* filter */
.wrapper {
    min-height: 100vh
}

#sidebar {
    width: 250px;
    position: absolute;
    height: 100%;
    top: 0;
    left: -250px;
    display: none;
    z-index: 999;
    background: #fff;
    color: #404040;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 4px 0px 6px rgba(0, 0, 0, 0.3);
}

    #sidebar.active {
        left: 0;
        display: block
    }

#dismiss {
    width: 30px;
    height: 30px;
    line-height: 35px;
    text-align: center;
    background: #7386D5;
    /*position: absolute;
    top: 10px;
    right: 10px;*/
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
}

    #dismiss:hover {
        background: #fff;
        color: #7386D5;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

    #sidebar ul li a:hover {
        color: #7386D5;
        background: #fff;
    }

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

.filter_btn {
    background: #fff;
    border: 1px solid #688FE8;
    border-radius: 8px;
    padding: 5px;
    font-size: 13px;
    color: #3166DE;
    width: 30px;
    height: 30px;
    box-shadow: 1px 1px 5px #ccc;
}

.filters {
    padding: 10px;
}

    .filters label, .filters input, .filters select {
        font-size: 13px !important
    }
/*Tool Tip*/

span[data-tooltip].tooltip-top:before, span[data-tooltip].tooltip-top:after {
    transform: translateY(1rem);
}

span[data-tooltip].tooltip-top:hover:after, span[data-tooltip].tooltip-top:hover:before {
    transform: translateY(0);
}

span[data-tooltip] {
    position: relative;
}

    span[data-tooltip]:after, span[data-tooltip]:before {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: transform 200ms ease, opacity 200ms;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        z-index: 99;
    }

    span[data-tooltip]:before {
        content: attr(data-tooltip);
        background: #000;
        color: #fff;
        font-size: .7rem;
        padding: 5px 1rem;
        border-radius: 5px;
        white-space: nowrap;
        text-decoration: none;
        text-transform: capitalize;
        letter-spacing: 1px;
    }

    span[data-tooltip]:after {
        width: 0;
        height: 0;
        border: 6px solid transparent;
        content: '';
    }

    span[data-tooltip]:hover:after, span[data-tooltip]:hover:before {
        visibility: visible;
        opacity: 0.85;
        transform: translateY(0px);
    }

    span[data-tooltip][data-position='top']:before {
        bottom: 74%;
        left: -167%;
        margin-bottom: 1rem;
    }

    span[data-tooltip][data-position='right']:before {
        bottom: 100%;
        right: -30%;
        margin-bottom: 0.57rem;
    }

    span[data-tooltip][data-position='top']:after, span[data-tooltip][data-position='right']:after {
        border-top-color: #000;
        border-bottom: none;
        bottom: 100%;
        left: calc(50% - 6px);
        margin-bottom: 4px;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            color: #23527c;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pagination {
    margin: 10px 0;
}

    .pagination.pagination-circle > li:first-child > a {
        border-radius: 25px 0 0 25px !important;
    }

    .pagination.pagination-circle > li:last-child > a {
        border-radius: 0 25px 25px 0 !important;
    }

    .pagination .active > a,
    .pagination .active > a:hover {
        background: #eee;
        border-color: #dddddd;
        color: #333;
    }






.login-panel-right {
    background: #3166DE;
    height: 100vh;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-cont {
    width: 80%;
    text-align: center;
}

.login_title {
    padding: 30px;
    text-align: center;
}

    .login_title h3 {
        color: #143F89;
        font-size: 28px;
        font-weight: 600;
    }

    .login_title p {
        color: #46659A;
        font-size: 16px
    }

.login-foot {
    color: #566695;
    font-size: 11px;
    text-align: center;
    padding: 20px 10px;
}

.login-mid-cont {
    height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center
}

    .login-mid-cont img {
        max-height: 250px;
    }

.login_logo {
    margin-bottom: 20px;
}

.login-text {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px
}

.login-btn {
    background: #fff;
    border: none;
    padding: 15px 25px;
    color: #3B77FF;
    border-radius: 8px;
    font-weight: 600;
}

    .login-btn:hover, .login-btn:active, .login-btn:focus {
        color: #3B77FF;
        border: none;
    }


.notifydropbtn {
    color: #79889e;
    cursor: pointer;
    position: relative;
}

    .notifydropbtn .dot {
        color: #f88859;
        font-size: 8px;
        position: absolute;
        bottom: 4px;
        right: -4px;
        border: 1px solid #fff;
        border-radius: 50%;
    }

.notifydropdown {
    position: relative;
    display: inline-block;
}

.notifydropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    width: 350px;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
    z-index: 1;
    right: 0px;
    border-radius: 4px;
    top: 25px
}



.notifydropdown:hover .notifydropdown-content {
    display: block;
}

.notifyHead {
    background: #F4F8FB;
    padding: 10px;
    color: #7d8ea4;
    font-weight: 600;
    font-size: 14px;
}


.notifyList{
    margin:0px;
    padding:0px;
    overflow-y:auto
}

    .notifyList li {
        list-style-type: none;
        color: #878b96;
        line-height: 1.8;
        font-size: 13px;
        padding: 10px;
        border-bottom: 1px solid #ebebeb;
    }

        .notifyList li.new {
            margin-top: 5px;
        }

        .notifyList li.new {
            background: #fffaf0
        }

        .notifyList li span, .allNotifications li .notify_cont .notify_cont_right span {
            color: #303030;
            font-weight: 600
        }

        .notifyList li.new, .notifyList li:last-child, .allNotifications li:last-child {
            border-bottom: none
        }

        .notifyList li p {
            margin-bottom: 3px;
        }


.allNotifications {
    margin: 0px auto;
    padding: 0px;
    width: 80%
}

    .allNotifications li {
        list-style-type: none;
        padding: 15px 0px;
        border-bottom: 1px solid #ebebeb;
    }

        .allNotifications li .notify_cont {
            display: flex;
            align-items: center
        }

            .allNotifications li .notify_cont .notify_cont_left img {
                height: 34px;
                width: 34px;
                border-radius: 50%;
            }

            .allNotifications li .notify_cont .notify_cont_right {
                color: #878b96;
                line-height: 1.8;
                font-size: 13px;
            }

    .allNotifications .date-head {
        border-bottom: 0px;
    }

        .allNotifications .date-head h4 {
            font-size: 17px;
            margin-bottom: 0px;
            font-weight: 600;
        }

    .allNotifications li .notify_cont .notify_cont_right p {
        margin-bottom: 0px;
    }

.notify_cont_left img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
}
        

