@charset "utf-8";
/* CSS Document */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

    *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-overflow-scrolling: touch;
    background-color: #f4f7fc;
}

:focus {
    outline: none;
}

ul, li, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    color: #494949;
    transition: 0.5s;
}

input[type="button"], input[type="submit"] {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    color: #103060;
    text-decoration: none;
    outline: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

a img, img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    width: auto
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin: 0px;
    padding: 0px;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #333333;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}


input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
        outline: none !important;
        text-decoration: none !important;
    }

        button::-moz-focus-inner,
        input::-moz-focus-inner {
            padding: 0;
            border: 0;
        }

    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type="search"],
    input[type="text"],
    textarea {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: textfield;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

table {
    border-spacing: 0;
    border-collapse: collapse;
}

.row:before, .row:after {
    display: inline-block !important;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

    .container:before, .container:after {
        display: table;
        content: "";
    }

    .container:after {
        clear: both;
    }


a.menu-icon {
    display: none;
    height: auto;
    padding: 7px 0 7px 0;
    width: 40px;
    background: rgba(0,0,0,0.2);
}

    a.menu-icon span {
        display: block;
        margin: 4px 10px;
        background: #fff;
        height: 3px;
    }


.section-title h1 {
    position: relative;
    text-transform: capitalize;
    text-align: center;
    font-size: 30px;
    color: #f15a29;
    margin: 0px;
    padding-bottom: 40px;
}

    .section-title h1::after {
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translate(-50%, 0);
        background-color: #f15a29;
    }


.content-title h1 {
    position: relative;
    text-transform: capitalize;
    font-size: 19px;
    color: #000;
    margin: 0px;
    padding-bottom: 36px;
}

    .content-title h1::after {
        content: "";
        display: block;
        width: 90%;
        height: 1px;
        position: absolute;
        bottom: 25px;
        left: 0;
        background-color: #f15a29;
    }


.bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.btn.btn-green {
    color: #103060;
    box-shadow: none !important;
    border: none !important;
    /* background: linear-gradient(130deg, rgba(32,182,136,1) 0%, rgba(120,196,80,1) 100%);*/
    background: #75E6DA;
    padding: 10px 20px;
    margin-top: 1em;
}


.form-control {
    border: 1px solid #c1c1c1 !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 10px 15px;
    height: auto !important;
    color: #333;
    width: 100%;
    min-width: auto !important;
}

.custom-select {
    border: 1px solid #c1c1c1 !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 10px 30px 10px 15px;
    height: auto !important;
    color: #333;
}



#header {
}

    #header .header-block {
        background-color: #103060;
        padding: 15px 0;
    }

    #header .header-box ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #header .header-box {
        display: flex;
        align-items: center;
    }

    #header .logo-box {
        max-width: 60px;
        width: 100%;
        display: block;
        flex: 0 0 180px;
    }

        #header .logo-box img {
            width: 100% !important;
            height: auto !important;
        }

    #header .header-nav {
        max-width: calc(100% - 181px);
        width: 100%;
        position: relative;
        flex: 0 0 100%;
        padding-left: 84px;
        padding-right: 3px;
    }

    #header .right-box, #header .user-data {
        display: flex;
        align-items: center;
    }

    #header .header-box ul li h3 {
        color: #fff;
        font-size: 16px;
    }

    #header .login_info {
        margin-right: 35px;
    }

        #header .login_info p {
            margin: 0;
            color: #fff;
            font-size: 14px;
        }

    #header .user-data img {
        max-width: 50px;
        margin-right: 10px;
    }

    #header .user-data .users_icos {
        width: 50px;
        height: 50px;
        background: #f4f7fc;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        margin-right: 10px;
        flex: 0 0 50px;
    }

        #header .user-data .users_icos img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-height: 100%;
            min-width: 100%;
        }

    #header .user-info p {
        margin: 0;
        color: #fff;
        font-size: 13px;
        line-height: 15px;
    }

    #header .user-info h6 {
        color: #fff;
        font-size: 15px;
    }


#sidebar {
    position: fixed;
    top: 90px;
    background-color: #fff;
    z-index: 111;
    bottom: 0;
    height: 100%;
    width: 250px;
    box-shadow: 0 0 4px #ddd;
    overflow-y: auto;
    padding-bottom: 40px
}

