*, html, body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #001027;
    --blue: #009BF3;
    --blue-30:rgba(30, 35, 43, 0.3);
    --blue-60: rgba(0, 16, 39, 0.6);;
    --dark-900: #1E232B;
    --green-900:#3BD21F;
    --text-muted: #D8E2F1;
    --border-color: #E5E7EB;
    --white: #ffffff;
    --red:#FB2C36;
    --bdrRadius: 10px;
    --boxShadow: 0 5.06px 15.19px 0 rgba(0, 0, 0, 0.20);
}


body, html{
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    min-height: 100%;
}


body {
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    min-height: 100%;
}


p, h1, h2, h3, h4, h5, h5, h6, ul, li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;    
}
a{
    text-decoration: none;
    color: var(--blue);
}

img{
    display: block;
    max-width: 100%;
}

h6 {
	font-size: 0.75rem;
	color: var(--blue-60);
}
.main-wrapper{
    display: flex;
}


/*---Login Page css start here---*/
.login-page-content{
    background: url(../img/login_page_bg.png) no-repeat 0 0;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-direction: column;
}
.login-form {
	background-color: var(--white);
	width: 100%;
	height: auto;
	padding: 2rem;
	border-radius: var(--bdrRadius);
}

.logo-block {
	width: auto;
	max-width: 50%;
}

.logo-block img{
	width: 100%;
}
.form-control {
	font-size: .875rem;
	color: var(--blue-10);
	padding: 0.75rem 1rem!important;
    border-radius: var(--bdrRadius);
    border-color: var(--primary);
}
.form-label {
	font-size: 0.875rem;
    color: var(--dark-900);
}
.form-control:focus, input:focus, label:focus, select:focus, button:focus{
    outline: none;
    box-shadow: none;
}
.email-icon{
    position: absolute;
    left: 15px;
    top: 10px;
}
.login-form-content .form-control{
    padding: 0.75rem 2.8rem 0.75rem 2.8rem !important;
}
.eye-icon{
    position: absolute;
    right: 13px;
    top: 13px;
}

.link-text{
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--primary);
    cursor: pointer;
}

.btn{
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--bdrRadius);
}

.btn-primary{
    background-color: var(--blue);
    color:var(--white);
    border-color: var(--blue);
}

.btn-primary:hover{
    background-color: var(--primary);
    border-color: var(--primary);
}


/*--=====Sidebar section css start here=====--*/
.sidebar {
	z-index: 999;
	width: 260px;
	height: 100%;
	transition: width .2s, margin .2s;
	position: fixed;
	top: 0;
	left: 0;
    background: var(--primary);
}
.sidebar .sidebar-header {
	z-index: 999;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 1rem;
	transition: width .2s;
	display: flex;
}

.sidebar-toggler-mobile{
    display: none;
    max-width: 60%;
    margin: 0 auto;
}
.sidebar-brand{
    display: flex;
    max-width: 70%;
    margin: 0 auto;
}

/*--sidebar nav--*/
.sidebar .sidebar-body {
	height: 100%;
	max-height: calc(100% - 60px);
	-webkit-box-shadow: 0 8px 10px 0 var(--bs-sidebar-box-shadow-color);
	box-shadow: 0 8px 10px 0 var(--bs-sidebar-box-shadow-color);
	position: relative;
}

.main-navigation {
	padding: 1.5rem 1rem;
}
.main-navigation ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main-navigation ul li{
    list-style-type: none;
    display: flex;
    width: 100%;
}
.main-navigation ul li a{
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    width: 100%;
    position: relative;
}
.main-navigation ul li a.active,
.main-navigation ul li:hover a.active{
    background-color: var(--white);
    color: var(--blue);
    box-shadow: var(--boxShadow);
}
.main-navigation ul li:hover a{
    color: var(--white);
    background-color: var(--dark-900);
}

.main-navigation ul li a svg{
    height: 20px;
    width: 20px;
}
.sidebar-chat-badge {
    min-width: 20px;
    height: 20px;
    margin-left: auto;
    padding: 0 6px;
    border-radius: 999px;
    background-color: #FB2C36;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

/*--Right Sidebar section css start here--*/
.page-wrapper {
	background-color: #F2F2F4;
	flex-direction: column;
	width: calc(100% - 260px);
	max-height: 100vh;
	margin-left: 260px;
	transition: margin .1s,width .1s;
	display: flex;
    padding-top: 30px;

}

/*--Right Sidebar header--*/
.top-header {
	background: var(--white);
	border-bottom: 1px solid var(--border-color);
	z-index: 999;
	width: calc(100% - 260px);
	height: 60px;
	align-items: center;
	padding: 0;
	transition: width .2s,left .2s;
	display: flex;
	position: fixed;
	left: 260px;
    top: 0;
}

@keyframes pulse {
  0% {
    opacity:1;
    width:7px;
    height:7px;
    top:0;
    left:0
  }
  95% {
    opacity:.1;
    width:28px;
    height:28px;
    top:-10.5px;
    left:-10.5px
  }
  to {
    opacity:0;
    width:7px;
    height:7px;
    top:0;
    left:0
  }
}

.header-right-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
    padding: 0 10px;
}

