/**
* Title: Mobiheal Styling
* Version: 1.2
* Author: Anurag Srivastava | Shivam
* Updated On: 31/07/2025
*/

:root {
  --custom-black: "#221638";
  --primary-color: #03a9fc;
  --primary-lite: #ecf9ff;
  --primary-lite-varient: #9fdfff;
  --secondary-color: #0285c7;
  --orange: #f37020;
  /* --yellow: #ffde59; */
  --yellow: #e5ac00;
  --white: #ffffff;
  --black: #212121;
  --red: #f44236;
  --green: #28AF3D;
  --pink: #c41d7f;
  --purple: #531dab;
  --navy: #1d39c4;
  --cyan: #08979c;

  --bg-gray-lite: #d3d3d373;
  --bg-white: #ffffff;
  --input-bg: #f1f1f1;
  /* --input-bg: #e8e8e8; */
  --input-border: #cccccc;
  --grey: #737373;
  --grey-variant: #d9d9d9;

  --text-lite-gray: #f6f6f6;
  --text-gray: #737373; /* new : #63757d*/

  --header-shadow: 0px 3px 6px rgba(31, 31, 31, 0.12);
  --card-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  --input-shadow: 0px 2.02768px 2.02768px rgba(0, 0, 0, 0.12);
  --button-shadow: 0px 2.57044px 2.57044px rgba(0, 0, 0, 0.2);
  --image-shadow: 4px 4px 4px rgba(0, 0, 0, 0.08);
  --app-card-shadow: 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 2px 1px -1px rgba(0, 0, 0, .12), 0px 1px 3px 0px rgba(0, 0, 0, .2);

  --default-font: 'Roboto', "Open Sans", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-nunito: "Nunito", sans-serif;

  --card-radius: 16px;
  --card-radius-sm: 2px;
  --button-radius: 10px;
  --input-radius: 10px;
}

/* HTML Tags */
* { transition: all 0.4s cubic-bezier(.25,.8,.25,1); }
html { scroll-behavior: smooth; }

body {
  font-family: var(--default-font);
  background: var(--bg-gray-lite);
  color: var(--black);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;

}
a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-nunito)
}

.divider{
  border-top: 2px;
  color: #737373;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  margin-bottom: 0.4rem;
}

.page-card {
  background-color: white;
  border-radius: var(--card-radius-sm);
  box-shadow: var(--card-shadow)!important;
  padding: 1.2rem ;
}
.page-head {
  border-bottom: 2px solid var(--bg-gray-lite);
  /* padding: 1rem 0rem 1.5rem 0rem; */
  padding: .4rem 0rem 1.2rem 0rem;
}
.page-head h4,
.page-head h5 {
  color: var(--primary-color);
}
.page-head img {
  width: 38px;
}

