.bootstrap-select .btn:focus {
    outline: none !important;
}
input:focus{
    outline: none !important;
}
.rqd-alrt{
    color: red;
    font-size: 14px;
    padding-left: 3px;
}
.overlay{
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(35, 41, 53, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    position: absolute; 
    
    -webkit-animation: rotator 1.4s linear infinite;
            animation: rotator 1.4s linear infinite;
  }
  
  @-webkit-keyframes rotator {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(270deg);
              transform: rotate(270deg);
    }
  }
  
  @keyframes rotator {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(270deg);
              transform: rotate(270deg);
    }
  }
  .path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
            animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
  }
  
  @-webkit-keyframes colors {
    0% {
      stroke: #fff2dd;
    }
    25% {
      stroke: #fed797;
    }
    50% {
      stroke: #ffb435;
    }
    75% {
      stroke: #fed797;
    }
    100% {
      stroke: #fff2dd;
    }
  }
  
  @keyframes colors {
    0% {
        stroke: #fff2dd;
      }
      25% {
        stroke: #fed797;
      }
      50% {
        stroke: #ffb435;
      }
      75% {
        stroke: #fed797;
      }
      100% {
        stroke: #fff2dd;
      }
  }
  @-webkit-keyframes dash {
    0% {
      stroke-dashoffset: 187;
    }
    50% {
      stroke-dashoffset: 46.75;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg);
    }
    100% {
      stroke-dashoffset: 187;
      -webkit-transform: rotate(450deg);
              transform: rotate(450deg);
    }
  }
  @keyframes dash {
    0% {
      stroke-dashoffset: 187;
    }
    50% {
      stroke-dashoffset: 46.75;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg);
    }
    100% {
      stroke-dashoffset: 187;
      -webkit-transform: rotate(450deg);
              transform: rotate(450deg);
    }
  }
  
/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    padding: 0;
    border: 1px solid #E3E3E3;
    border-radius: 7px;
    height: calc(1.6em + .75rem + 2px);
    line-height: 1.6;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element: */
  }
  
  .select-selected {
    background-color: white;
    border: none;
    border-radius: 7px;
  }
  
  /* Style the arrow inside the select element: */
  .select-selected:after {
    position: absolute;
    content: "";
    top: 16px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #ffb435 transparent transparent transparent;
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #ffb435 transparent;
    
    top: 7px;
  }
  
  /* style the items (options), including the selected item: */
  .select-items div,.select-selected {
    color: #818181;
    padding: 8px 16px;
    /* border: 1px solid transparent; */
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 300;
  }
  
  /* Style items (options): */
  .select-items {
    position: absolute;
    background-color: #f8f7fc;
    border: 1px solid #dadfe3;
    border-radius: 7px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }
  /* ----- */
  textarea.form-control:focus{
      border: 1px solid;
  }
  .fa-calendar{
        color: red !important;
        font-size: 14px;
        color: #ffa000 !important;
  }
  .btn:not(:disabled):not(.disabled):active{
      background: none;;
  }
  .input-group>.input-group-append>.btn{
      margin: 0;
  }
  .gj-datepicker-bootstrap [role=right-icon] button{
    border: 1px solid #E3E3E3;
    border-radius: 7px;;
  }
  .input-group-append .btn:focus{
      background: none;
  }
  .input-group-prepend .input-group-text{
    border-radius: 7px;
  }
  .input-group-prepend .input-group-text:focus{
      border: 0;
    border-radius: 7px;
  }
  .card-pd{
      padding: 25px;
  }
  .disabled{
      background: #f5f5f4 !important;
  }
  /* ------------- sort icon  --------- */
  .sorting_desc:after,
  .sorting_asc:after {
      content: '\f0dd';
      font-family: FontAwesome;
      font-size: 16px;
      color: #6d85c9;
      margin-left: 12px;
  }
  
  .sorting_asc:after {
      content: '\f0de' !important;
  }
  
  .sorting_both:after {
      content: '\f0dc';
      font-family: FontAwesome;
      font-size: 16px;
      color: #6d85c9;
      margin-left: 12px;
  }
  
  .sorting_both a, .sorting_asc a, .sorting_desc a {
      color: #7d8490;
  }
  /* ------------- sort icon end --------- */
  /*  ------- custom check box ------- */
  .chk-b-form-group {
    display: block;
    margin-bottom: 15px;
  }
  
  .chk-b-form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .chk-b-form-group label {
    position: relative;
    cursor: pointer;
  }
  
  .chk-b-form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ffa000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 7px;
  }
 
  .chk-b-form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 12px;
    border: 5px solid #555555;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    font-size: 11px;
  }
  /*  ------- custom check box end ------- */

  /*   ------- multi select custom css ---- */
  .ms-options-wrap > button:focus{
      background: #ffa000;
  }
  .ms-options-wrap > button:focus, .ms-options-wrap > button {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid #E3E3E3;
    background-color: #fff;
    padding: 10px 20px 10px 15px;
    margin-top: 1px;
    font-size: 13px;
    color: #aaa;
    outline-offset: -2px;
    white-space: nowrap;
    border-radius: 7px;
}
.ms-options-wrap > button > span {   
    font-weight: 300;
}
.ms-options-wrap > button:after {
    content: ' ';
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    border: 6px solid rgba(0, 0, 0, 0);
    border-top-color: #ffa000;
    margin-top: -3px;
}
.ms-options-wrap > .ms-options{
    background-color: #f8f7fc;
    border: 1px solid #dadfe3;
    padding: 15px;
    border-radius: 7px;
}
.btn-primary{
    background: #ffb435;
    border-radius: 0.375rem;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.00em;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.btn-outline-primary{
    border: 1px solid #ffa000;
    border-radius: 0.375rem;
    color: #ffa000;
    font-size: 1.00em;
    font-weight: 300;
}
.btn-outline-primary:hover{
    background: #ffb334;
    border: 1px solid #ffb334;
    color: white;
}
.ms-options-wrap > .ms-options > ul li.selected label {
    background:none; 
    border-color: transparent; 
}
.ms-options-wrap > .ms-options > .ms-search input{
    display: none;
}
/* ----------------  -----------   ---------------------  ---- */
  /* Dropdown Button */
  .dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
  }
  
  /* The search field */
  #myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  
  /* The search field when it gets focus/clicked on */
  #myInput:focus {outline: 3px solid #ddd;}
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    border: 1px solid #ddd;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}

