:root{
    --secondary: #B4D334;
    --primary: #000;
    --logo-color: #352063;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Login Page */

.loginWrap, .loginWrap .container > .row {
    height: 100vh;
    min-height: 700px;
    background:url(../img/login-backgroud.jpg) ;
    background-size: cover;
    background-repeat: no-repeat;
    
}
.leftSide {
    width: 100%;
}
.leftSide h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 30px 0 30px;
    color: #222226;
}
.leftSide h3 span {
    font-size: 25px;
    font-weight: normal;
    display: block;
}
.rightSide {
    background: #151b26;
    width: 60%;
}
.formField label {
    color: #444;
    font-size: 14px;
    margin-bottom: 5px;
}
.formField .form-control {
    padding: .675rem .75rem;
    border-color: #cbd4db;
    border-radius: 6px;
}
.formField .form-control:focus {
    background-color:#f0f0f0;
    border-color: var(--primary);
}
.leftSide .btn {
    display:block;
    width:100%;
    background-color: var(--primary);
    padding:10px 0;
    margin-top: 40px;
    color: #444;
    font-weight: 600;
    transition: all 0.3s;
}
.leftSide .btn:hover {
    color:#fff;
    background-color:#151b26;
}
.loginActivity-Box {
    text-align: center;
}
.loginActivity-Box h1 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
}
.loginActivity-Box p {
    color: #647594;
    font-size: 15px;
    margin-top: 10px;
}
.sidebarFooter {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 0;
}
.sidebarFooter ul li {
    border-top: 1px solid #E9EBF0;
    border-bottom: 1px solid #E9EBF0;
}
.sidebarFooter ul li a {
    font-size: 15px;
}

.loginBox {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #ffffffc4;
    border-radius: 15px;
    backdrop-filter: blur(6px);
}

/* Header Styling  */

/* width */
.noti-content::-webkit-scrollbar,
.chat-wrap-inner::-webkit-scrollbar,
.select-dep .dropdown-menu::-webkit-scrollbar  {
    width: 7px;
}

/* Track */
.noti-content::-webkit-scrollbar-track,
.chat-wrap-inner::-webkit-scrollbar-track,
.select-dep .dropdown-menu::-webkit-scrollbar-track
{
    background: #f1f1f1;
}

/* Handle */
.noti-content::-webkit-scrollbar-thumb,
.chat-wrap-inner::-webkit-scrollbar-thumb,
.select-dep .dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
}

/* Employee Dashboard   */