@media (max-width: 767px) {
  .page-head {
    justify-content: flex-start !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
.admin-head { background-color: var(--primary-color) !important; }

#main {
  margin-top: 60px;
  padding: 20px 20px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/* Utilities */
.pt6rem { padding-top: 4rem; }
.heigth10 { height: 10rem !important; }

.fs1rem { font-size: 1rem !important; }
.fs2rem { font-size: 2rem !important; }
.fs10 { font-size: 10px !important; }
.fs11 { font-size: 11px; }
.fs12 { font-size: 12px !important; }
.fs13 { font-size: 13px !important; }
.fs14 { font-size: 14px !important; }
.fs15 { font-size: 15px !important; }
.fs16 { font-size: 16px !important; }
.fs18 { font-size: 18px; }
.fs20 { font-size: 20px !important; }
.fs24 { font-size: 24px !important; }
.fs125 { font-size: 1.25rem !important; }
.fs145 { font-size: 14.3px !important; }
.fs150 { font-size: 1.50rem !important; }
.fs200 { font-size: 2.00rem !important; }
.head4{font-size: 1.5rem; color:#03a9fc;}

.cursor-pointer { cursor: pointer !important; }
.cursor-not-allowed { cursor: not-allowed; }
.position-relative { position: relative; }
.long-text-ellipsis{max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  padding: 0 4px;
}
.display-none { display: none; }
.hover:hover { opacity: .75; }
.rotate-180 { transform: rotate(180deg); }
.card-shadow { box-shadow: var(--card-shadow); }
.word-break { word-break: break-all !important; }
.z-index-900 { z-index: 900; }
.z-index-999 { z-index: 999; }
.z-index-800 { z-index: 800; }

.text-primary { color: var(--primary-color) !important; }
.text-black { color: var(--black) !important; }
.text-gray { color: var(--text-gray) !important; }
.text-orange { color: var(--orange) !important; }
.text-red, .text-danger { color: var(--red) !important; }
.text-green, .text-success { color: var(--green) !important; }

/* Bootstrap Utilities Overrides */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-blue { background-color: var(--primary-color) !important; }
.bg-danger, .bg-red { background-color: var(--red) !important; }
.bg-success, .bg-green { background-color: var(--green) !important; }
.bg-yellow { background-color: var(--yellow) !important; }
.bg-gray { background-color: var(--grey) !important; }
.bg-gray-lite { background-color: var(--grey-variant) !important; }
.bg-orange { background-color: var(--orange) !important; }
.bg-black { background-color: var(--black) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-pink { background-color: var(--pink) !important; }
.bg-purple { background-color: var(--purple) !important; }
.bg-cyan { background-color: var(--cyan) !important; }
.bg-navy { background-color: var(--navy) !important; }

.border-primary { border-color: var(--primary-color)!important; }
.border-success { border-color: var(--green)!important; }
.border-danger { border-color: var(--red)!important; }
.border-warning { border-color: var(--orange)!important; }

.btn {
  border-color: transparent!important;
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 0px!important;
  /* height: 38px; */
  border-radius: var(--button-radius);
}
.btn:hover {
  opacity: .85;
  box-shadow: none;
}
.btn-dark{ 
    background-color: var(--black);
    color: var(--white);
}
.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus-visible {
  opacity: .85;
  box-shadow: none;
}

.btn-primary {
  background-color: var(--primary-color)!important;
  color: var(--white)!important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: var(--secondary-color)!important;
  box-shadow: none;
}

.btn-bordered {
  background-color: var(--white)!important;
  color: var(--primary-color)!important;
  border: 2px solid var(--primary-color)!important;
}
/* 
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: var(--secondary-color)!important;
  box-shadow: none;
} */

.btn-success {
  background-color: var(--green)!important;
}

.btn-danger {
  background-color: var(--red)!important;
}

.btn-warning {
  background-color: var(--yellow)!important;
  color: var(--white)!important;
}

.btn-back {
  padding: 1px 0px;
  background-color: var(--bg-gray-lite);
  border-radius: 2rem;
  border: 2px solid transparent;
  width: 44px;
  height: 44px;
}

.btn-back:hover {
  border-color:  var(--primary-color)!important;
}

.btn-back i {
  font-size: 28px;
  color: var(--primary-color);
}

.form-control {
  /* background-color: var(--bg-gray-lite)!important; */
  background-color: var(--white)!important;
  border-radius: var(--input-radius)!important;
  border: 2px solid var(--input-border)!important;
  height: 38px;
  color:var(--text-gray);
  /* background-image: linear-gradient(to bottom, #fefefe, #f2f2f2); */
}

.form-control[readonly] {
  background-color: var(--input-bg)!important;
  opacity: 1;
}

.flatpickr-input[readonly] {
  background-color: var(--white)!important;
}

.form-dropdown-check {
  background-color: var(--white);
  border-radius: var(--input-radius)!important;
  border: 2px solid var(--input-border)!important;
  height: 40px;
  color:var(--text-gray);
  padding-left: 14px;
  padding-right: 14px;
  justify-content: space-between;
  /* background-image: linear-gradient(to bottom, #fefefe, #f2f2f2); */
}

.form-dropdown-check:hover {
  color:var(--text-gray);
}

.form-control:focus {
  box-shadow: none!important;
}

/* .form-check-input[type=checkbox] {
  border: 2px solid var(--primary-lite-varient) !important;
  border-radius: 1rem;
  width: 22px;
  height: 22px;
  padding: 10px;
} */

.form-check-input {
  border: 2px solid var(--primary-lite-varient) !important;
  border-radius: 1rem;
  width: 22px;
  height: 22px;
  padding: 10px;
}

.form-switch .form-check-input[type=checkbox] {
  border: 2px solid var(--primary-lite-varient) !important;
  border-radius: 1rem;
  width: 50px;
  height: 30px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color) !important;
  border-radius: 1rem;
  width: 22px;
  height: 22px;
  padding: 10px;
}

.table-head-check-input:checked {
  border: 2px solid var(--primary-lite-varient) !important;
}

.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

.form-check {
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.form-check .form-check-input {
  border-radius: 1rem!important;
}
.form-check-fix {
  flex-direction: row;
  justify-content: flex-start;
  padding-left: .5rem;
}

.form-check .form-check-label {
  margin-left: .6rem;
}

select.form-select {
  background-color: var(--input-bg);
  background-color: var(--white);
  border-radius: var(--input-radius);
  height: 38px;
  color:var(--text-gray);
  border: 2px solid var(--input-border);
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="gray" class="bi bi-caret-down-fill" viewBox="0 0 16 16"><path d="M7.247 11.14l-4.796-5.481c-.566-.648-.106-1.659.753-1.659h9.592c.86 0 1.32 1.011.753 1.659l-4.796 5.481a1 1 0 0 1-1.506 0z"/></svg>');
  background-size: 1rem;
  margin-bottom: 0px;
}

select.form-select:focus {
  box-shadow: none;
  border-color: var(--input-border);
}

.selectize-control.single .selectize-input {
  background-image: none;
}

.selectize-dropdown {
  z-index: 900;
}

ul.dropdown-menu {
  border-radius: 8px;
  box-shadow: var(--card-shadow) !important;
  border: 1px solid var(--grey-variant);
}

.choices__inner {
  padding: 3px 7px;
    min-height: 38px;
}

.choices__placeholder {
  opacity: 1;
  font-size: 16px;
  line-height: 20px;
}
 
/* Used in ownership filter dropdown + Location tracking serial no */
.moreFilter .selectize-input .item,
.choices__list--single .choices__item { 
  width: 93%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.choices__list--single .choices__item .choices__button {
  display: none;
}

.iti { width: 100%; } /* For profile mobile input */

div.dt-processing>div:last-child>div {
  background: var(--primary-color);
  width: 12px;
  height: 12px;
}
div.dt-processing {
  border: none!important;
  /* margin-left: 0px; */
  /* margin-top: 0px; */
  background-color: transparent;
}
/* .modal-content {
  text-align: center;
} */

.btn-close { background-size: 25%; }
.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

.btn-close-lite {
    background-size: 25%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    opacity : 1;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  padding: 12px;
  position: relative;
  height: 52px;
}

.modal-title {
  transform: translate(-50%, -50%) !important;
  top: 50%;
  left: 50%;
  position: absolute;
  white-space: nowrap;
}

.modal-header .btn-close {
  font-size: 2rem !important;
} 

.nav-tabs .nav-link.active {
  color: var(--primary-color);
}

.nav-tabs .nav-link {
  color: var(--black);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 2rem;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 30px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.toast{
  z-index: 999;
}

/* Breadcrumbs */
.breadcrumb .bread {
  color: var(--text-gray);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  --bs-link-hover-color: var(--primary-color);
}

.breadcrumb .completed {
  color: var(--primary-color);
}

.breadcrumb .bread:hover {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Header Starts
--------------------------------------------------------------*/
.header {
  z-index: 999;
  height: 66px;
  background-color: var(--bg-white);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
  padding-left: 20px;
}
.header .logo-img { width: 144px; }
.header .toggle-sidebar-btn  {
  width: 28px;
  margin-right: 1.5rem;
  margin-top: 6px;
}
.space-bar {
  background-color: var(--bg-gray-lite);
  width: 4px;
  height: 36px;
  border-radius: 1rem;
}
.header .space-bar {
  margin-left: 78px!important;
}
.greeting { 
  color: var(--black);
  font-weight: bold;
}

.header .header-nav .nav-item { margin-bottom: 0; } 

.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon i {
  font-size: 22px;
}

.header-nav .nav-icon {
  color: var(--black);
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: var(--black);
}

.header-nav .nav-profile img {
  width: 40px;
  background-color: var(--bg-gray-lite);
  padding: 2px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -7px 8px auto auto;
  font-weight: 600;
  font-size: 12px;
  padding: 3px 6px;
}

.notification-close-btn {
  position: absolute;
  bottom: 42px;
  right: -11px;
  border: none;
  background: transparent;
}

.notification-close-btn i {
  font-size: 18px;
}

.header-nav .notifications .notification-wrapper {
  height: 360px;
  width: 310px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav ul.dropdown-menu {
  border-radius: 12px;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: var(--primary-lite);
}
.header-nav .profile .dropdown-item:last-child:hover {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

@media (max-width: 767px) {
  .greeting, .space-bar {
    display: none;
  }
  .header .toggle-sidebar-btn  {
    width: 28px;
    margin-right: 0.5rem;
  }
}
/* Header Ends */

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding-top: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: var(--white);
  transition: width 0.4s ease;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-nunito);
  background: #f6f9ff;
  padding: 12px 22px;
  border-bottom: 1.5px solid var(--bg-gray-lite);
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--primary-color)
}

.sidebar-nav .nav-link.collapsed {
  color: var(--black);
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  /* color: var(--primary-color); */
  color: var(--black);
}

.sidebar-nav .nav-link:hover, .sidebar-nav .nav-item li:hover {
  color: var(--primary-color);
  background: var(--primary-lite);
}

.sidebar-nav .nav-link:hover i {
  color: var(--primary-color);
}

.sidebar-nav .nav-link i {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) i {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: var(--primary-color)
}

.sidebar-nav .nav-content a.active i {
  background-color: var(--primary-color)
}

@media (min-width: 1200px) {
  #main, #footer {
    margin-left: 300px;
  }
  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }
  
  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}
/* Sidebar Ends */

/*--------------------------------------------------------------
# Managed devices
--------------------------------------------------------------*/
.col-filter {
  width: 100%;
  max-width: 180px;
  height: 38px;
}

.col-filter-auto {
  min-width: 180px;
  height: 38px;
}
.selectize-input {
  font-size: 14px;
  padding-top: 8px;
}

.col-filter input,
.col-filter-auto input,
.col-filter select,
.col-filter-auto select,
.selectize-input input,
.col-filter .form-dropdown-check,
.col-filter .checkboxes .labelFilter {
  font-size: 14px;
}
.selectize-control.multi .selectize-input [data-value].active,
.selectize-control.multi .selectize-input [data-value] {
    background-color: var(--primary-color);
    /* background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); */
    border: none;
    border-radius: 7px;
    background-image: none;
}
.selectize-control.plugin-remove_button .item.active .remove {
    border-left-color: var(--secondary-color);
}
.selectize-control.multi .selectize-input>div.active {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--secondary-color);
}
.selectize-dropdown .selected {
  background-color: var(--primary-color);
}
.selectize-dropdown .active:not(.selected) {
  background: var(--bg-gray-lite);
}
.col-filter .innerFilterCloseButton,
.col-filter-auto .innerFilterCloseButton {
  font-size: 18px;
  color: var(--red);
  position: relative;
  float: right;
  top: -50px;
  right: -8px;
  cursor: pointer;
  z-index: 800;
}
.col-filter .innerFilterCloseButton::before,
.col-filter-auto .innerFilterCloseButton::before {
  border: 4px solid var(--white);
  border-radius: 1rem;
  background-color: var(--white);
}

#showFilterMenu::after,
#innerUpdateFilterContainer {
    display: none;
}

#device_list_table .form-control {
  width: 164px;
}

#device_list_table .img-fluid,
.datatable tr td .img-fluid {
  width: 38px;
}

table.dataTable thead th,
#device_list_table tr td {
  text-align: center;
}
table.dataTable thead>tr>th div.dt-column-header {
  align-items: center;
}
.pagination .page-link {
  color: var(--grey);
}