/* ---------------  ======   padding ====  ------------------------- */
.pd20{
    padding: 20px;
}
.pdtp0{
    padding-top: 0 !important;
}
.pd10{
    padding: 10px;
}
.pdLr20{
    padding-left: 20px;
    padding-right: 20px;
}
.pdtp20{
    padding-top: 20px;
}
.align-center{
    text-align: center;
}
.search-bkt{
    width: 30%;
    float:right;
}
.table-cst{
    border: 1px solid #E3E3E3;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
}
.upcoming {
    background: #e5f6fe;
    padding: 5px;
    border-radius: 5px;
    color: #00aaf9;
    text-align: center;
    
}
.submitted {
    background: #e4f9f4;
    padding: 5px;
    border-radius: 5px;
    color: #37c39e;
    text-align: center;    
}
.fa-check-circle-verified{
    font-size: 18px;
    color: #37c39e;
    padding-top: 5px;
}
/* ---------------  ======   padding end ====  ------------------------- */
.btn-primary:hover{
    background-color: #ffa000;
}
.btn-primary span{
    font-size: 20px;
    padding-right: 7px;
}
.btn-secondary{
    background: #e2e6ea;
    color: black;
    border-radius: 7px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.00em;
    font-weight: 300;
}
.form-group .form-control{
    background-color: transparent;
    border: 1px solid #E3E3E3;
    border-radius: 7px;
    color: #2c2929;
    line-height: normal;
    height: auto;
    font-size: 0.9571em;
    padding: 12px 18px 12px 18px;
    font-weight: 300;
}
.form-group label{
    font-size: 12px;
    margin-bottom: 5px;
    color: #514f4f;
    font-weight: 400;
}
.card .card-body {
    padding: 25px 25px 20px 25px;
}
.main-panel>.content {
    padding: 30px 30px 30px;   
}
.loged-info p{
    display: block;
    text-align: right;
    color: #514f4f;
    line-height: 17px;
    /*padding-left: 50px*/
}
.loged-info span{
    font-size: 12px;
    color: #514f4f;
    font-weight: 300;
}
.logout-btn{
    margin-left: 12px;
    margin-top: 5px;
   

}
.logout-btn span{
    color: #514f4f;
    
}
.not-lk{
    position: relative !important;
    margin-right: 20px
}
.not-count{
    background: #ffb435;
    border-radius: 50px;
    height: 18px;
    width: 18px;
    display: block;
    position: absolute;
    top: 3px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f8f7fc;
    color: #210a0a;
    font-size: 10px;

}
.navbar-toggler-bar{
    background: #ffb435 ;
}
.top-nav-rgt a, .top-nav-rgt > div{
    float: left;
}
.card .card-header:not([data-background-color]){
    background: #fff2dd;
}
.card .card-header {
    padding: 15px 20px 15px;
    border: 0;
    border-top-right-radius:0.575rem;
    border-top-left-radius:0.575rem;
}
.table thead tr th, .table tbody tr th, .table>tbody>tr>td{
    padding: 15px 20px !important;
}
.table>thead>tr>th{
    font-size: 14px;
    font-weight: 400 !important;
}
.table>thead>tr>th:first-child, .table>tbody>tr>td:first-child{
    padding-left: 0 !important;
}
.table>tbody>tr>td{
    font-size: 12px;
    font-weight: 300;
}
.table>tbody>tr>td a{
  color:#181717;
}
.top-head-sub{
    margin-bottom: 10px
}
.top-head-sub h5{
    padding-top: 10px;
}
.custab{
    border: 1px solid #ccc;
    padding: 5px;
    margin: 5% 0;
    box-shadow: 3px 3px 2px #ccc;
    transition: 0.5s;
    }