.show-hide-arrow {
	background-color: var(--white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
	padding: 5px;
	border-radius: var(--bdrRadius);
	min-width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.page-header-right-links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.search-form {
	display: flex;
	align-items: center;
	background: var(--white);
    border: 1px solid var(--dark-900);
    border-radius: var(--bdrRadius);
}
.search-form .input-group-text{
    background-color: transparent!important;
    border: 0px;
    cursor: pointer;
}
.search-form .form-control {
	border: 0px;
	background-color: var(--white);
	padding: 0.75rem 0 !important;
}

.notification button{
    background-color: transparent;
    border: 0;
    position: relative;
}

.indicator {
  position: absolute;
  top: 0;
  right: 2px;
}
.indicator .circle {
  background:var(--red);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.indicator .circle::before {
  content: "";
  background-color: var(--red);
  border-radius: 50%;
  display: table;
  position: absolute;
  animation-name: pulse;
  animation-duration: .9s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.user-thumbnail {
	background-color: var(--blue);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.user-thumbnail i{
    color: var(--white);
    font-size: 1.5rem;
}
.user-info{
    font-size: 0.875rem;
}

.user-info-seciton .dropdown-menu{
    border-radius: var(--bdrRadius);
    box-shadow: var(--boxShadow);
    border: 0px;
}

.user-info-seciton .dropdown-menu li a,
.user-info-seciton .dropdown-menu li button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	color: var(--dark-900);
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
}

.show-hide-arrow.arrow-revert {
	transform: rotate(-180deg);
}

/*--Sidebar show hide--*/

.left-sidebar-open .page-wrapper{
    margin-left: 85px;
    width: calc(100% - 85px);
}

.left-sidebar-open .top-header {
	left: 85px;
	width: calc(100% - 85px);
}

.left-sidebar-open .sidebar {
	width: 85px;
	overflow: visible;
}

.left-sidebar-open .main-navigation .hide-menu {
	display: none;
}
.left-sidebar-open .sidebar-brand {
	display: none;
}

.left-sidebar-open .sidebar-toggler-mobile{
    display: flex;
}

/*--Dashboard stats section css start here--*/
.page-content {
  flex-grow: 1;
  padding: 25px;
}

.groth-up {
	font-size: 0.75rem;
	color: var(--blue-60);
    align-items: center;
}
.groth-up .green-arrow{
    stroke: var(--green-900);
}

.dash-icons {
	background-color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--bdrRadius);
	height: 42px;
    min-height: 42px;
    min-width: 42px;
    width: 42px;
    color: var(--white);
}

.total-request .dash-icons{
    background-color: var(--green-900);
}

.total-orders .dash-icons{
    background-color: #FF9B28;
}

.total-sales .dash-icons{
    background-color: #BD4BFF;
}

/*--acitive list--*/
.activeity-list-inner {
	padding: 0.875rem 1rem;
	border-radius: var(--bdrRadius);
}
.activeity-list-inner:hover {
    background-color: #EDF8FE;
}
.time-duration {
	font-size: 0.75rem;
	color: var(--blue-60);
}
.activeity-list-inner p {
	font-size: 1rem;
	color: var(--dark-900);
	margin-bottom: 5px;
}

.order{
    background-color: #C9FEDD;
    color: var(--green-900);
}
.quote{
    color: var(--blue);
    background-color: #C9EBFE;
}

.user{
    color: #9B4BC0;
    background-color: #E3C9FE;
}

.product{
    color: #CF7C4F;
    background-color: #FFCEB3;
}

/*---Responsive table view css start here---*/
.responisve-table table th {
	background-color: var(--blue);
	padding: 0.65rem 0.875rem;
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 600;
    border: 1px solid var(--white);
}

.responisve-table table td {
	background-color: var(--white);
	padding: 0.65rem 0.875rem;
	color: var(--dark-900);
	font-size: 0.875rem;
	font-weight: 400;
    border: 1px solid #dfe8f3;
}
.responisve-table table tr:hover td,
.responisve-table table tr:nth-child(odd) td{
    background-color: #EEF6FF;
}
.edit-icon,
.delete,
.save-btn,
.remove_row {
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    color: inherit;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    cursor: pointer;
}
.edit-icon:hover,
.delete:hover,
.save-btn:hover,
.remove_row:hover {
    background: transparent;
}
.edit-icon svg,
.delete svg,
.save-btn svg,
.remove_row svg {
    display: block;
}
.delete svg{
    stroke: var(--red);
}
.recommendation-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.recommendation-summary div {
    background-color: #F8FBFF;
    border: 1px solid #E5EEF8;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.recommendation-summary span {
    color: #6B7280;
    font-size: 0.8rem;
}
.recommendation-summary strong {
    color: var(--primary);
    font-size: 1.25rem;
}
.recommendation-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 10px;
    align-items: center;
}
.admin-filter-bar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) repeat(4, auto);
    gap: 10px;
    align-items: center;
}
.admin-filter-bar .form-control {
    min-width: 130px;
}
.recommendation-copy {
    max-width: 460px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.recommendation-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 4px 10px;
    color: #047857;
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    font-size: 0.72rem;
    font-weight: 700;
}
.recommendation-status.is-inactive {
    color: #6B7280;
    background-color: #F3F4F6;
    border-color: #E5E7EB;
}
.recommendation-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-900);
    font-size: 0.875rem;
    cursor: pointer;
}
.recommendation-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}
.settings-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px;
}
.settings-summary-item {
    min-height: 86px;
    padding: 14px;
    border: 1px solid #E5EEF8;
    border-radius: 8px;
    background-color: #F8FBFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}
.settings-summary-item span,
.settings-summary-item small {
    color: #6B7280;
    font-size: 0.82rem;
}
.settings-summary-item strong {
    color: var(--dark-900);
    font-size: 1.2rem;
}
.settings-filter-bar {
    grid-template-columns: minmax(180px, 1fr) minmax(130px, auto) auto;
}
.settings-row-button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}
.settings-row-button strong,
.settings-row-button span {
    display: block;
}
.settings-row-button span {
    max-width: 280px;
    color: #6B7280;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.settings-manage-button {
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid #D6E4F3;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.settings-manage-button.is-selected {
    border-color: #9CC8F2;
    background-color: #EAF5FF;
}
.settings-selected-row td {
    background-color: #F0F7FF;
}
.settings-entity-list {
    display: grid;
    gap: 12px;
}
.settings-entity-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid #E5EEF8;
    border-radius: 8px;
    background-color: var(--white);
}
.settings-entity-card.is-selected {
    border-color: #9CC8F2;
    background-color: #F0F7FF;
}
.settings-entity-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: inherit;
    text-align: left;
}
.settings-entity-copy {
    min-width: 0;
}
.settings-entity-copy strong,
.settings-entity-copy p,
.settings-entity-index {
    display: block;
}
.settings-entity-copy strong {
    color: var(--dark-900);
}
.settings-entity-copy p {
    max-width: 720px;
    margin: 2px 0 0;
    color: #6B7280;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.settings-entity-index {
    color: #6B7280;
    font-size: 0.72rem;
    font-weight: 700;
}
.settings-entity-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.settings-entity-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.settings-empty-state {
    padding: 18px;
    border: 1px dashed #D6E4F3;
    border-radius: 8px;
    color: #6B7280;
    text-align: center;
}
.settings-table-image,
.settings-image-preview {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border: 1px solid #E5EEF8;
    border-radius: 8px;
    background-color: #F8FBFF;
}
.settings-table-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.settings-table-image img,
.settings-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.settings-table-image span {
    padding: 4px;
    color: #6B7280;
    font-size: 0.68rem;
    line-height: 1.1;
    text-align: center;
}
.settings-parent-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px);
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #D6E4F3;
    border-radius: 8px;
    background-color: #F8FBFF;
}
.settings-parent-bar span,
.settings-parent-bar small {
    display: block;
    color: #6B7280;
    font-size: 0.82rem;
}
.settings-parent-bar strong {
    display: block;
    color: var(--dark-900);
    font-size: 1.05rem;
}
.delivery-map-summary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}
.delivery-map-stat {
    display: grid;
    grid-template-columns: 18px minmax(150px, auto) auto;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #E5EEF8;
    border-radius: 8px;
    background-color: #F8FBFF;
    color: var(--dark-900);
    font-size: 0.82rem;
}
.delivery-map-stat img,
.map-instration img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.delivery-map-stat strong,
.map-instration strong {
    color: var(--primary);
    font-size: 1rem;
}
.delivery-map-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid #E5EEF8;
    border-radius: 8px;
    background-color: #F8FBFF;
}
.delivery-live-map {
    width: 100%;
    height: 420px;
}
.delivery-leaflet-marker {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    height: auto !important;
    max-width: 180px;
    padding: 7px 10px;
    border: 1px solid #D9E8F7;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 16, 39, 0.12);
    color: var(--dark-900);
    font-size: 0.75rem;
    line-height: 1.2;
}
.delivery-leaflet-marker img {
    width: 22px;
    height: 22px;
    min-height: 22px;
    object-fit: contain;
}
.delivery-leaflet-marker span {
    display: grid;
    gap: 2px;
}
.delivery-leaflet-marker strong {
    color: var(--primary);
    font-size: 0.78rem;
}
.delivery-leaflet-marker.is-sameDay {
    border-color: #BAE6FD;
}
.delivery-leaflet-marker.is-threeHour {
    border-color: #FECACA;
}
.delivery-leaflet-marker.is-approximate {
    border-style: dashed;
    opacity: 0.9;
}
.delivery-marker-check {
    position: absolute;
    right: -7px;
    top: -7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background-color: var(--green-900);
    color: var(--white);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 16, 39, 0.18);
}
.leaflet-popup-content {
    font-family: "Poppins", sans-serif;
}
.map-instration {
    color: var(--blue-60);
    font-size: 0.875rem;
}

