/* ================= ROOT VARIABLES ================= */
:root{
  --orange:#f6a433;
  --bg:#f9e6ba;

  --header-height:87px;
  --sidebar-open:260px;
  --sidebar-close:70px;
}

/* ================= RESET ================= */
*{
  box-sizing:border-box;
}

html, body{
  margin:0;
  padding:0;
  width:100%;
  height:100%;
}

body{
  font-family:"Montserrat" !important;
  background: #ffdfaa91 !important;
  /* background: #ffdFAA !important; */
  color:#222;
}

/* ================= HEADER ================= */
.header{
  position:sticky;
  top:0;
  z-index:1000;

  height:var(--header-height);
  min-height:var(--header-height);

  background-color:#f6a433;
  background-image:url(../images/final.png);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;

  box-shadow:0 2px 4px rgba(0,0,0,0.05);
  overflow:hidden;
}

.header .container-fluid{
  height:100%;
  padding-left:30px;
  padding-right:30px;
}

.header .row{
  height:100%;
}

.page-title{
  font-weight:600;
  font-size:18px;
  line-height:1;
  margin:0;
  white-space:nowrap;
}

.header img{
  width:65px;
  height:65px;
  object-fit:contain;
  display:block;
}

@media(max-width:768px){
  .header .container-fluid{
    padding-left:10px;
    padding-right:10px;
  }

  .page-title{
    font-size:16px;
  }

  .header img{
    width:45px;
    height:45px;
  }
}

/* ================================================= */
/* ================= SIDEBAR ======================= */
/* ================================================= */

.sidebar{
  position:fixed;
  top:87px;
  left:0;
  height:86.5vh;
  width:var(--sidebar-close);
  background:#ffffff;
  z-index:998;
  overflow:hidden; /* IMPORTANT */
  transition:width 0.25s ease;
  border-right:1px solid #eee;
  /* padding-top:var(--header-height); */
  border-radius: 10px;
}

/* ================= SIDEBAR HEADER ================= */
.sidebar-header{
  position:absolute;
  /* top:var(--header-height); */
  top: 0;
  left:0;
  right:0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:10px;
  padding:10px 15px;
  border-bottom:1px solid #eee;
  background:#fff;
}