#nav ul li {
    padding: 15px;
    display: block;
    position: relative;
}

    #nav ul li a {
        font-weight: 600;
        color: #a3a3a3;
        font-size: 15px;
        text-transform: capitalize;
    }

        #nav ul li a i {
            margin-right: 15px;
        }

    #nav ul li.active {
        background-color: #e7eaef;
    }

        #nav ul li.active > a {
            color: #103060;
        }

        #nav ul li.active::after {
            content: "";
            height: 100%;
            display: block;
            width: 5px;
            position: absolute;
            top: 0;
            left: 0px;
            background-color: #103060;
        }

    #nav ul li.submenu {
        padding-left: 0;
    }

        #nav ul li.submenu a {
            padding-left: 15px;
        }

        #nav ul li.submenu ul li a {
            padding-left: 30px;
            display: inline-block;
        }

    #nav ul li ul.submenu-drop.show {
        display: block !important;
    }

    #nav ul li .submenu-drop {
        padding-top: 10px;
    }

        #nav ul li .submenu-drop li {
            padding-left: 15px;
            padding-top: 10px;
        }

    #nav ul li.submenu::before {
        content: "\f107";
        font-family: "fontawesome";
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        line-height: 15px;
        font-size: 15px;
    }

    #nav ul li.submenu.show::before {
        content: "\f106";
    }

#page_wapper {
    padding: 0px 15px 0 265px;
}

#breadcrumd .breadcrumd-block {
    padding: 20px 0 0;
}

#breadcrumd .breadcrumd-box {
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 20px;
}

    #breadcrumd .breadcrumd-box ul li, #breadcrumd .breadcrumd-box ul li a {
        color: #103060;
        font-size: 16px;
    }

#main-bar .main-bar-block {
    padding-top: 30px;
}

#hed_card .col-md-3 {
    margin-bottom: 30px;
}

#hed_card .col-md-4 {
    margin-bottom: 30px;
}

#hed_card .count-box {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 4px #ccc;
    border-radius: 5px;
    height: 100%;
}

    #hed_card .count-box.box-1 {
        background: linear-gradient(130deg, rgba(93,36,213,1) 0%, rgba(51,98,242,1) 100%);
    }

    #hed_card .count-box.box-2 {
        background: linear-gradient(130deg, rgba(245,133,89,1) 0%, rgba(248,163,47,1) 100%);
        /*color: #103060;*/
    }

    #hed_card .count-box.box-3 {
        background: linear-gradient(130deg, rgba(32,182,136,1) 0%, rgba(120,196,80,1) 100%);
        /*color: #75E6DA;*/
    }

    #hed_card .count-box.box-4 {
        background: linear-gradient(130deg, rgba(242,25,98,1) 0%, rgba(251,87,24,1) 100%);
    }

#hed_card .count-left p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 16px;
}

#hed_card .count-left h6 {
    font-size: 20px;
    color: #fff;
    /*color: #75E6DA;*/
}


#hed_card .count-left2 p {
    color: #fff;
    /*color: #103060;*/
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 16px;
}

#hed_card .count-left2 h6 {
    font-size: 20px;
    color: #fff;
 /*   color: #103060;*/
}

#hed_card .main-header h6 span {
    color: #a3a3a3
}

#hed_card .count-right {
    width: 35px;
    height: 35px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    flex: 0 0 35px;
}

    #hed_card .count-right i {
        line-height: 35px;
    }

#hed_card .count-box.box-1 .count-right i {
    background: linear-gradient(130deg, rgb(93, 36, 213) 0%, rgb(51, 98, 242) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hed_card .count-box.box-2 .count-right i {
    background: linear-gradient(130deg, rgba(245,133,89,1) 0%, rgba(248,163,47,1) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hed_card .count-box.box-3 .count-right i {
    background: linear-gradient(130deg, rgba(32,182,136,1) 0%, rgba(120,196,80,1) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hed_card .count-box.box-4 .count-right i {
    background: linear-gradient(130deg, rgba(242,25,98,1) 0%, rgba(251,87,24,1) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#main-bar .main-contant {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 4px #ddd;
    margin-bottom: 25px;
}

    #main-bar .main-contant.h-100 {
        height: calc(100vh - 320px) !important;
        overflow: hidden;
        overflow-y: auto;
        width: 100%;
    }

#main-bar .main-header {
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 20px;
}

    #main-bar .main-header h6 {
        color: #000;
        font-weight: 500;
        font-size: 17px;
    }

#main-bar .main-info {
    padding: 20px 0;
}

    #main-bar .main-info p {
        color: #a3a3a3;
        font-size: 15px;
    }

.date_box {
    display: flex;
    align-items: end;
    justify-content: start;
    margin-bottom: 30px;
}

    .date_box label {
        color: #a3a3a3;
        font-size: 15px;
    }

    .date_box .form-group {
        margin: 0;
        margin-right: 20px;
        max-width: 210px;
        flex: 0 0 210px;
        position: relative;
    }

        .date_box .form-group .date-icon i {
            color: #103060;
        }

.btn.btn-darkblue {
    background-color: #75E6DA;
    color: #103060;
    padding: 9px 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
    margin-top: 1em;
}

.btn.btn-blue {
    background-color: #103060;
    color: #fff;
    padding: 9px 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
    margin-top: 1em;
}

.date_box .form-group .date-icon {
    position: absolute;
    right: 10px;
    z-index: 1111;
    bottom: 10px;
}

.table-box {
    margin-top: 25px;
}

    .table-box.mx-700 {
        max-width: 700px;
    }

.table-bordered th {
    background-color: #e7eaef;
    color: #103060;
    font-weight: 500;
}

.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 1px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #a3a3a3;
}

