/*
Template Name: Rocker Admin
Author: codervent
Email: codervent@gmail.com
File: app.css
*/
/* Width of vertical scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	/* Horizontal scrollbar height */
}

/* Track */
::-webkit-scrollbar-track {
	background: #e5e7eb;
	border-radius: 10px;
}

/* Thumb */
::-webkit-scrollbar-thumb {
	background: #3b82f6;
	border-radius: 10px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
	background: #2563eb;
}

body {
	font-size: 14px;
	color: #4c5258;
	letter-spacing: .5px;
	background: #f7f7ff;
	overflow-x: hidden;
	/* font-family: Roboto, sans-serif */
	font-family: "Outfit", sans-serif;
}

a {
	text-decoration: none
}

.wrapper {
	width: 100%;
	position: relative;
	display: flex;
	height: 100vh;
}

.sidebar-wrapper {
	width: 225px;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	border-right: 0 solid #e4e4e4;
	/* z-index: 11; */
	box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%) !important;
	transition: all .2s ease-out
}

.sidebar-header {
	width: 225px;
	height: 60px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	padding: 0 15px;
	z-index: 5;
	background: #fff;
	background-clip: padding-box;
	border-bottom: 1px solid #e4e4e4
}

.logo-icon {
	width: 36px
}

.logo-text {
	font-size: 22px;
	margin-left: 10px;
	margin-bottom: 0;
	letter-spacing: 1px;
	color: #008cff;
}

.toggle-icon {
	font-size: 22px;
	cursor: pointer;
	color: #008cff
}

.topbar {
	--ink: #16211d;
	--muted: #6b7671;
	--surface: #ffffff;
	--surface-tint: #f5f9f7;
	--border: #e7ece9;
	--accent: #1f6f5c;
	--accent-strong: #164f42;
	--accent-soft: #e4f2ee;
	--online: #2fae6b;

	position: sticky;
	top: 0;
	left: 250px;
	right: 0;
	height: 71px;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	z-index: 10;
	box-shadow: 0 1px 2px rgba(22, 33, 29, 0.04);
}

/* thin gradient "seam" as the signature accent, instead of a flat shadow line */
.topbar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent) 0%, transparent 55%);
	opacity: 0.55;
}

.topbar .navbar {
	width: 100%;
	height: 60px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* mobile toggle */
.mobile-toggle-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 10px;
	background: var(--surface-tint);
	color: var(--ink);
	font-size: 1.15rem;
	transition: background 0.15s ease, color 0.15s ease;
}

.mobile-toggle-menu:hover {
	background: var(--accent-soft);
	color: var(--accent-strong);
}

.mobile-toggle-menu:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* divider between top menu items and break status */
.nav-divider {
	width: 1px;
	height: 22px;
	background: var(--border);
	list-style: none;
}

/* user box */
.user-box {
	border-left: 1px solid var(--border);
}

.user-box .nav-link {
	padding: 6px 10px 6px 6px;
	border-radius: 999px;
	transition: background 0.15s ease;
}

.user-box .nav-link:hover {
	background: var(--surface-tint);
}

.user-box .nav-link:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* signature: avatar ring + live status dot */
.avatar-ring {
	position: relative;
	display: inline-flex;
	padding: 2px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-soft), var(--surface));
	border: 1px solid var(--border);
}

.avatar-ring .user-img {
	display: block;
}

.status-dot {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--online);
	border: 2px solid var(--surface);
}

.user-info {
	line-height: 1.15;
}

.user-name {
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
	background: #065f46;
	border-radius: 5px;
	padding: 5px;
}

