@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400&family=Poppins:wght@100&display=swap");
/* Global CSS */
/*===== VARIABLES CSS =====*/

:root {
    --nav-width: 95px;
    /*===== Colores =====*/
    --first-color: #F4F5FA;
    --bg-color: #fff;
    --sub-color: #B6CEFC;
    /*===== Fuente y tipografia =====*/
    --body-font: "Inter", sans-serif !important;
    ;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    /*===== z index =====*/
    --z-fixed: 100;
}

::-webkit-calendar-picker-indicator {
  opacity: 0 !important;
}

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}
body{
  position: relative;
  margin: 0;
  padding-left:var(--nav-width);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: .5s;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--body-font);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
}
.mob-576-block {
    display: none !important;
}
.mob-576-flex{
  display: none !important;
}
/*  scroll bar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #c7c7c776;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: none;
    display: none;
}


/* end scroll bar */

.error{
    color: red !important;
    font-size: 12px;
}
.form-error {
    font-size: 12px;
    font-weight: 500;
    line-height: 11px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #E15241;
    stroke: #E15241;
}
.form-error svg{
    width: 16px;
    height: 16px;
}
/* hide scroll bar */

.scroll-bar-hide {
    scrollbar-width: 0 !important;
    scrollbar-color: transparent transparent !important;
    /* thumb color and track color */
}


/* For WebKit browsers like Chrome and Safari */

.scroll-bar-hide::-webkit-scrollbar {
    width: 0px !important;
    /* adjust as needed */
}

.scroll-bar-hide::-webkit-scrollbar-thumb {
    background-color: transparent !important;
    /* thumb color */
}

.scroll-bar-hide::-webkit-scrollbar-track {
    background: none !important;
    display: none !important;
}


/* end hide scroll bar */