#main-bar .main-header .form-group {
    margin: 0 !important;
}

.msg_box {
    padding-top: 20px;
}

.no_select .form-group .custom-select {
    width: auto;
}

.no_select .form-group {
    display: flex;
    align-items: center;
}

    .no_select .form-group label {
        margin-right: 15px;
        margin-bottom: 0;
        font-size: 15px;
        color: #a3a3a3;
    }

.numList {
    margin: 15px 0;
}

    .numList p {
        color: #a3a3a3;
        font-size: 15px;
        margin-bottom: 5px;
    }

    .numList ul {
        display: flex;
        flex-wrap: wrap;
    }

        .numList ul li {
            margin-right: 8px;
            position: relative;
            font-size: 15px;
        }

            .numList ul li::after {
                content: ",";
            }

            .numList ul li:last-child::after {
                display: none;
            }

.msg-text p img {
    max-width: 15px;
}

.msg-text p {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 14px;
    margin-left: 5px;
}



.justity-between {
    justify-content: space-between !important;
}

.align-center {
    align-items: center !important;
}



input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

#otp_number .dataTables_wrapper .dataTables_filter {
    float: none;
}

#example_filter label {
    position: relative;
    width: 100%;
    height: 40px;
    padding: 0;
    display: block;
}

#example_filter input {
    display: block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    margin: 0;
    height: 100%;
    padding-left: 15px;
    border-radius: 5px;
    border-color: #c1c1c1;
}

#otp_number table.dataTable thead th, #otp_number table.dataTable thead td {
    padding: 0;
    border: none;
}

#otp_number table.dataTable.no-footer {
    border-bottom: none;
}

#otp_number .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
    padding-top: .25em;
}

#otp_number table.dataTable.row-border tbody td, #otp_number table.dataTable.display tbody td {
    border-top: none;
}

#otp_number table.dataTable.stripe tbody tr.odd, #otp_number table.dataTable.display tbody tr.odd {
    background-color: transparent;
}

#otp_number table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
    background-color: transparent !important;
}

#otp_number .modal-content {
    padding: 20px;
}

#otp_number .modal-footer {
    border: none;
    padding-bottom: 0;
}

#otp_number .modal-header {
    padding: 0 0 1rem 0;
}

#otp_numberTitle {
    color: #103060;
    font-size: 18px;
}

#otp_number .modal-body {
    padding: 1rem 0;
}

#example_previous, #example_next {
    display: none;
}

#otp_number .dataTables_wrapper .dataTables_paginate .paginate_button.current, #otp_number .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #103060 !important;
    color: #fff !important;
    border-radius: 50px;
}


/*checkbox*/
.custom_chk {
    display: block;
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    padding-left: 32px;
    height: 22px;
    line-height: 22px;
    cursor: pointer;
}

    .custom_chk input {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        opacity: 0;
    }

.chk_checkmark {
    position: absolute;
    border: 1px solid #999 !important;
    width: 22px;
    height: 22px;
    left: 0px;
    top: 0px;
    border-radius: 3px;
}

    .chk_checkmark::after {
        left: 7px;
        top: 4px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
    }

.custom_chk input:checked ~ .chk_checkmark {
    background: #103060;
}

    .custom_chk input:checked ~ .chk_checkmark::after {
        content: "";
        display: block;
    }


#main-bar {
    padding-bottom: 60px;
}


.fc-view-container {
    border-radius: 5px;
    box-shadow: 0 0 4px #ddd;
    background: #fff;
    padding: 0;
}