.designation {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.chevron-icon {
	color: var(--muted);
	font-size: 1rem;
	transition: transform 0.15s ease;
}

.dropdown-toggle.show .chevron-icon,
.user-box .nav-link[aria-expanded="true"] .chevron-icon {
	transform: rotate(180deg);
}

/* dropdown panel */
.user-box .dropdown-menu {
	margin-top: 10px;
	padding: 10px;
	min-width: 220px;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(22, 33, 29, 0.1);
	animation: menuIn 0.14s ease-out;
}

@keyframes menuIn {
	from {
		opacity: 0;
		transform: translateY(-4px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.dropdown-label {
	padding: 4px 10px 8px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.user-box .dropdown-item {
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	font-size: 0.88rem;
	color: var(--ink);
	transition: background 0.15s ease;
}

.user-box .dropdown-item:hover {
	background: var(--surface-tint);
}

.item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	font-size: 1rem;
}

.icon-tint-a {
	background: var(--accent-soft);
	color: var(--accent-strong);
}

.icon-tint-b {
	background: #eef1fb;
	color: #3949ab;
}

.icon-tint-c {
	background: #fdeeee;
	color: #b3423f;
}

.logout-item:hover .item-icon.icon-tint-c {
	background: #fbdada;
}

@media (prefers-reduced-motion: reduce) {

	.user-box .dropdown-menu,
	.chevron-icon {
		animation: none;
		transition: none;
	}
}




/* ==========================================================================
   THE LUXURY GLASS DASHBOARD HEADER
   ========================================================================== */

/* --- Main Glass Header Container --- */
.premium-glass-header {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(24px) saturate(200%);
	-webkit-backdrop-filter: blur(24px) saturate(200%);
	border-bottom: 1px solid rgba(241, 245, 249, 0.8);
	position: sticky;
	top: 0;
	z-index: 1000;
	height: 80px;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	transition: background 0.3s ease;
}

.header-inner-flex {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* --- Mobile Menu Grid Icon --- */
.bento-menu-trigger {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.8);
	color: #0f172a;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-menu-trigger:hover {
	background: #0f172a;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 12px 20px rgba(15, 23, 42, 0.1);
}

/* --- Center/Right Zone Layout Blocks --- */
.header-actions-zone {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-left: auto;
}

/* --- Bento Track Component Layout --- */
.bento-stat-track {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(241, 245, 249, 0.5);
	border: 1px solid rgba(226, 232, 240, 0.6);
	padding: 6px;
	border-radius: 22px;
}

/* --- Premium User Profile Trigger --- */
.luxury-profile-pill {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 100px;
	padding: 6px 16px 6px 6px;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-profile-pill:hover,
.luxury-profile-pill[aria-expanded="true"] {
	background: #fafafa;
	border-color: #cbd5e1;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.06);
}

/* Avatar Wrapper & Status Core */
.avatar-ring-container {
	position: relative;
	display: flex;
}

.avatar-border-glow {
	border-radius: 50%;
	object-fit: cover;
	background: #f1f5f9;
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px rgba(226, 232, 240, 0.8);
}

.live-pulse-dot {
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 10px;
	height: 10px;
	background-color: #10b981;
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Profile Text Metadata */
.profile-text-group {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.2;
}

.meta-display-name {
	color: #0f172a;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: -0.01em;
}

.meta-display-role {
	color: #64748b;
	font-size: 0.75rem;
	font-weight: 500;
	margin-top: 1px;
}

.luxury-arrow {
	color: #94a3b8;
	font-size: 1.15rem;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-profile-pill[aria-expanded="true"] .luxury-arrow {
	transform: rotate(180deg);
	color: #1e293b;
}

/* --- Completely Reimagined Contextual Dropdown Panel --- */
.luxury-dropdown-panel {
	min-width: 250px;
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(16px) !important;
	border: 1px solid rgba(226, 232, 240, 0.8) !important;
	border-radius: 24px !important;
	padding: 12px !important;
	margin-top: 14px !important;
	box-shadow: 0 24px 38px -4px rgba(15, 23, 42, 0.08),
		0 12px 16px -6px rgba(15, 23, 42, 0.03) !important;
	display: none;
}

.luxury-dropdown-panel.show {
	display: block;
	animation: bentoSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.panel-user-header {
	padding: 12px 14px 14px 14px;
}

.panel-user-header h6 {
	margin: 0;
	font-weight: 700;
	color: #0f172a;
}

.panel-user-header span {
	font-size: 0.75rem;
	color: #64748b;
}

.panel-separation-line {
	margin: 10px 8px;
	opacity: 0.06;
	border-top: 1px solid #000;
}

/* Inner Navigation Link Rows */
.panel-interactive-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 12px;
	text-decoration: none;
	color: #475569;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 14px;
	transition: all 0.2s ease;
}

.panel-interactive-link:hover {
	background: #f8fafc;
	color: #0f172a;
}

/* The Micro Icon Boxes Inside Links */
.panel-icon-tile {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	transition: all 0.2s ease;
}

/* Colored Glass Tints for Dropdown Icons */
.tile-blue {
	background: #eff6ff;
	color: #2563eb;
}

.tile-purple {
	background: #f5f3ff;
	color: #7c3aed;
}

.tile-red {
	background: #fef2f2;
	color: #dc2626;
}

.panel-interactive-link:hover .tile-blue {
	background: #2563eb;
	color: #ffffff;
}

.panel-interactive-link:hover .tile-purple {
	background: #7c3aed;
	color: #ffffff;
}

.panel-interactive-link.destructive-logout:hover {
	background: #fef2f2;
	color: #dc2626;
}

.panel-interactive-link.destructive-logout:hover .tile-red {
	background: #dc2626;
	color: #ffffff;
}

/* ==========================================================================
   TOP MENU REALTIME BENTO CARD STYLES
   ========================================================================== */
.premium-menu-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bento-stat-card {
	position: relative;
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: space-between;
	padding: 8px;
	min-width: 100px;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 18px -4px rgba(15, 23, 42, 0.05);
	border: 1px solid rgba(226, 232, 240, 0.7);
	/* box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01), inset 0 1px 1px rgba(255, 255, 255, 0.9); */
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: default;
}

.bento-stat-card:hover {
	transform: translateY(-2px);
	background: #ffffff;
	box-shadow: 0 10px 18px -4px rgba(15, 23, 42, 0.05);
}

.card-internal-flex {
	display: flex;
	flex-direction: column;
}

.bento-stat-value {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
	font-variant-numeric: tabular-nums;
	/* Prevents visual layout shifting */
	line-height: 1.1;
}

.bento-stat-label {
	font-size: 0.50rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #64748b;
	margin-top: 2px;
}

/* Icon Squircle Backgrounds */
.bento-icon-box-bg {
	width: 25px;
	height: 25px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	background: #447fef;
	color: #ffffff;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Theme Color Matrix Modifications when count counts go past zero */
.success-green.active-value {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.success-green.active-value .bento-icon-box-bg {
	background: #17c964;
	color: #ffffff;
}

.success-green.active-value .bento-stat-label {
	color: #166534;
}

.success-green.active-value .bento-stat-value {
	color: #14532d;
}

.emerald.active-value {
	background: #ecfdf5;
	border-color: #a7f3d0;
}

.emerald.active-value .bento-icon-box-bg {
	background: #22c55e;
	color: #ffffff;
}

.emerald.active-value .bento-stat-label {
	color: #065f46;
}

.emerald.active-value .bento-stat-value {
	color: #064e3b;
}

.amber.active-value {
	background: #fffbeb;
	border-color: #fde68a;
}

.amber.active-value .bento-icon-box-bg {
	background: #f59e0b;
	color: #ffffff;
}

.amber.active-value .bento-stat-label {
	color: #92400e;
}

.amber.active-value .bento-stat-value {
	color: #78350f;
}

.crimson.active-value {
	background: #fef2f2;
	border-color: #fecaca;
}

.crimson.active-value .bento-icon-box-bg {
	background: #ef4444;
	color: #ffffff;
}

.crimson.active-value .bento-stat-label {
	color: #991b1b;
}

.crimson.active-value .bento-stat-value {
	color: #7f1d1d;
}

.ocean.active-value {
	background: #eff6ff;
	border-color: #bfdbfe;
}

.ocean.active-value .bento-icon-box-bg {
	background: #3b82f6;
	color: #ffffff;
}

.ocean.active-value .bento-stat-label {
	color: #1e40af;
}

.ocean.active-value .bento-stat-value {
	color: #1e3a8a;
}

.amethyst.active-value {
	background: #faf5ff;
	border-color: #e9d5ff;
}

.amethyst.active-value .bento-icon-box-bg {
	background: #a855f7;
	color: #ffffff;
}

.amethyst.active-value .bento-stat-label {
	color: #6b21a8;
}

.amethyst.active-value .bento-stat-value {
	color: #581c87;
}

.teal.active-value {
	background: #f0fdfa;
	border-color: #99f6e4;
}

.teal.active-value .bento-icon-box-bg {
	background: #10b981;
	color: #ffffff;
}

.teal.active-value .bento-stat-label {
	color: #115e59;
}

.teal.active-value .bento-stat-value {
	color: #134e4a;
}

/* Empty Stat Cards Dim State */
/* .bento-stat-card.is-empty-value {
  opacity: 0.65;
} */
.bento-stat-card.is-empty-value:hover {
	opacity: 1;
	border-color: #cbd5e1;
}

/* --- Entry Animations --- */
@keyframes bentoSlideUp {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.96);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}


/* --- Base Container Positioning --- */
.bottom-account-pill-box {
	width: 225px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	/* background: #fff; */
}
.list-group-flush>.list-group-item{
	cursor: pointer !important;
}
/* --- Panel Layout & Absolute Click Prevention Management --- */
.luxury-bottom-panel {
	width: 225px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(226, 232, 240, 0.8);
	/* border-radius: 24px; */
	padding: 12px;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
	transform-origin: bottom right;
}

/* Hard Removal When Closed: Absolutely no overlapping clicks possible */
.luxury-bottom-panel.panel-hidden {
	display: none;
}

/* Smooth Entrance Trigger When Active */
.luxury-bottom-panel.panel-visible {
	display: block;
	animation: slidePopUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Smooth Unfolding Motion Keyframe --- */
@keyframes slidePopUp {
	0% {
		opacity: 0;
		transform: translateY(15px) scale(0.95);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* --- Trigger Styling Rules --- */
.luxury-bottom-trigger.avatar-only-trigger {
	padding: 4px;
	/* border-radius: 50%; */
	width: 225px;
	/* height: 52px; */
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(226, 232, 240, 0.8);
	cursor: pointer;
	box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease;
}

.luxury-bottom-trigger.avatar-only-trigger:hover,
.luxury-bottom-trigger.avatar-only-trigger.trigger-active {
	background: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.16);
}

.avatar-ring-wrapper {
	position: relative;
	display: inline-flex;
}

.status-dot-indicator {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 11px;
	height: 11px;
	background-color: #10b981;
	border: 2px solid #ffffff;
	border-radius: 50%;
}

/* Inside Panel Content Formatting */
.panel-user-label {
	padding: 6px 12px 10px 12px;
	font-size: 0.725rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #94a3b8;
}

.panel-items-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.panel-item-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	text-decoration: none;
	color: #475569;
	font-weight: 550;
	font-size: 0.875rem;
	border-radius: 14px;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-item-link:hover {
	background: rgba(241, 245, 249, 0.8);
	color: #0f172a;
}

/* Micro Color Tint Tile Boxes */
.panel-item-link .item-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all 0.2s ease;
}

.icon-tint-a {
	background: #eff6ff;
	color: #2563eb;
}

.icon-tint-b {
	background: #f5f3ff;
	color: #7c3aed;
}

.icon-tint-c {
	background: #fef2f2;
	color: #dc2626;
}

.panel-item-link:hover .icon-tint-a {
	background: #2563eb;
	color: #ffffff;
}

.panel-item-link:hover .icon-tint-b {
	background: #7c3aed;
	color: #ffffff;
}

/* Destructive Action Behaviors (Logout Button) */
.panel-item-link.logout-item:hover {
	background: #fef2f2;
	color: #dc2626;
}

.panel-item-link.logout-item:hover .icon-tint-c {
	background: #dc2626;
	color: #ffffff;
}

/* Fine Separation Lines */
.panel-divider-line {
	height: 1px;
	background-color: rgba(226, 232, 240, 0.8);
	margin: 6px 8px;
}

.page-wrapper {
	/* height: 90%; */
	/* margin-top: 60px; */
	margin-bottom: 30px;
	/* margin-left: 250px; */
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow-y: auto;
}

.page-content {
	padding: 1.5rem 1.5rem 0.7rem 1.5rem
}

.page-footer {
	background: #fff;
	left: 225px;
	right: 0;
	bottom: 0;
	position: fixed;
	text-align: center;
	padding: 7px;
	font-size: 14px;
	border-top: 1px solid #e4e4e4;
	z-index: 3
}

.wrapper.toggled .topbar {
	left: 70px
}

.wrapper.toggled .page-wrapper {
	margin-left: 70px
}

.wrapper.toggled .page-footer {
	left: 70px
}

.sidebar-wrapper ul {
	padding: 0;
	margin: 0;
	list-style: none;
	background: 0 0
}

.sidebar-wrapper .metismenu {
	background: 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px;
	margin-top: 60px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.sidebar-wrapper .metismenu li+li {
	margin-top: 5px
}

.sidebar-wrapper .metismenu li:first-child {
	margin-top: 5px
}

.sidebar-wrapper .metismenu li:last-child {
	margin-bottom: 5px
}

.sidebar-wrapper .metismenu>li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative
}

.sidebar-wrapper .metismenu a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: left;
	padding: 6px 16px;
	font-size: 15px;
	color: #5f5f5f;
	outline-width: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	letter-spacing: .5px;
	border-radius: 0.25rem;
	transition: all .3s ease-out
}

.sidebar-wrapper .metismenu a .parent-icon {
	font-size: 24px;
	line-height: 1
}

.sidebar-wrapper .metismenu a .menu-title {
	margin-left: 10px
}

.sidebar-wrapper .metismenu ul a {
	padding: 6px 15px 6px 20px;
	font-size: 15px;
	border: 0
}

.sidebar-wrapper .metismenu ul a i {
	margin-right: 14px;
}

.sidebar-wrapper .metismenu ul {
	background: #fff
}

.sidebar-wrapper .metismenu ul ul a {
	padding: 8px 15px 8px 30px
}

.sidebar-wrapper .metismenu ul ul ul a {
	padding: 8px 15px 8px 45px
}

.sidebar-wrapper .metismenu .mm-active>a,
.sidebar-wrapper .metismenu a:active,
.sidebar-wrapper .metismenu a:focus,
.sidebar-wrapper .metismenu a:hover {
	color: #008cff;
	text-decoration: none;
	background-color: rgb(0 140 255 / 5%);
}

.menu-label {
	padding: 20px 15px 5px 5px;
	color: #b0afaf;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .5px
}

.metismenu .has-arrow:after {
	position: absolute;
	content: "";
	width: .5em;
	height: .5em;
	border-style: solid;
	border-width: 1.2px 0 0 1.2px;
	border-color: initial;
	right: 15px;
	transform: rotate(-45deg) translateY(-50%);
	transform-origin: top;
	top: 50%;
	transition: all .3s ease-out
}

@media screen and (min-width:1025px) {
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .logo-text {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper {
		width: 70px
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		width: 70px
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .toggle-icon {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		justify-content: center
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		width: 70px
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {
		justify-content: center
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .menu-title {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li ul {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li.menu-label {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .has-arrow:after {
		display: none
	}

	.email-toggle-btn {
		display: none !important
	}

	.chat-toggle-btn {
		display: none !important
	}
}

.product-show {
	font-size: 18px;
	left: 15px
}


.product-discount {
	width: 2.5rem;
	height: 2.5rem;
	font-size: 14px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%
}

.color-indigator-item {
	width: 1.2rem;
	height: 1.2rem;
	background-color: #e6e0e0;
	border-radius: 50%;
	cursor: pointer
}

.product-grid .card {
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}

@media (min-width:992px) {
	.product-grid .card:hover {
		margin-top: -.25rem;
		margin-bottom: .25rem;
		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3);
		box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3)
	}
}

.back-to-top {
	display: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 26px;
	color: #fff;
	position: fixed;
	border-radius: 10px;
	bottom: 20px;
	right: 12px;
	background-color: #008cff;
	z-index: 5
}

.back-to-top:hover {
	color: #fff;
	background-color: #000;
	transition: all .5s
}

.breadcrumb-title {
	font-size: 20px;
	border-right: 1.5px solid #aaa4a4
}

.page-breadcrumb .breadcrumb li.breadcrumb-item {
	font-size: 16px
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	display: inline-block;
	padding-right: .5rem;
	color: #6c757d;
	font-family: LineIcons;
	content: "\ea5c"
}

.icon-badge {
	width: 45px;
	height: 45px;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%
}

.widgets-icons {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ededed;
	font-size: 26px;
	border-radius: 10px
}

.widgets-icons-2 {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ededed;
	font-size: 27px;
	border-radius: 10px
}

#geographic-map {
	width: 100%;
	height: 440px
}

#geographic-map-2 {

	width: 100%;

	height: 300px
}

#geographic-map-3 {

	width: 100%;

	height: 350px
}

.product-img {
	width: 60px;
	height: 60px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #e6e6e6
}

.product-img img {
	width: 60px;
	height: 60px;
	padding: 6px
}

.product-img-2 {
	width: 45px;
	height: 45px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #e6e6e6
}

.product-img-2 img {
	width: 45px;
	height: 45px;
	padding: 1px
}

.border-light-2 {
	border-color: rgb(255 255 255 / 12%) !important;
}

.product-list {
	position: relative;
	height: 380px
}

.dashboard-top-countries {
	position: relative;
	height: 360px
}

.customers-list {
	position: relative;
	height: 450px
}

.store-metrics {
	position: relative;
	height: 450px;
}

.product-list-2 {
	position: relative;
	height: 450px;
}

.product-list .row {
	background-color: #f8f9fa;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}

@media (min-width:992px) {
	.product-list .row:hover {
		background-color: #fff;
		margin-top: -.25rem;
		margin-bottom: .25rem;
		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .2);
		box-shadow: 0 .25rem .5rem 0 rgba(0, 0, 0, .2)
	}
}

.recent-product-img {
	width: 40px;
	height: 40px;
	background-color: #fbfbfb;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #e6e6e6
}

.recent-product-img img {
	width: 40px;
	height: 40px;
	padding: 6px
}

.theme-icons {
	background-color: #fff
}

.lead-table .table {
	border-collapse: separate;
	border-spacing: 0 10px
}

.fm-menu .list-group a {
	font-size: 16px;
	color: #5f5f5f;
	display: flex;
	align-items: center
}

.fm-menu .list-group a i {
	font-size: 23px
}

.fm-menu .list-group a:hover {
	background: #008cff;
	color: #fff;
	transition: all .2s ease-out
}

.fm-file-box {
	font-size: 25px;
	background: #e9ecef;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: .25rem
}

.fm-icon-box {
	font-size: 32px;
	background: #fff;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: .25rem
}

.user-plus {
	width: 33px;
	height: 33px;
	margin-left: -14px;
	line-height: 33px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	border: 1px dotted #a9b2bb;
	color: #404142
}

.user-groups img {
	margin-left: -14px;
	border: 1px solid #e4e4e4;
	padding: 2px;
	cursor: pointer
}

.contacts-social a {
	font-size: 16px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background: #fff;
	border: 1px solid #eeecec;
	text-align: center;
	border-radius: 50%;
	color: #2b2a2a
}

.customers-contacts a {
	font-size: 16px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #eeecec;
	text-align: center;
	border-radius: 50%;
	color: #2b2a2a
}

.order-actions a {
	font-size: 18px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1f1f1;
	border: 1px solid #eeecec;
	text-align: center;
	border-radius: 20%;
	color: #2b2a2a
}


.auth-cover-left {
	display: flex;
	background-color: #f7f7ff;
	min-height: 100vh;

}

.auth-cover-right {
	display: flex;
	background-color: #ffffff;
	min-height: 100vh;
}

.auth-img-cover-login {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}



.error {
	color: #dc3545;
}

form select.error,
form textarea.error,
form input.error,
form input.error:focus,
form textarea.error:focus,
form select.error:focus {
	border-color: #ea5455 !important;
}

.customers-list .customers-list-item {
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}

@media (min-width:992px) {
	.customers-list .customers-list-item:hover {
		background-color: #f8f9fa;
		border-radius: 10px;
		margin-top: -.25rem;
		margin-bottom: .25rem;
		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .2);
		box-shadow: 0 .25rem .5rem 0 rgba(0, 0, 0, .2)
	}
}

.right-15 {
	right: 15px !important
}

.font-13 {
	font-size: 13px
}

.font-14 {
	font-size: 14px
}

.font-18 {
	font-size: 18px
}

.font-20 {
	font-size: 20px
}

.font-22 {
	font-size: 22px
}

.font-24 {
	font-size: 24px
}

.font-30 {
	font-size: 30px
}

.font-35 {
	font-size: 35px
}

.font-50 {
	font-size: 50px
}

.font-60 {
	font-size: 60px
}

.radius-30 {
	border-radius: 30px
}

.radius-10 {
	border-radius: 10px
}

.radius-15 {
	border-radius: 15px
}

.row.row-group>div {
	border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.row.row-group>div:last-child {
	border-right: none;
}

.cursor-pointer {

	cursor: pointer
}

.dash-wrapper {
	margin: -1.5rem -1.5rem -3.5rem -1.5rem;
	padding: 1.5rem 1.5rem 3.5rem 1.5rem;
}

.dash-array-chart-box {
	width: 105px;
	height: 90px;
	position: relative;
	top: -15px;
	right: 30px;
}

.chart-container-0 {
	position: relative;
	height: 320px;
}

.chart-container-1 {
	position: relative;
	height: 260px;
}

.chart-container-2 {
	position: relative;
	height: 220px;
}

.chart-container-3 {
	position: relative;
	height: 188px;
}

.chart-container-4 {
	position: relative;
	height: 162px;
}

.chart-container-5 {
	position: relative;
	height: 110px;
}

.chart-container-6 {
	position: relative;
	height: 205px;
}

.chart-container-7 {
	position: relative;
	height: 60px;
}

.chart-container-8 {
	position: relative;
	height: 260px;
}

.chart-container-9 {
	position: relative;
	height: 280px;
}

.chart-container-10 {
	position: relative;
	height: 300px;
	top: 20px;
}

.chart-container-11 {
	position: relative;
	height: 280px;
}

.chart-container-12 {
	position: relative;
	height: 160px;
}

.chart-container-13 {
	position: relative;
	height: 240px;
}

.chart-container-14 {
	position: relative;
	height: 40px;
}

.w_chart {
	position: relative;
	display: inline-block;
	width: 65px !important;
	height: 65px !important;
	text-align: center;
	color: #32393f;
}


.w_chart canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 65px !important;
	height: 65px !important;
}

.w_percent {
	display: inline-block;
	line-height: 65px !important;
	z-index: 2;
}

.w_percent:after {
	content: '%';
	margin-left: 0.1em;
	font-size: .8em;
}

.chip {
	display: inline-block;
	height: 32px;
	padding: 0 12px;
	margin-right: 1rem;
	margin-bottom: 1rem;
	font-size: 14px;
	font-weight: 500;
	line-height: 32px;
	color: rgba(0, 0, 0, .7);
	cursor: pointer;
	background-color: #f1f1f1;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 16px;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	box-shadow: none
}

.chip img {
	float: left;
	width: 32px;
	height: 32px;
	margin: 0 8px 0 -12px;
	border-radius: 50%
}

.chip .closebtn {
	padding-left: 10px;
	font-weight: 700;
	float: right;
	font-size: 16px;
	cursor: pointer
}

.chip.chip-md {
	height: 42px;
	line-height: 42px;
	border-radius: 21px
}

.chip.chip-md img {
	height: 42px;
	width: 42px
}

#invoice {
	padding: 0
}

.invoice {
	position: relative;
	background-color: #fff;
	min-height: 680px;
	padding: 15px
}

.invoice header {
	padding: 10px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid #008cff
}

.invoice .company-details {
	text-align: right
}

.invoice .company-details .name {
	margin-top: 0;
	margin-bottom: 0
}

.invoice .contacts {
	margin-bottom: 20px
}

.invoice .invoice-to {
	text-align: left
}

.invoice .invoice-to .to {
	margin-top: 0;
	margin-bottom: 0
}

.invoice .invoice-details {
	text-align: right
}

.invoice .invoice-details .invoice-id {
	margin-top: 0;
	color: #008cff
}

.invoice main {
	padding-bottom: 50px
}

.invoice main .thanks {
	margin-top: -100px;
	font-size: 2em;
	margin-bottom: 50px
}

.invoice main .notices {
	padding-left: 6px;
	border-left: 6px solid #008cff;
	background: #e7f2ff;
	padding: 10px
}

.invoice main .notices .notice {
	font-size: 1.2em
}

.invoice table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 20px
}

.invoice table td,
.invoice table th {
	padding: 15px;
	background: #eee;
	border-bottom: 1px solid #fff
}

.invoice table th {
	white-space: nowrap;
	font-weight: 400;
	font-size: 16px
}

.invoice table td h3 {
	margin: 0;
	font-weight: 400;
	color: #008cff;
	font-size: 1.2em
}

.invoice table .qty,
.invoice table .total,
.invoice table .unit {
	text-align: right;
	font-size: 1.2em
}

.invoice table .no {
	color: #fff;
	font-size: 1.6em;
	background: #008cff
}

.invoice table .unit {
	background: #ddd
}

.invoice table .total {
	background: #008cff;
	color: #fff
}

.invoice table tbody tr:last-child td {
	border: none
}

.invoice table tfoot td {
	background: 0 0;
	border-bottom: none;
	white-space: nowrap;
	text-align: right;
	padding: 10px 20px;
	font-size: 1.2em;
	border-top: 1px solid #aaa
}

.invoice table tfoot tr:first-child td {
	border-top: none
}

.invoice table tfoot tr:last-child td {
	color: #008cff;
	font-size: 1.4em;
	border-top: 1px solid #008cff
}

.invoice table tfoot tr td:first-child {
	border: none
}

.invoice footer {
	width: 100%;
	text-align: center;
	color: #777;
	border-top: 1px solid #aaa;
	padding: 8px 0
}

@media print {
	.invoice {
		font-size: 11px !important;
		overflow: hidden !important
	}

	.invoice footer {
		position: absolute;
		bottom: 10px;
		page-break-after: always
	}

	.invoice>div:last-child {
		page-break-before: always
	}
}

.main-row {
	height: 100vh
}

.main-col {
	max-width: 500px;
	min-height: 300px
}

.todo-done {
	text-decoration: line-through
}

.chat-wrapper {
	width: auto;
	height: 600px;
	border-radius: .25rem;
	position: relative;
	background: #fff;
	box-shadow: 0 .1rem .7rem rgba(0, 0, 0, .1);
}

.chat-sidebar {
	width: 340px;
	height: 100%;
	position: absolute;
	background: #fff;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	overflow: hidden;
	border-right: 1px solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
	overflow-y: auto;
}

.chat-sidebar-header {
	width: auto;
	height: auto;
	position: relative;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-right: 0 solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	padding: 15px
}

.chat-sidebar-content {
	padding: 0
}

.chat-user-online {
	position: relative
}

.chat-sidebar-header .chat-user-online:before {
	content: '';
	position: absolute;
	bottom: 7px;
	left: 40px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.chat-list .chat-user-online:before {
	content: '';
	position: absolute;
	bottom: 7px;
	left: 36px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.chat-content {
	margin-left: 340px;
	padding: 85px 15px 15px 15px
}

.chat-header {
	position: absolute;
	height: 70px;
	left: 340px;
	right: 0;
	top: 0;
	padding: 15px;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-top-right-radius: .25rem;
	z-index: 1
}

/* Existing footer */
.chat-footer {
    position: absolute;
    left: 340px;
    right: 0;
    bottom: 0;
    height: 70px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,.125);
    border-bottom-right-radius: .25rem;
    overflow: visible;
}

/* Input row */
.chat-input-row{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    height:100%;
}

/* Textarea container */
.textarea-wrapper{
    position:relative;
    flex:1;
    min-width:0;
}

/* Textarea */
.message-box{
    width:100%;
    height:55px;
    min-height:48px;
    max-height:120px;
    /* resize:none; */
    padding:12px 74px 12px 12px !important;
    border-radius:24px;
}

/* Attachment icon */
.attachment-btn{
    position:absolute;
    right:45px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    padding:0;
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6c757d;
    cursor:pointer;
    z-index:2;
}
/* Attachment icon */
.template-btn{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    padding:0;
    width:10px;
    height:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6c757d;
    cursor:pointer;
    z-index:2;
}

.sound-toggle-btn{
   position:absolute;
    right:236px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    padding:0;
    width:10px;
    height:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6c757d;
    cursor:pointer;
    z-index:2;
}
.sound-toggle-btn1{
   position:absolute;
    right:77px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    padding:0;
    width:10px;
    height:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6c757d;
    cursor:pointer;
    z-index:2;
}

.attachment-btn,.template-btn i{
    font-size:17px;
}

.attachment-btn:hover,.template-btn:hover{
    color:#0d6efd;
}

/* Send button */
.send-btn{
    flex:0 0 auto;
    height:48px;
    padding:0 18px;
    border-radius:24px;
    white-space:nowrap;
}

/* Floating selected files */
.selected-files{
    position:absolute;
    left:15px;
    right:15px;
    bottom:75px;
    display:flex;
    flex-wrap:wrap;
    gap:4px;
    z-index:999;
}

.file-chip{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 12px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:18px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    font-size:13px;
    max-width:100%;
}

.remove-file{
    cursor:pointer;
    color:#dc3545;
    font-weight:bold;
}

.chat-tab-menu li a.nav-link {
	padding: .3rem .2rem;
	line-height: 1.2;
	color: #4a4b4c
}

.chat-tab-menu .nav-pills .nav-link.active,
.chat-tab-menu .nav-pills .show>.nav-link {
	color: #008cff;
	background-color: rgb(0 123 255 / 0%)
}

.chat-title {
	font-size: 14px;
	color: #272b2f
}

.chat-msg {
	font-size: 13px;
	color: #6c757d
}

.chat-time {
	font-size: 13px;
	color: #6c757d
}

.chat-list {
	position: relative;
	height: 300px;
	overflow-y: auto;
}

.chat-list .list-group-item {
	border: 1px solid rgb(0 0 0 / 0%);
	background-color: transparent
}

.chat-list .list-group-item:hover {
	border: 1px solid rgb(0 0 0 / 0%);
	/* background-color: rgb(13 110 253 / .12) */
	background: linear-gradient(90deg, #eff6ff 0%, rgba(239, 246, 255, 0.4) 100%);
}

.chat-list .list-group-item.active {
	/* background-color: rgb(13 110 253 / .12) */
	background: linear-gradient(90deg, #eff6ff 0%, rgba(239, 246, 255, 0.4) 100%);
}


.chart-online {
	color: #16e15e
}

.chat-top-header-menu a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #6c757d;
	text-align: center;
	border-radius: 50%;
	margin: 3px;
	background-color: #fff;
	border: 1px solid rgb(0 0 0 / 15%)
}

.chat-content {
	position: relative;
	width: auto;
	height: 520px;
	overflow-y: auto;
}

.chat-content-leftside .chat-left-msg {
	width: fit-content;
	background-color: #eff2f5;
	padding: .8rem;
	border-radius: 12px;
	max-width: 480px;
	text-align: left;
	border-top-left-radius: 0;
	word-wrap: break-word;
}

.chat-content-rightside .chat-right-msg {
	background-color: #dcedff;
	padding: .8rem;
	border-radius: 12px;
	float: right;
	max-width: 480px;
	text-align: left;
	border-bottom-right-radius: 0;
	margin: 0 auto;
	word-wrap: break-word;
}

.chat_rightRaiyan {
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	align-items: end;
	padding: 2px 0;
}

.agent_name_r {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 4px;
}

.agent_name_r p:nth-child(2) {
	display: flex;
	align-items: center;
	font-size: 10px;
	font-weight: bold;
}


/* .chat_rightRaiyan img{
 margin-bottom: 5px;
} */
.chat-time-right,
.chat-time-left {
	font-size: 10px;
}

.chat_left_raiyan {
	display: flex;
	align-items: center;
}

.chat_msg_time_right {
	display: flex;
	flex-direction: column;
}

.chat_msg_time_right p:nth-child(2) {
	text-align: right;
}

.chat-toggle-btn {
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-right: 15px;
	text-align: center;
	font-size: 24px;
	color: #6c757d;
	border-radius: 50%;
	cursor: pointer;
	background-color: #fff;
	border: 1px solid rgb(0 0 0 / 15%)
}

.email-wrapper {
	width: auto;
	height: 600px;
	overflow: hidden;
	border-radius: .25rem;
	position: relative;
	background: #fff;
	box-shadow: 0 .1rem .7rem rgba(0, 0, 0, .1)
}

.email-sidebar {
	width: 250px;
	height: 100%;
	position: absolute;
	background: #fff;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	overflow: hidden;
	border-right: 1px solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem
}

.email-sidebar-header {
	width: auto;
	height: auto;
	position: relative;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-right: 0 solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	padding: 15px
}

.email-navigation {
	position: relative;
	padding: 0;
	height: 345px;
	border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.email-header {
	position: absolute;
	height: 70px;
	left: 250px;
	right: 0;
	top: 0;
	padding: 15px;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-top-right-radius: .25rem;
	z-index: 1
}

.email-content {
	position: absolute;
	left: 0;
	right: 0;
	width: auto;
	top: 70px;
	height: auto;
	margin-left: 250px;
	padding: 0;
	background: #fff;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem
}

.email-navigation a.list-group-item {
	color: #404142;
	padding: .35rem 1.25rem;
	background-color: #fff;
	border-bottom: 1px solid rgb(0 0 0 / 0%);
	transition: all .3s ease-out
}

.email-navigation a.list-group-item:hover {
	background-color: rgb(13 110 253 / .12)
}

.email-navigation a.list-group-item.active {
	color: #0b5ed7;
	font-weight: 600;
	background: linear-gradient(90deg, #eff6ff 0%, rgba(239, 246, 255, 0.4) 100%);
}

.email-meeting {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0
}

.email-meeting a.list-group-item {
	color: #404142;
	padding: .35rem 1.25rem;
	background-color: #fff;
	border-bottom: 1px solid rgb(0 0 0 / 0%)
}

.email-meeting a.list-group-item:hover {
	background-color: rgb(0 123 255 / 15%);
	transition: all .3s ease-out
}

.email-hangout .chat-user-online:before {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 45px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.email-toggle-btn {
	width: auto;
	height: auto;
	margin-right: 10px;
	text-align: center;
	font-size: 24px;
	color: #404142;
	border-radius: 0;
	cursor: pointer;
	background-color: #fff;
	border: 0 solid rgb(0 0 0 / 15%)
}

.email-actions {
	width: 230px
}

.email-time {
	font-size: 13px;
	color: #6c757d
}

.email-list div.email-message {
	background: #fff;
	border-bottom: 1px solid rgb(0 0 0 / 8%);
	color: #383a3c
}

.email-list div.email-message:hover {
	transition: all .2s ease-out;
	background-color: #eceef1
}

.email-list {
	position: relative;
	height: 530px
}

.email-star {
	color: #6c757d
}

.email-read-box {
	position: relative;
	height: 530px
}

.compose-mail-popup {
	width: 42%;
	position: fixed;
	bottom: -30px;
	right: 30px;
	z-index: 15;
	display: none
}

.compose-mail-toggled {
	display: block
}

.compose-mail-title {
	font-size: 16px
}

.compose-mail-close {
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-size: 14px;
	border-radius: 2px;
	background-color: rgb(255 255 255 / 0%)
}

.compose-mail-close:hover {
	background-color: rgb(255 255 255 / 20%)
}

.nav-primary.nav-tabs .nav-link.active {
	color: #008cff;
	border-color: #008cff #008cff #fff
}

.nav-danger.nav-tabs .nav-link.active {
	color: #f41127;
	border-color: #f41127 #f41127 #fff
}

.nav-success.nav-tabs .nav-link.active {
	color: #17a00e;
	border-color: #17a00e #17a00e #fff
}

.nav-warning.nav-tabs .nav-link.active {
	color: #ffc107;
	border-color: #ffc107 #ffc107 #fff
}

.nav-pills-danger.nav-pills .nav-link.active {
	color: #fff;
	background-color: #f41127
}

.nav-pills-success.nav-pills .nav-link.active {
	color: #fff;
	background-color: #17a00e
}

.nav-pills-warning.nav-pills .nav-link.active {
	color: #000;
	background-color: #ffc107
}

.nav-search input.form-control {
	background-color: rgb(255 255 255 / 20%);
	border: 1px solid rgb(255 255 255 / 45%);
	color: #fff
}

.nav-search button[type=submit] {
	background-color: rgb(255 255 255 / 20%);
	border: 1px solid rgb(255 255 255 / 32%);
	color: #fff
}

.nav-search input.form-control::placeholder {
	opacity: .5 !important;
	color: #fff !important
}

.nav-search input.form-control::-ms-input-placeholder {
	color: #fff !important
}

.round-pagination.pagination .page-item:first-child .page-link {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px
}

.round-pagination.pagination .page-item:last-child .page-link {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px
}

.bg-body {
	background-color: #f7f7ff !important;
}

.bg-light-primary {
	background-color: rgb(13 110 253 / .11) !important
}

.bg-light-success {
	background-color: rgb(23 160 14 / .11) !important
}

.bg-light-danger {
	background-color: rgb(244 17 39 / .11) !important
}

.bg-light-warning {
	background-color: rgb(255 193 7 / .11) !important
}

.bg-light-info {
	background-color: rgb(13 202 240 / 18%) !important
}

.bg-light-transparent {
	background-color: rgb(0 0 0 / 15%) !important
}

.bg-gradient-deepblue {
	background: #6a11cb;
	background: -webkit-linear-gradient(45deg, #6a11cb, #2575fc) !important;
	background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
}


.bg-gradient-orange {
	background: #fc4a1a;
	background: -webkit-linear-gradient(45deg, #fc4a1a, #f7b733) !important;
	background: linear-gradient(45deg, #fc4a1a, #f7b733) !important;
}

.bg-gradient-ohhappiness {
	background: #00b09b;
	background: -webkit-linear-gradient(45deg, #00b09b, #96c93d) !important;
	background: linear-gradient(45deg, #00b09b, #96c93d) !important;
}


.bg-gradient-ibiza {
	background: #ee0979;
	background: -webkit-linear-gradient(45deg, #ee0979, #ff6a00) !important;
	background: linear-gradient(45deg, #ee0979, #ff6a00) !important;
}

.bg-gradient-scooter {
	background: #17ead9;
	background: -webkit-linear-gradient(45deg, #17ead9, #6078ea) !important;
	background: linear-gradient(45deg, #17ead9, #6078ea) !important;
}


.bg-gradient-bloody {
	background: #f54ea2;
	background: -webkit-linear-gradient(45deg, #f54ea2, #ff7676) !important;
	background: linear-gradient(45deg, #f54ea2, #ff7676) !important;
}


.bg-gradient-quepal {
	background: #42e695;
	background: -webkit-linear-gradient(45deg, #42e695, #3bb2b8) !important;
	background: linear-gradient(45deg, #42e695, #3bb2b8) !important;
}


.bg-gradient-blooker {
	background: #ffdf40;
	background: -webkit-linear-gradient(45deg, #ffdf40, #ff8359) !important;
	background: linear-gradient(45deg, #ffdf40, #ff8359) !important;
}


.bg-gradient-cosmic {
	background: linear-gradient(to right, #8e2de2, #4a00e0) !important
}

.bg-gradient-burning {
	background: linear-gradient(to right, #ff416c, #ff4b2b) !important
}

.bg-gradient-lush {
	background: linear-gradient(to right, #56ab2f, #a8e063) !important
}

.bg-gradient-kyoto {
	background: linear-gradient(to right, #f7971e, #ffd200) !important
}

.bg-gradient-blues {
	background: linear-gradient(to right, #56ccf2, #2f80ed) !important
}

.bg-gradient-moonlit {
	background: linear-gradient(to right, #0f2027, #203a43, #2c5364) !important
}

.split-bg-primary {
	background-color: #0c62e0;
	border-color: #0c62e0
}

.split-bg-secondary {
	background-color: #515a62;
	border-color: #515a62
}

.split-bg-success {
	background-color: #128e0a;
	border-color: #128e0a
}

.split-bg-info {
	background-color: #0bb2d3;
	border-color: #0bb2d3
}

.split-bg-warning {
	background-color: #e4ad07;
	border-color: #e4ad07
}

.split-bg-danger {
	background-color: #e20e22;
	border-color: #e20e22
}

.bg-facebook {
	background-color: #3b5998 !important
}

.bg-twitter {
	background-color: #55acee !important
}

.bg-google {
	background-color: #e52d27 !important
}

.bg-linkedin {
	background-color: #0976b4 !important
}

/* Text Color */

.text-option {
	color: #32393f !important
}

.text-facebook {
	color: #3b5998 !important
}

.text-twitter {
	color: #55acee !important
}

.text-youtube {
	color: #e52d27 !important
}

.text-sky-light {
	color: #b4d2ff;
}



.section-authentication-signin {
	height: 100vh
}

.authentication-forgot {
	height: 100vh;
	padding: 0 1rem
}

.authentication-reset-password {
	height: 100vh;
	padding: 0 1rem
}

.authentication-lock-screen {
	height: 100vh;
	padding: 0 1rem
}

.error-404 {
	height: 100vh;
	padding: 0 1rem
}

.error-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	margin: 5px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.bg-login {
	background-image: url(../images/login-images/bg-login-img.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed
}

.bg-forgot {
	background-image: url(../images/login-images/bg-forgot-password.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed
}

.bg-lock-screen {
	background-image: url(../images/login-images/bg-lock-screen.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed
}

.login-separater span {
	position: relative;
	top: 26px;
	margin-top: -10px;
	background-color: #fff;
	padding: 5px;
	font-size: 12px;
	color: #cbcbcb;
	z-index: 1
}

.btn i {
	vertical-align: middle;
	font-size: 1rem;
	margin-top: -1em;
	margin-bottom: -1em;
	margin-right: 5px
}


.btn-inverse-primary {
	color: #008cff;
	background-color: rgba(0, 140, 255, 0.18);
	border-color: rgb(209, 234, 255);
}

.btn-inverse-primary:hover {
	color: #008cff;
	background-color: rgba(0, 140, 255, 0.18);
	border-color: rgba(0, 140, 255, 0.18);
}

.btn-inverse-primary:focus {
	color: #008cff;
	background-color: rgba(0, 140, 255, 0.18);
	border-color: rgba(0, 140, 255, 0.18);
	box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .3)
}


.btn-inverse-secondary {
	color: #75808a;
	background-color: rgba(117, 128, 138, 0.18);
	border-color: rgb(230, 232, 234);
}

.btn-inverse-secondary:hover {
	color: #75808a;
	background-color: rgba(117, 128, 138, 0.18);
	border-color: rgba(117, 128, 138, 0.18);
}

.btn-inverse-success {
	color: #15ca20;
	background-color: rgba(21, 202, 32, 0.18);
	border-color: rgb(212, 246, 214);
}

.btn-inverse-success:hover {
	color: #15ca20;
	background-color: rgba(21, 202, 32, 0.18);
	border-color: rgba(21, 202, 32, 0.18);
}

.btn-inverse-success:focus {
	color: #15ca20;
	background-color: rgba(21, 202, 32, 0.18);
	border-color: rgba(21, 202, 32, 0.18);
	box-shadow: 0 0 0 .25rem rgb(23 160 14 / 32%)
}

.btn-inverse-danger {
	color: #fd3550;
	background-color: rgba(253, 53, 80, 0.18);
	border-color: rgb(255, 218, 223);
}

.btn-inverse-danger:hover {
	color: #fd3550;
	background-color: rgba(253, 53, 80, 0.18);
	border-color: rgba(253, 53, 80, 0.18);
}

.btn-inverse-danger:focus {
	color: #fd3550;
	background-color: rgba(253, 53, 80, 0.18);
	border-color: rgba(253, 53, 80, 0.18);
	box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .3)
}


.btn-inverse-warning {
	color: #ff9700;
	background-color: rgba(255, 151, 0, 0.18);
	border-color: rgb(255, 236, 209);
}

.btn-inverse-warning:hover {
	color: #ff9700;
	background-color: rgba(255, 151, 0, 0.18);
	border-color: rgba(255, 151, 0, 0.18);
}

.btn-inverse-warning:focus {
	color: #ff9700;
	background-color: rgba(255, 151, 0, 0.18);
	border-color: rgba(255, 151, 0, 0.18);
	box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .3)
}

.btn-inverse-info {
	color: #0dceec;
	background-color: rgba(13, 206, 236, 0.18);
	border-color: rgb(211, 246, 252);
}

.btn-inverse-info:hover {
	color: #0dceec;
	background-color: rgba(13, 206, 236, 0.18);
	border-color: rgba(13, 206, 236, 0.18);
}

.btn-inverse-light {
	color: #a7aaaa;
	background-color: rgba(233, 234, 234, 0.2);
	border-color: rgb(251, 251, 251);
}

.btn-inverse-light:hover {
	color: #a7aaaa;
	background-color: rgba(233, 234, 234, 0.2);
	border-color: rgba(233, 234, 234, 0.2);
}

.btn-inverse-dark {
	color: #223035;
	background-color: rgba(34, 48, 53, 0.2);
	border-color: #d7d9da;
}

.btn-inverse-dark:hover {
	color: #223035;
	background-color: rgba(34, 48, 53, 0.2);
	border-color: rgba(34, 48, 53, 0.2);
}

.btn-facebook,
.btn-facebook:hover {
	box-shadow: 0 2px 2px 0 rgba(59, 89, 152, .14), 0 3px 1px -2px rgba(59, 89, 152, .2), 0 1px 5px 0 rgba(59, 89, 152, .12);
	background-color: #3b5998;
	border-color: #3b5998;
	color: #fff
}


.btn-white {
	background-color: #fff;
	border-color: #e7eaf3
}

.chart-container1 {
	position: relative;
	height: 380px
}

.gmaps,
.gmaps-panaroma {
	height: 400px;
	background: #eee;
	border-radius: 3px
}

.pricing-table .card {
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	-webkit-border-radius: 15px;
	border-radius: 15px
}

.pricing-table .card .card-header {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px
}

@media (min-width:992px) {
	.pricing-table .card:hover {
		margin-top: -.25rem;
		margin-bottom: .25rem;
		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3);
		box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3)
	}
}

.pricing-table .card .card-title {
	font-size: 1rem;
	letter-spacing: .2rem;
	font-weight: 500
}

.pricing-table .card .card-price {
	font-size: 2.7rem
}

.pricing-table .card .card-price .term {
	font-size: .875rem
}

.pricing-table .card ul li.list-group-item {
	border-bottom: 1px solid rgb(0 0 0 / 0%);
	color: #3b3b3b;
	font-size: 16px
}

input::placeholder {
	color: #000 !important;
	opacity: .3 !important
}

.form-floating>.form-control::-moz-placeholder {
	color: transparent !important
}

.form-floating>.form-control::placeholder {
	color: transparent !important
}

.card-group {
	margin-bottom: 1.5rem
}


.input-icon .form-control {
	padding-left: 2.5rem;
}

.input-icon span {
	font-size: 16px;
	left: 15px;
}


.topbar .navbar .navbar-nav .nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	/* height: 60px; */
}

.topbar .navbar .navbar-nav .nav-link {
	color: #212529;
	font-size: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}


.topbar .navbar .navbar-nav .nav-link:hover,
.topbar .navbar .navbar-nav .nav-link:focus {
	background-color: #f2f9ff;
	color: #008cff;
}

.dropdown-toggle-nocaret:after {
	display: none
}

.alert-count {
	position: absolute;
	top: 2px;
	left: 22px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	background: #f62718
}

.user-img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid #447fef;
	padding: 0;
}

.user-info .user-name {
	font-size: 15px;
	font-weight: 500;
	color: #413c3c
}

.user-info .designattion {
	font-size: 13px;
	color: #747474
}

.user-box {
	display: flex;
	align-items: center;
	height: 60px;
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
}




.topbar .navbar .dropdown-app .dropdown-menu {
	width: 270px;
	border: 1px solid #dee2e6;
	padding: 0.5rem;
	border-radius: 16px;
	box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
}

.topbar .navbar .dropdown-app .dropdown-menu .app-container {
	position: relative;
	height: 370px;
}


.topbar .navbar .dropdown-app .dropdown-menu .app-box {
	padding: .5rem;
	border-radius: 1rem;
	transition: .2s;
}

.topbar .navbar .dropdown-app .dropdown-menu .app-box:hover {
	background-color: #edf0f3;
}

.topbar .navbar .dropdown-app .dropdown-menu .app-name {
	color: #212529;
	font-size: .64rem;
	text-decoration: none;
	font-weight: 500;
}










.dropdown-large {
	position: relative
}

.dropdown-large .dropdown-menu {
	width: 360px;
	border: 0;
	padding: 0 0;
	border-radius: 10px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)
}

.topbar .navbar .dropdown-large .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #fff;
	position: absolute;
	top: -6px;
	right: 16px;
	transform: rotate(45deg);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd
}

.topbar .navbar .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #ffff;
	position: absolute;
	top: -6px;
	right: 16px;
	transform: rotate(45deg);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd
}

.dropdown-large .msg-header {
	padding: .8rem 1rem;
	border-bottom: 1px solid #ededed;
	background-clip: border-box;
	background-color: #ffffff;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px
}

.dropdown-large .msg-header-badge {
	background-color: rgb(0 140 255 / 12%);
	color: #008cff;
	padding: 2px 8px;
	margin-bottom: 0;
	border-radius: 4px;
}

.dropdown-large .msg-header .msg-header-title {
	font-size: 16px;
	color: #1c1b1b;
	margin-bottom: 0;
	font-weight: 500
}

.dropdown-large .msg-header .msg-header-clear {
	font-size: 13px;
	color: #585858;
	margin-bottom: 0
}

.dropdown-large .msg-footer {
	padding: .8rem 1rem;
	color: #1c1b1b;
	border-top: 1px solid #ededed;
	background-clip: border-box;
	background: 0 0;
	font-size: 14px;
	font-weight: 500;
	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: .25rem
}

.dropdown-large .user-online {
	position: relative
}

.dropdown-large .msg-name {
	font-size: 14px;
	margin-bottom: 0;
	color: #212529;
}

.dropdown-large .msg-info {
	font-size: 13px;
	margin-bottom: 0;
	color: #818189;
}

.dropdown-large .msg-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	margin-right: 15px
}

.dropdown-large .msg-time {
	font-size: 12px;
	margin-bottom: 0;
	color: #818189
}

.dropdown-large .user-online:after {
	content: '';
	position: absolute;
	bottom: 1px;
	right: 17px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.dropdown-large .dropdown-menu .dropdown-item {
	padding: .5rem 1.3rem;
	border-bottom: 1px solid #ededed
}

.header-message-list {
	position: relative;
	height: 360px
}

.header-notifications-list {
	position: relative;
	height: 360px
}

.dropdown-large .notify {
	width: 45px;
	height: 45px;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	background-color: #f1f1f1;
	margin-right: 15px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}


.dropdown-large .cart-product-title {
	color: #140e22;
	font-size: 14px;
	margin-bottom: 0px;
}

.dropdown-large .cart-product-price {
	color: #818189;
	font-size: 14px;
	margin-bottom: 0;
}

.dropdown-large .cart-product-cancel {
	right: -7px;
	top: -5px;
	font-size: 16px;
	background-color: #fff;
	border: 1px solid #eee;
	width: 1.4rem;
	height: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.dropdown-large .cart-product {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	border-radius: 0px;
	border: 1px solid rgb(231 231 231);
	padding: 4px;
	background-color: rgb(255 255 255);
}

.dropdown-large .cart-product img {
	width: 100%;
}


.user-box .dropdown-menu i {
	vertical-align: middle;
	margin-right: 10px
}

.dropdown-menu {
	-webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
	border: 0 solid #e9ecef;
	border-radius: 10px;
	font-size: 14px
}

.topbar .navbar .dropdown-menu {
	-webkit-animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown;
	animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown
}

@-webkit-keyframes animdropdown {
	from {
		-webkit-transform: translate3d(0, 6px, 0);
		transform: translate3d(0, 6px, 0);
		opacity: 0
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes animdropdown {
	from {
		-webkit-transform: translate3d(0, 6px, 0);
		transform: translate3d(0, 6px, 0);
		opacity: 0
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}


.search-bar {
	width: 30%;
	cursor: pointer;
}

.search-bar input[disabled] {
	cursor: pointer;
	background-color: #f7f7ff;
	border: 0;
}




.mobile-toggle-menu {
	display: none;
	font-size: 26px;
	color: #404142;
	cursor: pointer
}

.switcher-wrapper {
	width: 250px;
	height: 100%;
	position: fixed;
	right: -280px;
	top: 0;
	bottom: 0;
	z-index: 16;
	background: #fff;
	border-left: 0 solid #d2d2d2;
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .13);
	transition: all .2s ease-out
}

.switcher-btn {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 24px;
	background: #008cff;
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .13);
	color: #fff;
	text-align: center;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	position: absolute;
	top: 40%;
	right: 100%;
	cursor: pointer
}

.switcher-wrapper.switcher-toggled {
	right: 0
}

.switcher-body {
	padding: 1.25rem
}

.switcher-body .form-check .form-check-input,
.switcher-body .form-check .form-check-label {
	cursor: pointer
}

.header-colors-indigators .indigator {
	width: 45px;
	height: 45px;
	background-color: #f4f2f2;
	border-radius: 10px;
	cursor: pointer
}

@media screen and (max-width:1280px) {
	.email-header {
		height: auto
	}

	.email-content {
		padding: 100px 0 0 0
	}
}

@media only screen and (max-width: 1199px) {

	.row.row-group>div {
		border-right: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	}

	.row.row-group>div:last-child {
		border-right: none;
		border-bottom: 0;
	}

}
/* Default (desktop/tablet) */
.chat-heading-ellipsis {
    cursor: pointer;
}
.fb-media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px;
    border-radius:12px;
    overflow:hidden;
}

.fb-media-item{
    position:relative;
    aspect-ratio:1;
    cursor:pointer;
    overflow:hidden;
    background:#f0f2f5;
}

.fb-media-item img,
.fb-media-item video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video-play{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
}

.video-play i{
    color:#fff;
    font-size:60px;
    background:rgba(0,0,0,.45);
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.media-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:42px;
    font-weight:700;
}
/* Only on small devices */
/* Only apply ellipsis on small devices */
@media (max-width: 768px) {
	.view-comment{
		    background: #fff;
    padding: 2px;
    border-radius: 5px;
	}
  .chat-heading-ellipsis {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }


  .chat-heading-ellipsis.expanded {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
    word-break: break-word;
	background: #fff;
	padding: 10px;
	border-radius: 10px;
  }
}
.toggle-chat-sidebar {
	display: none;
}
.media-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.media-body{
    max-width:90vw;
    max-height:90vh;
}

.modal-image,
.modal-video{
    max-width:90vw;
    max-height:90vh;
    object-fit:contain;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:20px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

.prev-btn{
    left:30px;
}

.next-btn{
    right:30px;
}

.prev-btn:hover,
.next-btn:hover{
    background:rgba(255,255,255,.3);
}
@media screen and (max-width:1024px) {

	/* .bento-icon-box-bg{
		display: none;
	} */
	 .sidebar-header{
		width: 280px;
	 }
	 /* .chat-heading-ellipsis {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
} */
	.topbar {
		left: 0 !important
	}

	.mobile-toggle-menu {
		display: block
	}

	.sidebar-wrapper {
		left: -300px;
		box-shadow: none
	}

	.page-wrapper {
		margin-left: 0
	}

	.page-footer {
		left: 0
	}

	.wrapper.toggled .sidebar-wrapper {
		left: 0
	}

	.wrapper.toggled .page-wrapper {
		margin-left: 0
	}

	.wrapper.toggled .overlay {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: #000;
		opacity: .6;
		z-index: 10;
		display: block;
		cursor: move;
		transition: all .2s ease-out
	}

	.error-404 {
		height: auto;
		padding: 6rem 1rem
	}

	.chat-header {
		border-top-left-radius: .25rem
	}

	.chat-footer {
		border-bottom-left-radius: .25rem
	}

	/* .chat-sidebar {
		left: -370px
	} */
	.chat-content {
		margin-left: 0
	}

	.chat-header {
		left: 0
	}

	.chat-footer {
		left: 0
	}

	.toggle-chat-sidebar {
		display: block;
	}

	.chat-sidebar {
		/* position: fixed; */
		/* top: 0; */

		/* width: 280px; */
		/* height: 100vh; */

		background: #fff;
		/* adjust to your theme */
		width: 340px;
		height: 100%;
		position: absolute;
		background: #fff;
		left: -370px;
		top: 0;
		bottom: 0;
		z-index: 2;
		overflow: hidden;
		border-right: 1px solid rgba(0, 0, 0, .125);
		transition: left 0.3s ease;
		border-top-left-radius: .25rem;
		border-bottom-left-radius: .25rem
	}

	.chat-sidebar-overlay {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 2;
		opacity: 0;
		width: 580px;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.chat-sidebar-overlay.show {
		opacity: 1;
		visibility: visible;
	}

	.chat-sidebar.open {
		left: 0;
	}

	.toggle-chat-sidebar {
		width: 42px;
		height: 42px;
		border: none;
		outline: none;
		border-radius: 12px;
		background: linear-gradient(135deg, #4f46e5, #6366f1);
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.25s ease;
		box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
	}

	.toggle-chat-sidebar i {
		font-size: 22px;
	}

	.toggle-chat-sidebar:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
	}

	.toggle-chat-sidebar:active {
		transform: scale(0.95);
	}

	.email-header {
		border-top-left-radius: .25rem
	}

	.email-sidebar {
		left: -280px
	}

	.email-content {
		margin-left: 0
	}

	.email-header {
		left: 0
	}

	.email-toggled .email-sidebar {
		left: 0
	}

	.email-toggled .overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 250px;
		background: #000;
		opacity: .5;
		z-index: 9;
		display: block;
		cursor: move;
		transition: all .3s ease-out
	}
}

@media screen and (max-width:991px) {
	.empty-chat-state {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;

		padding: 20px;
	}

	.section-authentication-signin {
		height: 100%;
		margin-top: 6rem;
		margin-bottom: 2rem
	}

	.authentication-reset-password {
		height: auto;
		padding: 2rem 1rem
	}

	.authentication-lock-screen {
		height: auto;
		padding: 2rem 1rem
	}

	.compose-mail-popup {
		width: auto;
		position: fixed;
		bottom: -30px;
		right: 0;
		left: 0
	}
}

@media screen and (max-width:767px) {
	.empty-chat-state {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;

		padding: 20px;
	}

	.user-box .user-info {
		display: none
	}

	.authentication-forgot {
		height: auto;
		padding: 2.5rem 1rem
	}
}

.my-container_r {
	/* max-width: 500px; */
	/* margin: 20px auto; */
	padding: 10px 10px;
	margin-left: calc(100% - (100% - 43%));
	margin-top: 73px;
}

@media screen and (max-width:620px) {
	.empty-chat-state {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;

		padding: 20px;
	}

	.topbar .navbar .dropdown-menu::after {
		display: none
	}

	.topbar .navbar .dropdown {
		position: static !important
	}

	.topbar .navbar .dropdown-menu {
		width: 100% !important
	}

	.my-container_r {
		/* max-width: 500px; */
		/* margin: 20px auto; */
		padding: 10px 10px;
		margin: auto;
	}
}

@media screen and (max-width:520px) {
	.empty-chat-state {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;

		padding: 20px;
	}

	.chat-footer-menu,
	.chat-top-header-menu {
		display: none
	}

	.my-container_r {
		/* max-width: 500px; */
		/* margin: 20px auto; */
		padding: 10px 10px;
		margin: auto;
	}
}

.chat-main {
	height: 100%;
}

main {
	max-width: 470px;
	padding: 15px 0;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	border-radius: 10px;
}

.world_r {
	width: 11px;
	height: 11px;
	margin-bottom: 1px;
}

.logo_r>img {
	width: 37px;
	height: 37px;
	border-radius: 50%;
}

.logo-sec_r {
	display: flex;
	column-gap: 7px;
	align-items: center;
}

.main_hero_header_r {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.my-dropdown_r {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.drop_r {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	font-weight: 400;
}

.drop_r>img {
	width: 18px;
}

.dropdown-menu_r {
	width: 270px;
	height: 300px;
	background-color: #fff;
	right: 38%;
	top: 11%;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	position: absolute;
	z-index: 1;
	border-radius: 10px 0 10px 10px;
	padding: 15px 15px;
}

.full-hero_r {
	padding: 5px 15px;
}

.dots_r {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	cursor: pointer;
}

.dots_r>img {
	width: 15px;
	height: 15px;
}

.dots_r:hover {
	background-color: rgb(214, 212, 212);
}

.time-length_r {
	display: flex;
	align-items: center;
	column-gap: 5px;
}

.time-length_r>span:nth-child(1) {
	font-size: 11px;
	color: rgb(31, 31, 239);
	cursor: pointer;
}

.time-length_r>span:nth-child(1):hover {
	text-decoration: underline;
}

.logo-title-sec_r>h6 {
	font-size: 12px;
	font-weight: 600;
}

.likes_r {
	padding: 0 15px;
}

.post-title_r>h6 {
	font-weight: 400;
	font-size: 13px;
	padding: 5px 0;
}

/* posted images */
.posted_thing_r {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	width: 100%;
	padding: 0 15px;
}

/* ALL IMAGES SAME SIZE */
.posted_thing_r img {
	width: 100%;
	height: 130px;
	/* SAME HEIGHT */
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
}

/* remove weird hidden gaps */
.posted_thing_r img.hidden_r {
	display: none;
}

.posted_thing_r img.single_r {
	width: 100%;
}

.posted_thing_r img.half_r {
	width: calc(50% - 5px);
}

.posted_thing_r img.third-row_r {
	width: 100%;
}

.posted_thing_r img.hidden_r {
	display: none;
}

/* carousel */
.carousel-modal_r {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.carousel-modal_r.active_r {
	display: flex;
}

.carousel-content_r {
	position: relative;
	width: 80%;
	max-width: 800px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}

.carousel-images_r {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.carousel-images_r img {
	width: 50%;
	border-radius: 5px;
	height: 350px;
}

.close_r {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	color: black;
	cursor: pointer;
}

.prev_r,
.next_r {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: lightgray;
	border: none;
	padding: 10px 15px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 50%;
}

.prev_r {
	left: 1px;
}

.next_r {
	right: 1px;
}

/* comments */
.comment-count-section_r {
	display: flex;
	padding: 5px 15px;
	justify-content: end;
	align-items: center;
	column-gap: 3px;
}

.comment-count-section_r>img {
	width: 13px;
}

.comment-count-section_r>h6 {
	font-size: 12px;
	font-weight: 400;
	color: grey;
	margin-bottom: 2px;
}

.commentss_r img {
	width: 16px;
	height: 15px;
}

.like_r img {
	width: 15px;
}

.share_r>img {
	width: 22px;
}

.like_share_section_r {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border-top: 0.5px solid grey;
	border-bottom: 0.5px solid grey;
	color: grey;
	padding: 8px 0;
}

.like_r,
.commentss_r,
.share_r {
	display: flex;
	align-items: center;
	column-gap: 5px;
	font-size: 13px;
}

/* comment box */
.my-comment-section_r {
	padding: 20px;
}

.comment_r {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.comment_r img.profile-pic_r {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-right: 10px;
}

.comment-content_r {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	row-gap: 3px;
	max-width: 80%;
	border-radius: 10px;
}

.comment-details_r {
	padding: 5px 10px;
	border-radius: 10px;
	/* background-color: rgb(248, 248, 248); */
	display: flex;
	flex-direction: column;
	border-radius: 10px;
}

.user-name_r {
	font-size: 12px;
	font-weight: bold;
}

.comment-text_r {
	word-wrap: break-word;
	font-size: 12px;
}

.comment-actions_r {
	font-size: 12px;
	color: gray;
	display: flex;
	gap: 10px;
}

.comment-actions_r span:hover {
	text-decoration: underline;
}

.reply_r {
	margin-left: 50px;
}

.reply_input_r {
	display: flex;
	column-gap: 10px;
	margin-left: 50px;
}

.reply_input_r img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.reply_input_r>input {
	width: 100%;
	border-radius: 20px;
	padding: 0 10px;
	border: none;
	background-color: rgb(248, 248, 248);
	outline: none;
}

/* responsive */
@media screen and (max-width: 600px) {
	.empty-chat-state {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;

		padding: 20px;
	}

	.dropdown-menu_r {
		right: 12%;
		top: 12%;
	}

	.carousel-images_r {
		flex-direction: column;
	}

	.carousel-images_r img {
		width: 100%;
		height: auto;
	}
}

@media screen and (min-width: 601px) and (max-width: 800px) {
	.empty-chat-state {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;

		padding: 20px;
	}

	.dropdown-menu_r {
		right: 21%;
		top: 13%;
	}

	.carousel-images_r {
		flex-direction: column;
	}

	.carousel-images_r img {
		width: 100%;
		height: auto;
	}
}

.grid_r {
	width: 50%;
	height: 150px;
	/* adjust as needed */
	object-fit: cover;
	float: left;
}

.container_r {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px;
}

.container_r img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

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

.empty-chat-state {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #fff;
	margin-left: 282px;
	padding: 20px;
}

.empty-icon {
	margin-bottom: 20px;
}

.empty-chat-state h3 {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	color: #1f2937;
}

.empty-chat-state p {
	margin-top: 10px;
	color: #6b7280;
	font-size: 15px;
	max-width: 300px;
	line-height: 1.6;
}

/* Hide/show based on breakpoint — adjust the px value to your actual mobile breakpoint */
.desktop-only-menu {
	display: flex;
}

.mobile-only-menu-wrapper {
	display: none;
	position: relative;
}

@media (max-width: 640px) {
	.desktop-only-menu {
		display: none;
	}

	.mobile-only-menu-wrapper {
		display: block;
	}
}

.mobile-trigger-card {
	position: relative;
	cursor: pointer;
}

.blinking-dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #3b82f6;
	/* blueish */
	box-shadow: 0 0 0 rgba(59, 130, 246, 0.7);
	animation: blink-pulse 1.5s infinite;
}

@keyframes blink-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
		opacity: 1;
	}

	70% {
		box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
		opacity: 0.6;
	}

	100% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
		opacity: 1;
	}
}

.mobile-dropdown-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 50;
	background: var(--dropdown-bg, #ffffff);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 12px;
	width: 250px;
}

.mobile-dropdown-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.right-chatbox {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.comment-menu {
  position: relative;
}

.comment-menu-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #65676b;
  transition: all .2s ease;
}

.comment-menu-btn:hover {
  background: #f0f2f5;
  color: #050505;
}

.comment-menu-btn svg {
  font-size: 18px;
}

.comment-dropdown {
  min-width: 140px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  padding: 6px;
  margin-top: 6px;
}

.comment-dropdown .dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.comment-dropdown .dropdown-item:hover {
  background: #f0f2f5;
}

.fb-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.fb-message-modal{
    width:700px;
    max-width:95%;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.2);
}

.fb-modal-header{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    padding:18px 25px;
    border-bottom:1px solid #eee;
}

.fb-modal-header h4{
    font-weight:700;
    margin:0;
}

.close-btn-send{
    position:absolute;
    right:18px;
    top:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    /* background:#e4e6eb; */
    font-size:28px;
    cursor:pointer;
}

.fb-modal-body{
    padding:24px;
}

.fb-modal-footer{
    padding:18px 24px;
    border-top:1px solid #eee;
    display:flex;
    justify-content: end;
	gap: 5px;
    align-items:center;
}

.fb-modal-footer .btn-primary{
    border-radius:8px;
    padding:10px 30px;
}
.fb-modal-footer .btn-link{
   text-decoration: none;
}
.new-chat-item {
  position: relative;
  /* background-color: #fef2f2 !important; */
  /* border-right: 8px solid green !important; bold border */
  padding-left: 20px;
  /* animation: newChatPulse 1.5s ease-in-out infinite; */
}

/* Green circle */
.new-chat-item::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-color: green;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 8px rgba(0, 128, 0, 0.5);
}

@keyframes newChatPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.sound-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  font-size: 20px;
}

.sound-toggle-btn:hover {
  background: #0d6efd;
  color: white;
}

.sound-toggle-btn i {
  line-height: 1;
}

.text-danger.small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