.label_checker_available { /* Labels in the the device table */
    padding-left: 4px;
    font-size: 12px;
    padding-right: 2px;
    border-radius: 6px;
}

.btn-label {
  width: 48px;
  height: 48px;
  border-radius: 2rem;
}

.btn-label span {
  display: none;
}

.label-red {
  color: var(--red);
  background: #fff1f0;
  border: 1px solid #ffa39e;  
}

.label-orange {
  color: var(--orange);
  background: #fff7e6;
  border: 1px solid #ffd591; 
}

.label-yellow {
  color: var(--yellow);
  background: #feffe6;
  border: 1px solid #cbc86e;  
}

.label-green {
  color: var(--green);
  background: #feffe6;
  border: 1px solid #b7eb8f; 
}

.label-cyan {
  color: #08979c;
  background: #e6fffb;
  border: 1px solid #87e8de;
}

.label-blue {
    color: var(--primary-color);
    background: #d3f0ff;
    border: 1px solid #99ddff;
}

.label-navy {
    color: #1d39c4;
    background: #f0f5ff;
    border: 1px solid #adc6ff;
}

.label-purple {
    color: #531dab;
    background: #f9f0ff;
    border: 1px solid #d3adf7;
}

.label-grey {
    color: var(--grey);
    background: rgb(220, 220, 220);
    border: 1px solid rgb(177, 177, 177);
}

.label-pink {
    color: #c41d7f;
    background: #fff0f6;
    border: 1px solid #ffadd2;
}

input.placeholder-color::-webkit-input-placeholder, 
input.placeholder-color::placeholder {
  color: #999999;
}

input.placeholder-color {
  color: var(--black);
}

.content-dropdown .dropdown-toggle {
  background-color: var(--white)!important;
  border-radius: var(--input-radius)!important;
  border: 2px solid var(--input-border)!important;
  /* height: 38px; */
  color:var(--text-gray);
}