.sidebar-toggle{
  border:1px solid #E62323;
  background:#E62323;
  color:#fff;
  width:34px;
  height:34px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu-title{
  font-weight:700;
  color:#9D2A23;
  display:none;
}

/* ================= MENU ================= */
.side-menu{
  list-style:none;
  margin:0;
  padding:60px 0 0;
}

.side-menu .nav-item{
  margin-bottom:2px;
}

.side-menu .nav-link{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 20px;
  color:#9D2A23;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  position:relative;
}

.nav-icon{
  font-size:18px;
  width:30px;
  text-align:center;
}

.nav-text{
  display:none;
  white-space:nowrap;
}

/* hover & active */
.side-menu .nav-link:hover,
.side-menu .nav-item.active .nav-link{
  background:var(--orange);
  color:#ffffff;
}

/* ================= OPEN STATE ================= */
body.sidebar-open .sidebar{
  width:var(--sidebar-open);
  overflow:hidden;
}

body.sidebar-open .nav-text,
body.sidebar-open .menu-title{
  display:inline;
}

/* ================= MAIN CONTENT ================= */
@media(min-width:992px){
  .main-wrapper{
    margin-left:var(--sidebar-close);
    padding:24px;
    transition:margin-left 0.25s ease;
  }

  body.sidebar-open .main-wrapper{
    margin-left:var(--sidebar-open);
  }
}

/* ================= MOBILE ================= */
@media(max-width:991.98px){

  .sidebar{
    width:var(--sidebar-close);
  }

  body.sidebar-open .sidebar{
    width:var(--sidebar-open);
  }

  body.sidebar-open .nav-text{
    display:inline;
  }

  .side-menu .nav-link::after{
    display:none;
  }

  .main-wrapper{
    margin-left:var(--sidebar-close);
    padding:16px;
  }
}



  /* overall card */
  .card-wrap{
    /* max-width:1000px; */
    /* margin:20px auto; */
    /* background: linear-gradient(180deg,var(--bg) 0%, #ffdFAA 75%); */
    /* border-radius:10px; */
    /* box-shadow: var(--panel-shadow); */
    overflow:hidden;
    /* border:1px solid var(--soft-border); */
  }

  /* header with rounded bottom corners and logos centered */

  .logos{
    display:flex;
    gap:18px;
    justify-content:center;
    align-items:center;
    margin-bottom:8px;
  }
  .logo{
    width:72px;height:72px;
    border-radius:50%;
    background: rgba(255,255,255,0.14);
    display:inline-flex; align-items:center; justify-content:center;
    padding:6px;
  }
  .page-title{
    color:#E62323;
    font-size:28px;
    font-weight:700;
    margin-top:6px;
    letter-spacing:0.2px;
  }

  /* main content */
  .container{
    padding:26px 34px 36px;
  }

  .welcome{
    background:#fff7ea;
    border-radius:12px;
    padding:5px 20px;
    margin:0px 0 22px;
    text-align:center;
    font-weight:700;
    color:#9D2A23;
    font-size: 18px;
    box-shadow: 0px 4px 4px 0px #FE9F69;

  }

  /* statistics row */
  .stats-row{
    display:flex;
    gap:22px;
    margin-bottom:22px;
  }
  .stat{
    flex:1;
    border-radius:12px;
    overflow:hidden;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
    min-height:140px;
    position:relative;
  }
  .stat .head{
    padding:12px 18px;
    font-weight:700;
    text-align:center;
    color:#5a2b2b;
    background: rgba(0,0,0,0.02);
  }
  .stat .body{
    padding:18px;
    display:flex;
    gap:12px;
    align-items:flex-start;
  }
  .stat .numbers{
    flex:1;
  }
  .stat .meta{
    color:var(--muted);
    font-size:15px;
    margin-bottom:10px;
  }
  .stat .big{
    font-size:28px;
    font-weight:700;
    color:#111;
  }
  .stat.pink{ background: linear-gradient(180deg,#ffecec,#fff); }
  .stat.teal{ background: linear-gradient(180deg,#ecfffb,#fff); }

  /* faint SVG in corner */
  .stat svg.bg{
    position:absolute;
    right:16px;
    bottom:10px;
    width:120px;height:120px;
    opacity:0.12;
  }

  /* tables row: two columns */
  /* .tables{
    display:flex;
    gap:22px;
    margin-top:6px;
  } */
  .table-panel{
    flex:1;
    background: #fff;
    border-radius:12px;
    padding:0;
    overflow:hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
  }
  .table-panel .panel-head{
    background:var(--orange);
    color:#fff;
    font-weight:700;
    padding:5px 16px;
    text-align:center;
    font-size: 19px;
  }
  .table-body{
    /* padding:12px; */
  }
  table{
    margin-bottom: 0px;
  }

  .table{
    width:100%;
    border-collapse:collapse;
    margin-bottom: 0px !important;
  }
   .table,  .table tr th,   .table tr td{
    border: 1px solid #ddd;
    text-align: center;
  }

   .table th,  .table td{
    padding:12px 14px;
    font-weight: 600;
    color: #000;
    
  }
   .table thead th{
    background: #ffedcf !important;
    /* background: #FCDDCF !important; */
    color:#9B0000 !important;
    font-weight:600;
    font-size: 13px;
    
  }
   .table tbody td{
    font-size: 13px;
    font-weight: 500;
    padding-left: 1px;
    padding-right: 1px;
  }

    .scroll_table{
      height: 593px !important;
    }
    .scroll_table{
      height: 294px !important;
    }
  .scroll_table .table-responsive {
  max-height: 593px;
  /* max-height: 149px; */
  overflow-y: auto;
  display: block;
  scroll-behavior: smooth;

  /* Custom scrollbar width */
  scrollbar-width: thin;
  scrollbar-color: #9D2A23 #ffffff; /* thumb color | track color */
  height:300px;
}

.scroll_table_miny .table-responsive {
  max-height: 294px;
overflow-y: auto;
    display: block;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #9D2A23 #ffffff;
}
/* Chrome, Edge, Safari Scrollbar */
  .scroll_table .table-responsive::-webkit-scrollbar {
  width: 6px; /* Thin scrollbar */
}

  .scroll_table .table-responsive::-webkit-scrollbar-track {
  background: #e0e0e0; /* Track/background color */
  border-radius: 10px;
}

  .scroll_table .table-responsive::-webkit-scrollbar-thumb {
  background-color: #4CAF50; /* Scroll thumb color */
  border-radius: 10px;
}

  .scroll_table .table-responsive::-webkit-scrollbar-thumb:hover {
  background-color: #3b8f41; /* Darker on hover */
}

  /* center buttons */
  .actions{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:24px;
    padding-bottom:26px;
  }
  .btn{
    /* min-width:160px; */
    padding:14px 22px;
    border-radius:12px;
    font-weight:700;
    font-size:18px;
    border:none;
    cursor:pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    color:white;
  }
  .btn.trial {
    background: #FDA737;
    font-weight: 700;
    font-style: SemiBold;
    font-size: 17px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    border-radius: 10px !important;
    padding: 6px 40px;
}
  .btn.trial:hover{ 
    background:#ee9522; 
     color: #fff; 

  }
  .btn.final{ 
    background:#FF5252; 
    font-weight: 700;
    font-style: SemiBold;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    border-radius: 10px !important;
  }
  .btn.final:hover{ 
    background:#ee3a3a;
    color: #fff; 
  }
  .btn.backward{ 
    background:#FF5252; 
    font-weight: 700;
     min-width: 81px;
    font-style: SemiBold;
    font-size: 12px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    border-radius: 10px !important;
  }
  .btn.backward:hover{ 
    background:#ee3a3a; 
        color: #fff; 
  }

  /* responsive fallback */
  @media (max-width:980px){
    .stats-row, .tables{ flex-direction:column; }
    .logo{ width:56px;height:56px; }
    .page-title{ font-size:22px; }
    .btn{ min-width:140px; font-size:16px; }
  }


 

 /* cards_block_Start */
 
/* plan1_one start */
.title_one{
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  color: #000;
  
  }

.cards_block .common_card1 .min_card {
  background-repeat: no-repeat;
 background-image: url(../images/icons/location.png);
  background-position: right;
  background-position-y: 4px;
  width: 100%;
  position: relative;
  background-size: contain;
  /* border-radius: 0px !important; */
}

.cards_block .plan1 .c_header{
  background-color: #e87476;
  /* background-color: #F99D9F; */
      border-radius: 10px;
color: #fff;

}
.cards_block .plan1 .c_header h6{
  margin: 0px;
  color: #fff;
  /* font-family: Figtree; */
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  font-size: 19px;
  padding: 10px;
}

.cards_block .plan1 {
  /* box-shadow: 4px 6px 16px 0px #0000001F; */
  color: #697e91;
  border-radius: 8px;
  overflow: hidden;

}

.cards_block  .plan1 .inner {
  /* border-radius: 16px !important; */
  /* padding-top: 40px; */
  /* background-color: #FFF; */
  /* background-color: #FFDDDE; */
  /* background-color: #ecf0ff; */
  /* border-radius: 12px; */
  position: relative;
  /* padding: 20px; */
}

/* plan1 end */
/* plan2 start */
.cards_block .common_card2 .min_card {
  background-repeat: no-repeat;
  background-image: url(../images/icons/plot.png);
  background-position: right;
  background-position-y: 4px;
  width: 100%;
  position: relative;
  background-size: contain;
  /* border-radius: 0px !important; */
}
.cards_block .plan2 .c_header{
  color: #fff;;
  background-color: #3ecaae;
border-radius: 10px;

}
.cards_block .plan2  .c_header h6{
  margin: 0px;
  color: #fff;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  font-size: 19px;
  padding: 10px;
}

.cards_block .plan2 {
  /* box-shadow: 4px 6px 16px 0px #0000001F; */
  /* border-radius: 8px !important; */
  overflow: hidden;
}

.cards_block  .plan2 .inner {
  /* background-color: #FFF; */
  /* background-color: #DEF6F1; */
  position: relative;
   /* padding: 20px; */
}

.cards_block .plan3 .c_header {
    background-color: #fda737;
    /* background-color: #F99D9F; */
    border-radius: 10px;
    color: #fff;
}

.cards_block .plan3  .c_header h6{
  margin: 0px;
  color: #fff;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  font-size: 19px;
  padding: 10px;
}

.cards_block .plan3 {
  /* box-shadow: 4px 6px 16px 0px #0000001F; */
  /* border-radius: 8px !important; */
  overflow: hidden;
}
.min_card {
    box-shadow: 4px 6px 16px 0px #0000001F;
    margin: 10px 0;
    border-radius: 8px !important;
    overflow: hidden;
}
.c_title1{
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #1B1819;
}
.c_value1{
font-weight: 700;
font-style: Bold;
font-size: 28px;
line-height: 19px;
letter-spacing: 0px;
vertical-align: middle;
color: #000000;
margin-top: 20px;

}

/* plan2 end */

.container-fluid.px-0{
  overflow-x: hidden;
}


 @media(max-width:768px){
    .cards_block .plan1  .c_header h6{
      font-size: 15px;
    }
    .cards_block .plan2  .c_header h6{
      font-size: 15px;
    }
    .c_title1{
    font-size: 14px;
  }
  .c_value1{
  font-size: 20px;
    }
  .table-panel .panel-head{
    font-size: 16px;
  }
  .table th,  .table td{
    font-size: 14px;
    
  }

    .header{
      background-size: cover ;
    }
    .page-title {
      font-size: 12px !important;
      line-height: 14px;
    }
  }
 
/* ================= FIX TOOLTIP ARROW COLOR (BOOTSTRAP 5) ================= */

/* Set tooltip background variable */
.tooltip{
  --bs-tooltip-bg: #E62323 !important;      /* 🔴 CHANGE COLOR HERE */
  --bs-tooltip-color: #ffffff;
}

/* Tooltip inner */
.tooltip .tooltip-inner{
  background-color: #E62323 !important;
  color: var(--bs-tooltip-color);
  font-size:13px;
  font-weight:500;
  padding:6px 10px;
  border-radius:6px;
}
.tooltip-arrow::before {
  border-color: transparent;
}




.cc_card {
  border: 0px !important;
}
.cc_card .cc_header{
  background: var(--orange);
}
.cc_card_2 .card-header{
  background: #fae3b5;
}

.btn.allocate_btn {
    background: #e62323;
    border: 1px solid var(--orange);
    color: #000;
    padding: 3px;
}
.btn.allocate_btn:hover{
  background: var(--orange);
  color: #fff;
}

.download_bg a{ 
  text-decoration: none;
  color: #E62323;
  font-weight: 600;
}

.download_bg{
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  margin-bottom: 15px;
  border-radius: 10px;
  border-bottom: 1px solid var(--orange);
}

.download_bg:hover{
  background: var(--orange);
  border-bottom: 1px solid #fff;
  color: #fff;
}
.download_bg:hover a{
  color: #fff;
}

.form-label{
  font-weight: 600 !important;
}

/* .small_logo{
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
} */

.card.cc_card {
    border-radius: 10px !important;
    /* overflow: hidden; */
}

.multiselect.dropdown-toggle{
  border: 1px solid #ccc;
  width: 100% !important;
}
.multiselect.dropdown-toggle::after {
    content: "";
    position: absolute;
    top: 7px !important;
    right: 12px !important;
    font-size: 14px !important;
    font-family: 'Font Awesome\ 5 Free';
    content: "\f105";
    border: none;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -moz-font-feature-settings: 'liga';
    -o-font-feature-settings: 'liga';
    transform: rotate(90deg);
    font-weight: 600 !important;
}

.multiselect.dropdown-toggle.btn.btn-light.show{

  background:transparent !important;
}
.multiselect.dropdown-toggle.btn:hover{
  background: transparent !important;
}