/*--Paggination css start--*/
.pagination .page-item .page-link {
	color: var(--dark-900);
	border: 1px solid var(--blue-30);
    background-color: var(--white);
}
.pagination .page-item .page-link:focus, .pagination .page-item .page-link:focus-visible{
    box-shadow: none;
}

/*--Model box css start here--*/
.close-btns{
    background-color: transparent;
    border: 0;
    color: var(--red);
}
.close-btns svg{
    stroke: var(--red);
}

.health-id-icon {
	background: url(../img/health_id.svg) no-repeat 10px 50%;
	padding-left: 2.5rem !important;
}

/*--input file btn--*/

/* Hide default input */
input[type="file"]{
    display:none;
}

/* Upload Card */
.upload-box {
	width: 100%;
	padding: 30px;
	border: 2px dashed var(--blue);
	border-radius: 12px;
	background: var(--white);
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hover effect */
.upload-box:hover{
    background:var(--blue-10);
}

/* Icon style */
.upload-icon{
    width:72px;
    height:60px;
    border-radius:50%;
    position:relative;
    background: url(../img/upload_icon.svg) no-repeat 0 0;
}

/* Text */
.upload-text h3{
    margin:0;
    font-size:1rem;
    color:var(--dark-900);
}

.upload-text p{
    margin:6px 0 0;
    color:var(--dark-900);
    font-size:0.75rem;
}

.notification-upload-box {
    min-height: 180px;
    padding: 18px;
    overflow: hidden;
}

.notification-upload-box.has-preview {
    padding: 0;
    border-style: solid;
    background: var(--blue-10);
}

.notification-image-preview {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.notification-image-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: var(--white);
}

.notification-image-meta strong,
.notification-image-meta span {
    display: block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notification-image-meta strong {
    color: var(--dark-900);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-image-meta span {
    color: var(--blue-70);
    font-size: 0.75rem;
}

.notification-list-image {
    width: 64px;
    height: 48px;
    flex: 0 0 64px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #dfe8f3;
    background: var(--white);
}

.select-label {
	background-color: transparent;
	border: 0px solid var(--primary);
	padding: 5px;
	width: 100%;
}
.select-label:hover{
    background-color: transparent;
}

.product-label .upload-box {
	padding: 0;
	border: 0;
    gap: 5px;
}

.product-label .upload-icon {
	width: 52px;
	height: 40px;
	background-size: 70%;
	background-position: center;
}
.product-label .upload-text h5{
    font-size: 1rem;
    color: var(--blue);
}


/*---Select Box for dashboard--*/

.select-wrapper {
  width: 186px;
  position: relative;
}

/* Select styling */
.custom-select {
  width: 100%;
  padding: 10px 30px 10px 10px;
  font-size: 0.875rem;
  border-radius: 6px;
  border: 0px solid #6c5ce7;
  background: #D4D5FF;
  color: #001027;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
}

.custom-select:disabled {
  cursor: default;
  opacity: 1;
}

/* Custom arrow */
.select-wrapper::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	background: url(../img/dopdown_arrow.svg) no-repeat 0 0;
	transform: translateY(-50%);
	color: #001027;
	pointer-events: none;
	font-size: 14px;
	width: 16px;
	height: 16px;
}

/* Optional: style options (limited support) */
.custom-select option {
  background:transparent;
  color: #001027;
}

.status-section {
	display: flex;
	align-items: center;
	gap: 14px;
}

.dropdown_accepted .custom-select {
	background: #D5FFE0;
}

.dropdown_order_ready .custom-select {
	background: #FFB4FE;
}

.dropdown_out_delivery .custom-select {
	background: #D4E7FF;
}

.dropdown_delivered .custom-select {
	background: #92B8FF;
}

.dropdown_cancelled .custom-select {
    background: #F3F4F6;
    color: #6B7280;
}

.renewal_btn {
	padding: 0.52rem 1.5rem;
}

.patient_name {
	font-size: 14px;
	color: #60656F;
}
.quote-modal-dialog {
    width: min(820px, calc(100vw - 32px));
    max-width: 820px;
}
.quote-modal-content {
    border-radius: 10px;
}
.quote-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.quote-builder-panel {
    min-width: 0;
}
.quote-line-header,
.quote-line-item {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 70px 120px 110px 32px;
    gap: 12px;
    align-items: start;
}
.quote-line-header {
    padding: 10px 12px;
    border-radius: 8px 8px 0 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
}
.quote-line-item {
    padding: 14px 12px;
    border-right: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    border-left: 1px solid #DCDCDC;
    background-color: var(--white);
}
.quote-line-item:nth-child(odd) {
    background-color: #F2FAFF;
}
.quote-medicine-cell {
    min-width: 0;
    position: relative;
}
.quote-medicine-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.quote-medicine-option {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #EEF0F2;
    background-color: transparent;
    color: var(--dark);
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: left;
}
.quote-medicine-option:hover,
.quote-medicine-option:focus {
    background-color: #F2FAFF;
    color: var(--primary);
}
.quote-medicine-option:last-child {
    border-bottom: 0;
}
.quote-medicine-empty {
    padding: 10px 12px;
    color: #60656F;
    font-size: 0.84rem;
}
.quote-recommendation-copy {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 6px;
    color: #60656F;
    font-size: 0.76rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-search-cell {
    position: relative;
}
.product-search-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.product-search-option {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #EEF0F2;
    background-color: transparent;
    color: var(--dark);
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: left;
}
.product-search-option:hover,
.product-search-option:focus {
    background-color: #F2FAFF;
    color: var(--primary);
}
.product-search-option:last-child {
    border-bottom: 0;
}
.product-search-empty {
    padding: 10px 12px;
    color: #60656F;
    font-size: 0.84rem;
}
.product-upload-box {
    min-height: 154px;
    padding: 18px;
    overflow: hidden;
}
.product-upload-box.has-preview {
    align-items: stretch;
    padding: 12px;
}
.product-upload-preview-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: 10px;
}
.product-upload-preview {
    aspect-ratio: 1;
    border: 1px solid #E8EEF6;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-upload-file-count {
    margin: 8px 0 0;
    color: #60656F;
    font-size: 0.78rem;
}
.quote-line-total {
    min-height: 38px;
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 0.9rem;
    white-space: nowrap;
}
.quote-actions-row {
    display: flex;
    justify-content: flex-start;
    padding-top: 16px;
}

/*---QTY box css--*/
.qty-price .number.cont-ad-name {
	border: 0px;
	padding: 0;
	background-color: #F2F2F4;
	padding: 6px;
	border-radius: 20px;
}

.number.cont-ad-name {
	border-radius: 30px;
	border: 0px solid #000000;
	background: #F2F2F4;
	padding: 10px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty-price .number.cont-ad-name .minus, .qty-price .number.cont-ad-name .plus {
    font-size: 0.875rem;
    font-weight: 600;
}

.number.cont-ad-name .minus {
	width: 20px;
	height: 20px;
	min-height: 20px;
	min-width: 20px;
	border-radius: 20px;
	padding: 5px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;	
    color: var(--primary);
    background-color: var(--white);
	cursor: pointer;
	margin-top: 0px;
}
.qty-price .number.cont-ad-name input {
	width: 40px;
	background-color: transparent;
}
.number.cont-ad-name input {
	height: 26px;
	width: 50px;
	text-align: center;
	font-size: 1rem;
	border: 0;
	border-radius: 0px;
	display: inline-block;
	vertical-align: middle;
    background-color: transparent;
}
.number.cont-ad-name .plus {
	cursor: pointer;
	width: 20px;
	height: 20px;
	min-height: 20px;
	min-width: 20px;
	border-radius: 20px;
	padding: 5px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background-color: #F8C301; */
	color: var(--white);
	margin-top: 0px;
    background-color: var(--primary);
    border-color: var(--primary);
}

.number.cont-ad-name .plus span, .number.cont-ad-name .minus span {
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 0 1px;
}

/*--Popup table view--*/

.table-row, .table-td {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.table-row-text {
	background: #001027;
	width: 100%;
	font-size: 14px;
    color: var(--white);
}

.table-row-text.qty-box, .qty-input-box {
	width: 25%;
    padding: 0.52rem 0.75rem;
}

.table-row-text.price-box, .price-box-2 {
	width: 30%;
    padding: 0.52rem 0.75rem;
}

.table-row-text.medication-box, .medication-box-td {
	width: 45%;
    padding: 0.52rem 0.75rem;
}

.price-input {
	max-width: 100%;
}
.price-input .price_box {
	width: 100%;
	padding: 4px 10px 4px 24px;
	border-radius: 4px;
	font-size: 14px;
	color: #001027;
	border: 1px solid #001027;
    background-image: url(../img/price_icon.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.table-td:nth-child(even){
    background-color: #F2FAFF;
}
.table-td{
    border-bottom: 1px solid #DCDCDC;
}

.total-price-bottom{
    background-color: #001027;
    padding: 0.56rem 1rem;
    border-radius: 10px;
}

.edit-icon svg {
	stroke: #FF383C;
}

.bg-img-none{
    background-image: none!important;
    padding-left: 10px!important;
}
.product-thumbnail {
	width: 60px;
	height: 60px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
}

.product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
    display: block;
}
.uploaded_img {
	position: relative;
	width: 120px;
	height: auto;
}

.upload-img-section {
	padding: 10px;
	overflow: hidden;
	border: 2px dashed var(--blue);
	width: 110px;
	align-items: center;
	justify-content: center;
	display: flex;
	height: 110px;
    border-radius: 10px;
}

.upload-img-section img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.delete-btn {
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: 30px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	padding: 5px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -7px;
	top: -6px;
    z-index: 1;
}

.list-items {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.user-list {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--blue);
	background-color: #fff;
}
.user-list-messing h6{
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.user-list-messing p.small{
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--dark-900);
}
.chat-time {
	font-size: 0.65rem;
	color: var(--dark-900);
}
.list-items{
    cursor: pointer;
}
.chat-sidebar-card,
.chat-profile-header {
    border: 1px solid #E8EEF6;
    box-shadow: 0 8px 24px rgba(0, 16, 39, 0.06);
}
.chat-connection-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6B7280;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}
.chat-connection-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9CA3AF;
}
.chat-connection-pill.is-online {
    color: #047857;
    background-color: #ECFDF5;
    border-color: #A7F3D0;
}
.chat-connection-pill.is-online::before {
    background-color: #10B981;
}
.chat-conversation-item {
    width: 100%;
    appearance: none;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    display: block;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.chat-user-initial {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: linear-gradient(135deg, #E0F2FE 0%, #F0FDF4 100%);
    font-size: 0.75rem;
    font-weight: 700;
}
.chat-presence-dot {
    position: absolute;
    right: 0;
    bottom: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background-color: #94A3B8;
}
.chat-presence-dot.is-online {
    background-color: #10B981;
}
.chat-online-label {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    border: 1px solid #A7F3D0;
    border-radius: 999px;
    padding: 2px 8px;
    background-color: #ECFDF5;
    color: #047857;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.chat-user-initial span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
}
.chat-last-message {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 3px;
    color: #4B5563 !important;
}
.chat-customer-meta {
    color: #6B7280 !important;
}
.chat-status-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    border-radius: 999px;
    padding: 3px 9px;
    text-transform: capitalize;
    font-size: 0.68rem;
    font-weight: 700;
    color: #075985;
    background-color: #E0F2FE;
    border: 1px solid #BAE6FD;
}
.chat-status-badge.status-closed {
    color: #4B5563;
    background-color: #F3F4F6;
    border-color: #E5E7EB;
}
.chat-status-badge.status-pending {
    color: #92400E;
    background-color: #FFFBEB;
    border-color: #FDE68A;
}
.chat-status-badge.status-open {
    color: #047857;
    background-color: #ECFDF5;
    border-color: #A7F3D0;
}
.list-items:hover, .list-items.active{
    background-color: #F0F8FF;
}
.list-items.active {
    box-shadow: inset 4px 0 0 var(--blue);
}

.chat-left-right {
	display: flex;
	gap: 12px;
    align-items: flex-end;
}

.user-list-messaging {
	max-height: 69vh;
	overflow: hidden;
	overflow-y: auto;
    padding-bottom: 5px;
}

.min-width-0 {
    min-width: 0;
}
.chat-profile-subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chat-header-avatar {
    width: 48px;
    height: 48px;
}
.chat-profile-details {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 50%;
}
.chat-profile-details span:not(.chat-status-badge) {
    color: #4B5563;
    background-color: #F9FAFB;
    border: 1px solid #EEF2F7;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.75rem;
}
.chat-date-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0 22px;
}
.chat-date-divider span {
    color: #6B7280;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.72rem;
    box-shadow: 0 4px 12px rgba(0, 16, 39, 0.06);
}
.chat-message-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.68rem;
    border-width: 1px;
}
.chat-bubble-column {
    max-width: min(68%, 560px);
}
.chat-message-section {
	background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
	padding: 10px 13px 8px;
	border-radius: 4px 16px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
    margin-top: 6px;
    max-width: 100%;
    box-shadow: 0 8px 20px rgba(0, 16, 39, 0.06);
}

.chat-message-section p { 
    word-break: break-word; 
    overflow-wrap: break-word; 
    white-space: pre-wrap; 
    font-size: 0.875rem;
    color: #111827;
}

.chat-message-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
	font-size: 0.68rem;
    color: #6B7280;
    text-transform: lowercase;
}

.chat-left-right.chat-end-right {
	justify-content: end;
}
.chat-left-right.chat-end-right h6{
    text-align: right;
}

.chat-left-right.chat-end-right .chat-message-section {
	background-color: var(--primary);
    border-color: var(--primary);
	border-radius: 16px 4px 16px 16px;
	display: flex;
	flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 16, 39, 0.14);
}
.chat-left-right.chat-end-right .chat-message-section p,
.chat-left-right.chat-end-right .chat-message-meta{
    color: #fff;
}