.content-dropdown .dropdown-toggle::after {
  display: none;
}

.content-dropdown .form-select:focus {
  box-shadow: none;
}

.content-dropdown .dropdown-menu {
  height: 420px;
  overflow-y: scroll;
}

#device_list_table_wrapper th[data-dt-column="0"] .dt-column-order,
.dtfh-floatingparent th[data-dt-column="0"] .dt-column-order {
  display: none !important; /* This hides the order showing issue in table 1st head */
}
.dt-type-date .dt-column-header,
.dt-type-numeric .dt-column-header {
  flex-direction: row!important; /* Date/numeric header sorting thumbs floated from left to right. */
}

.dt-type-date .dt-column-header .dt-column-title,
.dt-type-numeric .dt-column-header .dt-column-title {
  text-align: center!important; /* Adds space-between date/numeric header sorting thumbs floated from left to right. */
}


/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
.metric-card {
  background-color: white;
  border-radius: 2px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  height: 100%;
 }

.metric-card:hover {
  background-color: var(--primary-lite);
  cursor: pointer;
}

.metric-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 8px;
  width: 100%;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.metric-card:hover::after { transform: scaleX(1); }
.metric-card .label {
  font-size: calc(1rem + .2vw);
  color: var(--black);
  font-weight: 600;
  margin-bottom: .2rem;
  margin-top: .5rem
}

.metric-card .content-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  gap: 16px;
  flex-grow: 1;
}
.metric-card .icon { width: 48px; }

.metric-card .number {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--black);
}

/* Dashboard Charts */
.table-container {
  max-height: 340px;
  overflow-y: auto;
}
.table-container::-webkit-scrollbar {
  width: 4px;
}
.table-container::-webkit-scrollbar-track {
  background: #fff; 
}
.table-container::-webkit-scrollbar-thumb {
  background: var(--grey-variant); 
  border-radius: 1rem;
}
.table-container::-webkit-scrollbar-thumb:hover {
  background: var(--grey); 
}

.chart-table {
  width: 100%;
  font-size: 1rem;
  align-self: center;
}

.chart-table tr {
  border-bottom: 1px solid var(--grey-variant);
}

/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */



.dashboard .info-card {
  padding-bottom: 10px;
  box-shadow: var(--card-shadow);
  border:none;
  height: 100%;
}

.dashboard .info-card h6 {
  font-size: 18px;
  color:var(--black);
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 22px;
  line-height: 0;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: var(--primary-color);
  background-color: var(--primary-lite);
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}
/* Dashboard Ends Here */

/* User Enrollment Token Page Starts Here */
.token-count-box{
  display: flex;
  font-size: 0.85rem;
  font-weight: 500;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.token-count-left,
.token-count-right {
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.token-count-left{
  background-color: #f1f1f1;
  border-right: 1px solid #ccc;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.token-count-right{
  background-color: white;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.enrollment-form-container {
  padding: 12px;
}

.enrol-one-time .red-block {
  background-color: var(--red);
  border-radius: 6px;
  width: 24px;
  height: 24px;
}

.enrol-one-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.datatable tr th {
  background-color: var(--primary-color)!important;
  color: var(--white)!important;
  padding: 12px 12px;
}

.datatable td {
  vertical-align: middle;
}

.datatable .dt-column-order:before, .datatable .dt-column-order:after {
  color: var(--black);
  font-size: 1rem!important;
}

.datatable .delete-button, .datatable .action-btn {
  font-size: 20px;
  padding-left: 4px;
  padding-right: 4px;
  cursor: pointer;
}

.datatable .delete-button, .datatable .action-btn:hover {
  opacity: .85;
}

.enrollment-token .datatable td .qr-img {
  width: 30px;
}

/* .enrollment-token .datatable .qr-td span {
    white-space: nowrap;
    overflow: hidden;
    mask-image: linear-gradient(to right, var(--black) 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, var(--black) 95%, transparent 100%);
} */

.dt-paging .active>.page-link, .page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none; 
    color: var(--white);
}

div.dt-container div.dt-search input {
    margin-left: 0px;
}

div.dt-container .dt-info {
  color: var(--grey);
}

.qr-model .modal-content {
  max-width: 380px;
}

@media screen and (max-width: 767px) {
  .enrol-one-time {
    align-items: start;
    flex-direction: column;
  }

  div.dt-container div.dt-length,
  div.dt-container div.dt-search {
    text-align: start;
  }
}
/* User Enrollment Token Page Ends Here */

/* Apple Device Enrollment Starts */
.qr-wrapper {

}

.qr-list .qr-list-item {
  align-items: center;
  margin-bottom: 12px;
}

.qr-list .qr-list-item .qr-list-item-counter {
  background-color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 2rem;
  color: var(--white);
  font-weight: bold;
}

.cert-file-input {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 20px 0;
  border: 4px dashed var(--primary-color);
  border-radius: 1rem;
  background-color: var(--input-bg);
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
}

.cert-file-input:hover {
  background-color: var(--primary-lite);
}

.cert-file-input input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
/* Apple Device Enrollment Ends */

/* Application Management Page Starts Here */

.app-card {
  background-color: var(--white);
  border-radius: 0rem;
  box-shadow: var(--app-card-shadow);
  /* border: 2px solid var(--bg-gray-lite); */
  width: 172px;
  overflow: hidden;
  position: relative;
  padding: 0px;
}

.app-card img { 
  padding: 12px; 
  width: 100%;
}

.app-card i.bi-apple,
.app-card i.bi-android {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  padding: 4px;
  font-size: 20px;
  border-bottom-right-radius: 16px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 3rem;
  z-index: 2;
  width: 40px;
  height: 40px;
}

.app-card h6,
.app-card small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  padding: 0 8px;
}

/* Hover Overlay */
.app-card .app-action {
  position: absolute;
  inset: 0;
  background: var(--grey-variant);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  height: 54px;
  top: revert-layer;
  padding-top: 4px;
}

.app-card:hover .app-action {
  opacity: 1;
}

.app-action i {
  font-size: 20px;
  color: var(--black);
  background: var(--white);
  padding: 6px 7px 6px 7px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  /* line-height: 0px; */
}

.app-action i:hover {
  background: #ffffffb3;
}

/*
 .app-right .app-title, .app-right .app-pkg {
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(to right, var(--black) 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, var(--black) 95%, transparent 100%);
}

.app-action {
  align-items: center;
  display: flex;
  gap: 12px;
}

.app-action a:hover {
  transform: scale(1.1);
}

.app-space-bar {
  background-color: var(--bg-gray-lite);
  width: 4px;
  height: 24px;
  border-radius: 1rem;
}

.app-card i {
  font-size: 22px;
} */

.android-app-add-tab .nav-link {
  width: 100%;
  color: var(--text-gray);
  border-radius: 0px;
}

.android-app-add-tab .nav-link.active {
  color: var(--primary-color);
}

.configure-app-details .scrollable-div {
  max-height: 512px;
  overflow-x: hidden;
  padding: 8px;
}
/* Application Management Page Ends Here */

/* Fencing Starts Here */
.location-tracking-map {
  height: 630px;
  width: 100%;
}

.geoFenchContent {
  background-color: var(--white);
  width: 280px;
  padding: 16px 16px 6px 16px;
}

.geoFenchContent .form-check {
  padding: 4px 12px;
}

.geoFenchContent .dropdown-header {
  justify-content: space-between;
  cursor: pointer;
  padding: 8px 12px;
}

.geoFenchContent .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 900;
}
.geoFenchContent .form-check {
  flex-direction: row;
  justify-content: flex-start;
}