.fc-day-header.fc-widget-header {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    padding: 6px 2px;
}

.fc-ltr .fc-basic-view .fc-day-number {
    text-align: center;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.fc-center h2 {
    color: #103060;
    font-size: 20px;
    border: none;
    padding: 0px;
}

.fc-unthemed .fc-today {
    background: #e7eaef;
}

.fc-event {
    border: 1px solid #103060;
    background-color: #103060;
}

.calendar_list_block {
    position: relative;
    width: 100%;
    height: 100%;
}

.calendar_list_boxs {
    padding: 0px;
    border-radius: 5px;
    box-shadow: 0 0 4px #ddd;
    background: #fff;
    height: calc(100% - 50px);
    position: absolute;
    width: 100%;
    top: 50px;
}

.calendar_list_hed {
    padding: 15px;
    padding-bottom: 5px;
}

    .calendar_list_hed h4 {
        color: #103060;
        font-size: 18px;
        border-bottom: 1px solid #c0c0c0;
        padding-bottom: 12px;
    }

.calendar_list_content {
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 0px 15px;
    padding-bottom: 10px;
}

.list_ele {
    border: 1px solid #c0c0c0;
    padding: 12px 15px;
    border-radius: 10px;
    margin: 12px 0;
}

    .list_ele p {
        margin: 0px;
        font-size: 15px;
        color: #000;
    }


#sidebar .menu_heades {
    display: none;
}

    #sidebar .menu_heades .user-data {
        display: flex;
        align-items: center;
    }

        #sidebar .menu_heades .user-data .users_icos {
            width: 50px;
            height: 50px;
            background: #f4f7fc;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            margin-right: 10px;
            flex: 0 0 50px;
        }

        #sidebar .menu_heades .user-data .user-info h6 {
            color: #fff;
            font-size: 16px;
        }

        #sidebar .menu_heades .user-data .user-info p {
            margin: 0;
            color: #fff;
            font-size: 14px;
        }






textarea.form-control {
    height: 170px !important;
}

.table-bordered td, .table-bordered th {
    vertical-align: middle;
}




table .action_button ul {
    display: flex;
    align-items: center;
    margin: 0px -7px;
}

    table .action_button ul li {
        padding: 0px 7px;
        flex: 0 0 44px;
    }

        table .action_button ul li .btn.btn_ac {
            width: 30px;
            height: 30px;
            background: gray;
            padding: 0px;
            /* text-align: center !important; */
            color: #fff !important;
            font-size: 15px;
            text-align: center;
            line-height: 27px;
        }

        table .action_button ul li .btn.btn_ac_yellow {
            width: 30px;
            height: 30px;
            background: goldenrod;
            padding: 0px;
            /* text-align: center !important; */
            color: #fff !important;
            font-size: 15px;
            text-align: center;
            line-height: 27px;
        }

        table .action_button ul li .btn.btn_ac_view {
            width: 30px;
            height: 30px;
            background: blue;
            padding: 0px;
            /* text-align: center !important; */
            color: #fff !important;
            font-size: 15px;
            text-align: center;
            line-height: 27px;
        }

        table .action_button ul li .btn.btn_ac_edit {
            width: 30px;
            height: 30px;
            background: green;
            padding: 0px;
            /* text-align: center !important; */
            color: #fff !important;
            font-size: 15px;
            text-align: center;
            line-height: 27px;
        }

        table .action_button ul li .btn.btn_ac_delete {
            width: 30px;
            height: 30px;
            background: red;
            padding: 0px;
            /* text-align: center !important; */
            color: #fff !important;
            font-size: 15px;
            text-align: center;
            line-height: 27px;
        }

.toggle_menus {
    position: relative;
}

    .toggle_menus ol.sub_menus {
        display: none;
        position: absolute;
        width: 170px;
        right: 0px;
        background: #fff;
        padding: 0px;
        margin: 0px;
        top: 33px;
        box-shadow: 0 0 4px #ccc;
        z-index: 11;
        border-radius: 5px;
    }

        .toggle_menus ol.sub_menus li {
            padding: 9px 12px;
            border-bottom: 1px solid #cccc;
        }

            .toggle_menus ol.sub_menus li:last-child {
                border-bottom: none;
            }

            .toggle_menus ol.sub_menus li a {
                color: #000 !important;
                font-size: 16px !important;
            }

    .toggle_menus i.btns {
        font-size: 17px !important;
        color: #fff;
        display: block;
        padding-left: 11px;
        line-height: 10px;
        cursor: pointer;
    }

    .toggle_menus.show ol.sub_menus {
        display: block !important;
    }

    .toggle_menus ol.sub_menus::before {
        content: '\f0d8';
        display: block;
        width: 15px;
        height: 15px;
        top: -27px;
        position: absolute;
        z-index: -1;
        font-family: fontawesome;
        color: #fff;
        font-size: 30px;
        right: 15px;
    }