.custab:hover{
    box-shadow: 3px 3px 0px transparent;
    transition: 0.5s;
    }
.btn-add{
    min-height: 45px;
}
.btn-add img{
    margin-top: -2px;
    margin-right: 7px;
}
.side-menu ul li a{
    display: flex !important;
    align-items: center;
}
/*-------tab ----------*/
.nav-tabs{
   
    border: 1px solid #ffb435;
    width: fit-content;
    border-radius: 10px;
    background: white;
    overflow: hidden;
}
.nav-tabs .nav-link.active{
    color: white;
    background-color: #ffb435 ;
    border: 0;   
}
.nav-tabs .nav-link {
    border: 0;     
    color: #333333;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    border-radius: 0 !important;
    padding: .6rem 4rem;
    
}
.nav-tabs .nav-link:hover{
    border:0;
}
.nav-tabs .nav-item {
    border-left: 1px solid #ffb435;
}
.nav-tabs .nav-item:first-child{
    border: 0 !important;
}
/*------- employee tab ---------- */
.tabs-area-emp{
    margin-top: -50px;
}
.tabs-area-emp .nav-tabs{
    width: max-content;
}
.tabs-area-emp .nav-tabs .nav-link{
    padding: .6rem 4rem;
}
.tabs-area-emp .tab-content{
    box-shadow: 0 1px 15px 1px rgba(39, 39, 39, 0.1);
    background: white;
    padding: 0.5rem 2rem;
    border-radius: 0.575rem;

}
.icn-sort-arrow{
    padding-left: 7px;
    color: #333333;
}
.custom-pagi{
    margin-top: 15px !important;
    margin: 0 auto;
    display: table;
    margin-top: 15px;
}
.custom-pagi .page-link{
    color: #ffa000;
    font-weight: 300;
    /* border: 1px solid #fcd592; */

}
.custom-pagi .page-link:hover{
    background-color: #ffb435;
    color: white;
    /* border-color: #ffb435; */
}
.custom-pagi .page-link:focus{
    box-shadow: none;
}
.custom-pagi .page-item.active .page-link{
    background-color: #ffb435;
    border-color: #ffb435;
}

/* Styles for wrapping the search box */

.search-main {
    width: 100%;
    background: none;
    float: right;
    padding: 10px 15px 0;
   
}
.search-main .has-search{
    width: 30%;
    float: right;
    z-index: 99;
}
.search-main .has-search input{
    padding: 11px 18px 11px 35px;
    font-weight: 300;
}
/*-------------------Bootstrap Multiselect styles starts here--------------------*/ 