/* Fencing Ends Here */

/* Policy Styling Starts Here */
.policy_form_one1 .nav-link,
.policy_form_update .nav-link,
.policy_form_one .nav-link {
  color: var(--black);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 10px 29px;
}
.policy_form_one1 .nav-link.active,
.policy_form_update .nav-link.active,
.policy_form_one .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.apple-policy-num-input {
  width: 100%;
  max-width: 72px;
}
.apple-app-logo {
  max-width: 50px;
}
/* Policy Styling Ends Here */

/* APN Details Page Starts Here */
.apn-details-page {
 width: 40%;
}
@media screen and (max-width: 767px) {
  .apn-details-page {
  width: 100%;
  }
}
/* APN Details Page Ends Here */

/* Device More Info Page Starts Here */
/* .device-more-info .device-details {
} */
.device-more-info .device-details-item, 
.device-details-inner .device-details-item {
  font-size: 15px;
  margin-bottom: 4px;
}
.device-details-item p:first-of-type {
    font-weight: bold;
    color: var(--black) !important;
}

.device-details-inner {
  border: 2px solid var(--grey-variant);
  border-radius: var(--card-radius);
  padding: 12px;
  height: 100%;
}

#map_fence {
  height: 492px;
}

.content-list-wrapper, 
.system-apps-wrapper {
  overflow-y: scroll;
  max-height: 688px;
}
/* Device More Info Page Ends Here */

/* Enrolled Device Info Page Starts Here */
.battery-info .progress, 
.progress {
  height: 28px;
  border-radius: 1rem;
}

.battery-info .progress .progress-bar, 
.progress .progress-bar {
  border-radius: 1rem;
}

.storage-info .storage-box {
  border: 3px solid var(--grey-variant);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 14px;
  justify-content: center;
  text-align: center;
}

.tab-page-card {
  background-color: white;
  box-shadow: var(--card-shadow);
  /* border-radius: var(--card-radius) var(--card-radius) 0px 0px; */
  /* height: 100%; */
}

.tab-page-card .tab-pane {
  padding: 0px 12px 12px 12px;
}

.tab-page-card .nav-pills .nav-link {
  border: 1px solid var(--grey-variant);
  border-radius: 0px;
  font-weight: 500;
  color: var(--black);
  padding-top: 14px;
  padding-bottom: 14px;
}

.tab-page-card .nav-pills .nav-link.active {
  border-radius: 0px;
  background-color: var(--primary-color);
  font-weight: 500;
  border-color: transparent;
  color: var(--white);
}

/* .tab-page-card .nav-pills .nav-item:first-child .nav-link.active {
  border-top-left-radius: 12px;
}
.tab-page-card .nav-pills .nav-item:first-child .nav-link {
  border-top-left-radius: 12px;
}
.tab-page-card .nav-pills .nav-item:last-child .nav-link {
  border-top-right-radius: 12px;
} */

.sys-app-card {
  border: 2px solid var(--grey-variant);
  height: 100%;
  border-radius: 12px;
  padding: 12px;
}

.sys-app-card i {
  font-size: 32px;
  color: #00AAFF;
}

.content-card {
  background-color: var(--white);
  border: 2px solid var(--grey-variant);
  border-radius: 12px;
  height: 100%;
}

.content-card i {
  font-size: 20px;
}
/* Enrolled Device Info Page Ends Here */


/* Upload large files starts */
.upload-large-files {
  
}

.upload-large-files .uploader {
  border: 3px solid var(--grey-variant);
  border-radius: 16px;
  padding: 10px 16px;
}

.upload-large-files .uploader:hover,
.upload-large-files .uploader.drag-hover {
    background-color: var(--primary-lite);
    border-color: var(--primary-color);
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 3px solid var(--grey-variant);
  margin: 0 10px;
}

#fileStatusContainer {
  border-top: 1px solid var(--grey-variant);
  max-height: 280px;
}

/* Upload large files ends */


/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 6px 12px;
  transition: 0.3s;
  /* color: var(--black); */
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--bg-gray-lite);
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% { opacity: 0; }
  100% { opacity: 1; }
  0% { opacity: 0; }
}

@keyframes dropdown-animate {
  0% { opacity: 0; }
  100% { opacity: 1; }
  0% { opacity: 0; }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
/* Shivam commented */
/* .card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
} */

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 15px 0 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  border-bottom: 3px solid var(--bg-gray-lite);
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
    border-bottom: 3px solid var(--bg-gray-lite);
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary-color);
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.customHeight {
  height: 3em;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--primary-color);
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color)
}