.table_img img {
    max-width: 130px;
    max-height: 120px;
    display: block;
}


.datatable_boxs .dataTables_filter {
    margin: 20px 0;
    display: block;
}

.datatable_boxs .dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 50% !important;
    border: 1px solid #ccc !important;
    background: #fff !important;
    padding: 0px !important;
    width: 35px;
    height: 35px;
    font-size: 15px !important;
    line-height: 32px;
    margin: 0px 5px !important;
    opacity: 1 !important;
}

    .datatable_boxs .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        background: #103060 !important;
        color: #fff !important;
    }

    .datatable_boxs .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
    .datatable_boxs .dataTables_wrapper .dataTables_paginate .paginate_button.next {
        width: 80px !important;
        border-radius: 5px !important;
        background: #103060 !important;
        color: #fff !important;
    }

.datatable_boxs .paging_simple_numbers {
    padding: 0px;
    display: block;
    text-align: center;
    margin: 0 auto;
    float: none;
    margin-top: 20px;
}

.main-header {
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #ccc !important;
    padding: 8px 10px !important;
    font-size: 15px !important;
    font-weight: 400;
}

table.dataTable thead .sorting {
    padding-right: 20px;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #ccc !important;
}

.datatable_boxs table.dataTable thead th,
.datatable_boxs table.dataTable thead td {
    border-bottom: 1px solid #ccc;
}

.datatable_boxs table.dataTable.no-footer {
    border-bottom: 1px solid #ccc;
}

.table {
    border-spacing: 0 !important;
    border-collapse: collapse !important;
}


.select2-container--default .select2-selection {
    border: 1px solid #c1c1c1 !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 8px 18px 8px 11px;
    height: auto !important;
    color: #333;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
    position: absolute;
    top: 1px;
    right: 4px;
    width: 20px;
}

.ui-widget.ui-widget-content li {
    padding: 3px 15px;
    font-size: 16px;
    font-weight: 400;
}

.select2-container--default .select2-selection.select2-selection--multiple {
    padding: 5px 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #103060;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
    color: #fff !important;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 6px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #103060;
    color: white;
}

.chkbox_lines {
    margin: 0px -15px;
}

    .chkbox_lines li {
        padding: 0 15px;
        padding-bottom: 15px;
    }

.custom_chk.rdo .chk_checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 2px;
    background: transparent !important;
}

    .custom_chk.rdo .chk_checkmark::after {
        width: 12px;
        height: 12px;
        border: none !important;
        background: #103060;
        border-radius: 50px;
        left: 3px;
        top: 3px;
        display: block;
    }


.switch {
    position: relative;
    display: -webkit-box;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider.round {
    border-radius: 34px;
    position: relative;
    cursor: pointer;
    width: 43px;
    height: 24px;
    border: none !important;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: #999 !important;
}

.switch .title {
    position: relative;
    margin-left: 10px;
    font-size: 16px;
    color: #000;
    line-height: 24px;
}

.slider.round::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 2px;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    cursor: pointer;
}

input:checked + .slider.round {
    background-color: #103060 !important;
    border: none !important;
}

    input:checked + .slider.round::before {
        background: #ffffff;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        left: auto !important;
        right: 5px !important;
    }

.chkbox_lines {
    margin: 0px -15px;
    flex-wrap: wrap;
}

.btn.btn-gray {
    border: none !important;
    background: gray;
    color: #fff;
    padding: 9px 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
    margin-top: 1em;
}


.btn {
    color: #fff;
    padding: 9px 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
    margin-top: 1em;
}