span.multiselect-native-select {
    position: relative;
    width: 100%;
    display: block;
}
span.multiselect-native-select .caret {
    display: none;
    }
span.multiselect-native-select .dropdown-toggle{
    

}

span.multiselect-native-select .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 5px solid #ffa000;
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
    position: absolute;
    right: 15px;
    top: 17px;

}
span.multiselect-native-select .btn-group{
    width: 100%;
}
span.multiselect-native-select .btn-group .btn{
 width: 100%;
 border: 1px solid #E3E3E3;
 border-radius: 7px;
 padding: 12px 18px 12px 18px;
 height: auto;
 background: #ffffff;
 color: #18171c;
 margin-top: 0;
 margin-bottom: 0;
 align-items: flex-start;
display: flex;
}
span.multiselect-native-select .btn-group .btn.active{
    background: #ffffff!important;
    border: 1px solid #E3E3E3!important;
    color: #555555!important;;
}

span.multiselect-native-select .btn-group .btn:hover, span.multiselect-native-select .btn-group .btn:focus{
    background: #ffffff!important;
    border: 1px solid #E3E3E3!important;
    color: #555555!important;;
}
span.multiselect-native-select .btn-group .btn:active{
    background: #ffffff!important;
    border: 1px solid #E3E3E3!important;
    color: #555555!important;;
}
span.multiselect-native-select .btn-group .btn:not([data-action]):not([class*="btn-outline-"]):hover{
    box-shadow: none;
}

span.multiselect-native-select .btn-group .dropdown-menu{
    box-shadow:none;
    background:#f8f7fc;
    border: 1px solid #E3E3E3;
    width: 100%;
    border-radius: 7px;
    transform: none!important;
    top:42px!important;
    padding-top: 15px !important
}
span.multiselect-native-select .btn-group .dropdown-menu::before {
    display: none!important;
    
}
.multiselect-container > li.multiselect-group label {
            margin-left: 0px !important;
        }

        .multiselect-container li label {
            display: inline-block;
            padding-left: 5px;
            position: relative;
            vertical-align: middle;
            margin-left: 10px !important;
        }

            .multiselect-container li label::before {
                background-color: #fff;
                border: 1px solid #ffb334;
                border-radius: 4px;
                content: "";
                display: inline-block;
                height: 20px;
                left: 0;
                margin-left: 15px;
                position: absolute;
                transition: border 0.15s ease-in-out 0s, color 0.15s ease-in-out 0s;
                width: 20px;
                margin-top: 0px;
                top: 0;
            }

            .multiselect-container li label::after {
                color: #555555;
                display: inline-block;
                font-size: 11px;
                height: 16px;
                left: 0;
                margin-left: -20px;
                padding-left: 5px;
                padding-top: 1px;
                position: absolute;
                top: 0;
                width: 20px;
            }

        .multiselect-container li input[type="checkbox"],
        .checkbox input[type="radio"] {
            cursor: pointer;
            opacity: 0;
            z-index: 1;
        }
        .multiselect-container li label{
             margin-left: 0!important;
             height: 20px;
             margin-bottom: 5px!important;
        }
         .multiselect-container li.active label{
            background:#f8f7fc!important;
            margin-left: 0!important;
         }
        .multiselect-container li.active label::before {
            background-color: #fff;
            border: 1px solid #ffb334;
            border-radius: 4px;
            content: "";
            display: inline-block;
            height: 20px;
            left: 0;
            margin-left: 15px;
            position: absolute;
            transition: border 0.15s ease-in-out 0s, color 0.15s ease-in-out 0s;
            width: 20px;
            margin-top: 0px;
            top: 0;
        }

        .multiselect-container li.active label::after,
        .checkbox input[type="radio"]:checked + label::after {
            font-family: "FontAwesome";
            content: "\f00c";
        }

        .multiselect-container li.active label::after {
            display: inline-block;
            position: absolute;
            width: 20px;
            height: 20px;
            left: 4px;
            top: 2px;
            margin-left: 15px;
            padding-left: 0px;
            padding-top: 0px;
            font-size: 11px;
            color: #555555;
        }

        .dropdown-menu.multiselect-container > .active > a,
        .dropdown-menu.multiselect-container > .active > a:focus,
        .dropdown-menu.multiselect-container > .active > a:hover {
            background-color: white !important;
            color: #333 !important;
        }