.dash-sec-tasks ul li a {
    color: #343434;
    border-radius: 6px;
    border: 1px solid #e3e3e3;
    font-size: 13px;
    padding: 8px 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dash-sec-tasks ul li a:hover {
    border-color:#47E455;
}
.viewAll-tasks {
    text-align: center;
}
.viewAll-tasks a {
    color: #343434;
    font-size:15px;
}
.viewAll-tasks a:hover {
    color: #47E455;
}
.timeBadge.badge {
    font-size: .40rem !important;
    color: transparent !important;
    margin-right:4px !important;
    width: 8px;
    height: 8px;
    cursor: pointer;
}
.bgLate {
    background-color: #EF7133;
}
.bgOnTime {
    background-color: #47E455;
}
.tooltip{
    font-size: 10px;
    font-weight: bold;
}
.select2-results__option {
    padding: 3px 8px;
    user-select: none;
    -webkit-user-select: none;
    font-size: 13px;
}
.chat-window-opened {
    transform: translateX(-100%);
    transition: transform .5s cubic-bezier(0.23, 1, 0.32, 1);
}
.date-setting {
    float: right;
    width: 450px;
    display: inline-flex;
    align-items: center;
}

.date-setting .task-due-date {
    flex:auto;
}
.windowClose {
    cursor: pointer;
    display: inline-flex;
    color:#9A9A9A;
    font-size: 20px;
}
.windowClose:hover {
    color:var(--primary);
}
.date-setting .task-due-date .due-icon span {
    background: #F1F1F1;
    color: #7C828D;
    border: transparent;
    width: 35px;
    height: 35px;
}
.date-setting .task-due-date .due-icon span i {
    font-size:22px;
}
.date-setting .task-due-date:hover {
    border-color: transparent;
}

.date-setting .due-date {
    color:#5A5A5A;
    font-weight:500;
}
.date-setting .task-head-title {
    color: #7C828D;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}
.task-menu .material-icons {
    background: #F1F1F1;
    margin-right: 10px;
    font-size: 20px;
    padding: 5px;
    color: #9A9A9A;
}
.task-menu .material-icons:hover {
    background:var(--primary);
    color:#fff
}
.usersIcon {
    background: #F1F1F1;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #7C828D;
}
.borderless td, .borderless thead th {
    border: none;
}
.task-table {
    margin: 0;
}
.task-table tbody > td {
    padding: .50rem .75rem;
}
.task-table thead th {
    color:#7C828D;
    font-size:14px;
    padding-top: 0;
}
.task-table tbody td {
    color:#343434;
    font-size:14px;
    font-weight:500;
    vertical-align: middle;
}
.task-table .not-done {
    color: #B1B1B1;
}
.ticket-group .card-body {
    padding-top: 10px;
    padding-bottom: 10px;
}
.ticket-group .card-body h3 {
    font-weight: 300;
    font-size: 26px;
}
.ticket-group .card-body .bg-grey {
    background: #A1B8C6;
}
#add_ticket label {
    font-size: 14px;
    font-weight: 500;
}
.create-profile h3 {
    font-weight: 400;
    display: inline-block;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 20px;
}
.rating-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.user-rating-list {
    align-self: flex-start;
}
.user-rating-list li {
    font-size: 14px;
    line-height: 23px;
}
.user-rating-list li strong {
    font-weight: 700;
}
.performance-form h3 {
    font-size: 16px;
    margin: 0;
}
.performance-form h3 p {
    font-weight: 400;
    font-size: 13px;
    margin: 3px 0 0;
    letter-spacing: 0.5px;
    white-space: normal;
}
.performance-form textarea {
    background: #E9ECEF;
    border: 1px solid #E3E3E3;
    border-radius: 6px;
}
.rating-content {
    font-size: 13px;
    max-width: 157px;
    margin-top: 5px;
    white-space: break-spaces;
    margin: 2px 0 0;
    width: 100%;
    color: #626476 !important;
    line-height: 16px;
    font-weight: 500;
}

/* Star Rating  */
.rating {
    border: none;
    float: left;
    display: flex;
    flex-direction: row-reverse;
    max-width: 140px;
    flex-wrap: wrap;
}
.rating > input { display: none; }
.rating > label:before {
    margin-top: 2px;
    padding: 0px 3px 0px 3px;
    font-size: 1.35em;
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    content: "\f005";
    font-weight: 900;
}
.rating > label {
    color: #ccc;
    margin: 0;
    flex: 1;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label {
    color:#FF9B44 !important;
    cursor:pointer;
} 

/* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label {
    color:#FF9B44 !important;
    cursor:pointer;
}
.error{
    color:red;
}
.task-table td span a {
    color: #343434;
    font-size: 16px;
}
.close-team{
    display: none;
}
.task-table tr{
    transition: .2s ease-in;
}
.task-table tr:hover .close-team{
    display: inline;
}
.chat.chat-left .chat-bubble:last-child .chat-content {
    border: none;
}
.task-chat-user {
    font-weight: bold;
}
.attach-list {
    font-size: 12px;
    font-weight: bold;
}
.chat-content span.date {
    font-size: 10px;
}
.task-attachments {
    display: flex;
    flex-wrap: wrap;
}
.task-attachments .attachment-card {
    background: #F8F8F8;
    border: 1px solid #D6D6D6;
    border-radius: 6px;
    padding: 10px 20px;
    height: 55px;
    width: 192px;
    display: flex;
    justify-content: space-between;
    margin-left: 15px;
    transition: .3s ease-in;
    position: relative;
    color: #7C828D;
}
.task-attachments .attachment-card:hover {
    background-color: #adadad;
    opacity: 0.8;
}
.task-attachments .attachment-card:hover img {
    opacity: 0.5;
}
.task-attachments .img-attachment {
    padding: 0;
}
.task-attachments .img-attachment img {
    width: 100%;
}
.overlay-attachment {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}
.task-attachments .attachment-card:hover .overlay-attachment {
    opacity: 1;
    z-index: 9999;
}
.task-attachments .document-name {
    font-weight: 500;
    font-size: 12px;
    margin: 0;
}
.task-attachments .document-format {
    font-size: 12px;
    margin: 0;
}
.task-attachments div i {
    font-size: 24px;
    padding-right: 10px;
    padding-top: 4px;
}
.overlay-attachment .attachment-btn i {
    color: #000;
    font-size: 22px;
}
.chat-window{
    width: 40%;
}
.dropdown-menu{
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.25);
}
.form-group label {
    font-size: 13px;
    font-weight: 500;
}
.custom-badge.decline {
    background: rgba(230, 68, 65, 0.2) !important;
    color: #BB2320;
    font-size: 12px;
}
.custom-badge.pending {
    background: rgba(255, 155, 68, 0.2) !important;
    color: #f39c12;
    padding: 5px 5px;
    font-size: 11px;
    letter-spacing: 0.2222px;
}
.custom-badge.accept {
    background: rgba(29, 185, 84, 0.2) !important;
    color: #188D26;
    font-size: 12px;
}
.ticketSts.pending {
    background: rgba(243, 87, 87, 0.52) !important;
    color: #BB2320;
    font-size: 12px;
}
.ticketSts.working {
    background: rgb(234, 177, 125) !important;
    color: #975215;
    font-size: 12px;
}
.ticketSts.closed {
    background: rgba(68, 149, 243, 0.2) !important;
    color: #18478d;
    font-size: 12px;
}
.ticketSts.done {
    background: rgba(151, 239, 95, 0.72) !important;
    color: rgba(63, 136, 15, 0.72);
    font-size: 12px;
}
.select-dep .dropdown-toggle {
    color: #343434;
    background: #ECECEC;
    padding: 6px;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: dashed 1px #D0D0D0;
}
.select-dep .dropdown-toggle:hover {
    background: #dddddd;
}
.select-dep .dropdown-toggle i {
    font-size: 22px;
}
.select-dep .dropdown-item {
    position: relative;
    padding: 5px 0 5px 10px;
    font-weight: 500;
    font-size: 14px;
}
.select-dep .dropdown-item span{
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #bfbfbf;
    margin-right: 5px;
}
.select-dep .dropdown-menu {
    box-shadow: 0 0 10px #ccc;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    max-height: 300px;
    overflow: auto;
}
.assign-dep {
    display: inline-block;
    padding: 6px 25px 6px 10px;
    border-radius: 8px;
    position: relative;
    font-size: 13px;
}
.assign-dep i {
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 10px;
}
.assign-dep span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}
.assign-user {
    background-color: #f7f7f7;
    display: inline-block;
    padding: 6px 25px 6px 10px;
    border-radius: 8px;
    position: relative;
    font-size: 13px;
}
.assign-user i {
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 10px;
}
.assign-user span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}
.task-table .cal-icon .form-control {
    background: #F8F8F8;
    border: none;
    font-size: 12px;
    font-weight: 600;
    padding-left: 33px;
    height: 35px;
    margin-bottom: 5px;
}
.task-table .cal-icon .form-control:hover{
    background:#ECECEC;
}
.task-table .cal-icon {
    width:90%;
}
.task-table .cal-icon:after {
    left: 10px;
    right: unset;
    color: #495057;
    top: 8px;
}
.kanban-list > .kanban-wrap {
    min-height: 600px;
    max-height: 600px;
    overflow: auto;
    padding: 0;
    margin: 10px 0;
}
.experience-list > li .experience-content .timeline-content h6 {
    color: #343434 !important;
    font-weight: 700;
}
.experience-list > li .experience-content .timeline-content span {
    color: #777 !important;
    font-weight: 500;
}
.before-circle {
    background-color: transparent;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    border: 2px solid #FF9B44;
}
.checks-loader {
    width: 350px;
    text-align: center;
}
.checks-loader img{
    height: 50px;
}
.modal-content{
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 4px 0px #00000010;
}
.btn-block{
    background: var(--primary);
    transition: all 0.3s;
    padding: 9px 20px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3333px;
    width: auto;
    display: inline-block;
}
.lds-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 35px;
}
.lds-ellipsis div {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
.btn-primary{
    background: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
    padding: 9px 25px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.3333px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
}
.btn-primary.iconbtn{
    font-size: 19px;
    padding: 8px 28px;
}
.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle, .btn-primary.focus, .btn-primary:focus{
    background: transparent;
    color: var(--primary);
    box-shadow:none !important;
}
.btn-secondary{
    background: transparent;
    color: #000000e0;
    border: 1px solid #000000e0;
    border-radius: 3px;
    transition: all 0.3s;
    padding: 9px 25px;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.3333px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-left: 10px;
}
.btn-secondary.iconbtn{
    font-size: 19px;
    padding: 8px 28px;
}
.btn-secondary.tblbtn, .btn-primary.tblbtn{
   font-size: 10px;
   padding: 6px 6px;
   border-radius: 6px;
   text-align: center;
   display: flex;
   align-items: baseline;
   text-decoration: none;
   background: #ffffff;
   color: #6c757d;
   border: 1px solid #dee2e6;
   margin-left: 0;
   width: fit-content;
}
.btn-secondary.backbtn, .btn-primary.backbtn{
  padding: 5px 16px;
}
.btn-primary.tblbtn.paid{
    background: #d5f0b1;
    color: #2e5c0e;
    border-color: #b8d491;
}
.btn-secondary:hover{
    background: var(--primary);
    color: #444;
    border-color: var(--primary);   
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.modal .modal-dialog{
    max-width: 800px !important;
}
.modal .modal-dialog.modal-sm{
    max-width: 500px !important;
}
.modal .modal-dialog .modal-content{
    padding: 22px 25px 20px 25px;
}
.modal .modal-dialog .modal-content .m-head{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
}
.modal .modal-dialog .modal-content .m-body{
   padding-bottom: 15px;
}
.modal .modal-dialog .modal-content .m-head .modal-title{
    font-size: 18px;
    color: #343434;
}
.modal .modal-dialog .modal-content .m-head .close{
    font-size: 18px;
    color: #BDBDBD;
    font-weight: 400;
}
.modal .modal-dialog .modal-content .m-foot{
   text-align: right;
}
.modal .modal-dialog .modal-content .m-body .table thead{
    font-size: 15px;
    border: none;
    color: #343434;
}
.modal .modal-dialog .modal-content .m-body .table thead tr th{
    border: none;
    font-weight: 700;
}
.modal .modal-dialog .modal-content .m-body .table tbody{
    font-size: 13px;
    letter-spacing: 0.333px;
    color: #343434;
}
.modal .modal-dialog .modal-content .m-body .table tbody tr td,.modal .modal-dialog .modal-content .m-body .table tbody tr th{
    border-top: none;
    border-bottom: 1px solid #E3E3E3;
}
.error-text{
    font-size: 12px;
    letter-spacing: 0.444px;
    line-height: 2;
    font-weight: 600;
    color:#f62d51 !important;
}
.custom-btn-group-toggle .btn.btn-secondary {
    background: #ffffff;
    border-color: transparent;
    color: #b5b3be;
    padding: 7px 17px;
}
.btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle, .btn-secondary.focus, .btn-secondary:focus{
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    box-shadow:none !important;
}
.custom-btn-group-toggle .btn-secondary:hover, .custom-btn-group-toggle .btn-secondary:not(:disabled):not(.disabled).active, .custom-btn-group-toggle .btn-secondary:not(:disabled):not(.disabled):active, .custom-btn-group-toggle .btn-secondary.focus,.custom-btn-group-toggle .btn-secondary:focus{
    background: #b5b3be;
    color: #fff;
    border-color: transparent;
    box-shadow:none !important;
}
a.tblbtn.disabled, fieldset:disabled a.tblbtn {
    pointer-events: none;
}
.tblbtn.disabled, .tblbtn:disabled {
    cursor: not-allowed;
}
.tblbtn.disabled, .tblbtn:disabled {
    opacity: .65;
    color: #343434;
}