/* Testing */

/* Styles for the .ellipsis class */
.ellipsis {
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* Styles for the .apply-selection class */
.apply-selection {
  display: none;
  width: 100%;
  margin: 0;
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
}

/* Styles for the .ajax-link class */
.ajax-link {
  display: none;
}

/* Styles for the .checkboxes class */
.checkboxes {
  /* margin: 0; */
  /* display: none; */
  /* border: 1px solid #ccc; */
  /* border-top: 0; */
}

/* Styles for the .inner-wrap class */
/* Style custom input wrapper */

.my-wrapper {
  position: relative;
  z-index: 2;
}

.inner-wrap {
  display: none;
  margin-top: 6px;
  position: absolute;
  right: 0px;
  left: 0px;
  height: auto;
  max-height: 300px;
  background-color: var(--white)!important;
  overflow: auto;
  z-index: 2;
  width: calc(100% - 16px);
  margin: 6px auto;
}

.hoverFilterSelect {
  border-bottom: 1px solid var(--bg-gray-lite);
  padding-top: 1px;
  padding-bottom: 1px;
}
.hoverFilterSelect:hover {
  /* cursor: pointer; */
  background-color: var(--bg-gray-lite);
}

/* .loader-container {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
}

.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.required-message {
  color: red;
  display: none;
}

.time-input {
  width: 74px;
  height: 35px;
}

.time-dropdown {
  width: 50px;
  height: 25px;
}

.startmin_style {
  display: none;
}

.timeerrorMessage {
  color: red;
}

.dialog-message {
  background-color: #ebe9e9dc;
  color: #b11919;
  display: flex;
}

.text-p-tag {
  margin: 0;
  /* Remove default margin for <p> tag */
}

.endmin_vertical {
  margin-left: 21.9px;
}

/* code after csp*/
.required-message {
  color: red;
  display: none;
}

.card_policy,
#disable-apps-msg,
#single-Kiosk-apps-msg,
.multiple_app_kiosk_hide,
.policy_form_two,
.opt_hide,
.colorfulModal {
  display: none;
}

#validate_policy_name {
  display: none;
  color: red;
}

#errorMessage,
#timeerrorMessage,
#errorText,
.timeerrorMessage,
.red_hr,
.err-msg {
  color: red;
}

.blue_hr {
  color: blue;
}

/*style for djngo message */

.message_toast {
  position: fixed;
  z-index: 9999;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25em;
  line-height: 1;
  font-size: 16px;
  opacity: 0.9;
  word-wrap: break-word;
}

.message_close {
  float: right;
  font-size: 10px;
  padding: 1px 6px;
}

.header_body {
  background-color: #90c6f1;
}

.header_card {
  border-radius: 1rem;
}

/** .tr_pushemail {
  color: rgb(237, 126, 126) !important;
} */

.monty {
  height: 600px;
}

.hero {
  background: #012d52;
}

.anurag_cheetah_hai {
  display: none;
}

.hover-effect:hover {
  color: red;
}

.hover-effect-profile:hover {
  color: green;
}

.profile-update img {
  object-fit: cover;
  width: 172px;
  height: 172px;
}

.grey-background {
  background-color: #e4dbdb;
}

.small-text {
  font-size: 12px;
}

/* Loader Style */

/* Spinner */
.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgb(24 24 24 / 75%), rgb(49 62 70 / 75%));
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: var(--card-shadow);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* #overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: rgb(156 156 215 / 50%);
  backdrop-filter: blur(5px);
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 12px #ddd solid;
  border-top: 12px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
  width: 5rem;
  height: 5rem;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}

.is-hide {
  display: none;
} */

/* LoaderStyle */

.emg_border {
  border: 1px solid #555;
}

.black_text {
  color: black;
}

.policy_th_tr {
  border: 1px solid black;
  border-collapse: collapse;
}

.policy_table_width {
  width: 100;
}

.policy_tab_bg_color {
  background-color: rgb(120, 147, 235);
}

.instruction {
  margin-bottom: 10px;
  /* Adjust the value as needed */
}

.additional-text {
  margin-top: 10px;
  /* Adjust the value as needed */
}

.tr_deactivate {
  background-color: #ffc0cb !important;
}

#more_button {
  background-color: #3498db;
  /* Blue color */
  color: #fff;
  /* White text */
  border: none;
  padding: 10px 20px;
  /* Adjust padding as needed */
  border-radius: 20px;
  /* Oval shape with a larger border-radius */
  cursor: pointer;
  font-size: 10px;
  /* Adjust font size as needed */
}

.custom_text_font_size {
  font-size: 14px;
}

#more_button:hover {
  background-color: #2980b9;
  /* Darker blue color on hover */
}

/* SingleUerStle */

.hover_me {
  cursor: pointer;
}

.hover_me:active {
  background-color: green;
}

.hover_me:hover {
  background-color: var(--primary-color);
  color: #ffff !important;
}

/* End */

/* Resources */

.hover_image {
  background-color: white;
  width: 20rem !important;
  transition: 1s background-color;
}

.hover_image:hover {
  background-color: #ffc1074f;
}

/* End Resources */

/* CustomAdminControl */
.outerContainer {
  background-color: #f6f9ff;
}

/* Dynmic COlor */

.bg_green {
  background-color: #4cfa72 !important;
  color: black;
}

.bg_red {
  background-color: #fa4c4c;
  color: white;
}

.bg_light_green {
  background-color: #4cfada;
  color: black;
}

/* Dynamin End */
/* Profile Style */
.profileBg {
  background: url("../img/newBg.jpg");
}

.profileDetailBg {
  background: url("../img/newBg.jpg");
}

/* ProfileStyle */