/*-------------------Bootstrap Multiselect styles ends here--------------------*/
.dpdown-wrap label{
    display: block;

}
.dpdown-wrap .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
 
    max-width: 100%!important;
    width: 100%;
}
.dpdown-wrap .bootstrap-select > .dropdown-toggle{
    margin-top:0px!important;
    margin-bottom: 4px;
    box-shadow: none!important;
}
.dpdown-wrap .bootstrap-select .btn{
    background: #ffffff;
    color: #555555 !important;
    border: 1px solid #E3E3E3!important;
    border-radius: 7px!important;
    height: 42px!important;
}

.dpdown-wrap .bootstrap-select .btn:hover,
 .dpdown-wrap .bootstrap-select .btn:focus{
    background: #ffffff!important;
    border: 1px solid #E3E3E3!important;
}

.dpdown-wrap .bootstrap-select > .dropdown-menu{
    min-width: 100%;

max-width: 100% !important;
overflow-x: hidden!important;
box-shadow: none!important;
background: #f8f7fc;
border: 1px solid #E3E3E3;
}
.dpdown-wrap .bootstrap-select .no-results {
    padding: 3px;
    
    overflow-x: hidden;
}
.dpdown-wrap .dropdown{
    
    position: relative;
  display: inline-block;

}
.dpdown-wrap .dropdown .bs-searchbox {
    padding-top:0;
    padding-bottom: 4px;
}
.dpdown-wrap .bootstrap-select .no-results{
    margin-left:0;
    margin-right: 10px;
    padding-left:10px;
    padding-right: 10px;
    overflow-x: hidden;
    background:#f8f7fc; 
}
.dpdown-wrap .dropdown .bs-searchbox .form-control{
    background-color: #ffffff!important;
}
/*.dpdown-wrap .dropdown .dropbtn{
    background-color: #ffffff;
    border: 1px solid #E3E3E3;
border-radius: 7px;
color: #818181;
line-height: normal;
height: auto;
font-size: 0.8571em;
padding: 12px 18px 12px 18px;
font-weight: 300;
width: 100%;
text-align: left;
}
.dpdown-wrap .dropdown .bs-searchbox .form-control{
   background: url("../img/search-icn.png") no-repeat 10px center;
   padding-left:40px!important;
   overflow: hidden;
}


.dpdown-wrap #myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

.dpdown-wrap #myInput:focus {outline: 3px solid #ddd;}
*/


