/*
    1. Remove Body Scroll
    2. Sidebar

*/

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* background: #a5a5a5; */
    /* background: #7d7d7d; */
    background: #000;
    overflow-x: hidden !important;
    scrollbar-width: none !important;
}

a{
    text-decoration: none !important;
}

/* 1. Remove Body Scroll  */

::-webkit-scrollbar {  /* Hide scrollbar for Chrome, Safari, and Opera */
    display: none;
}

body::-webkit-scrollbar { /* Hide scrollbar for Edge */
    display: none;
}

html { /* Hide scrollbar for Firefox */
    overflow-x: hidden !important;
    scrollbar-width: none !important;
}


/* 2. Sidebar */

/*** Layout ***/
.logo-background {
    width: 240px !important;
    height: 95px;
    background: #000;
    position: fixed;
    z-index: 999;
}

.side-menu-bg{
    background: #000 !important;
}

.header-nav{
    background: #ccc !important;
}

.cursor-pointer{
    cursor: pointer !important;
}

.side-menu-bg .fa{
    color: #fff;
}

.logo-div-frame {
    height: 80px;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 226px;
    z-index: 99999;
    border-radius: 11px;
    box-shadow: inset 41px 41px 82px #000000, inset -105px -65px 82px #1e6193;
}

.logo-background .logo-outer-div {
    box-shadow: 1px 3px 3px 0px rgb(0 167 255) !important;
}

.logo-background .logo-div {
    height: 80px;
    position: relative;
    top: 0px;
    left: 0px;
    width: 230px;
    z-index: 99999;
    border-radius: 11px;
    box-shadow: inset 41px 41px 82px #ffffff, inset -105px -65px 82px #fff;
}

.logo-background .logo-div .logo-img {
    padding-bottom: 5px;
    padding-top: 2px;
}

.menu-content-div {
    margin-top: 100px !important;
    margin-bottom: 60px !important;
    position: fixed !important;
    width: 240px;
    top: 0px;
    bottom: 0px;
    overflow: auto;
    align-content: flex-start;
}

.menu-content-div .menu-shadow {
    box-shadow: 4px 3px 3px 0px rgb(255 255 255);
    border-radius: 10px;
    transition: all 0.5s;
}

.menu-content-div .menu-shadow .menu-block {
    border-radius: 10px;
    background: #000000;
    cursor: pointer;
    box-shadow: inset 41px 41px 82px #1988c3, inset -41px -41px 82px #fff;
    height: 100px;
    transition: all 0.5s;
}

/* Hover effect for .menu-shadow */
.menu-content-div .menu-shadow:hover {
    border-radius: 25px;
}

/* Hover effect for .menu-block when .menu-shadow is hovered */
.menu-content-div .menu-shadow:hover .menu-block {
    box-shadow: inset 41px 41px 82px #ff4545, inset -41px -41px 82px #ffffff;
    border-radius: 22px;
}


/* Active Styles start */
.menu-active{
    box-shadow: inset 41px 41px 82px #ff4545, inset -41px -41px 82px #ffffff !important;
    border-radius: 22px !important;
}

.menu-active-border{
    border-radius: 25px !important;
}

.menu-active-fa{
    color: #000 !important;
}

.menu-img-mt{
    margin-top: 5px !important;
}
/* Active Styles end */


.menu-content-div .menu-shadow:hover .menu-text {
    color: #000 !important;
}

.menu-icon{
    color: #fff;
    transition: all .5s;
}
.menu-content-div .menu-shadow:hover .menu-icon {
    color: #000 !important;
}

.menu-content-div .menu-shadow .menu-block .menu-text {
    color: #000;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    line-height: 18px;
    transition: all .5s;
}

.menu-content-div .menu-shadow .menu-block .menu-head {
    margin-top: 5px;
}

.border-right {
    border-right: 1px solid #000 !important;
}

.blur-div{
    width: 100% !important; 
    height: 100vh !important; 
    backdrop-filter: blur(3px); 
    z-index: 9; 
    display: none;
}

#wrapper {
    display: flex;
    flex-direction: row;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: 0;
    transition: margin .25s ease-out;
    z-index: 99999;
}

#sidebar-wrapper.hovered {
    margin-left: 0;
}

#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

#page-content-wrapper {
    width: 100%;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
}

#wrapper.toggled #sidebar-wrapper .list-group-item {
    text-align: center;
    padding: 10px;
    padding-left: 15px;
}