.chat-messaging {
	height: 62vh;
    min-height: 420px;
	overflow-y: auto;
	overflow-x: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
        radial-gradient(circle at 20px 20px, rgba(0, 155, 243, 0.12) 1px, transparent 1px);
    background-size: auto, 22px 22px;
    border-left: 1px solid #EEF2F7;
    border-right: 1px solid #EEF2F7;
}

.start-chat {
  position: relative;
  background-color: var(--white);
  padding: 12px 14px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #EEF2F7;
  box-shadow: 0 12px 24px rgba(0, 16, 39, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-tool-button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.chat-tool-button:disabled {
    color: #CBD5E1;
    cursor: not-allowed;
}

.chat-input-wrapper {
  width: 100%;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 0 14px;
}

.chat-input-field {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 0.95rem;
  line-height: 24px;
  height: 40px;
}

.chat-input-field:focus {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.send-message button {
    appearance: none;
    background: var(--blue);
    border: 0;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.send-message button svg {
    display: block;
}
.send-message button:disabled {
    background-color: #E5E7EB;
    color: #94A3B8;
    cursor: not-allowed;
}
.chat-empty-state {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: #6B7280;
    text-align: center;
    padding: 18px;
}
.chat-empty-state strong {
    color: var(--primary);
    font-size: 0.95rem;
}
.chat-empty-state span {
    font-size: 0.82rem;
}
.chat-empty-state-large {
    min-height: 320px;
}

@media (max-width: 991px) {
    .chat-profile-details {
        max-width: 100%;
        justify-content: flex-start;
    }

    .chat-bubble-column {
        max-width: calc(100% - 48px);
    }

    .chat-messaging {
        height: 58vh;
    }
}

.notification-wrapper {
  position: relative;
}

.notification button {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #E5EEF8;
  border-radius: 8px;
  background: #F8FBFF;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  color: var(--primary);
}

.notification button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.indicator {
  position: absolute;
  top: 7px;
  right: 8px;
}

.circle {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.notification-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 360px;
  background: var(--white);
  border: 1px solid #E5EEF8;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(0, 16, 39, 0.14);
  overflow: hidden;
  z-index: 999;
}

.notification-header {
  padding: 16px;
  border-bottom: 1px solid #E5EEF8;
  background-color: #F8FBFF;
}

.notification-header h6 {
  margin: 0;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
}
.notification-header span {
  display: block;
  margin-top: 2px;
  color: var(--blue-60);
  font-size: 0.75rem;
}
.notification-list {
  max-height: 360px;
  overflow-y: auto;
}
.notification-list::-webkit-scrollbar {
  width: 6px;
}
.notification-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: #C9D9EA;
}

.notification-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #EEF2F7;
  transition: background-color 0.2s ease;
}

.notification-item:hover {
  background: #F8FBFF;
}

.notification-item.unread {
  background: #EEF6FF;
}
.notification-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--blue);
  color: var(--white);
}
.notification-item-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.notification-item p {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.notification-item-title span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 999px;
  padding: 2px 8px;
  background-color: #ECFDF5;
  color: #047857;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}
.notification-item time,
.notification-message {
  display: block;
  color: #6B7280;
  font-size: 0.75rem;
  line-height: 1.4;
}
.notification-message {
  margin-bottom: 4px;
  color: #4B5563 !important;
}
.notification-empty-state {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #6B7280;
  text-align: center;
}
.notification-empty-state.is-error {
  color: var(--red);
}

.notification-footer {
  padding: 12px 16px 16px;
  border-top: 1px solid #E5EEF8;
  background-color: var(--white);
}

.notification-footer button {
  width: 100%;
  border: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}



/*---Responsive css start here--*/

@media(max-width:992px){
    .sidebar{
        width: 85px;
    }
    .page-wrapper{
        margin-left: 85px;
        width: calc(100% - 85px);
    }
    .top-header {
        width: calc(100% - 85px);
        left: 85px;
    }

    .main-navigation .hide-menu {
        display: none;
    }
    .sidebar-brand{
        display: none;
    }
    .sidebar-toggler-mobile{
        display: flex;
    }
    .left-sidebar-open .sidebar-toggler-mobile{
        display: none;
    }

    .left-sidebar-open .sidebar-brand{
        display: flex;
    }
    .left-sidebar-open .sidebar {
        width: 240px;
        overflow: visible;
    }
    .left-sidebar-open .page-wrapper {
        margin-left: 240px;
        width: calc(100% - 240px);
    }
    .left-sidebar-open .top-header {
        left: 240px;
        width: calc(100% - 240px);
    }
    .left-sidebar-open .main-navigation .hide-menu {
        display: flex;
    }

   .responisve-table table td,
   .responisve-table table th {
        padding: 0.35rem 0.875rem;
        font-size: 0.75rem;
    }
    .search-form .form-control {
        padding: 0.5rem 0 !important;
    }

    .total-request h3, .total-user h3, .total-orders h3, .total-sales h3 {
        font-size: 1.25rem;
    }
}


@media(max-width:767px){
    .login-form {
        width: 90%;
        padding: 1rem;
    }

    .sidebar-toggler-mobile{
        display: none;
    }

    .sidebar{
        width: 0px;
    }
    .page-wrapper{
        margin-left: 0px;
        width: calc(100% - 0px);
    }
    .top-header {
        width: calc(100% - 0px);
        left: 0px;
    }

     .left-sidebar-open .sidebar {
        width: 240px;
        overflow: visible;
    }
    .left-sidebar-open .page-wrapper {
        margin-left: 240px;
        width: calc(100% - 0);
    }
    .left-sidebar-open .top-header {
        left: 240px;
        width: calc(100% - 0);
    }
    .main-navigation ul li a{
        padding: 0;
    }
    .left-sidebar-open .sidebar .main-navigation ul li a{
        padding: 0.75rem 1rem;
    }
    .settings-entity-card {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .settings-entity-meta,
    .settings-entity-actions {
        justify-content: flex-start;
    }
    .settings-parent-bar,
    .settings-summary-grid {
        grid-template-columns: 1fr;
    }
    .user-info {
        display: none!important;
    }
    .user-thumbnail {
        width: 32px;
        height: 32px;
    }
    .user-thumbnail i {
        font-size: 1rem;
    }
    .page-header-right-links {
        gap: 16px;
    }
    .notification-dropdown {
        right: -70px;
        width: min(340px, calc(100vw - 24px));
    }
    .show-hide-arrow {
        margin-right: 10px;
    }

    .activeity-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .activeity-list-inner {
        border-bottom: 1px solid#EDF8FE;
        padding: 0 0 1rem 0;
    }
    .activeity-list-inner p {
    	font-size: 0.875rem;
        color: var(--dark-900);
        margin-bottom: 0;
    }

    .page-content {
        padding: 16px;
    }

    .responisve-table {
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
    }

    .responisve-table table {
        min-width: 410px;
    }
    .recommendation-summary,
    .recommendation-toolbar,
    .admin-filter-bar {
        grid-template-columns: 1fr;
    }
    .delivery-map-summary {
        justify-content: flex-start;
        width: 100%;
    }
    .delivery-map-stat {
        grid-template-columns: 18px minmax(0, 1fr) auto;
        width: 100%;
    }
    .delivery-map-section {
        min-height: 280px;
    }
    .delivery-live-map {
        height: 280px;
    }
    .delivery-leaflet-marker {
        max-width: 128px;
        padding: 5px 7px;
        font-size: 0.68rem;
    }
    .delivery-leaflet-marker img {
        width: 18px;
        height: 18px;
        min-height: 18px;
    }
    .delivery-leaflet-marker strong {
        font-size: 0.7rem;
    }

    .renewal_btn {
        padding: 0.42rem 0.75rem;
        font-size: 0.75rem;
    }
    .responisve-table table td .renewal_btn{
        margin-bottom: 8px;
    }

    .custom-select {
        padding: 5px 20px 5px 10px;
        font-size: 0.75rem;
    }
    .quote-modal-grid {
        grid-template-columns: 1fr;
    }
    .quote-modal-dialog {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        margin-right: auto;
        margin-left: auto;
    }
    .quote-line-header {
        display: none;
    }
    .quote-line-item {
        grid-template-columns: 1fr;
        border-top: 1px solid #DCDCDC;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    .quote-line-total {
        min-height: auto;
    }
    .select-wrapper {
        width: 146px;
        position: relative;
    }

    .btn {
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
    }
    
}