.file_upload_box {
    width: 120px;
    height: 120px;
    display: block;
    margin: 30px auto 20px auto;
    position: relative;
}

    .file_upload_box .upload_btn {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        overflow: hidden;
        opacity: 0;
        cursor: pointer;
        overflow: hidden;
        border-radius: 50%;
    }

        .file_upload_box .upload_btn input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

    .file_upload_box .edit_btn img {
        width: auto;
        height: 15px;
        margin-top: 4px;
    }

    .file_upload_box .selected_img {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 50%;
        z-index: 2;
        background: #ccc;
    }

    .file_upload_box .upload_content {
        background: rgba(223, 231, 235, 0.3);
        border: 1px dashed rgba(16, 53, 102, 0.3);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0px;
        border-radius: 50%;
        overflow: hidden;
        z-index: 1;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .file_upload_box .upload_content img {
            width: 20px;
        }

        .file_upload_box .upload_content p {
            font-size: 14px;
            line-height: 16px;
            color: #103060;
            margin: 0px;
            padding-top: 8px;
        }

.selected .edit_btn.delete {
    position: relative;
    z-index: 2;
}

.file_upload_box.selected .upload_btn {
    height: 34px;
    width: 34px;
    background: #0070E0;
    border: 2px solid #FFFFFF;
    opacity: 1;
    bottom: 0px;
    top: auto;
    right: 0px;
    left: auto;
    text-align: center;
}

.file_upload_box .selected_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
    max-width: 150px;
}

.form-group.inputs_icons {
    position: relative;
}

    .form-group.inputs_icons .icons {
        position: absolute;
        top: 46px;
        right: 12px;
        width: auto;
        height: 24px;
        z-index: 1;
    }

    .form-group.inputs_icons button {
        position: absolute;
        width: 100%;
        max-width: 100%;
        margin: 0px !important;
        padding: 0px !important;
        right: 0px !important;
        top: 26px;
        transform: translate(-0%,-0%) !important;
        height: 50px;
        overflow: hidden;
        z-index: 3;
        opacity: 0;
        cursor: pointer;
    }

.form-outline .form-control ~ .form-notch {
    display: none;
}

.form-outline .form-control {
    border: 1px solid #c1c1c1 !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 10px 15px;
    height: auto !important;
    color: #333;
}

.datepicker-clear-btn {
    margin-right: 0;
}

.datepicker-footer, .datepicker-yearview-content {
    justify-content: space-between !important;
}


.timepicker-wrapper {
    z-index: 11111 !important;
    background-color: rgba(0,0,0,0.6) !important;
}

.datepicker-backdrop {
    z-index: 11111 !important;
    background-color: rgba(0,0,0,0.6) !important;
}

.datepicker-dropdown-container, .datepicker-modal-container {
    z-index: 11111 !important;
}

#pageloder {
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11111111111111;
}

#page_wapper #pageloder {
    max-width: 100%;
    margin: 0 auto;
}

#pageloder .pageloder_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    transform: translate(-50%, -50%);
}

    #pageloder .pageloder_box img {
        animation: rotate 2s linear infinite;
        -webkit-animation: rotate 2s linear infinite;
        width: 100%;
        display: block;
    }

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}








:root {
    --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --msger-bg: #fff;
    --border: 1px solid #e7eaef;
    --left-msg-bg: #ececec;
    --right-msg-bg: #103060;
}

#message_view.msger {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    border: var(--border);
}

#message_view .msger-header {
    display: flex;
    padding: 10px;
    border-bottom: var(--border);
    background: #e7eaef;
    color: #666;
    align-items: center;
}

#message_view .msger-chat {
    padding: 10px;
    width: 100%;
    height: calc(100vh - 281px) !important;
    min-height: 300px;
    display: block !important;
    overflow: hidden;
    position: relative;
    overflow-y: auto;
}

    #message_view .msger-chat::-webkit-scrollbar {
        width: 6px;
    }

    #message_view .msger-chat::-webkit-scrollbar-track {
        background: #ddd;
    }

    #message_view .msger-chat::-webkit-scrollbar-thumb {
        background: #bdbdbd;
    }

#message_view .msg {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

    #message_view .msg:last-of-type {
        margin: 0;
    }

#message_view .msg-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 1px solid #ccc;
}

#message_view .msg-bubble {
    max-width: 45%;
    padding: 15px;
    border-radius: 15px;
    background: var(--left-msg-bg);
    position: relative;
}

#message_view .msg-info {
    display: block;
    margin-bottom: 10px;
    position: relative;
    min-width: 120px;
}

#message_view .msg-info-name {
    margin-right: 0;
    font-weight: bold;
    padding-top: 2px;
}

#message_view .msg-info-time {
    font-size: 0.85em;
    white-space: nowrap !important;
}

#message_view .left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

#message_view .right-msg {
    flex-direction: row-reverse;
}

    #message_view .right-msg .msg-bubble {
        background: var(--right-msg-bg);
        color: #fff;
        border-bottom-right-radius: 0;
    }

    #message_view .right-msg .msg-img {
        margin: 0 0 0 10px;
    }