#wrapper.toggled #sidebar-wrapper .list-group-item i {
    margin-right: 0;
}

#wrapper.toggled #sidebar-wrapper .list-group-item-action {
    text-align: start;
}

#wrapper.toggled #sidebar-wrapper .list-group-item-action i {
    font-size: 1.5rem;
}



/*************************************************** Submenu Start ********************************************************/

.submenu {
    width: 210px;
    background-color: #2085ba;
    border-radius: 8px;
    z-index: 2000;
    position: fixed; /* Changed from absolute */
    display: none;
    transition: all 0.3s ease;
}

/* Adjust pointer since now it's fixed */
.submenu::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #2085ba transparent transparent;
}

/* Hover effect for submenu items */
.submenu li:hover {
    box-shadow: inset 41px 41px 82px #ff4545, inset -41px -41px 82px #ffffff;
    color: white !important;
}

/* Submenu list styling */
.sub-list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
    list-style: none;
}
/* Hover effect for submenu items */
.sub-list-group-item {
    padding: 7px 7px 7px 15px;
    transition: all .5s;
}

.sub-list-group-item:hover a {
    color: white !important;
    margin-left: 5px;
}

.submenu-first-item{
    border-radius: 8px 8px 0px 0px !important;
    border-bottom: 1px solid #fff;
}

.submenu-last-item{
    border-radius: 0px 0px 8px 8px !important;
    border-top: 1px solid #fff;
}
/* Style for the <a> tag to remove any default link color */
.sub-list-group-item a {
    display: block;
    color: #fff; /* Inherit color from parent */
    text-decoration: none; /* Remove underline */
    width: 100%; /* Ensure the clickable area is full width */
    font-weight: bold;
    transition: all .5s;
    outline: none !important;
}


/*************************************************** Submenu End ********************************************************/

.fa{
    /* color: #3579cb; */
    cursor: pointer;
}

