﻿@charset "UTF-8";

/* ****************************common_css_start***************************** */

html {
    scroll-behavior: smooth;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*a,
a:hover {
    text-decoration: none;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}*/

.d_flex {
    display: flex;
}

.flex_Equal {
    justify-content: space-between;
}

.flex_Center {
    justify-content: center;
}

.flex_Start {
    justify-content: flex-start;
}

.flex_End {
    justify-content: flex-end;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_Middel {
    align-items: center;
}

.flex_column {
    flex-direction: column;
}

.flex::after,
.flex::before {
    display: none !important;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_800 {
    font-weight: 800;
}

.fw_900 {
    font-weight: 900;
}

.fw_normal {
    font-weight: normal;
}

.d_none {
    display: none;
}

.d_inline_block {
    display: block;
}

.d_block {
    display: block;
}

.text_center {
    text-align: center;
}

.text_left {
    text-align: left;
}

.text_right {
    text-align: right;
}

.m_auto {
    margin: 0 auto;
}

.ml_auto {
    margin-left: auto;
}

.mt_15 {
    margin-top: 15px;
}

.mt_10 {
    margin-top: 10px;
}

.text_left {
    text-align: left;
}

.mr_27 {
    margin-right: 27px;
}

.mb_15 {
    margin-bottom: 15px;
}

.ml_10 {
    margin-left: 10px;
}

.ml_15 {
    margin-left: 15px;
}


.ml_0 {
    margin-left: 0px;
}

.pt_15 {
    padding-top: 15px;
}

.border_top {
    border-top: 1px solid #ddd;
}

.w_100 {
    width: 100%;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.pl_15 {
    padding-left: 15px;
}

.pl_7 {
    padding-left: 7px;
}

.pl_60 {
    padding-left: 60px;
}

.h_100 {
    height: 100%;
}

.mx_width300 {
    width: 100%;
    max-width: 300px;
}

.text_dark {
    color: #535353;
}

.text_light {
    color: #fff;
}

.text_indent_30 {
    padding-left: 30px;
}

.text_indent_40 {
    padding-left: 40px;
}

.text_indent_50 {
    padding-left: 50px;
}

.text_indent_60 {
    padding-left: 60px;
}

.font_style_normal {
    font-style: normal !important;
}

.font_style_it {
    font-style: italic !important;
}

.text_indent_70 {
    padding-left: 70px;
}

.border_none {
    border: none;
}

.background_none {
    background-color: transparent !important;
}

.panel_close_btn {
    font-size: 18px;
    color: #015aa0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
}

.m_auto {
    margin: 0 auto;
}

.rotate_45 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.max_450 {
    max-width: 450px;
}



.form_group {
    margin-bottom: 15px;
}

    .form_group label {
        margin: 0px;
        display: block;
        max-width: 100%;
        margin-bottom: 5px;
        font-weight: 600 !important;
        color: #262626;
    }

.h_70 {
    height: 70px !important;
}

.form_control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

    .form_control:focus {
        outline: none;
        box-shadow: none;
    }

.form_control_span {
    background-color: #eaf6ff;
}

.form_control[disabled] {
    background-color: #eee;
    opacity: 1;
    cursor: not-allowed;
}
.main_cs_modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.Modal_panel_def {
    background-color: #fff;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.Main_Panel_default {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

    .Main_Panel_default:hover {
        box-shadow: none !important;
    }

.Main_Panel {
    background-color: #fff;
    margin-bottom: 20px;
}

.Notifaction_body {
    background: #ffffff;
    width: 100%;
    height: 366px;
    overflow: auto;
}

.Notifaction_body .NotificationCard {
  background: #fff;
  padding: 10px;
  border-radius:10px;
  display: flex;
  margin:10px;
  position:relative;
  box-shadow: 0px 0px 10px 0px #00000030;
}

.Notifaction_body .NotificationCard .Notification_Icons {
    width: 40px;
    height:100%;
}
.Notifaction_body .NotificationCard .Notification_Icons span {
    background: #efefef;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.Notifaction_body .NotificationCard .Notification_Icons span i{
    color: #006dc3;
    font-size:16px;
}
.Notification_Details {
    text-align: left;
    width: calc(100% - 45px);
}
  
.Notifaction_body .NotificationCard .Notification_Details .clsTeamReq h4 {
    font-size: 12px;
    font-weight: 600;
    height: 20px;
    margin: 0;
    color: #000;
    overflow: hidden;
    line-height: 24px;
    margin-bottom: 4px;
}

.Notifaction_body .NotificationCard .Notification_Details .clsTeamReq .noft_dat {
    font-size: 10px;
    margin-top:0;
    font-weight: 600;
    top: 1px;
    color:#535353;
    position: absolute;
    right: 9px;
    background: #fff;
}

.Notifaction_body .NotificationCard .Notification_Details .clsTeamReq .noft_name {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 1px;
    color: #535353;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 4.5em;
    line-height: 1.5em;
}

.Notifaction_body .NotificationCard .Notification_Details .NotiFicationAction {
 
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}

  .Notifaction_body::-webkit-scrollbar {
        width: 5px;
    }

    .Notifaction_body::-webkit-scrollbar-track {
        background: #dbdbdb;
    }

    .Notifaction_body::-webkit-scrollbar-thumb {
            background: #0571c7;
    }

.Panel_heading {
    background: #ebeef7 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    font-family: Roboto,sans-serif;
    color: var(--headingcolor);
    padding: 12px 18px !important;
}

.panel_footer {
    background-color: #f1f1f1;
    border-top: 1px solid #efefef;
    padding: 10px 15px;
    margin-bottom: 0;
}

.Panel_title {
    font-weight: 500;
    line-height: 1.2;
    color: #104f93;
    font-size: 17px;
    font-family: 'Roboto',sans-serif;
}
.fw_600 {
    font-weight: 500;
}
.gray_background {
        background-color: #ebebeb !important;
        
}

.border_top_blue{
    border-top: 2px solid #006dc3;
}

.Panel_body {
    padding: 15px;
    margin: 0;
}

.Panel_btn {
    color: #fff;
    border: 1px solid #3075BA;
    background-color: #3075BA;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    transform: 0.5s ease-in-out;
    -webkit-transform: 0.5s ease-in-out;
    -moz-transform: 0.5s ease-in-out;
    -ms-transform: 0.5s ease-in-out;
    -o-transform: 0.5s ease-in-out;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

    .Panel_btn:hover {
        color: #3075BA;
        background-color: #fff;
        transform: 0.5s ease-in-out;
        -webkit-transform: 0.5s ease-in-out;
        -moz-transform: 0.5s ease-in-out;
        -ms-transform: 0.5s ease-in-out;
        -o-transform: 0.5s ease-in-out;
    }

.Panel_btn_help {
    color: #015aa0;
    border: 1px solid #3075BA;
    background-color: #ffffff;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-style: italic !important;
}


    .Panel_btn_help:hover {
        color: #fff;
        background-color: #3075BA;
        transition: 0.5s ease-in-out;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -ms-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
    }

.Panel_width {
    width: 32.50%;
}

.td_space_remove table tr td {
    padding: 6px 3px;
}

.table_responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

.main_table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: separate;
    margin: 0px !important;
    border-spacing: 0;
}

    /*.main_table tr {
        background-color: #fff;
    }

    .main_table table tr th {
        padding: 10px 8px;
        border-bottom: 1px solid #efefef;
        background-color: #3075ba0d !important;
        font-size: 14px;
        font-weight: 600;
        color: #4d4d4d !important;
        position: unset !important;
    }

    .main_table tr td {
        padding: 10px 8px;
        border-bottom: 1px solid #efefef;
        color: #989898;
        background-color: #fff !important;
    }*/

.w_500 {
    width: 500px;
}

.wid_125 {
    width: 100px;
}

.auto_width {
    width: calc(100% - 100px);
}

.border {
    border: 1px solid #ddd;
}

.panel_space {
    padding: 20px 15px;
}

.col_pr7 {
    padding-right: 7px;
}

.col_pl7 {
    padding-left: 7px;
}

.p_0 {
    padding: 0px;
}

.mr_10 {
    margin-right: 10px;
}

.side_Modal_Body {
    height: calc(100vh - 65px);
    overflow: auto;
}

.py_0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.py_0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.py_15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py_8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.px_15 {
    padding-left: 15px;
    padding-right: 15px;
}

.Model_header {
    background-color: #005ca117;
    border-bottom: 1px solid #efefef;
    padding: 7px 15px;
    margin-bottom: 2px;
}

.mb_0 {
    margin-bottom: 0px;
}

.panel_filter_width_auto select {
    width: 210px;
}

.panel_filter_width {
    width: 120px;
}

.orange_clr {
    background-color: #ffa500;
}

.blue_clr {
    background-color: #1967d2;
}

.green_clr {
    background-color: #3fff00;
}

.red_clr {
    background-color: #ff0000;
}

.Pending {
    color: #808080;
}

.onging {
    color: #ffa500;
}

.In_process {
    color: #1967d2;
}

.Completed {
    color: #3fff00;
}

.Closed {
    color: #ff0000 !important;
}

.position_relative {
    position: relative;
}

.mr_0 {
    margin-right:0 !important;
}


.noti_header_bg{
    background-color:#f1f1f1 !important;
}

/* ****************************common_css_end***************************** */


/* ****************************ESS_TASK_SETTING_PAGE_CSS_START***************************** */

.main_setting_page {
    width: 100%;
    position: relative;
    padding: 15px 0;
    height: auto;
    background: transparent !important;
}

.Panel_top_fixed_btn{
    margin-bottom:30px;
}

.task_checkbox input[type="checkbox"]:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.task_checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    margin: auto;
    cursor: pointer;
    outline: none;
}

.task_checkbox input {
    height: 10px;
    width: 30px;
    background-color: #ddd;
    transform: skewX(0deg);
    transition: 0.3s;
    border-radius: 30px;
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    -ms-transform: skewX(0deg);
    -o-transform: skewX(0deg);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

    .task_checkbox input:before {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        background-color: #a6a4a4;
        top: -3px;
        left: -1px;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
    }

    .task_checkbox input:checked {
        background-color: #54ae54;
    }

.cs_checkbox span.checked,
.task_checkbox span.checked {
    margin-left: 10px;
}

.cs_checkbox span.unchecked,
.task_checkbox span.unchecked {
    margin-right: 10px;
    color: #ccc;
}

.cs_checkbox span.mr_remove input {
    margin-right: 0px !important;
}

.task_checkbox input:checked:before {
    content: "";
    left: 15px;
    background: #cfedcf;
}

.cs_checkbox input[type="checkbox"]:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.cs_checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    margin: auto;
    cursor: pointer;
    outline: none;
}

.cs_checkbox input {
    width: 48px;
    height: 24px;
    background-color: transparent;
    border: 2px solid #dbdfea;
    margin: 0;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font: 500 12px 'Roboto',sans-serif;
    border-radius: 15px;
}

    .cs_checkbox input:before {
        left: 2px;
        top: 2px;
        box-shadow: none;
        background: #dbdfea;
        border-color: #dbdfea;
        transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        width: 15px;
        height: 15px;
        content: "";
        position: absolute;
        display: inline-block;
        background-color: #f1f1f1;
        border-radius: 21px;
    }

    .cs_checkbox input:checked {
        background-color: #0a3b7e;
    }

    .cs_checkbox input:disabled {
        opacity: 0.2;
    }

    .cs_checkbox input:checked:before {
        background-color: #fff;
        left: inherit;
        right: 2px;
        top: 2px;
    }

.last_col .employeeSettingPage {
    padding: 5px;
    border-left: 0px solid gainsboro;
    height: 75px;
    overflow: auto;
    display: flex;
    margin: auto;
    padding-top: 0;
    width: auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .last_col .employeeSettingPage .clstasksetting {
        display: inline-block;
        width: auto;
        margin: 4px;
        font-size: 14px;
        border-radius: 10px;
        border: 1px dashed #5F95CD;
        background: #F4F9FF;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        color: #5F95CD;
    }

    .last_col .employeeSettingPage::-webkit-scrollbar {
        width: 5px;
    }

    .last_col .employeeSettingPage::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .last_col .employeeSettingPage::-webkit-scrollbar-thumb {
        background: #888;
    }

        .last_col .employeeSettingPage::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.last_tr_td {
    width: 170px;
}

.cs_checkbox table tr td {
    border: none;
}

.fixed {
    position: relative;
    width: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -o-transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}


.max_width {
    width: 100%;
}

.note_tag {
    font-weight: 500;
    color: #ed3131;
    display: flex;
}

#module_setting.active_tr table tr th {
    background: #c5eafe !important;
    color: #3075BA !important;
}

#module_setting table tr th {
    background: #fff !important;
    color: #104f93 !important;
}

    #module_setting table tr th:nth-child(3) {
        padding-left: 4%;
    }

.main_table.table-responsive.td_space_remove table tr td label {
    margin-left: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: unset !important;
    border: none;
    color: #535353;
    font-weight: 400 !important;
}

.full_grid_table tr > td:nth-child(2),
.full_grid_table tr td:nth-child(4) {
    background-color: #fff !important;
}

.full_grid_table tr > td:nth-child(1),
.full_grid_table tr > td:nth-child(3) {
    background-color: #fff !important;
}


.full_grid_table tr td .cs_checkbox_new table tr td {
    background-color: #fff !important;
    border: none !important;
    padding: 5px 7px;
}


.squer_check .switch_4 input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.squer_check .switch_4 label {
    position: relative;
    cursor: pointer;
}

    .squer_check .switch_4 label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 2px solid #0079bf;
        box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
        padding: 8px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 5px;
    }

.squer_check .switch_4 input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 11px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.rh_note {
    font-size: 12px;
    margin-top: 10px;
    font-weight: 400;
    text-align: left;
}

.cs_checkbox_new table tr td .checkbox-custom-label {
    display: inline-flex;
    position: relative;
    margin: 5px;
    cursor: pointer;
    border-radius: 99em;
}

    .cs_checkbox_new table tr td .checkbox-custom-label input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

.cs_checkbox_new table tr td label {
    display: inline-flex;
    align-items: center;
    padding: 2px 12px;
    font-size: 13px;
    line-height: 24px;
    color: rgb(255 255 255);
    background-color: rgb(166 166 166);
    font-weight: 500 !important;
    cursor: pointer;
    border: 1px solid rgb(166 166 166);
    margin: 0;
}

.cs_checkbox_new table tr td .checkbox-custom-label:hover label {
    background-color: rgba(0, 0, 0, 0.1);
}

.cs_checkbox_new table tr td .checkbox-custom-label input:checked ~ label {
    background-color: rgb(221 238 247);
    border: 1px solid #75c2ff;
    color: #535353;
}


    .cs_checkbox_new table tr td .checkbox-custom-label input:checked ~ label::before {
        position: absolute;
        content: "\f00c";
        font-family: FontAwesome;
        left: -6px;
        top: -5px;
        font-size: 8px;
        color: #fff;
        background: #66c0f3;
        padding: 0;
        width: 15px;
        height: 15px;
        line-height: 15px;
        border-radius: 50%;
        text-align: center;
    }

/* ****************************ESS_TASK_SETTING_PAGE_CSS_END***************************** */


/* ****************************ESS_TASK_SETTING_PAGE_HELP_CSS_START***************************** */

.help_css .panelTitle h4 {
    margin: 0px;
}

.help_css .btnCollaps {
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.help_css .collapseBodyHide {
    display: none;
}

.help_css .textHeading {
    width: 100%;
    position: relative;
    border-bottom: solid 1px #045aa0;
    height: 32px;
    margin: 10px 0px;
}

    .help_css .textHeading::before {
        position: absolute;
        content: attr(data-attr);
        bottom: 0px;
        left: 0px;
        background: #045aa0;
        border-radius: 0px 10px 0px 0px;
        color: #fff;
        padding: 5px;
    }

.help_css ul.DottedUl {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

    .help_css ul.DottedUl li span {
        display: inline-block;
    }

.help_css ul.desUl {
    list-style: circle;
}

.help_css ul.desUl,
.help_css ol.subDottedUl {
    padding-left: 20px !important;
    margin-top: 10px;
}

    .help_css ul.desUl li p {
        font-style: italic;
    }

.help_css .themeColors {
    color: #045aa0;
}

acc {
    margin: 0 auto;
    max-width: 800px;
}

.acc__card {
    margin: 10px 0;
    position: relative;
}

.acc__title {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    color: #212121;
    cursor: pointer;
    display: block;
    padding: 1em 1.5em;
    position: relative;
    text-align: left;
}

    .acc__title::after {
        width: 8px;
        height: 8px;
        border-right: 1px solid #4a6e78;
        border-bottom: 1px solid #4a6e78;
        position: absolute;
        right: 10px;
        content: " ";
        top: 17px;
        transform: rotate(-45deg);
        transition: all 0.2s ease-in-out;
    }

    .acc__title.active::after {
        transform: rotate(45deg);
        transition: all 0.2s ease-in-out;
    }

.acc__panel {
    background: #fff;
    color: #212121;
    display: none;
    margin: 0;
    padding: 2em;
    text-align: left;
}

/* ****************************ESS_TASK_SETTING_PAGE_HELP_CSS_END***************************** */


/* ****************************ESS_TASK_DASHBOARD_PAGE_CSS_START***************************** */

.task_title {
    font-size: 12px;
    color: #535353;
    font-weight: 500;
}

.task_tag {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    border-radius: 3px;
    padding: 2px 3px;
    margin-left: 5px;
    height: 15px;
    line-height: 10px;
}

.input_height {
    overflow-y: auto;
    overflow-x: hidden;
    /*height: calc(100% - 6px);*/
    height: 373px;
    max-height: 374px;
}

.my_task .task_list .task_box .task_time {
    font-size: 11px;
}

    .my_task .task_list .task_box .task_time i {
        margin-right: 5px;
    }

.my_task .task_list .task_box {
    padding-left: 8px;
    padding-right: 8px;
}

    .my_task .task_list .task_box:nth-child(odd) {
        background: #f9f9f9;
    }


.input_group input {
    width: 100%;
    height: 35px;
    border: none;
    padding-left: 10px;
    background: transparent;
}

.view_tast span.spanbtn {
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.view_tast span img {
    width: 24px;
}

.view_tast span.datepicker_cal {
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    z-index: 9999;
    position: relative;
    height: 34px;
}

    .view_tast span.datepicker_cal img {
        position: absolute;
    }

    .view_tast span.datepicker_cal input {
        background: transparent;
        border: none;
        width: 0;
        height: 0;
        position: relative;
        z-index: 9999999999999;
        cursor: pointer;
    }

    .view_tast span.datepicker_cal .ui-datepicker {
        position: absolute;
        left: -119px;
        top: 34px;
    }

.dropdown_box_all.open .dropdown-menu {
    width: 200px;
    left: -91px;
    top: 25px;
}

.panel_body_res_height {
    min-height: 430px;
    height: calc(100% - 100px);
}

.border_bottom1 {
    border-bottom:1px solid #535353;
}


/* ****************************ESS_TASK_DASHBOARD_PAGE_CSS_END***************************** */


/* ****************************ESS_TASK_TEAM_PAGE_CSS_START***************************** */


.custom_radio_button {
    display: block;
}

    .custom_radio_button label {
        font-size: 13px;
        line-height: 14px;
        text-transform: capitalize;
        display: block;
    }

    .custom_radio_button table {
        background: #fff;
        position: relative;
        display: flex;
        flex-flow: row;
        justify-content: flex-start;
        cursor: pointer;
    }

        .custom_radio_button table tr td input {
            opacity: 0;
            position: absolute;
            display: none;
        }

            .custom_radio_button table tr td input + label {
                position: relative;
                text-align: center;
                z-index: 1;
                background: #06518c;
                color: #fff;
                cursor: pointer;
                padding: 10px 10px;
                margin: 0;
                border-radius: 6px 6px 0px 0px;
                margin: 0 2px;
            }

                .custom_radio_button table tr td input + label::before,
                .custom_radio_button table tr td input + label::after {
                    border-radius: inherit;
                    content: "";
                    display: block;
                    height: 100%;
                    opacity: 0;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    z-index: -1;
                }

                .custom_radio_button table tr td input + label::before {
                    background: #06518c;
                    transition: opacity 0.15s ease;
                }

                .custom_radio_button table tr td input + label::after {
                    background: #006dc3;
                    transition: opacity 0.15s ease;
                }

                .custom_radio_button table tr td input + label:hover::before {
                    opacity: 1;
                }

            .custom_radio_button table tr td input:focus + label {
                outline: none;
            }

            .custom_radio_button table tr td input:focus-visible + label {
                outline: #006dc3;
                outline-offset: #006dc3;
            }

            .custom_radio_button table tr td input:-moz-focusring + label {
                outline: #006dc3;
                outline-offset: #006dc3;
            }

            .custom_radio_button table tr td input:checked + label {
                background: #006dc3;
                color: #fff;
            }

                .custom_radio_button table tr td input:checked + label::after {
                    opacity: 1;
                    transform: scale(1);
                }

.panel_more_filter_btn .dropbtn {
    border: none;
    cursor: pointer;
}

    .panel_more_filter_btn .dropbtn.ActiveH3Btn {
        position: relative;
        padding-right: 25px;
        color: #fff !important;
    }

        .panel_more_filter_btn .dropbtn.ActiveH3Btn::before {
            position: absolute;
            content: "";
            right: 12px;
            top: 12px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            width: 7px;
            height: 7px;
            transform: rotate(45deg);
        }

    .panel_more_filter_btn .dropbtn:hover,
    .panel_more_filter_btn .dropbtn:focus {
        background-color: #2980B9;
    }

.taskinputs {
    width: 100%;
    float: left;
    clear: both;
    border: solid 1px #c7c7c7;
   /*height: calc(100vh - 303px);*/
    overflow: auto;
}

.panel_btn_filter {
    display: none;
}

.custom_tabs_css {
    border-bottom:1px solid #ddd;
}
.custom_tabs_css .tabs_btns {
    border: 1px solid #005ca1;
    padding: 5px 15px;
    color:#005ca1;
    margin-right: 0px;
    border-radius: 10px 10px 0px 0px;
    background: #fff;
}

.custom_tabs_css .tabs_btns.tabs_btns_active,
.custom_tabs_css .tabs_btns:hover {
   background:#005ca1;
   color:#fff;
}
/* ****************************ESS_TASK_TEAM_PAGE_CSS_END***************************** */

@media(max-width:1309px) {
    .panel_filter_width_auto select {
        width: 150px;
    }
}

@media(max-width:1199px) {
    .mt_20_res992 {
        margin-top: 20px;
    }
}

@media(max-width:1049px) {
    .panel_btn_filter {
        display: inline-block;
    }

    .panel_filter_width_auto {
        display: none;
        position: absolute;
        top: 55px;
        width: 100%;
        background: #fff;
        border: 1px solid #ddd;
        padding: 10px;
        z-index: 999;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-left: 0;
    }

        .panel_filter_width_auto .ml_15 {
            margin-left: 0px;
        }

        .panel_filter_width_auto .panel_filter {
            width: 50%;
            margin-bottom: 15px;
        }

            .panel_filter_width_auto .panel_filter span {
                width: 70px;
            }

        .panel_filter_width_auto select {
            width: 100%;
            margin-right: 15px;
        }
}

@media(max-width:991px) {
    .mt_20_res768 {
        margin-top: 20px;
    }
}

@media(max-width:767px) {
    .Panel_title {
        font-size: 14px;
    }

    .panel_filter_width {
        width: 90px;
    }
}

@media(max-width:575px) {
    .panel_filter_width_auto .panel_filter {
        width: 100%;
    }
}