#message_view .msger-chat {
    background-color: #fcfcfe;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23dddddd' fill-opacity='0.4'%3E%3Cpath d='M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z'/%3E%3Cpath id='path6_fill-copy' d='M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z'/%3E%3Cpath d='M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z'/%3E%3Cpath d='M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z'/%3E%3Cpath d='M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z'/%3E%3Cpath d='M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z'/%3E%3Cpath d='M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#message_view .msger-inputarea {
    background: #e7eaef;
    padding: 10px;
}

    #message_view .msger-inputarea ul {
        display: flex;
        align-items: center;
        margin: 0px -10px;
    }

        #message_view .msger-inputarea ul li {
            flex: 0 0 auto;
            padding: 0 10px;
        }

            #message_view .msger-inputarea ul li.msg_input {
                -webkit-box-flex: 1;
                -ms-flex: 1 1 auto;
                flex: 1 1 auto;
                width: 1%;
                margin-bottom: 0;
            }

#message_view .day_box {
    display: block;
    text-align: center;
}

    #message_view .day_box p {
        background: #e7eaef;
        width: auto;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 15px;
        margin: 15px 0;
    }

#message_view .text-green {
    display: block;
    color: green;
    font-size: 13px;
    line-height: 10px;
    position: absolute;
    right: 10px;
    bottom: 6px;
}

#message_view .text-red {
    display: block;
    color: red;
    font-size: 13px;
    line-height: 10px;
    position: absolute;
    right: 10px;
    bottom: 6px;
}

#message_view .msg-info-time {
    font-size: 0.85em;
    white-space: nowrap !important;
    position: absolute;
    top: -14px;
    right: -1px;
    font-size: 12px;
}

#message_view .msger-header-title {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

#message_view .msg-info-name {
    font-size: 16px;
}

#message_view .msg-text {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 2px;
}

#message_view .msger-chat table {
    margin: 0px;
    padding: 0px;
    border: none;
}

    #message_view .msger-chat table td {
        padding: 5px 0px;
        border: none;
    }


#msg_views .msg-img {
    width: 50px;
    height: 50px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 1px solid #ccc;
}

#msg_views .number_list table {
    margin: 0px;
    padding: 0px;
    border: none;
}

    #msg_views .number_list table td {
        padding: 5px 0px;
        border: none;
        align-items: center;
    }

        #msg_views .number_list table td ul {
            display: flex;
            align-items: center;
        }

            #msg_views .number_list table td ul li:first-child {
                flex: 0 0 60px;
                max-width: 60px;
            }

        #msg_views .number_list table td p {
            margin: 0px;
        }

        #msg_views .number_list table td:last-child {
            text-align: center;
            width: 65px;
        }

        #msg_views .number_list table td .time_date {
            display: block;
            color: green;
            font-size: 14px;
            font-weight: 600;
        }

        #msg_views .number_list table td .count {
            display: block;
            text-align: center;
            background: green;
            font-size: 14px;
            font-weight: 600;
            width: 28px;
            height: 28px;
            line-height: 28px;
            border-radius: 50%;
            color: #fff;
            margin: 0 auto;
            margin-top: 4px;
        }

    #msg_views .number_list table tr, #msg_views .number_list table td, #msg_views .number_list table p, #msg_views .number_list table tr span {
        cursor: pointer;
    }

        #msg_views .number_list table td .time_date.gray {
            color: gray !important;
        }

#msg_views {
    display: flex;
}

    #msg_views .left_panle {
        display: block !important;
        margin: 30px 0;
        border: var(--border);
        background: #fff;
        flex: 0 0 350px;
        max-width: 350px;
        padding: 0;
        position: relative;
    }

        #msg_views .left_panle .number_list {
            display: block;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            position: absolute;
            padding: 10px;
        }

    #msg_views .number_list table td p.name {
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 700;
    }

#message_view .msger-header-title p {
    margin: 0px;
    line-height: 20px;
}

    #message_view .msger-header-title p.name {
        font-weight: 600;
    }

#message_view .back_button {
    display: none;
    cursor: pointer;
}

    #message_view .back_button i {
        color: #000 !important;
        display: block;
        position: relative;
        font-size: 20px;
        margin-right: 5px;
        cursor: pointer;
    }

#nav ul li.show ul.submenu-drop {
    display: block !important;
}

#nav ul li.submenu.active ul.submenu-drop {
    display: block !important;
}

.fc .fc-button-group .fc-button {
    margin-left: 0;
    text-transform: capitalize;
}