.logout-menu{
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 240px;
    border-radius: 0px 10px 0px 0px;
    background: linear-gradient(315deg, #000000, #545454);
}

.submenu-active{
    box-shadow: inset 41px 41px 82px #ff4545, inset -41px -41px 82px #ffffff !important;
    color: white !important;
}

/********************************************************** Sidebar End **********************************************************/


/********************************************************** Header Start **********************************************************/

.fixed-top {
    position: fixed;
    top: 5px;
    right: 5px;
    left: 261px;
    z-index: 9;
    border-radius: 10px;
    background: #666c71eb;
    transition: 0.5s;

}

.fixed-top .toggler-icon{
    width: 30px;
    cursor: pointer;

}

/********************************************************** Header End **********************************************************/




/********************************************************** Content Start **********************************************************/

.main-content {
    /* position: absolute;
    margin-left: 270px;
    top: 65px;
    bottom: 60px;
    overflow-y: scroll;
    width: 100%; */
    position: absolute;
    margin-left: 253px;
    top: 57px;
    margin-right: 5px;
    bottom: 64px;
    overflow-y: auto;
    transition: 0.5s;
}


/********************************************************** Content End **********************************************************/



/********************************************************** Footer Start **********************************************************/

.footer {
    padding: 0px 0;
    position: absolute;
    padding-left: 10px;
    bottom: 5px;
    right: 5px;
    border-radius: 10px;
    transition: 0.5s;
    background: #cccccc;
    padding: 5px;
    left: 245px;
    right: 5px !important;
}

.footer .footer-company-outer{
    width: fit-content;
    background: #fff;
    border-radius: 7px;
    margin-right: 5px;
}

.footer .footer-company-outer .footer-text{
    color: #000000;
    cursor: pointer;
    padding-left: 8px;
    font-size: 13px;
}

.footer .footer-company-outer .footer-company-text a{
    color: #0074ff;
    cursor: pointer;
    text-decoration: none;
    transition: all .5s;
    font-size: 13px;
}

.footer .footer-company-outer .footer-company-text a:hover{
    color: #000000;
    cursor: pointer;
    text-decoration: none;
}

.footer .footer-company-outer .footer-logo{
    width: 48px;
    position: relative;
    top: -3px;
    cursor: pointer;
}

.footer .footer-company-outer .whatsapp-icon{
    width: 24px;
    position: relative;
    cursor: pointer;
}

.footer .footer-company-outer .call-icon{
    width: 28px;
    position: relative;
    cursor: pointer;
    padding: 6px;
}

.footer .footer-company-outer .footer a{
    text-decoration: none;
    transition: all .5s;
}

/********************************************************** Footer End **********************************************************/


/********************************************************** Mobile Menu Start **********************************************************/

.mobile-menu{
    position: fixed; 
    bottom: 2px; 
    width: 100%
}


/********************************************************** Mobile Menu End **********************************************************/


/* Media Query */

@media (max-width: 991px) {
    .fixed-top {
        position: fixed;
        top: 5px;
        right: 5px;
        left: 5px !important;
        z-index: 1030;
        border-radius: 10px;
    }

    .footer {
        display: none !important;
    }
    
    .main-content {
        /* position: absolute;
        margin-left: 270px;
        top: 65px;
        bottom: 60px;
        overflow-y: scroll;
        width: 100%; */
        position: absolute;
        top: 65px;
        bottom: 68px;
        overflow-y: auto;
        width: 100%;
        margin: 0px;
    }

    .search-accordion-lg-div{
        display: none !important;
    }

    .only-lg{
        display: none !important;
    }

}

@media (min-width: 992px) {
    .mobile-menu{
        display: none !important;
    }    
}

/*********************************** Reports *********************************/
.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.custom-card{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    box-shadow: 0px 0px 7px 0px black !important;
    background-color: #cccccc !important;
}

input:focus-visible {
    outline: none;
    border-color: initial; /* Reset border color to initial */
}

.select2-container .select2-selection {
    border: 1px solid #ced4da;
    border-radius: 0.42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: start;
    width: 100%;
    color: #91989e;
    position: relative;
    /* padding: 0.65rem 3rem 0.65rem 0.5rem; */
    line-height: 1.5;
    font-size: 14px;
    height: auto;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.select2-container .select2-selection {
    font-size: 15px;
}
.select2-container--default .select2-selection--multiple {
    background-color: #dcdcdc;
}
.select2-container--default .select2-selection--multiple:focus {
    background-color: #fff !important;
}
.select2-container--default .select2-selection--single {
    background-color: #d3d3d3;
}
.form-control-sm {
    border-radius: 0.42rem !important;
}

.w-max-content {
    width: max-content !important;
}

.modal-content {
    background-color: #fff !important;
}

.modal-header, .modal-footer{
    background: #dcdcdc !important;
}


.navbar{
    margin: 5px !important;
    border-radius: 7px !important;
}


.main-card{
    /* background: #f5f5f5 !important; */
    background: #fff !important;
    border-radius: 10px !important;
    overflow-x: scroll;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    width: 100% !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    background: #dcdcdc;
    font-size: 16px;
    vertical-align: middle !important;
}



.form-section {
    background-color: #d1d1d1;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #ccc; /* Add border line */
    margin-bottom: 20px; /* Space between sections */
}
.form-section h5 {
    background-color: white;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px; /* Space below title */
    border: 1px solid #ccc; /* Add border around title */
}

.form-control:disabled, .form-control[readonly] {
    background-color: #ffe600;
}
.form-label {
    font-weight: bold;
}
.password-eye {
    position: absolute;
    right: 20px;
    top: 50px;
    transform: translateY(-50%);
    cursor: pointer;
}


.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 3px 10px !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #dcdcdc;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.row-custom-border{
    border: 2px solid #378fbe;
    border-radius: 8px;
}

.custom-row-outline {
    position: absolute;
    top: -17px;
    left: 10px;
    background: #378fbe;
    padding: 2px 8px;
    border-radius: 7px;
    font-weight: bold;
    color: #fff;
}

.font-bold{
    font-weight: bold !important;
}




/* Employee Card */
.card-container {
    background-color: #1c1e1e;
    border-radius: 5px;
    box-shadow: 4px 6px 6px 2px rgb(28 28 28 / 75%);
    color: #B3B8CD;
    padding-top: 30px;
    position: relative;
    max-width: 100%;
    text-align: center;
}

.card-container .round {
    border: 2px solid #e6e7e8;
    border-radius: 50%;
    padding: 3px;
    width: 105px;
}
/* 
button.primary {
    background-color: #03BFCB;
    border: 1px solid #03BFCB;
    border-radius: 3px;
    color: #231E39;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 10px 25px;
}

button.primary.ghost {
    background-color: transparent;
    color: #02899C;
} */



.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: none !important;
}


.table-card{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    box-shadow: 0px 0px 7px 0px black !important;
    background-color: #ffffff !important;
}

