shadOLD /* --primary-color: 	#484c7f; */
NEW /* --primary-color: 	#011744; */

:root{
    --main-gradient-bg: linear-gradient(0deg, rgba(24,77,168,1) 0%, rgba(10,46,108,1) 100%);
}

::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1 !important; 
}
::-webkit-scrollbar-thumb {
    background: #555 !important; 
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555 !important; 
}

.sidebar .menu-list::-webkit-scrollbar{
    width: 3px !important;
}
.sidebar .menu-list::-webkit-scrollbar-thumb{
    background: var(--secondary-color) !important;
}

/* Login Page */
#mytask-layout > .login-div{
    /* background-color: #011744 !important; */
    background-color: #3c3f46 !important;
}
.login-div{
    background-color: #3c3f46 !important;
}
[requires-admin-permission], [requires-permission] {
 display: none !important;
}
.selectedRow {
 background: #eee;
}

.main-button-area > button {
    /* margin-bottom: 0.4em;
    margin-left: 0.6em; */
}
.main-button-area .dropdown-toggle {
    /* padding: 0.55em 0.6em; */
}
.card{
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.campaign{
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      min-height: 30%;
}
.on_progress{
    background: #3890d1;
    padding: 3px 12px;
    border-radius: 99px;
    color: #fff;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
}
.error-div{
    color:red;
}
.on_hold{
    background: orange;
    padding: 3px 12px;
    border-radius: 99px;
    color: #fff;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
}
.done{
    background: green;
    padding: 3px 12px;
    border-radius: 99px;
    color: #fff;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
}
.type_project{
    background-color: var(--primary-color);
    padding: 2px 8px;
    color: #fff;
    border-radius: 99px;
    font-size: smaller;
    font-weight: bold;
}
.type_task{
    background-color: var(--bs-teal);
    padding: 2px 8px;
    color: #fff;
    border-radius: 99px;
    font-size: smaller;
    font-weight: bold;
}
.type_subtask{
    background-color: #ec4d5d;
    padding: 2px 8px;
    color: #fff;
    border-radius: 99px;
    font-size: smaller;
    font-weight: bold;
}
.project_title_followup_cat{
    color:gray;
    font-size: 12px;
}
.project_title_followup_cat:empty{
    display: none;
}

.on_progress-span{
    background: #000428;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 2px 8px;
    color: #fff;
    border-radius: 99px;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
}
.on_hold-span{
    background: #FF512F;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F09819, #FF512F);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #F09819, #FF512F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 2px 8px;
    color: #fff;
    border-radius: 99px;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
}
.done-span{
    background: #1D976C;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right,#1D976C, #93F9B9);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1D976C, #93F9B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 2px 8px;
    color: #fff;
    border-radius: 99px;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
}

.pagination .page-item.active .page-link {
    color:var(--secondary-color);
z-index:auto;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #fff;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
content: '';  
box-sizing: border-box;
position: absolute;
left: 0;
top: 0;
width: 48px;
height: 48px;
border-radius: 50%;
border-left: 4px solid #FCD401;
border-bottom: 4px solid transparent;
animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

.ChatDiv{
    height: 70vh;
}

.chat-history::-webkit-scrollbar {
    width: 5px !important;
}
.chat-history::-webkit-scrollbar-track {
    background: #f1f1f1 !important; 
}
.chat-history::-webkit-scrollbar-thumb {
    background: #888 !important; 
    border-radius:10px;
}
.chat-history::-webkit-scrollbar-thumb:hover {
    background: #555 !important; 
}

.select2 {
    width: 100% !important;
}

.mentionsOpen{
    position: absolute;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    background: beige;
    font-weight: bold;
    bottom: 75px;
    cursor: pointer;
    line-height: 1.6;
}
.mentionsOpen ul{
    padding-left: 0px;
    margin-bottom: 0px;
}
.mentionsClose{
    display: none;
}

.mentionsOpen li{
    list-style-type: none;
}

.fa-sort {
    cursor: pointer !important;
}

.showPasswordIcon{
    color: var(--primary-color);
    font-size: large;
    position: absolute;
    right: 12%;
    cursor: pointer;
}

.showPassword2Icon {
    color: var(--primary-color);
    font-size: large;
    position: absolute;
    right: 14%;
    cursor: pointer;
}

.filepond--credits{
    display: none;
}

.sidebar{
    width: 250px;
    height: calc(100vh - 80px);
}
.searchIcon{
    position: absolute;
    left: 5%;
    font-size: 1.15rem;
    color: #c9c9c9;
    padding-top: 0.3em;
    
}
.input-group-lg>.form-control{
    padding: 0.5rem 3rem;
    font-size: 1rem;
    border-radius: 30px;
}
.input-group-lg>.form-control:focus{
    padding: 0.5rem 1rem;
}
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){
    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}
#main-search-input{
    background-color: #fff;
}
.form-control:focus{
    border: none;
    padding: 0.5rem 1rem;
}
.search-criteria-btns{
    display: flex;
    flex-direction: row;
}
.dateInputs{
    width: 135px;
}
.footer{
    background: #184DA8;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
}