.dpdown-wrap .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dpdown-wrap .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dpdown-wrap .dropdown a:hover {background-color: #ddd;}

.dpdown-wrap .show {display: block!important;}
.dropdown-item.active{
    background-color: #e2e6ea;
}
.dropup .dropdown-toggle::after{
    border-right: .4em solid transparent;
    border-top: .4em solid #ffa000!important;
    border-left: .4em solid transparent; 
}
.bootstrap-select>.dropdown-toggle:after{
    border-right: .4em solid transparent;
    border-top: .4em solid #ffa000!important;
    border-left: .4em solid transparent;    
    border-bottom: none;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    font-weight: 300;
}
/* Bootstrap 4 text input with search icon */

.has-search .form-control {
    padding-left: 2.375rem;
    background:white
}

.icon-icon-srh {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    color: #ffa000
}
.emp-top-title-head button{
margin-left: 15px
}
.btn-edit-tbl{
    
    background: #e5f6fe;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;;

}
.btn-del-tbl{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;;
    background: #fdeeef;
}
.btn-del-tbl span{
    padding-right: 0;
    color: #ef5c63;
}
.btn-del-tbl:hover{
    background: #fee0e2;
}
.btn-edit-tbl:hover{
    background: #d1f0ff;
}
.btn-edit-tbl span{
    padding-right: 0;
    color: #00aaf9;
}

.btn-arc-tbl{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;;
    background: #f9ecd6;
}
.btn-arc-tbl span{
    padding-right: 0;
    color:#e89a15;
}
.btn-arc-tbl:hover{
    background: #f7e4c5;
}




.actions-btn {
    display: flex;    
    align-items: flex-start;
    justify-content: flex-start; 
}
.actions-btn button{
    float: left;
    margin-right: 10px !important;
    margin-top: 0;
    margin-bottom: 0;
  
}
.bdg-archived{
    padding-right: 1.6em;
    padding-left: 1.6em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-weight: 300;
    font-size: 100%;
    background: #e5faf4;
    color: #07af72;
    margin-right: 10px;
}
.actions{
    /*min-width: 145px;*/
    width:10% !important; /*updated in aug 14*/
}
.table{
    margin-bottom: 0;
}
.table-responsive{
    padding-bottom: 0;
}
.add-emp-btn button{
    min-width: 150px;
    margin-left: 15px;
}
/* -----select */


/*---------- Multi select Search   01 Sep 2020*/
.multiSelect .input-group{
    width: auto !important;
}
.multiSelect .multiselect-search{
    background-color: #fff;
}
.multiSelect .input-group .form-control{
    border: 1px solid #E3E3E3 !important;
    border-radius: 7px !important;
}
.multiSelect .input-group .form-control:last-child{
    border: 1px solid #E3E3E3 !important;
    border-radius: 7px !important;
    margin: 0px 10px 10px 0px;
}

/* -------- Schedule -------- */
.con-na-lst-b{
    padding: 15px;
    background: #f9f9f9;
    border-radius: 7px;
    border: 1px solid #ffb435;
}
.con-na-lst-b p{
    display: inline;
    font-size: 14px;
    font-weight: 400;
    color: #ffa000;
}
.con-na-lst-b p span{
    padding:0 10px;
    color: #514f4f;
}
/* --------- EMPLOYEE DETAIL ---------- */

.tab-emp-detail .nav-tabs .nav-link{
    padding: .6rem 1.83rem;
}
.sec-top-btn-empDet button{
    margin-left: 15px;
    margin-bottom: 20px;
}
/* -------- Dashboard -- -------- */
.responsive-tabs{
    width: max-content;
}
.count-bdg{
    background: #ffcd78;
    border-radius: 50px;
    padding: 3px 10px;
    margin-left: 5px;
}
.py-prd{
    color: #ffa000 !important;
    font-weight: 400;
}
.db-task h5{
    font-size: 14px;
    font-weight: 400;
    padding: 15px 20px 0;
    margin-bottom: 0;
}
.r-tm-sht{
    background: #ffdec4;
    border-radius: 7px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e2c0d;
    font-size: 14px;
    transition: 0.3s;
}
.r-tm-sht:hover{
    text-decoration: none;
    color: #3e2c0d;
    background: #fecfaa;
}
.r-milage{
    background: #ffe8b3;
}
.r-milage:hover{
    background: #fcdc92; 
}
.r-reimb{
    background: #dee7cc;
    padding: 10px;
}
.r-reimb:hover{
    background: #d1e5a8;
}
.pto-rq{
    background: #c1efdf;
}
.pto-rq:hover{
    background: #9ce4cb;
}
.view-prc{
    background: #ebeded;
}
.view-prc span{
    font-size: 31px !important;
}
.view-prc:hover{
    background: #dbdbdb;
}
.db-task span{
    font-size: 40px;
    padding-right: 15px;
}

.tbl-await>tbody>tr>td{
    vertical-align: initial;
}
.tb-reMil thead tr th{
     min-width: 160px !important;
}
/* calendar schedule */
.fc-toolbar{
    background: #fff2dd;
    padding: 12px 20px 0;
    margin-bottom: 0;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}
.fc-center h2{
    font-size: 26px;
}
.fc-toolbar button{
    background: none;
    border-color: #ffa000;
}
.fc-toolbar .fc-state-active{
    box-shadow:none;
    background: #ffb334;
}
.fc-state-default{
    text-shadow:none
}
.card-header-db-sched{
    position: relative;
}
.card-header-db-sched a{
    position: absolute;
    top: 9px;
    right: 15px;
}
.card-header-db-sched a span{
    font-size: 20px;
    padding: 7px;
    background: #ffe3b5;
    border-radius: 5px;
    transition: 0.5s;
}
.card-header-db-sched a span:hover{
    background: #ffb334;
}
.custom-control-input:checked ~ .custom-control-label::before {
    border: #ffa000 solid 1px;
    background: #ffa000;
}
/* -------- Schedule end -------- */
/*-----------Bucket -----------------*/
.nav-tabs-bucket{
 
}
.nav-tabs-bucket .nav-item{
   min-width: 200px;
    text-align: center;
}
.custom-control-label::before {
    border: #ffa000 solid 1px;
}
.bkt-actions{
    width: 250px;
}
.custom-checkbox label{
    padding-top: 4px;
    font-weight: 300;
}

/*----------- Maintenance -----------------*/
.mt-chk .custom-checkbox{
    padding-top: 10px;
}
.colp-table{
    width: 100%;
}
.colp-table tr th, .colp-table tr td{
    border: 1px solid;
}
/*----------- Review TimeSheet -----------------*/
.submitted{

}
.override{
    background: #e5f6fe;
    /* border-color: #00aaf9; */
    color: #00aaf9;
    border: 1px solid #00aaf9;
    font-weight: 300 !important;
}
.override:hover{
    background: #00aaf9;
    color: white;
    border: 1px solid #00aaf9;
}
.process{
    background: #e5faf4;
    color: #34be80;
    border: 1px solid #34be80;
    font-weight: 300 !important;

}
.process:hover{
    background: #34be80;
    color: #fff;
    border: 1px solid #34be80;

}
.reject{
    background: #fdeeef;
    color: #ef5c63;
    border: 1px solid #ef5c63;
    font-weight: 300 !important;
}
.reject:hover{
    background: #ef5c63;
    color: #fff;
    border: 1px solid #ef5c63;
}
.remarks_bx_ovrride{
    background: #fffaf1;
}
.remarks_bx_ovrride .form-group{
    width: 67%;
    display: inline-block;
    margin-bottom: 0px;
    background: white;
 
}
.remarks_bx_ovrride button{
    margin-right: 15px !important;
    min-width: 120px;
    min-height: 40px !important;
}
.remarks_bx_ovrride button:hover{
    box-shadow: none !important;
}
.table-maintenance{
    margin-bottom: 20px;
    width: 100%;
}
.table-maintenance tr th{
    background: #fff2dd;
    font-weight: 400 !important;
}
.table-maintenance tr th, .table-maintenance tr td{
    border: 1px solid #dbdbdd;
    height: 70px;
    font-weight: 300;
    padding: 12px 12px;
}
.rem_input{
    margin-top: 10px;
}
.clear-btn{
    float: right;    
    margin-top: -5px;
    font-size: small;
    color: #ffb435;
}
.clear-btn:hover{
    text-decoration: none;
    color: #ffa000;
}
.min-wid120{
    min-width: 120px;
}
.m-w160{
    min-width: 120px;
}
@media print {
    #printbtn, #printbtn-cancel {
        display :  none;
    }
}
.nav-tabs-payr li{
    min-width: 150px;
    text-align: center;
}
/* ----------------- */
@media screen and (max-width: 991px){
    .loged-info{
        padding-right: 15px
    }
    .logout-btn{
        margin-left: 0;
        margin-top: 8px;
        display: block;
    }
    .not-lk{
        padding-left: 0 !important;
    }
   
    .r-tm-sht, .r-milage, .r-reimb, .view-prc{
        margin-bottom: 15px;
    }
    .bkt-actions{
        min-width: 300px;
    }
    .remarks_bx_ovrride .form-group{
        width: 60%;
    }
}
@media screen and (max-width: 768px){
    
    .nav-tabs{
        width: 100%;
       padding-left:0px; 
       padding-right:0px;
    }
    .nav-tabs .nav-link.active{
        background: none;
        color:#ffb435;
    }
    .tabs-area-emp{
        margin-top: 0px;
    }
    .search-main .has-search {
        width: 56%;
    }
    .nav-tabs .nav-item{
        border: 0;
    }
    
    
}
@media only screen and (min-width: 992px) and (max-width:1200px){
    .remarks_bx_ovrride .form-group{
        width: 61% !important;

    }
    
}