.action-btn{
    font-size: 20px !important;
}



/* Whatsapp Web */
.container {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin-top: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.select-label {
    font-weight: bold;
    margin-bottom: 10px;
}

ol {
    padding-left: 1rem;
    margin-top: 1rem;
}

ol li {
    margin-bottom: 1rem;
}

.whatsapp-setup-div{
    height: 235px;
    background: #00a884;
}

.setup-div{
    position: relative;
    top: -180px;
}

.setup-icon{
    font-size: 18px;
    color: #000;
}



/* Custom checkbox */
.cbx {
    position: relative;
    top: 1px;
    width: 20px;
    height: 20px;
    border: 1px solid #c8ccd4;
    border-radius: 3px;
    vertical-align: middle;
    transition: background 0.1s ease;
    cursor: pointer;
    display: block;
  }
  
  .cbx:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 7px;
    width: 7px;
    height: 14px;
    opacity: 0;
    transform: rotate(45deg) scale(0);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
    transition-delay: 0.15s;
  }
  
  .lbl {
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
  }
  
  input[type="checkbox"]:checked ~ .cbx {
    border-color: transparent;
    background: #ef4949;
    animation: jelly 0.6s ease;
  }
  
  input[type="checkbox"]:checked ~ .cbx:after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
  
  .cntr {
    position: relative;
  }
  
  @keyframes jelly {
    from {
      transform: scale(1, 1);
    }
    30% {
      transform: scale(1.25, 0.75);
    }
    40% {
      transform: scale(0.75, 1.25);
    }
    50% {
      transform: scale(1.15, 0.85);
    }
    65% {
      transform: scale(0.95, 1.05);
    }
    75% {
      transform: scale(1.05, 0.95);
    }
    to {
      transform: scale(1, 1);
    }
  }
  
  .hidden-xs-up {
    display: none!important;
  }
  

   /* Permission */
   
.permission-row-border{
    border: 2px solid #378fbe;
    border-radius: 8px;
}

.permission-row-outline {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #378fbe;
    padding: 2px 8px;
    border-radius: 4px 0px 8px 0px;
    font-weight: bold;
    color: #fff;
}
   
.permission-sub-border{
    border: 2px solid #000;
    border-radius: 8px;
}

.permission-sub-outline {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #000;
    padding: 2px 8px;
    border-radius: 4px 0px 8px 0px;
    font-weight: bold;
    color: #fff;
}

.checkbox-tree{
    list-style: none;
    margin-top: 40px;
    padding: 0px;
}

.checkbox-tree li{
    list-style: none;
}

.single-menu-checkbox-tree {
    list-style: none;
    margin-top: 35px;
    padding: 0px;
}

.single-menu-checkbox-tree li{
    list-style: none;
}

.font-weight-600{
    font-weight: 600 !important;
}

.permission-main-div label{
    cursor: pointer !important;
}


/* Lead Card */
.lead-card{
    border-radius: 20px;
    background: #ccc;
}

.border-radius-10{
    border-radius: 10px !important;
}

.bg-color-text{
    background-color: #dcdcdc !important;
}


.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

.btn-close:focus{
    box-shadow: none !important;
}

.card-history{
    background: #ccc;
    padding: 10px !important;
    border-radius: 10px;
}


.template-card{
    background: #ccc;
    padding: 10px !important;
    border-radius: 10px;
}