#list-view > div > div > div > div > div.card-header.py-3.px-0.d-sm-flex.align-items-start.justify-content-between.main-button-area > form > div > div.filepond--drop-label{
    align-items: start;
}

.mytooltipDiv{
    display: flex;
    gap: 3px;
}

.mytooltiptext{
    display: none;
}

.mytooltip:hover .mytooltiptext{
    display: unset;
    position: absolute;
    background: #fff;
    padding: 15px 10px;
    top: 10px;
    width: 180px;
    border: 1px solid #184DA8;
    border-radius: 10px;
    margin-left: 5px;
    cursor: text;
    z-index: 50;
}

.filepond--drop-label.filepond--drop-label label{
    padding: 0px !important;
}

.filepond--panel-root{
    background: transparent !important;
}

.filepond--root .filepond--drop-label{
    min-height: 2.75em !important;
}

.filepond--item{
    width: fit-content;
}

.loadingDiv{
    position: absolute;
    background: linear-gradient(0deg, rgb(24 77 168 / 97%) 0%, rgb(10 46 108 / 97%) 100%);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
}
.loadingDiv h3 {
    font-size: 18px;
}

.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
  }
  .dot-flashing::before, .dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
  }
  .dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
  }
  .dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
  }
  
  @keyframes dot-flashing {
    0% {
      background-color: #ffffff;
    }
    50%, 100% {
      background-color: rgba(255, 255, 255, 0.2);
    }
  }
.table tr th {
    white-space:nowrap;
}
.table tr td {
    white-space:nowrap;
}

.totalrequestscard{
    height: 100%;
    max-height: 600px;
    overflow: auto;
}

.totalrequestscard::-webkit-scrollbar {
    width: 5px !important;
}
.totalrequestscard::-webkit-scrollbar-track {
    background: #f1f1f1 !important; 
}
.totalrequestscard::-webkit-scrollbar-thumb {
    background: #aad8f3 !important; 
}
.totalrequestscard::-webkit-scrollbar-thumb:hover {
    background: #939598 !important; 
}

.divCategory::-webkit-scrollbar {
    width: 5px !important;
}
.divCategory::-webkit-scrollbar-track {
    background: #f1f1f1 !important; 
}
.divCategory::-webkit-scrollbar-thumb {
    background: #aad8f3 !important; 
}
.divCategory::-webkit-scrollbar-thumb:hover {
    background: #939598 !important; 
}

.table-responsive::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}
.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1 !important; 
}
.table-responsive::-webkit-scrollbar-thumb {
    background: #aad8f3 !important; 
}
.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #555 !important; 
}
 