.bgBanner {
  background: url("../img/newBg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}

/* End


/* PriceStyle*/

.hover_Price {
  transition: 1s background-color;
}

.hover_Price:hover {
  background-color: #ffc1074f;
}

/* priceStyleEnd */

/* End */

.hide_button {
  visibility: hidden !important;
}

/* End */

.next_font {
  font-size: 18px;
}

/* HomeLandStlye */
.banner-left {
  width: 20rem !important;
  margin-bottom: 1rem !important;
}

.rightHeadBg {
  background-image: url("../img/bannerLion.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 98vh !important;
  margin-top: 3rem !important;
  width: auto;

}
/* HomeWNd */

/* FQ */

.fw300 {
  font-weight: 300 !important;
}

.fw200 {
  font-weight: 200 !important;
}

.fw400 {
  font-weight: 400 !important;
}

.item h5 {
  font-size: 1.1rem;
}

.center_org_name {
  margin-left: -70px;
}

/* CustomAdminControl */

/* .td_bg {
  color: rgb(237, 126, 126) !important;
}

.p_bg {
  text-align: right;
  color: rgb(237, 126, 126);
} */

/* .table_row {
  overflow-x: auto;
} */

.flex_td {
  display: flex;
}


/* End */

.custom-link {
  color: #444444;
  text-decoration: none;
}


.custom-link:hover {
  color: #444444;

}

/* FQ ENd */

/* PriceStyle */

.priceHead {
  color: var(--primary-color) !important;
  font-size: 1.7rem;
}

.priceDesc {
  color: var(--custom-black) !important;
  font-weight: 300;
}

/* PriceStyle End */

/* FooterStyle */

.twitterLogo {
  width: 0.9rem;
  margin-bottom: 7px;
  padding: 0px;
}

.twitterLogo:hover {
  filter: hue-rotate(var(--value, 360deg))
}




/* FooterStyleEnd */


/* FeatureStyle */

.resource_border {
  border: 2px solid var(--secondary-color);
}


/* Feature Style end */


/* Contus */

.textCustomPrimary {
  color: var(--primary-color);
}

/* ContactUs */


/* aboutus */

.aboutHead {
  color: var(--primary-color);
  font-size: 1.2rem;
}


/* Aboutusend */

/* Custom Circular */
.circle-chart {
  width: 300px;
  height: 300px;
}

.circle-chart1 {
  width: 200px;
  height: 200px;
}

.circle-chart2 {
  width: 100px;
  height: 100px;
}

.circle-chart__circle {
  stroke: #00acc1;
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  animation: circle-chart-fill 2s reverse;
  /* 1 */
  transform: rotate(-90deg);
  /* 2, 3 */
  transform-origin: center;
  /* 4 */
}

/**
 * 1. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 2. Scaling mirrors the circle to make the stroke move right
 *    to mark a positive chart value.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround.
 */

.circle-chart__circle--negative {
  transform: rotate(-90deg) scale(1, -1);
  /* 1, 2, 3 */
}

.circle-chart__background {
  stroke: #efefef;
  stroke-width: 2;
  fill: none;
}

.circle-chart__info {
  animation: circle-chart-appear 2s forwards;
  opacity: 0;
  transform: translateY(0.3em);
}

.circle-chart__percent {
  alignment-baseline: central;
  text-anchor: middle;
  font-size: 8px;
}

.circle-chart__subline {
  alignment-baseline: central;
  text-anchor: middle;
  font-size: 3px;
}

.success-stroke {
  stroke: #00C851;
}

.warning-stroke {
  stroke: #ffbb33;
}

.danger-stroke {
  stroke: #ff4444;
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.charts {
  width: 300px;
}

.chart {
  width: 15rem !important;
}

.charts svg {
  display: block;
  margin: 0 auto 20px auto;
  transform: rotate(-90deg);
}

.charts svg circle {
  stroke-width: 20px;
  fill: none;
  stroke-dashoffset: 1000px;
  stroke-dasharray: 1000px;
  transition: stroke-dashoffset 0.5s, stroke-dasharray 0.5s;
}

.charts .background {
  stroke: var(--primary-color);
  fill: transparent;
  stroke-dashoffset: 0px;
}

.charts .first {
  stroke: lightblue;
  stroke-linecap: round;
}

.charts .second {
  stroke: lightgreen;
}

.charts .third {
  stroke: purple;
  stroke-linecap: round;
}


.dot_class {
  height: 12px;
  width: 12px;
  margin-right: 4px;
  border-radius: 50%;
  display: inline-block;
}

.dot_green {
  height: 10px;
  width: 10px;
  background-color: lightgreen;
  border-radius: 50%;
  display: inline-block;
}

.dot_purple {
  height: 10px;
  width: 10px;
  background-color: purple;
  border-radius: 50%;
  display: inline-block;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs10 {
  font-size: 10px !important;
}

/* Custom Circular */

/* AdminNav */


.customHeight {
  max-width: 25rem !important;
  min-width: 20rem !important;
  min-height: 50vh !important;
  max-height: 70vh !important;
  overflow-y: scroll;
}

/* AdminNav ENd */

/* GoogleMapStyle */
.chartNew {
  height: 370px;
  max-width: 920px;
  margin: 0px auto;
}


/* ENd */
.mup {
  margin-top: 50px;
}

.button-center {
  padding: 20px 0px;
  text-align: center;
}

.menu_title {
  font: 700 18px/28px 'Open Sans', sans-serif;
  display: none;
}

.overflow-control {
  max-width: 100%;
  overflow: auto;
}

svg {
  float: left;
  width: 100%;
  height: 100%;
}

.svg_row {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.title {
  text-align: center;
  font: 700 18px/32px 'Open Sans', sans-serif;
  text-transform: uppercase;
}

.info_text {
  font: 900 16px/12px 'Open Sans', sans-serif;
  display: none;
}

.inputmessage {
  color: #e21828;
  font-size: 12px;
  margin-top: 5px;
}

.custom-input {
  border: 1px solid rgb(240, 234, 234);
}

.custom-input:focus {
  border: 1px solid black;
}

.dropdown-toggle::after {
  margin-left: 0px !important;
}

.customCircle {
  width: 280px;
  height: 280px;
  border: 10px solid lightblue;
  border-radius: 50%;
}


.h3rem {
  height: 8em !important;
}

.customSideBarWith {
  width: 4em !important;
}

.customMarginLeft {
  margin-left: 4em !important;
}

.displayHidden {
  display: none !important;

}

.pointerEvent {
  pointer-events: none;
  background-color: #e9ecef;
}


/* youTube */

.videoHeight {
  height: 350px !important;
}

.featureIconStyle {
  font-size: 3em;
  color: #4D8BB1;
}


/* MessageButton */

.buttonAlignStyle {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.positionRelative {
  position: relative;
}

/* MessageButtonEnd */


.color_box {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, .2);
}

.closeButtonWidth {
  width: 24px;
  height: 24px;
}


.height10px {
  height: 10px !important;
  position: absolute !important;
  top: 50% !important;
}


/* GEO FECHING STYLE */

.geoSideBar {
  width: 1em !important;
}

.adjustGeoFench {
  position: absolute;
  top: 100px;
  left: 10px;
  /* height: 380px; */
}

.outerContainer {
  position: relative;

}

.pac-card {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  font-family: Roboto;
  padding: 0;
}

#pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
}

.pac-controls {
  displaycustomTabsStyle: inline-block;
  padding: 5px 11px;
}

.pac-controls label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

#pac-input::placeholder {
  color: #8a8a8a;
  opacity: 1;
  font-size: 13px !important;
}

.gmnoprint button[aria-label="Stop drawing"] {
  padding: 13px 15px !important;
  margin-top: 4px !important;
}

.gmnoprint button[aria-label="Draw a circle"] {
  padding: 13px 15px !important;
  margin-top: 4px !important;
}

#pac-input {
  left: 173px !important;
  top: -10px !important;
  border: none;
  border-radius: 2px;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.25);
  padding: 13px 40px;
  font-weight: 500;
  font-family: Roboto;
  margin-left: 12px;
  margin-top: 20px;
  background-size: 20px 18px;
  text-overflow: ellipsis;
  background: white 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="M18.031 16.617L22.314 20.899L20.899 22.314L16.617 18.031C15.0237 19.3082 13.042 20.0029 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20.0029 13.042 19.3082 15.0237 18.031 16.617ZM16.025 15.875C17.2941 14.5699 18.0029 12.8204 18 11C18 7.133 14.867 4 11 4C7.133 4 4 7.133 4 11C4 14.867 7.133 18 11 18C12.8204 18.0029 14.5699 17.2941 15.875 16.025L16.025 15.875Z" fill="%238A8A8A"%3E%3C/path%3E%3C/svg%3E') no-repeat 12px center;
}
/* END */

.progessHeight {
  height: auto;
}

#CurrentIdMap {
  height: 300px;
  width: auto;
  margin-top: 5px;
}

footer li {
  list-style: none;
}

/** .filterWraper {
  border-radius: 16px;
  font-size: 14px;
  color: gray;
  padding-top: 8px;
  padding-bottom: 8px;
} */

.customWidthAlignSet {
  width: 64%;
}

.vhidden {
  visibility: hidden;
}

.resend-otp {
  font-size: 14px;
  color: blue;
  cursor: pointer;
}


/* CustomTabsStyle */
.customTabsStyle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #ffc107;
  --bs-nav-tabs-border-width: 0px;
  background: #0285C7;
  --bs-nav-link-color: #fff;
  --bs-nav-link-hover-color: #ffc107;
  --bs-nav-tabs-border-radius: 0px;
  font-size: 1rem;
}