.user-img {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-img-w {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}


/* li.open .MC-arrow-right {
  transform: rotate(90deg);
  transition: all 1s;
} */

html body .content.app-content {
    height: 100%;
    overflow-y: scroll !important;
}


/* Task Navigation */

.navigation-custom {
    width: 100%;
    min-width: 100%;
    padding: 12px 24px;
    border-bottom: 1px solid #c9c9c9;
    background: var(--primary-light, #f4f5fa);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 3;
}

.navigation-custom .navigation-heading {
    color: var(--Accent, #e15241);
    font-size: 32px;
    font-weight: 400;
}

.navigation-heading .profile-images {
    display: none;
}

.navigation-custom .menu__btn svg {
    stroke: #e15241;
    display: none;
}

.nav-task-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.nav-task-wrap .mobile-toggle {
    display: none;
}

.MC-secondary-btn {
    color: var(--Accent, #e15241);
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    fill: #e15241;
    stroke: #e15241;
    background: #ffffff;
}

.MC-secondary-btn svg,
.MC-primary-btn svg {
    width: 24px;
    height: 24px;
}

.MC-primary-btn {
    color: var(--Accent, #ffffff);
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    fill: #ffffff;
    stroke: #ffffff;
    background: #e15241;
}

.icon-input {
    position: relative;
}

.icon-input__text-field {
    display: flex;
    width: 100%;
    min-width: 300px;
    padding: 10px 16px;
    align-self: stretch;
    border-radius: 200px;
    background: #fff;
    border: none;
}

.search-btn {
    background: transparent;
    border: none;
    height: 100%;
}

.icon-input__icon {
    color: #777777;
    stroke: #777777;
    fill: #777777;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
}

.icon-input__text-field:focus+.icon-input__icon {
    border: none;
    color: #e15241;
    stroke: #e15241;
    fill: #e15241;
}

.icon-input__text-field:focus-visible {
    outline: none;
}


/* /////////////////////////// side nav css ////////////////////////////////// */


/*===== l NAV =====*/

.l-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--white-color);
    transition: .5s;
    z-index: var(--z-fixed);
}


/*===== NAV =====*/

.l-navbar .nav {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.nav svg {
    stroke: #6C6F80;
    height: 24px;
    width: 24px;
}

.collapse__div .collapse__btn svg {
    stroke: none;
    fill: #6C6F80;
}

.nav .navbar-wrapper {
    height: 100%;
    overflow: hidden;
}

.l-navbar .nav .nav__brand {
    display: flex;
    grid-template-columns: max-content max-content;
    align-items: center;
    margin-bottom: 1rem;
    gap: 10px;
    border-bottom: 1px solid #DFDFDF;
    background: var(--grey-white, #FFF);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    padding: 12px 14px;
}

.nav .nav__brand a {
    display: none;
}

.expander .nav .nav__brand a {
    display: block;
}

.l-navbar .nav .nav__list {
    padding: 1.5rem 1rem;
    padding-top: 0;
    overflow: auto;
    height: calc(100% - 86px);
}

.nav__brand .nav__toggle {
    font-size: 1.25rem;
    padding: .75rem;
    cursor: pointer;
}

.nav__logo {
    color: #E15241;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.nav__link {
    display: flex;
    align-items: center;
    column-gap: .75rem;
    padding: .75rem;
    color: var(--white-color);
    border-radius: .5rem;
    margin-bottom: 1rem;
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
}

.collapse__div .nav__link {
    margin-bottom: 0;
}

.nav__footer .nav__link {
    padding: 0;
    padding-top: 0.75rem;
    display: block;
}

.nav__footer .nav__link span {
    color: #FFEEEC;
    font-size: 20px;
    font-weight: 500;
    /* overflow: hidden;
  text-wrap: nowrap;
  width: 85%;
  text-overflow: ellipsis; */
}

.nav__footer .nav__link:hover {
    background-color: unset;
    color: unset;
}

.expander .nav__link {
    width: 100%;
    overflow: unset;
}

.expander .nav__footer .nav__link {
    padding-left: 0.75rem;
}

.nav__link span {
    display: none;
}

.expander .nav__link span {
    display: block;
}

.nav__link:hover {
    background-color: var(--first-color);
    color: #000;
}

.nav__icon {
    font-size: 1.25rem;
}

.nav__name {
    color: #6C6F80;
    font-size: 14px;
    font-weight: 500;
}

.nav__name__company {
    color: #6C6F80;
    font-size: 15px;
    font-weight: 500;
}

/*Expander menu*/

.expander {
    /* width: calc(var(--nav-width) + 9.25rem); */
    width: calc(var(--nav-width) + 188px);
}


/*Add padding body*/

.body-pd {
    padding-left: calc(var(--nav-width) + 188px);
}


/*Active links menu*/

.active {
    background-color: var(--first-color);
    color: #000;
}


/*===== COLLAPSE =====*/

.collapse__div .collapsShow {
    display: flex;
    column-gap: 0.55rem;
    margin-bottom: 4px;
}

.collapse__btn {
    justify-self: flex-end;
    transition: .5s;
}

.collapse__menu {
    display: none;
    border-radius: 8px;
    background: var(--base-white, #FFF);
    /* Shadow 1 */
    box-shadow: 0px 0px 16px 0px rgba(104, 122, 52, 0.13);
}

.collapse__menu .sub_link {
    padding-left: 25px;
}

.collapse__menu form .sub_link {
    padding-left: 10px;
    /* justify-content: center; */
}

.collapse__menu .addOrgLink {
    justify-content: center;
}

.collapse__menu .addOrgLink span,
.collapse__menu .addOrgLink svg {
    font-size: 14px;
    font-weight: 400;
    color: #e15241;
    stroke: #e15241;
}

.collapse__sublink {
    color: var(--sub-color);
    font-size: var(--small-font-size);
}

.collapse__sublink:hover {
    color: var(--white-color);
}

.nav__footer {
    background: #E15241;
}

.nav__footer .nav__link {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.expander .nav__footer .nav__link {
    justify-content: start;
}


/*Show collapse*/

.showCollapse {
    display: block;
}


/*Rotate icon*/

.rotate {
    transform: rotate(90deg);
}


/*create task model */

.create-task-section {
    top: 0;
    position: relative;
    opacity: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s linear;
}

.backDrop {
    background: rgba(70, 70, 70, 0.5);
    backdrop-filter: blur(4px);
}

.create-task-section .create-task-main {
    position: absolute;
    /* top: -100%; */
    left: 40%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    background: #f4f5fa;
    background: #f4f5fa;
    transition: all 0.3s linear;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.create-task-section .show-main {
    height: 100%;
    max-height: 80%;
    top: calc(50% + 10px);
    transition: top 0.3s ease-in-out;
}

.create-task-section .member-button {
    stroke: #e15241;
    color: #e15241;
    fill: none;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
}

.create-task-main .task-submit-area {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.create-task-main form {
    gap: 28px;
    padding: 24px;
}

.create-task-main .create-task-header {
    border-radius: 12px;
    background: #fff;
    flex-direction: row;
    padding: 12px;
}

.create-task-main .close-wrap {
    position: absolute;
    top: 5px;
    right: -50px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.create-task-main .model-left-button {
    border-radius: 8px;
    padding: 8px;
    background: #f4f5fa;
    border: 0;
    outline: 0;
    cursor: pointer;
    stroke: #e15241;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.create-task-main .side-modal-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 0 12px 12px 0;
    background: var(--grey-white, #fff);
    align-items: flex-start;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.2s linear, opacity 0.2s linear;
}

.create-task-main .show-side-modal {
    width: 80%;
    padding: 24px;
    height: 100%;
    opacity: 1;
    transition: width 0.2s linear, opacity 0.2s linear;
}

.task-submit-area .task-submit-area-mobile-btn {
    display: none;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.create-task-section .task-form-div {
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

.create-task-section .task-form-div form {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.hide {
    display: none;
}

.showCustom {
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: opacity 0.2s linear;
    /* z-index: 99; */
}
.confirmation-modal.showCustom{
    z-index: 99;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.pagination .page-numbers {
    background: #FFF;
    border-radius: 8px;
    display: flex;
    width: 36px;
    height: 36px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

.pagination .page-numbers a {
    color: #0F2031;
}

.pagination .page-numbers:active {
    border: 1px solid #4C9DEB;
    outline: none;
}

.pagination .page-numbers:focus {
    border: 1px solid #4C9DEB;
    outline: none;
}

.pagination .page-numbers.active {
    border: 1px solid #4C9DEB;
}

.pagination .page-numbers:hover {
    border: 1px solid #4C9DEB;
}

.pagination .page-arrow-enable {
    stroke: #0F2031;
}

.pagination .page-arrow-disable {
    stroke: #C2C3C8;
}


/* date picker */

.daterangepicker {
    border-radius: 10px !important;
}

.daterangepicker .drp-calendar table thead {
    color: rgba(0, 0, 0, 0.6) !important;
}

.daterangepicker .drp-calendar table tbody {
    color: black !important;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-weight: 400 !important;
}

.daterangepicker .calendar-table th.month {
    color: #000 !important;
}


/* Date input icon change  */

input[type="date"] {
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23688EBB' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' transform='translate(1 1)'%3E%3Crect width='18' height='18' y='2' rx='2'/%3E%3Cpath d='M13 0L13 4M5 0L5 4M0 8L18 8'/%3E%3C/g%3E%3C/svg%3E") right 1rem center no-repeat;
}

input[type='datetime-local'] {
    background: white url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAABNElEQVR4nO2UwUpCQRSGv0260shAyl6hVc/QQrcRPkJEWoThw/RAlYJGu6h22T7QtjFx4B8ars0d9RYE9cNZ3P8czn/mP3MHPlEGToEB8Ka4AbpAiYLYAe4AF4lboLFq83LQfAIcAhXFAfCo3DhyEj9EFGdB81rA7wN9cS+q6awiMFSBTe6xBtwDl/puq8Z2YtiLWGlDtrICMyXNEo8LYArU9b2uGuMMGzn7es4KTJWoBtwR8A70IgKVHIE5uwYibaEhjoFXYEv2Wc21crvLCHRFPgCbmVxdS35SzYn482UESrrnTrelLbuqmtw3H2n5eYjeqEYg8lWMgO1E81wBf5KOfJ4prmRLavKFBL4DLiXQ10/0YwKu4BHdv0AKf8CiSeKNcQvE3HMdoqWCIs2bBRz4hfgAbHOwwZmRgHMAAAAASUVORK5CYII") right 1rem center no-repeat;
}


/** END checkbox CSS */

.checkbox-container {
    display: inline-block;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid #4C9DEB;
    outline: none;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"]:checked {
    border-radius: 4px;
    background: #356DA4;
    border: none;
}

.checkbox-container input[type="checkbox"]::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"%3E%3Cpath d="M10 16.4L6 12.4L7.4 11L10 13.6L16.6 7L18 8.4L10 16.4Z" fill="white"/%3E%3C/svg%3E');
    visibility: hidden;
}

.checkbox-container input[type="checkbox"]:checked::before {
    visibility: visible;
}


/* END checkbox CSS */

.mob-767-show {
    display: none;
}
.show-1199 {
    display: none;
}

.svg-fill-none {
    fill: none;
}

.svg-stroke-none {
    stroke: none;
}


/* /// chart  */

.mob-chart-swiper {
    overflow: hidden;
    min-height: 190px;
    position: relative;
}

.radialProgressBar {
    border-radius: 50%;
    width: 145px;
    height: 145px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #FAFAFA;
}

.radialProgressBar .overlay {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: auto;
    background: #fff;
    text-align: center;
    /* padding-top: 30%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0F2031;
    font-size: 24px;
    font-weight: 600;
}

.overlay span {
    color: #0F2031;
    font-size: 14px;
    font-weight: 400;
}

.progress-0 {
    background-image: #FAFAFA;
}

.progress-10 {
    background-image: conic-gradient(#BC2A2A 10deg, #6C1A1A 45deg, #6C1A1A 20deg, #FAFAFA 20deg);
}

.progress-20 {
    background-image: conic-gradient(#BC2A2A 45deg, #BC2A2A 45deg, #6C1A1A 65deg, #FAFAFA 65deg);
}

.progress-30 {
    background-image: conic-gradient(#BC2A2A 45deg, #BC2A2A 45deg, #6C1A1A 115deg, #FAFAFA 101deg);
}

.progress-40 {
    background-image: conic-gradient(#BCB62A 45deg, #BCB62A 45deg, #6B6C1A 132deg, #FAFAFA 135deg);
}

.progress-50 {
    background-image: conic-gradient(#BCB62A 45deg, #BCB62A 90deg, #6B6C1A 180deg, #FAFAFA 179deg);
}

.progress-60 {
    background-image: conic-gradient(#BCB62A 45deg, #BCB62A 90deg, #6B6C1A 224deg, #FAFAFA 179deg);
}

.progress-70 {
    background-image: conic-gradient(#2CBC2A 45deg, #2CBC2A 90deg, #1B6C1A 255deg, #FAFAFA 220deg);
}

.progress-80 {
    background-image: conic-gradient(#2CBC2A 45deg, #2CBC2A 90deg, #1B6C1A 290deg, #FAFAFA 255deg);
}

.progress-90 {
    background-image: conic-gradient(#2CBC2A 45deg, #2CBC2A 90deg, #1B6C1A 325deg, #FAFAFA 290deg);
}

.progress-100 {
    background-image: conic-gradient(#2CBC2A 45deg, #2CBC2A 90deg, #1B6C1A 360deg, #FAFAFA 225deg);
}


/* End CHAT CSS */


/* Global Tables */

.table-wrapper {
    border-radius: 8px;
    background: #FFF;
    padding: 12px;
    width: 100%;
}

.table-wrapper thead tr {
    border-bottom: 1px solid #E6E6E6;
}

.table-wrapper thead tr th {
    color: #6C6F80;
    font-size: 17px;
    line-height: normal;
    padding: 8px 0px;
    font-weight: 400;
}

.table-wrapper thead .checkbox-wrapper {
    width: 24px;
    height: 24px;
}

.table-wrapper .table-wrap-page {
    width: 100%;
}

.table-wrapper .date-filter {
    padding: 20px 0px;
    color: #6C6F80;
    font-size: 17px;
    font-weight: 400;
}

.table-wrapper tbody .checkbox-body {
    width: 24px;
    height: 24px;
}

.table-wrapper .data-cell-details {
    border-bottom: 1px solid #E6E6E6;
    background: #FAFAFA;
    height: 61px;
}

.table-wrapper .data-cell-details:last-child {
    border-bottom: unset;
}

.table-wrapper tr td {
    padding: 8px 4px;
    color: #0D0D0D;
    font-size: 16px;
    font-weight: 500;
}

.table-wrapper .hide-text {
    display: none;
}


/* End Global Tables */

/* custom select box css */

.select_wrap {
    position: relative;
    user-select: none;
    z-index: 2;
    width: 100%;
    border-radius: 8px;
}

.select_wrap .default_option {
    background: #fff;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #4C9DEB;
}

.select_wrap .default_option li {
    padding: 10px 20px;
    stroke: #356DA4;
}
.select_wrap .default_option li p {
    margin-bottom: 0;
}
.select_wrap .default_option li div i {
    transition: all ease-in-out 0.5s;
}

.select_wrap .select_ul {
    transition: all ease-in-out 0.5s;
    position: absolute;
    top: 47px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    height: 0;
    max-height: 300px;
    overflow: hidden;
}

.select_wrap .select_ul li {
    padding: 10px 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.4;
    border-bottom: 1px solid #ccc;
}
.select_wrap .select_ul li p {
    margin-bottom: 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

.select_wrap .select_ul li:hover {
    border-top: 0.5px solid #E6E6E6;
    border-bottom: 0.5px solid #E6E6E6;
    background: #FAFAFA;
}

.select_wrap .default_option .option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}
.select_wrap .option {
    display: flex;
    align-items: center;
}

.select_wrap.active .select_ul {
    transition: all ease-in-out 0.5s;
    height: auto;
    max-height: 355px;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid #4C9DEB;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select_wrap.active .default_option {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select_wrap.active .default_option li div i {
    transform: rotate(-180deg);
}


/* end custom select box css */
/* select box with check box */
.select-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.select-btn .btn-text {
    font-size: 17px;
    font-weight: 400;
    color: #333;
}

.select-btn .arrow-dwn {
    display: flex;
    height: 21px;
    width: 21px;
    stroke: #356DA4;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.select-btn.open .arrow-dwn {
    transform: rotate(-180deg);
}

.list-items {
    position: absolute;
    width: 100%;
    margin-top: 5px;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 220px;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
}

/* Always show the scrollbar of the dropdown */
.list-items::-webkit-scrollbar {
    width: 8px;
    height: 0;
}

.list-items::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 8px;
}

.list-items::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, .3);
}

.list-items .item {
    display: flex;
    align-items: center;
    list-style: none;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 15px;
    border-radius: 8px;
}

.list-items .item:hover {
    background-color: #e7edfe;
}

.item .item-text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.item .checkbox {
    margin-right: 12px;
}

/* end select box with check box */

/* map global css */

.map-locate-to-job-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 4px;
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"%3E%3Cpath d="M12 19.5C16.1421 19.5 19.5 16.1421 19.5 12C19.5 7.85786 16.1421 4.5 12 4.5C7.85786 4.5 4.5 7.85786 4.5 12C4.5 16.1421 7.85786 19.5 12 19.5Z" stroke="%23292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" stroke="%23292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M12 4V2" stroke="%23292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M4 12H2" stroke="%23292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M12 20V22" stroke="%23292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M20 12H22" stroke="%23292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat;
}

#map .leaflet-control-resetview a .leaflet-control-resetview-icon {
    width: 24px;
    height: 24px;
    margin: 4px;
    mask-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"%3E%3Cpath d="M11.9999 13.4304C13.723 13.4304 15.1199 12.0336 15.1199 10.3104C15.1199 8.5873 13.723 7.19043 11.9999 7.19043C10.2768 7.19043 8.87988 8.5873 8.87988 10.3104C8.87988 12.0336 10.2768 13.4304 11.9999 13.4304Z" stroke="%23292D32" stroke-width="1.5"/%3E%3Cpath d="M3.61995 8.49C5.58995 -0.169998 18.42 -0.159997 20.38 8.5C21.53 13.58 18.37 17.88 15.6 20.54C13.59 22.48 10.41 22.48 8.38995 20.54C5.62995 17.88 2.46995 13.57 3.61995 8.49Z" stroke="%23292D32" stroke-width="1.5"/%3E%3C/svg%3E');
}

#map .leaflet-div-icon {
    background-color: transparent;
    border: none;
}
#JobMap .leaflet-div-icon {
    background-color: transparent;
    border: none;
}

/* end map global css */


/* status button color */
.default{
    color: #FFF;
    fill: #FFF;
    background: #E15241;
}

.default-reverse{
    color: #E15241;
    fill: #E15241;
    background: #fff;
}

.default.stroke{
    stroke: #FFF;
}

.sky-blue{
    color: #FFF;
    fill: #FFF;
    background-color: #4C9DEB;
}

.sky-blue.stroke{
    stroke: #FFF;
}

.complete {
    color: #0b4f00;
    fill: #0b4f00;
    background: #97ff86;
}

.complete.stroke {
    stroke: #0b4f00;
    fill: none;
}

.in-progress {
    color: #4c4e00;
    fill: #4c4e00;
    background: #feffcd;
}

.in-progress.stroke {
    stroke: #4c4e00;
}

.in-review {
    color: #400072;
    fill: #400072;
    background: #e0b0ff;
}
.in-review.stroke {
    stroke: #400072;
}

.scheduled {
    color: #250056;
    fill: #250056;
    background: #80a6ff;
}

.scheduled.stroke {
    stroke: #250056;
}

.show-edit-width {
    width: 70%;
    transition: width 0.2s linear;
}

/* confirmation-modal  */
.confirmation-modal.create-task-section .show-main {
    height: auto;
    /* padding: 16px; */
}

.confirm-model {
    /* padding: 16px; */
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 450px;
}

.confirm-model .confirm-model-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
}

/* Head */
.confirm-model .confirm-model-head {
    padding: 12px 16px;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    stroke: #4C9DEB;
    background-color: #c3e7ff;
}

.confirm-model .confirm-model-head span {
    color: #4C9DEB;
    font-size: 18px;
    font-weight: 500;
}

.confirm-model .confirm-model-head.confirm-warning {
    stroke: #e89f29;
    background-color: #ffe8c3;
}

.confirm-model .confirm-model-head.confirm-warning span {
    color: #e89f29;
}

.confirm-model .confirm-model-head.confirm-error {
    stroke: #E15241;
    background-color: #ffc3c3;
}

.confirm-model .confirm-model-head.confirm-error span {
    color: #E15241;
}

.confirm-model .confirm-model-head.confirm-success {
    stroke: #0b4f00;
    background-color: #c6ffc3;
}

.confirm-model .confirm-model-head.confirm-success span {
    color: #0b4f00;
}

/* ///////// */
.confirm-model h4 {
    font-size: 18px;
    font-weight: 600;
}

.btn-group-model {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.confirm-model .btn-group-model .default:hover {
    background-color: #fff;
    color: #E15241;
}

.confirm-model .btn-group-model .default-reverse:hover {
    background-color: #E15241;
    color: #fff;
}

@media screen and (min-width: 1500px) {
    .row .col-xxl-3{
        max-width: 25%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
    .row .col-xxl-4{
        max-width: 33.33333%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    }
    .row .col-xxl-6{
        max-width: 50%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .row .col-xxl-12{
        max-width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media screen and (max-width: 1199px) {


    .navigation-custom .navigation-heading {
            font-size: 24px;
    }
    .create-task-section .create-task-main {
        left: 37%;
    }
    .create-task-section .show-main {
        width: 70%;
    }
    .create-task-main .close-wrap {
        display: none;
    }
    .show-1199{
        display: block;
    }
    .task-submit-area .task-submit-area-mobile-btn {
        display: flex;
    }
    .confirmation-modal.create-task-section .show-main {
        width: auto;
    }
}

@media screen and (max-width: 991px) {
    .navigation-custom .navigation-heading {
            font-size: 28px;
    }
  .navigation-custom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
    gap: 10px;
  }
  .navigation-custom.navigation-custom-mob{
    flex-direction: row;
  }

  .nav-filter-warp {
    width: 100%;
  }

  .navigation-custom-mob .nav-filter-warp{
    width: unset;
  }
  .create-task-section .create-task-main {
    left: 45%;
  }

  .create-task-section .show-main {
    width: 80%;
    max-height: 70%;
    top: 60%;
  }
}

@media screen and (max-width: 767px) {
    .confirm-model{
        max-width: unset;
    }

    .nav-task-wrap .search-tablet-toggle {
         display: block;
     }
    .confirmation-modal.create-task-section .show-main {
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        border-radius: 8px;
    }
    .navigation-custom.navigation-custom-mob {
        flex-direction: column;
    }
    .navigation-custom-mob .mob-hide {
        display: none;
    }
    .nav-task-wrap.nav-task-bottom {
        width: 100%;
    }
    .nav-task-bottom .MC-secondary-btn {
        width: 100%;
    }
    .nav-task-wrap.daily-log-sub-nav {
        width: 100%;
    }
    .mob-767-show {
        display: block;
    }
    .mob-767-hide {
        display: none;
    }
    .body-pd {
        padding-left: 0;
    }
    body {
        padding-left: 0;
    }
    .l-navbar {
        top: 56px;
        width: 0;
    }
    .expander {
        width: calc(var(--nav-width) + 188px);
    }
    .nav__brand .nav__toggle {
        display: none;
    }
    .nav__footer {
        display: none;
    }
    .l-navbar .nav .nav__brand {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* table to card */
    .table-wrapper .table-wrap-page .table-body-warp {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .table-wrapper .data-cell-details {
        height: unset;
    }
    .table-wrapper .table-wrap-page thead tr {
        display: none;
    }
    .table-wrapper {
        background: transparent;
        padding: 0px 16px 16px 16px;
    }
    .table-wrapper .table-wrap-page .data-cell-details {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #ffff;
        border-bottom: none;
        padding: 16px;
        border-radius: 12px;
        gap: 16px;
    }

    .table-wrapper .data-details-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .table-wrapper .hide-text {
        display: block;
        color: #6C6F80;
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
    }
    .table-wrapper .project-text {
        border-bottom: 1px solid #F4F5FA;
    }
    /* end table to card */
    /* Task Navigation */
    .navigation-custom {
        padding: 0px;
        border: none;
        justify-content: unset;
        align-items: unset;
        padding-bottom: 8px;
        background: #e3e5ef;
        box-shadow: 0px 10px 20px 20px #0000000f;
    }
    .navigation-custom .navigation-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 20px;
        background-color: #e15241;
        color: #fff;
        padding: 12px 15px;
    }
    .navigation-custom .nav-filter-warp {
        padding: 0px 15px;
    }
    .navigation-heading .menu__btn svg {
        stroke: #fff;
    }
    .navigation-heading .profile-images {
        display: flex;
    }
    .navigation-custom .menu__btn svg {
        display: flex;
    }
    /*  scroll bar */
     ::-webkit-scrollbar {
        width: 2px;
    }
     ::-webkit-scrollbar-thumb {
        background-color: #c7c7c776;
        border-radius: 4px;
    }
     ::-webkit-scrollbar-track {
        background: none;
        display: none;
    }
    .create-task-section .create-task-main {
        left: 50%;
        position: absolute;
        left: 0;
        padding: 0;
        top: 121px;
        transform: unset;
        border-radius: unset;
    }
    .create-task-section .member-button {
        font-size: 13px;
    }
    .create-task-section .show-main {
        max-height: unset;
        width: 100%;
    }
    .create-task-main .show-side-modal {
        width: 100%;
    }
    .create-task-section .task-hide-width {
        width: 0;
    }
}

@media screen and (max-width: 576px) {
    .mob-576-hide {
        display: none !important;
    }
    .mob-576-flex {
        display: flex !important;
    }
    .confirmation-modal.create-task-section .show-main {
        width: 90%;
    }
    .mob-576-block {
        display: block !important;
    }
    /* Task Navigation */
    .navigation-custom-mob .nav-filter-warp {
        width: 100%;
    }
    .nav-task-wrap .icon-input {
        display: none;
    }
    .nav-task-wrap .icon-input.show-input {
        display: block;
    }

    .nav-task-wrap .mobile-toggle {
        display: block;
    }
    .nav-filter-warp {
        flex-direction: column;
        align-items: unset;
    }
    .nav-task-wrap {
        gap: 8px;
        justify-content: start;
    }
    .nav-task-wrap .mobile-float-btn {
        position: fixed;
        display: flex;
        justify-content: end;
        bottom: 0px;
        left: 0;
        z-index: 1;
        width: 100%;
        background-color: #fff;
        padding: 10px 20px;
    }
    .nav-task-wrap .mobile-float-btn .MC-primary-btn {
        display: flex;
        flex-direction: row-reverse;
        gap: 12px;
        align-items: center;
    }
    .mobile-MC-secondary-btn {
        width: 100%;
    }
    .create-task-section .show-main {
        height: calc(100% - 180px);
    }
}