.u-info{
    text-align: end;
}
.saveBtnDiv{
    box-shadow: -5px -20px 10px -23px rgba(0,0,0,0.2);
}
.mobile-scroll-info{
    display: none;
}
.tabRequestTitle{
    padding: 10px 15px;
    color: var(--primary-color);
    box-shadow: inset 0px 0px 10px 0px #e7e7e7;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-width: 0px 0px 0px 5px;
    border-color: var(--primary-color);
    border-style: solid;
}
.tabContactTitle{
    padding: 10px 15px;
    color: var(--primary-color);
    box-shadow: inset 0px 0px 10px 0px #e7e7e7;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-width: 0px 0px 0px 5px;
    border-color: var(--primary-color);
    border-style: solid;
}
.tabRequestResults{
    border-bottom: 1px dotted #b0c0db;
    padding: 10px 15px;
}
.tabContactResults{
    border-bottom: 1px dotted #b0c0db;
    padding: 10px 15px;
}
.select2-selection--single{
    border: none !important;
    background-color: transparent !important;
    position: absolute;
    top: 0;
    width: 100%;
}
.select2-selection--multiple{
    position: absolute !important;
    top: 0;
    background-color: transparent !important;
    border: none !important;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.select2-container--default{
    border-color: var(--border-color);
    background-color: var(--color-200);
    color: var(--text-color);
    font-size: 16px;
    height: 40px;
    border-radius: 5px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.select2-selection__arrow{
    display: none;
}
.mainBtn{
    background-color: #184DA8 !important;
    color: #fff;
}
  
.slider-container {
    width: 100%;
    margin: 60px 0px 40px 0px;
}
.divCategory{
    gap: 30px;
    overflow-x: auto;
}
.innerDivContainer {
    display: flex;
    animation: scrollAnimation 20s linear infinite; /* Adjust animation duration as needed */
}
.innerDivCategory {
    min-width: 20%;
    border: 1px dashed var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 20px 15px -15px #dddddd;
}
@keyframes scrollAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.innerDivTitle{
    background: var(--primary-color);
    width: fit-content;
    color: white !important;
    padding: 3px 8px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
}
.add-more-hours-container {
    position: relative;
    z-index: 9998 !important;
    display: flex;
    justify-content: center;
}

.add-working-hour {
    z-index: 9999 !important;
}
a.fc-event:hover{
    white-space:normal;
    transition: .8s;
    transform: scale(1.1);
    z-index: 9999;
    border-radius: 5px;
}
.fc-today-button{
    display: none !important;
}
td.fc-day-other {
    visibility: hidden;
}
.fc-icon{
    line-height: 0.8 !important;
}
#list-data input[type="checkbox" i] {
    background-color: red !important;
}
.campaignBtns{
    background: radial-gradient(circle, rgba(24, 77, 168, 1) 0%, rgba(19, 59, 128, 1) 100%);
    color: #fff;
    padding: 35px;
    border-width: 0px;
    border-radius: 5px;
    width:100%;
min-height:30%;
}
.campaignBtns { 
    transition: transform 0.8s;
    min-height:25vh;
}

.campaignBtns:hover {
    transform: translateY(-5px);
}

.campaignBtns:hover h3 {
    font-size: 2.2em;
    transition: font-size 0.3s ease, z-index 0.5s ease 0.3s;
    z-index: 1;
}
.campaign {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.campaign:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.select2-selection__clear{
    margin-right: 35px !important;
    margin-top: 2px !important;
    font-size: 20px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: #184DA8 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display{
    padding-left: 8px !important;
    background:  var(--primary-color)
}

.select2-container--default .select2-selection--multiple {
    background-color: #EEEEEE !important;
    width: 100%;
    margin: 0;
    left: 0;
    max-height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.select2-search__field::placeholder {
    color: #999;
}

.select2-container .select2-search--inline .select2-search__field::placeholder{
    color: #c1c1c1 !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 10px !important;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 5px;
    line-height: normal;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #184DA8;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #184DA8;
    border: 3px solid #184DA8;
}
/* Custom CSS for styling the multiple select box */
.select2-container--bootstrap4 .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    background-color: #184DA8;
    color: #fff;
    border: 1px solid #184DA8;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display{
    color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    background-color: var(--primary-color) !important;
}
.mapboxgl-popup-content, .maplibregl-popup-content{
    background: linear-gradient(90deg, rgba(24,77,168,1) 0%, rgba(15,52,115,1) 100%) !important;
    color: white !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    padding: 12px 18px !important;
    box-shadow: 0 5px 10px rgba(0,0,0,.3) !important;
    border: 1px solid white !important;
}
.mapboxgl-popup-close-button, .maplibregl-popup-close-button{
    border-radius: 99px !important;
    background:#103575 !important;
    color: white !important;
    top: -8px !important;
    right: -8px !important;
    font-size: 16px !important;
    font-weight: bold;
}
.mapboxgl-popup-close-button, .maplibregl-popup-close-button:focus-visible{
    outline: 0 !important;
    border: none !important;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip, .maplibregl-popup-anchor-bottom .maplibregl-popup-tip{
    border-top-color: var(--secondary-color) !important;
}
@media only screen and (max-width: 48em){
    
    .flex-column-mobile{
        flex-direction: column;
        gap: 15px;
    }
    .justify-between-mobile{
        justify-content: space-between !important;
    }
    .pagination{
        overflow: auto;
    }
    .paginationNav{
        position: sticky;
        left: 0px;
    }
    .navbar>.container-xxl{
        flex-wrap: wrap-reverse;
    }
	.user-profile{
        flex-direction: row-reverse;
        gap: 10px;
    }
    .dropdown-menu.show {
        position: absolute;
        top: 0px;
        left: 0px;
    }
    .page-item .page-link{
        font-size: small;
        white-space: nowrap;
    }
    .search-criteria{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .search-criteria-btns{
        display: flex;
        flex-direction: row;
    }
    .eortesDiv{
        flex-direction: column;
    }
    .mobileColumn{
        flex-direction: column;
    }
    .footer{
        position: fixed;
        clear:both;
        height:30px;
        margin-top: -20px;
    }
    .eortazontesFilterDiv{
        display: flex;
        flex-direction: column;
    }
    .pageTitleDiv{
        flex-direction: column;
        margin-top: 80px !important;
    }
    .dateInputs{
        width: 100%;
    }
    .uploadexportExcel{
        display: flex !important;
        flex-direction: row;
        /* align-items: center !important; */
        justify-content: center;
    }
    .uploadImage{
        left: -20px !important;
        /* top: 7.5px !important; */
    }
    .birthdaysDiv{
        display: flex;
        flex-direction: column !important;
    }
    .modal-dialog-scrollable .modal-content {
        max-height: 80%;
        overflow: hidden;
        margin: 20px;
    }
    .u-info{
        text-align: left;
    }
    .sidebar{
        height: calc(100vh - 30px);
        padding-bottom: 60px !important;
    }
    .topnavmobile{
        position: fixed;
        left: 0;
        width: 100%;
        align-items: center !important;
        justify-content: space-between;
        margin: 0 auto;
        z-index: 500;
        background: #fff;
        top: 0px;
        padding: 10px 20px;
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    }
    #filters-button{
        right: 30px !important;
    }
    .mobile-scroll-info{
        display: unset;
    }
    #myProjectTable th:last-child,
    #myProjectTable td:last-child {
        position: unset;
    }
    .tabRequestTitle{
        border-width: 0px 0px 2px 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    .tabContactTitle{
        border-width: 0px 0px 2px 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    .innerDivCategory{
        min-width: 50%;
    }
    .filterMobInput{
        width: 100% !important;
    }
    .add-working-hour{

    }
    #userPermission th:first-child, #userPermission td:first-child, #userPermissionEdit th:first-child, #userPermissionEdit td:first-child{
        position: sticky;
        z-index: 11;
        background-color: #fff;
        left: 0;
    }
     /* Make the first and last columns sticky */
    #myProjectTable th:last-child,
    #myProjectTable td:last-child {
        position: sticky;
        z-index: 11;
        background-color: #fff;
    }
    #myProjectTable th:first-child,
    #myProjectTable td:first-child{
        position: sticky;
        z-index: 11;
        background-color: #fff;
    }

    /* Adjust left and right values to handle the scroll */
    #myProjectTable th:first-child,
    #myProjectTable td:first-child {
        left: 0;
    }

    #myProjectTable th:last-child,
    #myProjectTable td:last-child {
        right: 0;
    }

    /* Hide password reveal button in Microsoft Edge */
    input::-ms-reveal {
        display: none;
    }

    /* Adjust z-index for other cells to avoid overlapping with sticky columns */
    #myProjectTable th:not(:first-child):not(:last-child),
    #myProjectTable td:not(:first-child):not(:last-child) {
        position: relative;
        z-index: 1;
    }
    /* .selectedRow td {
        background-color: #eee !important;
    } */

    .table-hover>tbody>tr:hover {
        --bs-table-accent-bg: red !important;
        --bs-table-hover-bg: transparent !important;
    }
    
    /* 
    .selectedRow tr:hover {
        background-color: transparent !important;
    }
    .selectedRow td:hover {
        background-color: transparent !important;
    }
    .table-hover>tbody>tr:hover{
        background-color: transparent !important;
    } */
}

td.fc-other-month {
    visibility: hidden;
 }