/* CustomTabsStyleEnd */

.dataTables_filter{
  padding-top: 5px;
  padding-bottom: 5px;
}

.labelWIdth{
  width: 10rem ;
}

.cursortPointer{
  cursor: pointer;
}

.hoverLabelMe:hover{
  border: 2px sold red;
}

/* StyleTimeFence */

.popover-header{
  display: none;
}

/* StyleTimeFench End */

/* TimerStyle */


.timerCircle{
  width: 2em;
  height: 2em;
    display: flex;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    border: 4px solid #0d6efd;
    border-radius: 2em;
}

.lh_0{
  line-height: 0px;
}

.dataTables_wrapper .dataTables_filter input {
  cursor:  pointer !important;
}


.btn_orange{
  --bs-btn-color: #fff;
    --bs-btn-bg: #db580bbf;
    --bs-btn-border-color: #db580bbf;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e7510b;
    --bs-btn-hover-border-color: #db580bbf;
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

/** .w90{
  width: 90% !important;
} */


.noIcon .dropdown-toggle::after {
  display: none;
}

.whatsIcon:hover{
  color: green;
}

.caseStudycards{
  width: 20% !important;
  color: black !important;
  font-size: small;
  font-family: "Source Sans Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin-top: 3%;
}

.cardHeadClass{
  border-bottom: none;
}

@media (max-width: 576px) {
  .caseStudycards {
    width: 80% !important;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .caseStudycards {
    width: 40% !important;
  }
}

@media (min-width: 769px) {
  .caseStudycards {
    width: 20% !important;
  }
}

/* Timer Style End */

/* DRAG AND DROP CONTAINER STYle */
.drop-zone {
  border: 2px dashed #ced4da;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  width: 25em;
  margin: auto;
}

.drop-zone input {
  display: none;
}

.drop-zone i {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 10px;
}

.drop-text {
  font-size: 18px;
  color: #6c757d;
}

.drop-zone.drag-over {
  border-color: #007bff;
}

/* Additional styling for upload icon */
#dropZone i {
  margin-bottom: 0.5rem;
}

.file-upload-container {
  margin-bottom: 20px;
}

.file-upload-label {
  font-size: 18px;
  margin-right: 10px;
}

.file-upload-input {
  display: none;
}

.upload-button {
  font-size: 18px;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.controlHeight{
  overflow-y: scroll;
    max-height: 300px;
}

.nsns {
  overflow-x: hidden;
}

.icon_in_line{
  width: 400px !important;
}

#resend_otp {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
}

#resend_otp:hover {
  color: #0056b3;
  text-decoration: underline;
}

.login_input{
  width: 19rem !important;
  border: 1.5px solid var(--primary-color) ;
  border-radius: 10px;
  height: 38px;
}
/* End */