.template-img{
    width: 100%;
    /* height: 250px; */
    border-radius: 10px;
}
/* Whatsapp Templates */
.template-preview {
    background-color: #e6fff5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
  }

  .margin-top-75{
    margin-top: 75px;
  }

  .word-break-all{
    word-wrap: break-word;
  }
  
  .whatsapp-msg {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  }

  .whatsapp-heading {
    font-weight: bold;
    font-size: 18px;
    color: #075e54;
    margin-bottom: 10px;
  }

  .whatsapp-link {
    color: #34b7f1;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
    word-wrap: break-word;
  }

  .whatsapp-paragraph {
    margin-bottom: 10px;
    word-wrap: break-word;
    line-height: 1.5;
  }

  .whatsapp-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
  }

  textarea {
    width: 100%;
    height: 150px;
    margin-top: 10px;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  @media (max-width: 768px) {
    .template-preview {
      max-height: auto;
    }
  }



  /* Custom Radio */
  .radio-input {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .radio-input input {
    appearance: none;
    width: 25px;
    height: 25px;
    background-color: #171717;
    box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
    border-radius: 50%;
    transition: .4s ease-in-out;
  }
  
  .radio-input input:hover {
    scale: 1.2;
    cursor: pointer;
    box-shadow: none;
  }
  
  .radio-input .circle {
    position: relative;
    top: 0.01em;
    left: -1.1em;
    width: 0.6em;
    height: 0.6em;
    background-color: #f24848;
    scale: 0;
    border-radius: 10px;
    transition: .4s ease-in-out;
  }
  
  .radio-input input:checked {
    box-shadow: none;
    border: 1px solid #f24848;
  }
  
  .radio-input input:checked + .circle {
    transform: rotate(360deg);
    scale: 1;
  }
  
  .text-end{
    text-align: end;
  }


  /* Share checkbox */
  /* From Uiverse.io by SelfMadeSystem */ 
.share-checkbox{
    cursor: pointer;
  }
  
  .share-checkbox input {
    display: none;
  }
  
  .share-checkbox svg {
    overflow: visible;
    background: #8d8d8d !important;
  }
  
  .path {
    fill: none;
    stroke: white;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
    stroke-dasharray: 241 9999999;
    stroke-dashoffset: 0;
  }
  
  .share-checkbox input:checked ~ svg .path {
    stroke-dasharray: 70.5096664428711 9999999;
    stroke-dashoffset: -262.2723388671875;
  }
  


  /* Content Card Section */
  .content-card-section{
    left: 5px !important;
    transition: left .25s ease-out;
  }


  .back-icon{
    rotate: 180deg;
    background: #000;
    border-radius: 50%;
  }

  /* Footer menu */
  
.accordionnnn {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Adjust the z-index as needed */
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


.section-content {
  display: none;
  padding: 10px;
  transition: 2s;
  max-height: 0;
  overflow: hidden;
}

.section-content.active {
  display: block;
  transition: 2s;
  max-height: 1000px; /* Adjust this value based on your content height */
  background: #b1b1b1;
}

@media (max-width: 767px) {
    .section-content.active{
        height: calc(100vh - 200px) !important;
        min-height: calc(100vh - 200px) !important;
        max-height: calc(100vh - 200px) !important;
    }
}
@media (min-width: 768px) {
    .section-content.active{
        height: calc(100vh - 400px) !important;
        min-height: calc(100vh - 400px) !important;
        max-height: calc(100vh - 400px) !important;
    }
}

.section-header {
  cursor: pointer;
  transition: 2s;
  height: 55px;
  text-align: center;
  border-radius: 15px 15px 0px 0px;
  background: #b1b1b1;
}

.test-image {
  display: inline-block;
}

.arrow-up{
    position: relative; 
    height: 35px;
}

.arrow-down{
    position: relative; 
    transform: rotate(180deg); 
    display: none; 
    height: 35px;
}

.mobile-right-div{
    border-radius: 10px 0px 0px 0px;
    background: hsla(0, 85%, 61%, 1);
    background: linear-gradient(135deg, hsla(0, 85%, 61%, 1) 0%, hsla(201, 77%, 43%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(0, 85%, 61%, 1) 0%, hsla(201, 77%, 43%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(0, 85%, 61%, 1) 0%, hsla(201, 77%, 43%, 1) 100%);
}

.mobile-left-div{
    border-radius: 0px 10px 0px 0px;
    background: hsla(201, 77%, 43%, 1);
    background: linear-gradient(135deg, hsla(201, 77%, 43%, 1) 0%, hsla(0, 85%, 61%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(201, 77%, 43%, 1) 0%, hsla(0, 85%, 61%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(201, 77%, 43%, 1) 0%, hsla(0, 85%, 61%, 1) 100%);
}

.right-icon-align{
    margin-top: 6px;
    width: 40px;
}

.mobile-profile{
    color: #000;
    background: #fff;
    padding: 11px 12px;
    border-radius: 50px;
    cursor: pointer;
}
.menu-logo{
    /* height: 125px !important; */
    width: 216px;
}

.menu-title-mobile{
    display: flex;
    align-items: center;
    flex-grow: 0;
    background: white;
    padding: 5px 13px 6px 1px;
    border-radius: 10px;
}

.submenu-mobile-master{
    z-index: 1 !important;
    background-color: white !important;
    width: 187px !important;
    border-radius: 8px !important;
    transform: translate3d(10px, -4px, 0px) !important;
}   

.submenu-mobile{
    width: 150px !important;
    background-color: white !important;
    border-radius: 8px !important;
    transform: translate3d(10px, -4px, 0px) !important;
}

.arrow-up{
    display: block;
    padding: 0px 25px; 
    height: 35px;
}

.arrow-down{
    display: block; 
    transform: rotate(180deg); 
    display: none;
    padding: 0px 25px; 
    height: 35px;
}

.bet-mobile{
    /* width: 40%; */
    height: 45px;
}

.footer-div{
    text-align: center;
}

.fa-back{
    color: #000 !important;
    padding-right: 2px;
}

.btn-close{
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-close:active, .btn-close:focus, .btn-close:focus-visible{
    outline: none;
    box-shadow: none;
    border: none;
}


/* Mobile Submenu */
.mobileSubMenu{
    height: calc(100vh - 140px) !important;
    width: 0;
    position: fixed;
    z-index: 999999;
    left: 0; /* Change left to right */
    bottom: 0 !important;
    background-color: #ddd;
    overflow-x: hidden;
    transition: 0.5s;
}
  
.mobileSubMenuList a{
    padding: 8px 8px 8px 15px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    display: block;
    letter-spacing: .5px;
    transition: 0.5s;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}
  
.mobileSubMenuList a:hover{
    padding: 8px 8px 8px 15px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    background-color: #f24848;
    display: block;
    letter-spacing: .5px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}
.mobileSubMenu .closebtn {
    font-size: 30px;
    color: #fff;
    margin-right: 20px;
    margin-top: 5px;
    font-weight: bold;
    transition: all 1s;
    cursor: pointer;
}

.mobileSubMenu .closebtn:hover {
    font-size: 30px;
    color: #ff0000;
    margin-right: 20px;
    font-weight: bold;
    transition: all 1s;
}

.submenu-header{
    background: #000;
}

.mobile-submenu-active{
    background-color: #f24848 !important;
    color: #fff !important;
}

.mobile-menu-content{
    overflow: auto;
    height: 100%;
    align-content: flex-start;
}
.mobile-menu-content .menu-shadow {
    box-shadow: 4px 3px 3px 0px rgb(255 255 255);
    border-radius: 10px;
    transition: all 0.5s;
}

.mobile-menu-content .menu-shadow .menu-block {
    border-radius: 10px;
    background: #000000;
    cursor: pointer;
    box-shadow: inset 41px 41px 82px #1988c3, inset -41px -41px 82px #fff;
    height: 100px;
    transition: all 0.5s;
}

/* Hover effect for .menu-shadow */
.mobile-menu-content .menu-shadow:hover {
    border-radius: 25px;
}

/* Hover effect for .menu-block when .menu-shadow is hovered */
.mobile-menu-content .menu-shadow:hover .menu-block {
    box-shadow: inset 41px 41px 82px #ff4545, inset -41px -41px 82px #ffffff;
    border-radius: 22px;
}



.full-cover {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 0%);
    backdrop-filter: blur(2px);
    z-index: 999999;
    display: none;
}

.full-cover-sub {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 44%);
    backdrop-filter: blur(2px);
    z-index: 99;
    display: none;
}

.full-cover-menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 44%);
    backdrop-filter: blur(2px);
    z-index: 99;
    display: none;
}

.large-profile {
    color: #ffffff;
    background: #ef4949;
    padding: 8px 10px;
    border-radius: 50px;
    cursor: pointer;
}

/* Profile */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0; /* Change left to right */
    bottom: 0 !important;
    background-color: #656565;
    overflow-x: hidden;
    /* transition: 0.5s; */
}

.sidenav a {
    padding: 0px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    font-size: 30px;
    color: #fff;
    margin-right: 20px;
    margin-top: 5px;
    font-weight: bold;
    transition: all 1s;
    cursor: pointer;
}

.sidenav .closebtn:hover {
    font-size: 30px;
    color: #fff;
    margin-right: 20px;
    font-weight: bold;
    transition: all 1s;
}

.user-card {
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.user-card .card-img-top {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    border-radius: 50%;
    margin: 20px auto;
    border: 3px solid #ddd; /* Optional: Adds border around the circular image */
}
.user-card .card-body {
    padding-bottom: 20px;
    padding-top: 0px;
}
.user-card .btn-sign-out {
    margin-top: 10px;
}

body.no-scroll {
    overflow: hidden;
}


.expand-in-mobile{
    position: absolute;
    right: 0px
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #000000 !important;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: inherit;
    margin-left: 3px;
}


.card-green{
    background: #53c353 !important;
}

.card-red{
    background: #e68080 !important;
}

.card-yellow{
    background: #ffe085 !important;
}








.card-overlay {
    background: rgb(0 0 0 / 86%); /* Semi-transparent overlay */
    border-radius: 10px;
    z-index: 10; /* Make sure it stays on top */
    opacity: 0; /* Initially hidden */
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease-in-out;
    position: absolute !important;
    top: 0;
    right: 0;
    left: 0;
    height: 100%; /* Ensure it covers the entire card */
}

.card-overlay.show {
    opacity: 1; /* Fully visible when shown */
    pointer-events: auto; /* Allow interactions */
}


.lead-card {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* overflow: hidden; */
}

.btn-close-overlay {
    position: absolute;
    top: -2px;
    right: 1px;
    width: 30px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.close-overlay{
    position: absolute;
    top: 4px;
    right: 4px;
    width: 30px;
    background: #fff;
    border-radius: 8px;
    z-index: 999;
    cursor: pointer;
}

.lead-data{
    color: #808080;
    font-weight: 500;
    /* word-wrap: break-word !important; */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* .lead-column{
    overflow: scroll;
} */

.lead-phone {
    color: #53c353 !important;
    font-size: 20px;
}

.lead-user{
    color: #ff0000 !important;
    margin-right: 11px !important;
}

.lead-calender{
    margin-right: 6px !important;
}

.status-box{
    background: #ccc3c3;
    border-radius: 8px;
    padding: 0px 5px !important;
    color: #000;
    margin-top: 2px;
    /* font-weight: 600; */
    text-align: center;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    overflow: scroll;
    scrollbar-width: none !important;
}

.lead-status-label{
    font-size: 13px;
    font-weight: 600;
}

.action-btn-w{
    width: 97px !important;
}

.lead-status-title{
    position: absolute;
    top: -1px;
    padding: 0 6px;
    background: #fff;
    color: #000 !important;
    border-radius: 0px 0px 5px 5px;
}

.lead-status-border{
    border: 2px solid #fff !important;
}

.mt-26{
    margin-top: 26px !important;
}

.btn:focus{
    box-shadow: none !important;
    outline: none !important;
}

.search-icon{
    font-size: 30px;
    margin-bottom: 5px;
    margin-left: 0px;
    cursor: pointer;
    color: #000;
}

.lead-addmore-section{
    border-top: 2px dashed #ddd;
    border-bottom: 2px dashed #ddd;
    margin: 10px 0px !important;
}


.lead-view-modal label, .lead-view-modal p{
    word-wrap: break-word;
    word-break: break-all;
    line-height: normal;
}

/* Addmore Table of Lead */
.addmore-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.addmore-thead {
    background-color: #2185ba; /* Blue header */
    color: white;
}

.addmore-table th {
    padding: 8px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.addmore-table td {
    padding: 8px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.addmore-tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Light background for even rows */
}

.addmore-tbody tr:hover {
    background-color: #f1f1f1; /* Row hover effect */
}


.profile-icon-lg{
    position: absolute;
    top: -2px;
    right: 55px;
}

.back-icon-sm{
    rotate: 180deg !important;
    background: #00b4bd;
    border-radius: 50px;
}
.hidden{
    display: none !important;
   
}



/* for country code */
/* Adjusting dropdown positioning */
.iti__country-list {
    width: calc(100% + 15px) !important; /* Match the input width */
    left: 0 !important; /* Align properly to the left */
  }
  
  /* Responsive dropdown for small screens */
  @media (max-width: 768px) {
    .iti__country-list {
        width: calc(100% + 15px) !important; /* Ensures dropdown matches input width */
        left: 0 !important; /* Aligns dropdown properly */
    }
  }
  
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgb(0 0 0 / 5%);
    color: #000;
  }

  @media (min-width: 1026px) {
    .iti__country-list {
      width: 340px !important;
    }

}

@media (min-width: 575px) {
  .iti__country-list {
      width: 340px !important;
  }

  .iti {
      width: 100%;
    }
}

.tel-text-input{
    padding-left: 86px !important;
}
.border-autocomplete{
    border: 1px solid #a2a2a247;
}

.no-data {
    width: 100%;               /* Full width of the container */
    border: 1px solid #ccc;     /* Light gray border */
    padding: 15px;              /* Spacing inside the div */
    text-align: center;         /* Center the text */
    color: #f8f5f5;                /* Text color */
    font-weight: bold;          /* Bold text */
    margin-top: 10px;           /* Space above the div */
    border-radius: 5px;         /* Optional: rounded corners */
    background-color: #110e0f;  /* Optional: light background */
    display: block;  
    /* Ensures full width */
}




.category-card{
    background-color: #8d8d8d;
    border-radius: 5px;
    box-shadow: 4px 6px 6px 2px rgb(164 164 164 / 75%);
    color: #000;
    padding-top: 30px;
    position: relative;
    max-width: 100%;
    text-align: center;
}


textarea.form-control {
    height: calc(1.5em + 0.75rem + 2px) !important;
}


.enrollment-req-card{
    font-family: Arial, sans-serif;
    width: 100%;
    padding: 5px 10px;
    border-radius: 24px;
    background: linear-gradient(to bottom right, #bb1426, #2285ba);
    box-shadow:
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    color: white;
  }
  
  .enrollment-req-card::before,
  .enrollment-req-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
  }
  
  .enrollment-req-card::before {
    width: 100%;
    height: 100%;
    top: -80px;
    right: -80px;
  }
  
  .enrollment-req-card::after {
    width: 128px;
    height: 128px;
    bottom: -64px;
    left: -64px;
  }

  .textarea-control{
    background-color: #dcdcdc;
    background-clip: padding-box;
    border: 1px solid #ddd;
  }

  .textarea-control:focus-visible{
    outline: none !important;
  }

  .modal {
    z-index: 999999 !important;
  }

  .modal-backdrop {
    z-index: 99999 !important;
}

/* Enrolment badge */
.enrollment-badge {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  color: #fff;
  margin: 15px auto;
  position: absolute;
  z-index: 1;
  top: -18px;
  left: -5px;
}

.enrollment-badge::before,
.enrollment-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  z-index: 0; /* behind badge */
}

.enrollment-badge::before { transform: rotate(30deg); }
.enrollment-badge::after { transform: rotate(-30deg); }

/* Seal circle (optional) */
.enrollment-seal {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
}

/* Type circle */
.enrollment-type {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  font-family: "Lato", sans-serif;
  text-align: center;
  text-transform: uppercase;
  padding-top: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px;
  margin-left: -14.4px;
  box-sizing: border-box;
  z-index: 2;
}

.enrollment-type h6 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.enrollment-type em {
  display: block;
  font-size: 4px;
  font-style: italic;
  font-weight: 300;
}

.lead-card:not(:has(.enrollment-badge)) .enrollment-card-h5 {
    padding-left: 0 !important;
}

.enrollment-badge, .enrollment-badge::before,
.enrollment-badge::after, .enrollment-seal {
  background: #228922;
}

.lead-card:has(.card-overlay.show) {
    overflow: hidden !important;
}

.travel-input-readonly:disabled, .travel-input-readonly[readonly] {
    background-color: #dcdcdc !important;
    border-color: #dcdcdc !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::before {
    color: rgb(0 0 0 / 50%) !important;
}

/* DataTTable Buttons */
/* buttons-copy */
.buttons-copy {
  color: #0d6efd !important;
  background: transparent !important;
  border: 1px solid #0d6efd !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}
.buttons-copy:hover {
  color: #fff !important;
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}

/* buttons-pdf */
.buttons-pdf {
  color: #6c757d !important;
  background: transparent !important;
  border: 1px solid #6c757d !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}
.buttons-pdf:hover {
  color: #fff !important;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}

/* buttons-print */
.buttons-print {
  color: #198754 !important;
  background: transparent !important;
  border: 1px solid #198754 !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}
.buttons-print:hover {
  color: #fff !important;
  background-color: #198754 !important;
  border-color: #198754 !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}

/* buttons-csv */
.buttons-csv {
  color: #ffc107 !important;
  background: transparent !important;
  border: 1px solid #ffc107 !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}
.buttons-csv:hover {
  color: #000 !important;
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}

/* buttons-excel */
.buttons-excel {
  color: #0dcaf0 !important;
  background: transparent !important;
  border: 1px solid #0dcaf0 !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}
.buttons-excel:hover {
  color: #000 !important;
  background-color: #0dcaf0 !important;
  border-color: #0dcaf0 !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}

div.dt-buttons {
    float: left;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .daily-collection-data{
        max-width: 150px
    }
}