.form-group.inputs_icons .icons {
    top: 43px;
    z-index: 2;
}

.form-group.inputs_icons.form-outline.timepicker input, .form-group.inputs_icons.form-outline.datepicker input {
    z-index: 1;
}

.modal-footer .btn.btn-default {
    background: #103060 !important;
    color: #fff !important;
}

.btn.btn-outline-secondary.border-left-0 {
    top: 0;
    height: 45px;
    z-index: 3;
    background: transparent !important;
}

.gj-icon.chevron-right::before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f054" !important;
    font-size: 15px !important;
}

.gj-icon.chevron-left::before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f053" !important;
    font-size: 15px !important;
}

#sidebar {
    height: calc(100vh - 80px) !important;
}

#message_view .msg-info-name {
    word-break: break-all;
}

#message_view .msg-text {
    word-break: break-all;
}


@media (max-width: 1190px) {
    #sidebar {
        top: 0;
        width: 300px;
        height: 100vh !important;
    }
}

@media (max-width: 992px) {
    .dtr-control.sorting_1 {
        padding-left: 40px !important;
    }
}

@media (max-width: 992px) {
    .dtr-control.sorting_1 {
        padding-left: 40px !important;
    }

    .modal-dialog.modal-confirm .dtr-control.sorting_1 {
        padding-left: 10px !important;
    }

    .modal-dialog.modal-confirm .datatable_boxs .paging_simple_numbers {
        margin: 0 -10px;
        margin-top: 20px;
    }
}


.modal-dialog.modal-confirm {
    max-width: 600px;
    width: 100%;
}

    .modal-dialog.modal-confirm .datatable_boxs .dataTables_filter {
        margin: 0;
        display: block;
        margin-bottom: 20px;
    }

    .modal-dialog.modal-confirm .datatable_boxs .dataTables_info {
        clear: both;
        float: none !important;
        padding-top: 15px;
        text-align: center;
    }

    .modal-dialog.modal-confirm .datatable_boxs .dataTables_filter::after {
        content: "";
        display: block;
        clear: both;
    }

/*  password container*/

.pwordContainer {
    position: relative;
}

    .pwordContainer .fail {
        color: red;
    }

    .pwordContainer .pass {
        color: green;
    }

    .pwordContainer .mainHR {
        width: 150px;
        padding: 0;
        margin: 0;
        border: 3px solid #228848;
        margin-bottom: 16px;
    }

    .pwordContainer .checkmark {
        color: green;
        padding-left: 8px;
        display: none;
    }

    .pwordContainer .pwordContainer {
        margin-bottom: 8px;
        position: relative;
        width: 450px;
    }

    .pwordContainer .tooltips h4 {
        margin: 0px;
        padding: 0px;
        margin-bottom: 5px;
    }

    .pwordContainer .tooltips span {
        font-weight: 700;
    }

    .pwordContainer .pwordHeader {
        margin: 0px;
        padding: 0px;
        margin-bottom: 6px;
    }

    .pwordContainer .tooltips div,
    .pwordContainer .tooltips span {
        font-size: 15px;
        margin: 0;
        padding: 0;
        line-height: 20px;
    }

    .pwordContainer .tooltips {
        color: #fff;
        background-color: #333;
        position: absolute;
        top: 52px;
        left: 0;
        z-index: 5;
        border: 1px solid gray;
        padding: 10px 12px;
        display: none;
        -webkit-box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.29);
        -moz-box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.29);
        box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.29);
    }

        .pwordContainer .tooltips::after {
            top: -16px;
            left: 50%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255,255,255,0);
            border-right-color: #333;
            border-width: 8px;
            transform: translate(-50%, 0) rotate(90deg);
        }

        .pwordContainer .tooltips hr {
            border-color: #fff !important;
            margin: 10px 0;
        }

    .pwordContainer .alltogCont {
        margin-top: 10px;
    }

    .pwordContainer .instructions {
        margin-top: 10px;
        font-style: italic;
        font-size: 12px;
    }

.form-group .note {
    font-size: 13px;
    line-height: 15px;
    margin-top: 5px;
    color: #000;
}

.field-validation-error {
    color: red;
}


/*Bhoutik 28-06-2022*/
#sidebar .menu_heades .user-data .users_icos {
    display: none;
}

#header .user-data .users_icos {
    display: none;
}

#sidebar .menu_heades .user-data .user-info h6 {
    word-break: break-all;
}

.error {
    color: red;
}

.labelShow {
    font-weight: bold;
}
