*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Variables */
:root {
	--color-primary: #0756a5;
	--color-primary-hover: #04478b;
	--color-background: #f8fafb;
	--color-text: #000000;
	--color-border: #e2e9ee;
	--color-link: #0078da;
	--color-white: #fff;
	--color-black: #000;
	--color-btn-bg-light: #F3F9FF;
	--color-btn-light: #181818;


	--color-nav-hover: rgba(7, 86, 165, 0.1);

	--font-family-base: "Roboto", sans-serif;
}

html {
	font-size: 14px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-base);
	color: var(--color-text);
	background-color: var(--color-background);
	position: relative;
	min-height: 100vh;
}

input,
button,
select,
textarea,
table,
th,
td {
	font-family: var(--font-family-base);
}

button:focus {
	outline: none;
}

/* Utility */
.text-center {
	text-align: center;
}

.flex {
	display: flex;
}

.flex-center {
	justify-content: center;
	align-items: center;
}

/* Buttons */
.button-primary {
	font-family: var(--font-family-base);
	font-size: 14px;
	line-height: 1.2;
	background-color: var(--color-primary);
	color: #fff;
	padding: 8px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 400;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.button-secondary {
	font-family: var(--font-family-base);
	background-color: var(--color-white);
	color: var(--color-black);
	padding: 8px 15px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	cursor: pointer;
	font-weight: 400;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.button-secondary:hover {
	background-color: #e2e9ee;
	text-decoration: none;
}

.button-primary:focus,
.button-secondary:focus {
	outline: none;
}

.modal:not(.show) {
	display: none !important;
}

/* CUSTOM CHECKBOX CSS */

.EM-custom-checkbox {
	display: inline-block;
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	user-select: none;
	margin-bottom: 0;
}

.EM-custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.EM-checkmark {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 18px;
	width: 18px;
	background-color: var(--color-white);
	border: 2px solid var(--color-primary);
	border-radius: 3px;
	box-sizing: border-box;
}

.EM-custom-checkbox input:checked~.EM-checkmark {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.EM-checkmark::after {
	content: "";
	position: absolute;
	display: none;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.EM-custom-checkbox input:checked~.EM-checkmark::after {
	display: block;
}

/************ TOP HEADER CSS START***************/

.EM-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	padding: 14px 20px;
	height: 67px;
	position: sticky;
	top: 0;
	z-index: 101;
}

.EM-header .EM-header-logo {
	width: auto;
	height: 30px;
	cursor: pointer;
}

.EM-header .EM-header-right {
	display: flex;
	align-items: center;
	gap: 25px;
}

.EM-header .EM-btn {
	font-size: 12px;
	line-height: 1.2;
}

.EM-header .EM-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #d9d9d9 no-repeat center;
	cursor: pointer;
}

.EM-profile-dropdown {
	position: fixed;
	top: 70px;
	/* adjust if needed to align below the header */
	right: 20px;
	width: 310px;
	background: var(--color-white);
	border-radius: 12px;
	box-shadow: 4px 8px 32px 0px #0000003d;
	padding: 20px 15px;
	display: none;
	flex-direction: column;
	z-index: 103;
}

.EM-profile-header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e7eb;
}

.EM-profile-header img {
	border-radius: 50%;
}

.EM-profile-name {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;

	color: var(--color-black);
}

.EM-profile-email {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	color: #6b7280;
}

.EM-profile-options {
	display: flex;
	flex-direction: column;
	padding-top: 15px;
}

.EM-profile-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	text-decoration: none;
	gap: 10px;
	transition: background 0.2s;
	margin-bottom: 4px;
}

.EM-profile-option:hover {
	background: #f9fafb;
	cursor: pointer;
}

.EM-name-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.EM-name-wrapper span {
	color: var(--color-black);
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
}

.EM-name-wrapper img {
	width: 24px;
	height: 24px;
}

.EM-profile-footer {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-top: 1px solid #e5e7eb;
	padding: 15px 0 0 0;
	margin-top: 5px;
}


.EM-profile-footer .EM-navigation-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.EM-profile-footer .EM-navigation-links a {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	text-decoration: underline;
	color: var(--color-black);
}

.EM-profile-footer p {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
}

.EM-social-icon-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.EM-social-icon-wrapper .text-para{
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: var(--color-black);
}

.EM-social-icon-wrapper .social-icon-bundle{
	display: flex;
	align-items: center;
	gap: 15px;
}

.EM-social-icon-wrapper .social-icon-bundle .foot-icon a{
	line-height: 28px;
    display: block;
    border-radius: 100%;
    width: 26px;
    height: 26px;
    background-color: #28323b;
    text-align: center;
    color: #fff;
}


/********* SIDEBAR CSS STARTED *********/
.EM-sidebar {
	position: fixed;
	top: 67px;
	bottom: 0;
	left: 0;
	width: 235px;
	background-color: rgba(255, 255, 255, 0.9);
	border-right: 1px solid var(--color-border);
	padding: 20px 15px;
	overflow-y: auto;
	transition: width 0.3s;
}

.EM-sidebar.collapsed {
	width: 60px;
}

.EM-sidebar-nav {
	/* display: flex;
  flex-direction: column; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.EM-sidebar .EM-sidebar-list,
.EM-sidebar .EM-sidebar-sublist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.EM-sidebar .EM-sidebar-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 8px;
	border-radius: 4px;
	text-decoration: none;
	color: var(--color-black);
	font-size: 14px;
	line-height: 1.3;
	transition: background 0.2s, color 0.2s;
}


/* was: .EM-sidebar .EM-sidebar-link:hover, ... */
.EM-sidebar .EM-sidebar-link[href]:hover,
.EM-sidebar .EM-sidebar-link.active {
	background-color: var(--color-nav-hover);
	color: var(--color-primary);
	border-radius: 4px;
	font-weight: 500;
}

/* was: .EM-sidebar .EM-sidebar-link:hover .EM-sidebar-icon, ... */
.EM-sidebar .EM-sidebar-link[href]:hover .EM-sidebar-icon,
.EM-sidebar .EM-sidebar-link.active .EM-sidebar-icon {
	filter: invert(21%) sepia(59%) saturate(2696%) hue-rotate(196deg) brightness(97%) contrast(95%);
}


.EM-sidebar .EM-sidebar-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.EM-sidebar .EM-sidebar-text {
	white-space: nowrap;
}

.EM-sidebar .EM-sidebar-sublist {
	padding-left: 30px;
	padding-top: 5px;
}

.EM-sidebar .EM-sidebar-sublink {
	display: block;
	white-space: nowrap;
	padding: 6px 8px;
	color: var(--color-black);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 300;
	transition: color 0.2s;
}

.EM-sidebar .EM-sidebar-sublink:hover,
.EM-sidebar .EM-sidebar-sublink.active {
	background-color: var(--color-nav-hover);
	color: var(--color-primary);
	border-radius: 4px;
}
/* 
.EM-sidebar.collapsed .EM-sidebar-text,
.EM-sidebar.collapsed .EM-sidebar-sublist {
	display: none;
} */

.EM-sidebar.collapsed .EM-sidebar-link {
	justify-content: center;
}

.EM-sidebar.collapsed .EM-sidebar-icon {
	margin-right: 0;
}

.sidebar-toggle-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: var(--color-white);
	text-align: end;
	cursor: pointer;
}

.EM-sidebar.collapsed:hover .EM-sidebar-link{
	justify-content: unset;
}

/* 👉 hide text + submenus ONLY when not hovered */
.EM-sidebar.collapsed:not(:hover) .EM-sidebar-text,
.EM-sidebar.collapsed:not(:hover) .EM-sidebar-sublist {
	display: none;
}

/* 👉 when collapsed + hovered → expand like Mailchimp */
.EM-sidebar.collapsed:hover {
	width: 235px;              /* fly-out width */
	box-shadow: 0 0 12px rgba(0,0,0,0.12);
}

/* when collapsed sidebar is hovered, shift ANY later .EM-main */
.EM-sidebar.collapsed:hover ~ .EM-main {
    margin-left: 235px;
}



/* Tooltip Base */
.EM-tooltip {
    position: fixed;
    padding: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    border-radius: 6px;
    line-height: 1.3;
    white-space: normal;
    max-width: 200px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform: translateY(5px);
}

/* Visible State */
.EM-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* small triangle */
.EM-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #1a1a1a;
}





/************* MAIN CONTENT CSSS START *************/

.EM-layout-container {
	display: flex;
	height: calc(100vh - 67px);
}

.EM-main {
	/* padding: 30px; */
	flex: 1;
	margin-left: 235px;
	transition: margin-left 0.3s ease;
	overflow: auto;
}

.EM-main.collapsed {
	margin-left: 60px;
}

.EM-main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 10px 70px 10px 40px;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	min-height: 76px;
	z-index: 100;
}

.EM-main-title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.EM-main-header .EM-main-title {
	font-size: 18px;
	line-height: 1.3;
	color: var(--color-black);
	font-weight: 600;
	margin: 0;
}

.EM-main-header .EM-main-subtitle {
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-black);
	font-weight: 400;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 5px;
}

.EM-main-header .EM-first-link {
	font-size: 14px;
	line-height: 1.1;
	color: var(--color-black);
	font-weight: 400;
	margin: 0;
	text-decoration: underline;
	cursor: pointer;
}

.EM-main-header .EM-main-subtitle .no-underline {
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-black);
	font-weight: 400;
	margin: 0;
	text-decoration: none;
}

.EM-main-header .EM-main-subtitle a {
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-black);
	font-weight: 400;
	margin: 0;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.EM-main-header .EM-main-subtitle a:hover {
	font-weight: 500;
}

.EM-main-header .EM-main-subtitle a.active {
	font-weight: 700;
	pointer-events: none;
	cursor: default;
}

.EM-main-header .EM-main-actions {
	display: flex;
	gap: 10px;
}

.EM-main-header .EM-btn {
	font-size: 14px;
	line-height: 1.3;
}

.EM-main-header a.EM-btn.button-secondary {
	color: var(--color-black);
}

.EM-main-header a.EM-btn.button-secondary:hover {
	text-decoration: none;
}

.EM-dropdown-wrapper {
	position: relative;
}

.EM-dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: #ffffff;
	border: 1px solid #ddd;
	border-radius: 4px;
	min-width: 180px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	display: none;
	flex-direction: column;
	z-index: 100;
}

.EM-dropdown-menu a {
	padding: 10px 15px;
	text-decoration: none;
	color: var(--color-black);
	font-size: 14px;
	transition: background 0.2s;
}

.EM-dropdown-menu a:hover {
	background: #f0f0f0;
}

.EM-dropdown-menu button {
	width: 100%;
	padding: 10px 15px;
	text-decoration: none;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	color: var(--color-black);
	font-size: 14px;
	transition: background 0.2s;
}

.EM-dropdown-menu button:hover {
	background: #f0f0f0;
}

.EM-dropdown-menu button:focus {
	outline: none;
}

.EM-dropdown-wrapper.open .EM-dropdown-menu {
	display: flex;
}

.EM-content-wrapper {
	padding: 35px 70px 50px 40px;
	overflow-y: auto;
	height: calc(100vh - 146px);
}

.EM-welcome-section {
	margin-bottom: 50px;
}

.EM-welcome-section .EM-section-title {
	font-size: 24px;
	line-height: 1.2;
	color: var(--color-black);
	font-weight: 600;
	margin-bottom: 25px;
}

.EM-welcome-section .EM-welcome-cards {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	align-items: stretch;
}

.EM-welcome-section .EM-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 25px;
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 100%;
	/* transition: box-shadow 0.2s; */
}

/* .EM-welcome-section .EM-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
} */

.EM-welcome-section .EM-card-title {
	font-size: 18px;
	color: var(--color-black);
	line-height: 1.2;
	font-weight: 500;
	margin: 0;
}

.EM-welcome-section .EM-card-text {
	font-size: 14px;
	color: var(--color-black);
	line-height: 1.5;
	margin: 0;
}

.EM-welcome-section .EM-btn {
	display: inline-block;
	width: fit-content;
	margin-bottom: 15px;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 1.2;
}

.EM-features-section {}

.EM-features-section .EM-section-title {
	font-size: 24px;
	line-height: 1.2;
	color: var(--color-black);
	font-weight: 600;
	margin-bottom: 25px;
}

.EM-features-section .EM-features-cards {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	align-items: stretch;
}

.EM-features-section .EM-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 25px;
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 100%;
}

.EM-features-section .EM-card-title {
	font-size: 18px;
	color: var(--color-black);
	line-height: 1.2;
	font-weight: 500;
	margin: 0;
}

.EM-features-section .EM-card-text {
	font-size: 14px;
	color: var(--color-black);
	line-height: 1.5;
	margin: 0;
}

.EM-features-section .EM-link {
	color: var(--color-link);
	font-size: 14px;
	line-height: 1.4;
	text-decoration: underline;
	margin-bottom: 15px;
}

.EM-help-assistant-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;

	font-family: var(--font-family-base);
	background-color: var(--color-white);
	color: var(--color-black);
	padding: 12px 24px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;

	font-size: 14px;
	line-height: 1.1;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
	z-index: 50;
}

.EM-help-assistant-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	background-color: var(--color-primary);
	/* border: 1px solid var(--color-primary); */
	color: var(--color-white);
}

.EM-help-assistant-btn .EM-help-text {
	white-space: nowrap;
}

/********* KNOWLEDGE CENTER SLIDE POPUP CSS STARTS ***********/
/******* KC stands for Knowledge Center *********/

.KC-wrapper {
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100%;
	background-color: var(--color-white);
	border-left: 1px solid var(--color-border);
	box-shadow: -1px 6px 16px 10px #0000000d;
	transition: right 0.3s ease;
	z-index: 102;
	display: flex;
	flex-direction: column;
}

.KC-wrapper.open {
	right: 0;
}

.KC-header {
	display: flex;
	align-items: center;
	justify-content: center;
	align-items: center;
	background-color: var(--color-white);
	padding: 23px 10px;
	position: relative;
}

.KC-header h3 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-black);
	margin: 0;
}

.KC-header .close-btn {
	font-size: 36px;
	line-height: 1;
	font-weight: 600;
	color: #d3d2d0;
	border: none;
	background: none;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 16px;
}

.KC-search {
	padding: 16px 25px;
	background: #f4f5f8;
}

.KC-search .search-input {
	width: 100%;
	padding: 8px 20px;
	font-size: 14px;
	line-height: 1.3;
	font-family: var(--font-family-base);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	background: var(--color-white);
	color: var(--color-black);
}

.KC-search .search-input:focus,
.KC-search .search-input:focus-visible {
	outline: none;
}

.KC-search .search-input::placeholder {
	color: #d9d9d9;
}

.KC-body {
	padding: 40px 25px;
	overflow-y: auto;
	flex-grow: 1;
	background: var(--color-white);
}

.KC-body .KC-helpful-title {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 30px;
}

.KC-body .KC-helpful-links {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.KC-body .KC-link-heading {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-primary);
	text-decoration: none;
	display: block;
	margin-bottom: 20px;
}

.KC-body .KC-item-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-black);
	margin: 0;
}

.KC-body .KC-item-text .KC-link {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-link);
	text-decoration: underline;
}

/* Assistant Box */
.AI-help-box {
	position: fixed;
	bottom: 70px;
	right: 20px;
	width: 360px;
	padding: 20px;
	background: var(--color-white);
	box-shadow: 0px 4px 9px 4px #00000021;
	border-radius: 10px;
	overflow: hidden;
	z-index: 103;
}

.AI-help-box .AI-help-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.AI-help-box .AI-help-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #d9d9d9;
}

.AI-help-box .AI-help-header-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-black);
	flex: 1;
}

.AI-help-box .AI-help-close {
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	color: #d3d2d0;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}

.AI-help-box .AI-help-body {
	padding: 15px 0;
	background-color: #fff;
}

.AI-help-box .AI-help-message {
	display: inline-block;
	font-size: 14px;
	line-height: 1.4;
	background-color: #f3f3f3;
	color: var(--color-black);
	padding: 8px 12px;
	border-radius: 15px;
	margin-bottom: 15px;
}

.AI-help-box .AI-help-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	margin-bottom: 12px;
}

.AI-help-box .AI-help-buttons button {
	padding: 8px 12px;
	font-family: var(--font-family-base);
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-black);
	background: #fff;
	border: 1px solid var(--color-black);
	border-radius: 80px;
	cursor: pointer;
	white-space: nowrap;
}

.AI-help-box .AI-help-input {
	width: 100%;
	padding: 8px 15px;
	font-family: var(--font-family-base);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-black);
	border: 1px solid #d9d9d9;
	border-radius: 80px;
}

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

.AI-help-box .AI-help-input:focus,
.AI-help-box .AI-help-input:focus-visible {
	outline: none;
	box-shadow: none;
}

.AI-help-box.hidden {
	display: none;
}

/* HOME PAGE FOR EXISTING USER CSS STARTS */

.EM-home-welcome h2 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 25px;
}

.EM-home-welcome h2 strong {
	font-weight: 600;
}

/* <!-- Top Home Steps Section --> */

.EM-home-steps-wrapper {
	display: flex;
	gap: 25px;
	margin-bottom: 25px;
}

.EM-home-steps-left {
	width: 290px;
	flex-shrink: 0;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	overflow: hidden;
}

.EM-home-step {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 15px;
	border-bottom: 1px solid #f0f0f0;
}

.EM-home-step-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	min-height: 30px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background: #d9d9d9;
	color: var(--color-black);
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	line-height: 1;
	transition: all 0.3s ease;
}

.EM-home-step-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-black);
}

.EM-home-step.active {
	background: #f8fafb;
}

.EM-home-step.active .EM-home-step-circle {
	background: #c8e3ff;
}

.EM-home-step-circle.completed {
	background: #3a9240;
}

.EM-home-step.active .EM-home-step-label {
	font-weight: 500;
	color: var(--color-primary);
}

.EM-home-steps-right {
	flex-grow: 1;
	min-width: 0;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 20px;
}

.EM-home-step-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 15px;
}

.EM-home-step-desc {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-black);
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Home Recommendation section CSS */

.EM-home-recommendation {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	display: flex;
	gap: 25px;
	margin-bottom: 25px;
	overflow: hidden;
}

.EM-home-recommendation .recommendation-left {
	flex-grow: 1;
	min-width: 0;
	padding: 20px;
}

.EM-home-recommendation .recommendation-left h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 15px;
}

.EM-home-recommendation .recommendation-left p {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-black);
	line-height: 1.7;
	margin-bottom: 20px;
}

.EM-home-recommendation .recommendation-right {
	width: 290px;
	flex-shrink: 0;
}

.EM-home-recommendation .recommendation-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Grid Layout */
.EM-home-grid {
	display: flex;
	gap: 25px;
	margin-bottom: 30px;
}

.EM-home-box {
	flex: 1;
	/* padding: 25px; */
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
}

.EM-home-top {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
	padding: 15px 20px;
	border-bottom: 1px solid var(--color-border);
}

.EM-home-box h3 {
	color: var(--color-black);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0;
}

.EM-home-box .recent-heading {
	/* margin-bottom: 15px; */
}

.EM-home-top .button-secondary {
	font-size: 14px;
	line-height: 1.2;
}

.EM-home-table-wrapper {
	padding: 5px 20px;
}

.EM-home-table {
	width: 100%;
	border-collapse: collapse;
}

.EM-home-table th,
.EM-home-table td {
	padding: 12px 8px;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	border-bottom: 1px solid var(--color-border);
}

.EM-home-table td {
	font-weight: 400;
}

.EM-home-table tbody tr td:first-child {
	color: var(--color-primary);
	font-weight: 500;
	/* padding-left:5px ; */
}

.EM-home-table tbody tr:last-child td {
	border-bottom: 0;
}

/* Thumbnails */
.EM-home-thumbnails {
	display: flex;
	gap: 25px;
}

.EM-thumb-cards-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	padding: 20px;
}

.EM-thumb-card {
	flex: 1;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
	transition: box-shadow 0.2s ease;
}

.EM-thumb-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.EM-thumb-img-wrap {
	height: 165px;
	width: 100%;
	overflow: hidden;
}

.EM-thumb-img-wrap img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

.EM-thumb-title {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	padding: 10px;
	color: var(--color-black);
}

/* Feature Blocks */
.EM-home-features {
	padding: 25px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	margin-bottom: 50px;
}

.EM-home-features h3 {
	color: var(--color-black);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 25px;
}

.EM-home-features .EM-home-features-cards {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	align-items: stretch;
}

.EM-home-features .EM-home-features-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 25px;
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	min-height: 100%;
}

.EM-home-features .EM-home-features-card-title {
	font-size: 16px;
	color: var(--color-black);
	line-height: 1.3;
	font-weight: 500;
	margin: 0;
}

.EM-home-features .EM-home-features-card-text {
	font-size: 14px;
	color: var(--color-black);
	line-height: 1.5;
	margin: 0;
}

.EM-home-features-link-wrapper {
	flex: 1;
	display: flex;
	align-items: flex-end;
	margin-bottom: 5px;
}

.EM-home-features .EM-home-features-link {
	width: fit-content;
}


.EM-home-features .EM-home-features-link:hover {
	color: var(--color-black);
	text-decoration: none;
}

/* === Analytics Page === */

.EM-analytics-filters {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

.EM-filter-field-group {
	max-width: 300px;
	width: 100%;
}

.EM-filter-label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 6px;
	color: rgba(0, 0, 0, 0.5);
}

.EM-filter-input {
	width: 100%;
	padding: 10px 20px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background-color: #fff;
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-black);
	cursor: default;
}

.EM-filter-select {
	width: 100%;
	padding: 10px 20px;
	border-radius: 4px;
	border: 1px solid var(--color-border);
	font-family: var(--font-family-base);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-black);
	background: var(--color-white);

	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	background-image: url(../../assets/images/down-arrow-select.png);
	position: relative;
	background-position: calc(100% - 15px) center;
	background-size: 12px;
	background-repeat: no-repeat;
}

.EM-filter-input:focus,
.EM-filter-input:focus-visible,
.EM-filter-select:focus,
.EM-filter-select:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

/* Performance Box */
.EM-analytics-h5 {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-black);
}

.EM-analytics-hr {
	margin: 20px 0 25px;
	border-top: 1px solid var(--color-border);
}

.EM-performance-card {
	background: var(--color-white);
	border: 1px solid var(--color-black);
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 25px;
}

.EM-performance-title strong {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 10px;
	display: block;
}

.EM-performance-title p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 35px;
}

.EM-performance-metrics {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 15px;
}

.EM-metric {
	flex: 1;
}

.EM-metric-value {
	display: block;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 4px;
	text-align: center;
}

.EM-metric-label {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	text-align: center;
}

/* Graph Area */
.EM-analytics-chart {
	margin-bottom: 40px;
}

.EM-graph-placeholder {
	max-width: 470px;
	width: 100%;
	border-radius: 6px;
	border: 1px solid #ddd;
}

.EM-content-wrapper.smartgive-white {
	/* padding: 35px 70px 50px 40px; */
	background: var(--color-white);
}

.EM-smartgive-wrapper {
	/* padding: 30px 40px; */
}

.EM-smartgive-header {
	background: rgba(217, 217, 217, 0.2);
	border-radius: 8px;
	padding: 25px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.EM-smartgive-header h2 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin: 0;
}

.EM-smartgive-header p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-black);
	margin-bottom: 0;
}

.EM-smartgive-heading h2 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-black);
	margin-bottom: 30px;
}

.EM-donor-type-selector {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 35px;
}

.EM-donor-type-selector span {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-black);
	font-family: var(--font-family-base);
}

.EM-donor-type-buttons {
	display: flex;
	align-items: center;
	gap: 25px;
}

.EM-donor-type-buttons button {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 12px 15px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.2;
	color: var(--color-black);
	font-family: var(--font-family-base);
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.EM-donor-type-buttons button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.EM-donor-type-buttons button:hover::before {
	left: 100%;
}

.EM-donor-type-buttons button:hover {
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.EM-donor-btn.active {
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.EM-donor-btn.active::before {
	left: 100%;
}

.EM-donor-cards {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.EM-donor-card {
	width: calc((100% - 90px) / 3);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 12px 20px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--color-black);
	position: relative;
	overflow: hidden;
}

.EM-donor-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s;
}

.EM-donor-card:hover::before {
	left: 100%;
}

.EM-donor-card:hover {
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.EM-donor-card.active {
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.EM-donor-card.active::before {
	left: 100%;
}

.EM-card-details {
	/* display: none; */
	border-top: 1px solid var(--color-border);
	padding-top: 30px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.EM-card-details-content {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.EM-card-details-content h3 {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 15px;
}

.EM-card-details.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.EM-card-details.active .EM-card-details-content {
	opacity: 1;
	transform: translateY(0);
}

.EM-top-field-wrapper {
	display: flex;
	gap: 30px;
}

.EM-field-group {
	max-width: 300px;
	width: 100%;
}

.EM-field-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 8px;
	display: block;
}

.EM-field-select {
	width: 100%;
	padding: 12px 35px 12px 20px;
	border-radius: 4px;
	border: 1px solid var(--color-border);
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	background: var(--color-white);

	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	background-image: url(../../assets/images/down-arrow-select.png);
	position: relative;
	background-position: calc(100% - 15px) center;
	background-size: 12px;
	background-repeat: no-repeat;
}

.EM-field-select:focus,
.EM-field-select:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.EM-input-field {
	width: 100%;
	padding: 12px 20px;
	border-radius: 4px;
	border: 1px solid var(--color-border);
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	background: var(--color-white);
}

.EM-input-field:focus,
.EM-input-field:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.EM-radio-field-group {
	display: flex;
	gap: 30px;
	margin-bottom: 15px;
	margin-top: 30px;
}

#amountInputContainer {
	max-width: 430px;
	width: 100%;
}

.EM-radio-field-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	cursor: pointer;
}

.EM-radio-field-label input {
	width: 20px;
	height: 20px;
	accent-color: var(--color-primary);
	cursor: pointer;
}

.EM-card-details-para {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-black);
	margin: 20px 0 30px 0;
}

.EM-card-form .createCampaign {
	font-size: 16px;
	padding: 12px 30px;
}

.EM-file-upload-wrapper {
	max-width: 350px;
	width: 100%;
}

.EM-file-upload-box {
	display: flex;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	overflow: hidden;
}

.EM-upload-btn {
	background: #edf1f5;
	color: #000;
	padding: 12px 20px;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	width: 140px;
	text-align: center;
	margin-bottom: 0;
}

.EM-file-name {
	padding: 12px 20px;
	font-size: 16px;
	color: #333;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.EM-upload-note {
	color: #a53900;
	font-size: 13px;
	margin-top: 5px;
}

.EM-buttons-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 20px 0 30px 0;
}

.EM-blue-btn {
	padding: 12px;
	border: 1px solid #027bff;
	font-family: var(--font-family-base);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 4px;
	background: var(--color-white);
	color: #027bff;
	cursor: pointer;
}

.EM-blue-btn:hover {
	background: #027cff13;
}

.table-search {
	margin-bottom: 25px;
	max-width: 300px;
}

.input-search {
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 8px 18px;
	color: var(--color-black);
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	width: 100%;
}

.input-search::placeholder {
	color: #d9d9d9;
}

.input-search:focus,
.input-search:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.table-filter-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 30px;
}


.table-filter-wrapper.ET-smart-give{
	margin-bottom: 20px;
}

.table-filter-left {
	display: flex;
	align-items: center;
	gap: 30px;
}

.multiselect-filter-group {
	position: relative;
	display: inline-block;
}

.mutliselect-btn-wrapper {
	display: flex;
	align-items: center;
	gap: 2px;
}

.mutliselect-btn-wrapper span {
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-black);
}

.mutliselect-btn-wrapper .multiselect-btn {
	display: flex;
	align-items: center;
	gap: 3px;
	color: var(--color-primary);
	font-size: 14px;
	line-height: 1.2;
	border: 1px solid var(--color-white);
	background: none;
	padding: 4px 5px 2px;
	border-radius: 6px;
	cursor: pointer;
}

.mutliselect-btn-wrapper .multiselect-btn:hover {
	background: #e2e9ee;
}

.mutliselect-btn-wrapper .multiselect-btn:focus-visible,
.mutliselect-btn-wrapper .multiselect-btn:focus {
	background: #e2e9ee;
	border: 1px solid var(--color-primary);
	outline: none;
}

.mutliselect-btn-wrapper .multiselect-btn i {
	font-size: 10px;
}

.multiselect-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 4px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 10px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: none;
	min-width: 180px;
	z-index: 99;
}

.multiselect-dropdown label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 3px;
}

.multiselect-dropdown label:hover {
	background-color: #f2f2f2;
}

.multiselect-dropdown input[type="checkbox"] {
	width: 14px;
	height: 14px;
}




/* scope: sirf is filter ke andar wale select par apply hoga */
.select-field-filter .multiselect-btn {
	transition: width 120ms ease;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	/* agar container chhota ho to */
	text-overflow: ellipsis;
	box-sizing: border-box;
}

/* hidden sizer (JS isey auto-create karta hai) */
.select-field-filter .sff-sizer {
	position: absolute;
	left: -9999px;
	top: -9999px;
	visibility: hidden;
	white-space: nowrap;
	font: inherit;
	letter-spacing: inherit;
}

.sort-filter-group {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sort-filter-group label {
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-black);
	margin-bottom: 0;
}

/* Custom Dropdown */
.custom-dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-toggle {
	color: var(--color-primary);
	font-size: 14px;
	line-height: 1.2;
	border: none;
	background: none;
	padding: 4px 5px 2px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
}

.dropdown-toggle::after {
	display: none !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
	background: #e2e9ee;
	border: 1px solid var(--color-primary);
}

.dropdown-toggle i {
	font-size: 10px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	background: var(--color-white);
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 6px;
	min-width: 100%;
	/* display: none; */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
	padding: 8px 12px;
	font-size: 14px;
	cursor: pointer;
	list-style: none;
}

.dropdown-menu li:hover {
	background-color: #f0f0f0;
}

/* Active state */
.custom-dropdown.open .dropdown-menu {
	display: block;
}

.campaigns-table-wrapper {
	padding: 10px 0;
	background: var(--color-white);
	/* border-radius: 8px; */
}

.campaigns-table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-family-base);
	font-size: 14px;
	table-layout: auto;
}

/* .campaigns-table th:not(:nth-child(2)),
.campaigns-table td:not(:nth-child(2)) {
  width: 1%;
} */

.campaigns-table th,
.campaigns-table td {
	padding: 15px 20px;
	border-bottom: 1px solid var(--color-border);
	vertical-align: top;
	text-align: left;
	white-space: nowrap;
}

.campaigns-table th {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: #4c555b;
}

.campaigns-table td {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: #4c555b;
	width: 1%;
}

.campaign-category-table td {
	vertical-align: middle;
}

.checkbox-th input[type="checkbox"],
.checkbox-td input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--color-primary);
	border: 1px solid #d3d2d0;
	border-radius: 4px;
	cursor: pointer;
}

.campaign-td span {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 600;
	color: #4c555b;
}

.list-used-td {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.list-used-td a {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: var(--color-primary);
	text-decoration: underline;
}

.list-used-td span {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	color: #4c555b;
}

.status-td {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.status-td .status-badge {
	background: #d9d9d9b2;
	color: #4c555b;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
	padding: 4px 8px;
	border-radius: 5px;
	display: inline-block;
	width: fit-content;
}

.status-td .time-date {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	color: #4c555b;
	display: inline-block;
}

.analytics-td {
	display: flex;
	gap: 20px;
}

.analytics-td .analytics-data {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.analytics-td .analytics-data .numbers-atd {
	font-size: 15px;
	line-height: 1.3;
	font-weight: 600;
	color: #4c555b;
	display: inline-block;
}

.analytics-td .analytics-data .text-atd {
	font-size: 12px;
	line-height: 1.3;
	font-weight: 400;
	color: #4c555b;
	display: inline-block;
}

.action-td {
	display: flex;
	align-items: center;
	gap: 15px;
}

.action-td .view-report-btn,
.action-td .start-campaign-btn {
	color: var(--color-black);
	font-size: 13px;
	line-height: 1.2;
}


.action-td .view-report-btn:hover,
.action-td .start-campaign-btn:hover {
	color: var(--color-black);
	text-decoration: none;
}

.action-td .dropdown-wrapper {
	position: relative;
	margin-top: 0px;
}

.action-td .dropdown-toggle {
	width: 100%;
	padding: 8px 15px;
	font-size: 13px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.action-td .dropdown-toggle i {
	font-size: 10px;
	margin-left: 6px;
}

.action-td .dropdown-toggle.resend-btn-td,
.action-td .dropdown-toggle.action-btn-td {
	color: var(--color-black);
}

.action-td .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 140px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	/* z-index: 99;
	display: none; */
}

.action-td .dropdown-toggle::after {
	display: none;
}

.action-td .dropdown-item {
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 400;
	color: #4c555b;
	cursor: pointer;
}

.action-td .dropdown-item:hover {
	background-color: #f2f2f2;
}

/* Grid Layout */
.template-cards-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(203px, 1fr));
	column-gap: 20px;
	row-gap: 30px;
}

/* Cards */
.template-card {
	background: #e5e8ef;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s ease;
}

.template-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.template-image {
	height: 235px;
	width: 100%;
	overflow: hidden;
	background: #e5e8ef;
}

.template-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

.template-title {
	padding: 15px 15px 18px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-black);
	text-align: center;
	background: var(--color-white);
	width: 100%;
}







#existing-tags-modal .nav-pills .nav-link {
	border: 0;
	font-family: var(--font-family-base);
	font-size: 15px;
	line-height: 1.2;
	background-color: var(--color-white);
	color: var(--color-primary);
	padding: 12px 8px;
	border: none;
	border-radius: 4px;
	font-weight: 400;
	transition: background 0.2s;
}

#existing-tags-modal .nav-pills .nav-link.active,
#existing-tags-modal .nav-pills .show>.nav-link {
	border: 0;
	font-family: var(--font-family-base);
	font-size: 15px;
	line-height: 1.2;
	background-color: var(--color-primary);
	color: #fff;
	padding: 12px 8px;
	border: none;
	border-radius: 4px;
	font-weight: 400;
	transition: background 0.2s;
}

#existing-tags-modal .nav-pills .nav-link:hover {}

.email_template_body_wrapper ul.template_list li {
	display: inline-block;
	margin: 0 20px 40px 0px;
	width: calc(20% - 23px);
	position: relative;
	vertical-align: top;
}

.email_template_body_wrapper ul.template_list {
	margin-right: -40px;
}

.email_template_body_wrapper ul.template_list li.template_single_list {
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	overflow: unset;
}

/* #pills-defaulttemp ul.template_list li {
  width: calc(18% - 23px);
} */

.email_template_body_wrapper ul.template_list li h5 {
	color: #131533;
	font-size: 15px;
	text-align: center;
	padding: 15px 0 15px;
	margin: 0;
	word-break: break-all;
	border-top: 1px solid #d9d9d9;
}

.email_template_body_wrapper ul.template_list li:hover .temp_actions {
	opacity: 1;
	visibility: visible;
	transition: 400ms;
}

.email_template_body_wrapper .temp_actions {
	position: absolute;
	top: 0;
	left: 0;
	height: 230px;
	width: 100%;
	background-color: #131533;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: 400ms;
}

.email_template_body_wrapper .action_text {
	color: #fff !important;
	font-size: 14px;
	text-decoration: none !important;
}

.email_template_body_wrapper td.action-btns i {
	position: static;
	color: #fff;
	font-size: 11px;
}

.email_template_body_wrapper a.editbtn {
	background-color: #ecbd11;
}

.email_template_body_wrapper td.action-btns a {
	min-width: 25px;
	display: inline-block;
	border-radius: 3px;
	text-align: center;
}

.email_template_body_wrapper a.copybtn {
	background-color: #10b510;
	margin: 0 2px;
}

.email_template_body_wrapper a.start-campaign {
	background-color: #10b510;
	margin: 0 2px;
}

.email_template_body_wrapper a.deletebtn {
	background-color: #ff0000;
}

.email_template_body_wrapper a.previewBtn {
	background-color: #1299d0;
	margin: 0 2px;
}

.email_template_body_wrapper .template-body .dataTables_filter {
	width: 35%;
}

.email_template_body_wrapper ul.template_list li figure {
	height: 240px;
	overflow-y: auto;
	position: relative;
}

.email_template_body_wrapper ul.template_list li a {
	line-height: 34px;
}

.email_template_body_wrapper .temp_actions .btn {
	min-width: 100px;
	height: 38px !important;
}

.email_template_body_wrapper .thumbnail-menu i {
	position: static;
	color: #fff;
	font-size: 22px;

}

.email_template_body_wrapper .thumbnail-menu {
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	text-align: right;
	z-index: 1;
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}

.email_template_body_wrapper ul.template_list li:hover .thumbnail-menu {
	opacity: 1;
	visibility: visible;
}

.email_template_body_wrapper .thumbnail-menu>ul {
	position: absolute;
	right: 15px;
	top: 36px;
	background-color: #fff;
	min-width: 130px;
	border-radius: 3px;
	box-shadow: 0 0 5px #777;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
}

.email_template_body_wrapper .thumbnail-menu>ul>li {
	font-size: 12px;
	display: block;
	margin: 0;
	width: 100%;
	text-align: left;
	padding: 6px 10px 6px;
}

.email_template_body_wrapper .thumbnail-menu:hover ul.actionList {
	opacity: 1;
	visibility: visible;
}

.email_template_body_wrapper li.add-new-template {
	border: 2px dotted #ccc;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 170px;
}

.email_template_body_wrapper button.addnewbtn {
	border: 0;
	background-color: transparent;
	font-size: 13px;
	max-width: 88px;
	cursor: pointer;
	color: #777;
}

.email_template_body_wrapper button.addnewbtn i {
	position: static;
	display: block;
	margin-bottom: 10px;
}

.email_template_body_wrapper span.advanced-tooltip:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 15px;
	border-bottom: 8px solid #fff;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
}

.email_template_body_wrapper ul.template_list li:hover span.advanced-tooltip,
td:hover span.advanced-tooltip {
	opacity: 1;
	visibility: visible;
}

.email_template_body_wrapper td {
	position: relative;
}

.email_template_body_wrapper span.advanced-tooltip {
	position: absolute;
	font-size: 11px;
	background-color: #fff;
	box-shadow: 0 0 5px #777;
	padding: 3px 5px;
	border-radius: 4px;
	bottom: -5px;
	z-index: 1;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	left: 8px;
}

.email_template_body_wrapper .actionList li:hover {
	background-color: #f1f1f1;
}

.email_template_body_wrapper ul.template_list li.selected-temp {
	border: 2px solid var(--color-primary);
}

.selected-template-badge li {
	display: inline-block;
	padding: 5px 8px;
	background-color: #f9f7f7;
	border-radius: 5px;
	margin: 0px 10px 10px 0;
	font-size: 12px;
}



.template-name-badge li {
	display: inline-block;
	padding: 5px 8px;
	background-color: #f9f7f7;
	border-radius: 5px;
	margin: 0px 10px 10px 0;
	font-size: 12px;
}


















/* CAMPAIGN SETUP CSS */
.campaign-setup-header .EM-main-actions button {
	font-size: 14px;
	line-height: 1.2;
	padding: 8px 15px;
}

.campaign-setup-header .EM-main-subtitle {
	display: flex;
	align-items: center;
	gap: 5px;
}

.campaign-setup-header .EM-main-subtitle .gc-step {
	font-size: 14px;
	line-height: 1.1;
	color: var(--color-black);
	font-weight: 400;
	margin: 0;
	text-decoration: underline;
	cursor: pointer;
}

.campaign-setup-header .EM-main-subtitle .gc-step.active {
	font-weight: 700;
}

.gc-stepper-wrapper {
	/* font-family: 'Poppins', sans-serif;
      background: #f7f7f7;
      padding: 30px; */
}

/* 
.gc-stepper-container {
	padding: 25px 70px;
	background: #f7f7f7;
	border-radius: 8px;
}

.gc-stepper-container h2 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-black);
	margin-bottom: 15px;
	text-align: center;
}

.gc-stepper-container h2 strong {
	font-weight: 600;
}

.gc-stepper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.gc-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.gc-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 20px;
	right: -50%;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
	z-index: 0;
}

.gc-step.gc-completed:not(:last-child)::after {
	background-color: #0756a5;
}

.gc-circle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #f7f7f7;
	border: 1px solid #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	padding: 6px;
}

.gc-step.gc-active .gc-circle {
	border-color: #0756a5;
}

.gc-step.gc-completed .gc-circle {
	background-color: #fff;
	border: 1px solid #0756a5;
}

.gc-inner-circle {
	background-color: var(--color-primary, #0756a5);
	padding: 4px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gc-step.gc-completed .gc-tick-icon {
	width: 19px;
	height: 19px;
}

.gc-label {
	margin-top: 6px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
} */

.gc-content {
	display: none;
	margin-bottom: 60px;
}

.gc-content.gc-active {
	display: block;
}

/* <!-- CAMPAIGN SETUP CONTACTS CONTENT CSS--> */

.CS-heading {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 20px;
}

.CSC-actions-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.CSC-filter-wrapper {
	position: relative;
}

.CSC-filter {
	display: flex;
	align-items: center;
	gap: 8px;
}

.CSC-filter-icon {
	box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
	background-color: #ffffff;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.CSC-filter-text {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
}

.CSC-btns-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.CSC-btns-wrapper .button-secondary {
	font-size: 13px;
	line-height: 1.2;
	padding: 8px;
}

.CSC-btns-wrapper .button-primary {
	font-size: 13px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border: 1px solid var(--color-primary);
}

/* Wrapper styling */
.CSC-common-table {
	width: 100%;
	overflow-x: auto;
	border-radius: 6px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	margin-top: 20px;
}

/* Table base */
.CSC-common-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 0;
}

/* Header row */
.CSC-common-table thead {
	background-color: #f2f6fa;
}

.CSC-common-table thead th {
	text-align: left;
	padding: 12px 16px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	white-space: nowrap;
}

.CSC-common-table thead th:last-child {
	border-right: 0;
}

/* Body rows */
.CSC-common-table tbody tr {
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.2s ease;
}

.CSC-common-table tbody tr:hover {
	background-color: #f9fbff;
}

.CSC-common-table tbody td {
	border-right: 1px solid var(--color-border);
	padding: 12px 16px;
	color: #333;
	white-space: nowrap;
}

.CSC-common-table tbody tr td:last-child {
	border-right: 0;
}

.checkbox-column-table {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* <!-- CAMPAIGN SETUP PREVIEW AND SEND CONTENT CSS --> */

.PS-para {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
	margin-bottom: 30px;
}

.PS-subheading {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 20px;
}

.PS-form-wrapper {
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.PS-left,
.PS-right {
	flex: 1;
	width: 50%;
	box-sizing: border-box;
	align-items: stretch;
}

.PS-left {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	/* Soft shadow */
	/* border-radius: 6px; */
	padding: 20px;
	background-color: #fff;
}

.iframe-img-wrapper {
	border: 1px solid #e0e0e0;
	/* Light gray border */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	/* Soft shadow */
	/* border-radius: 6px; */
	padding: 20px;
	background-color: #fff;
}

.iframe-wrapper {
	width: 100%;
}

.PS-form-fields {
	margin-top: 25px;
}

.PS-field-group {
	margin-bottom: 10px;
}

.PS-field-label {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-black);
	margin-bottom: 8px;
	display: block;
}

.PS-input-field {
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 8px 15px;
	color: var(--color-black);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	width: 100%;
	margin-bottom: 10px;
}

.PS-input-field::placeholder {
	color: #d9d9d9;
}

.PS-input-field:focus,
.PS-input-field:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.PS-hr {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 25px 0;
}

.PS-form-bottom {}

.PS-form-bottom h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-black);
	margin-bottom: 12px;
}

.PS-selected-count {
	color: var(--color-black);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	margin-bottom: 35px;
}

.PS-selected-count a {
	color: var(--color-link);
	text-decoration: none;
}

.button-secondary.download-temp-contacts {
	text-decoration: none;
	width: max-content;
}

.button-secondary.download-temp-contacts:hover {
	color: var(--color-black);
	text-decoration: none;
}

.button-primary.orange-btn {
	background: #ff5500;
	font-size: 16px;
	padding: 10px 20px;
}

.error {
	color: red;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 10px;
}

.error a {
	color: var(--color-link);
	text-decoration: none;
}

.info-msg {
	color: grey;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 10px;
	display: none;
}

.gc-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
	padding-bottom: 100px;
}

.gc-btn {
	background-color: #0756a5;
	border: none;
	color: white;
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 4px;
	cursor: pointer;
}

.gc-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

/* FOLDERS PAGE CSS STARTS */
.folders-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 40px;
	padding-top: 20px;
}

.folders-wrapper .folder-box {
	padding: 17px 15px;
	background: #ebf5fd;
	border-radius: 8px;
	display: flex;
	align-items: center;
	max-width: 230px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}



.folders-wrapper .folder-box:hover {
	background: #d4eafd;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.folder-box-inner-div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.folders-wrapper .folder-box span {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-black);
}

.folders-wrapper .folder-box:has(input:checked) {
	border: 2px solid var(--color-primary);
	background: #d4eafd;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* .folder-box-inner-div input[type="checkbox"]{
	visibility: hidden;
} */

.folder-box-inner-div a.delete-tag {
	margin-left: auto;
	text-decoration: none;
	color: #777;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.folder-box-inner-div a.delete-tag:hover {
	color: #d33;
}

.folder-box-inner-div a.delete-tag i {
	font-size: 11px !important;
}


.folders-wrapper .folder-box1 {
	position: relative;
	padding: 25px 10px;
	background: #F7FBFE;
	border-radius: 8px;
	list-style: none;
	margin: 0;
	max-width: 230px;
	cursor: pointer;
	transition: all 0.25s ease;
}

/* hover card lift */
.folders-wrapper .folder-box1:hover {
	background: #d4eafd;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.folder-box-inner-div1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.folder-box-inner-div1 .folder-icon-img {
	box-shadow: 0px 4px 4px 0px #0000000D;
}

.folder-box-inner-div1 .text-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.folder-box-inner-div1 .text-content .text-content-heading {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-black);
	text-align: center;
	margin: 0;
}

.folder-box-inner-div1 .text-content .text-content-para {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	text-align: center;
	font-family: var(--font-family-base);
	margin: 0;
}

.folder-hover-wrap {
	position: absolute;
	top: 8px;
	right: 8px;
}

.folder-hover-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 5px;
	padding-left: 15px;
}

.folder-hover-btn i {
	width: 4px;
	height: 4px;
	background: #1f2937;
	border-radius: 50%;
	display: block;
}

/* dropdown */
.folder-hover-menu {
	position: absolute;
	top: 20px;
	right: 0;
	background: #fff;
	border-radius: 8px;
	list-style: none;
	/* padding: 8px 0; */
	margin: 6px 0 0 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	display: none;
	min-width: 160px;
	z-index: 10;
}

.folder-hover-menu li a {
	display: block;
	padding: 8px 14px;
	font-size: 14px;
	color: #111827;
	text-decoration: none;
	border-radius: 8px;

}

.folder-hover-menu li a:hover {
	background: #f3f4f6;
}

.folder-hover-menu li a.danger {
	color: #dc2626;
}

.folder-hover-menu li a.danger:hover {
	background: #fee2e2;
}

/* show dropdown only on hover of icon or dropdown */
.folder-hover-wrap:hover .folder-hover-menu {
	display: block;
}




/* COMMON MODAL CSS */

body.EM-lock-scroll {
	overflow: hidden;
}

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

.EM-modal {
	background: #fff;
	border-radius: 13px;
	max-width: 600px;
	width: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	animation: EM-fadeIn 0.2s ease;
	overflow: hidden;
	background: var(--color-white);
}

.EM-modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid var(--color-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.EM-modal-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin: 0;
}

.EM-modal-close {
	padding: 8px !important;
}

.EM-modal-body {
	padding: 25px 20px;
}

.EM-modal-footer {
	padding: 0 20px 25px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.EM-modal-footer .button-secondary,
.EM-modal-footer .button-primary {
	padding: 8px 10px;
	font-size: 14px;
	line-height: 1;
}

.EM-input,
.modal-input-field {
	width: 100%;
	padding: 8px 12px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	margin-bottom: 10px;
}

.EM-input::placeholder,
.modal-input-field::placeholder {
	color: #d9d9d9;
}

.EM-input:focus,
.EM-input:focus-visible,
.modal-input-field:focus,
.modal-input-field:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.modal-field-group {}

.modal-field-label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-black);
	margin-bottom: 8px;
	display: block;
}

@keyframes EM-fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

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

/* CREATE CAMPAIGN MODAL CSS */
.CCM-assign-category {
	display: flex;
	align-items: center;
	margin: 10px 0 0;
}

.CCM-assign-category .label-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	margin: 0;
	font-family: var(--font-family-base);
}

.CCM-category-wrapper {
	margin-top: 20px;
}

.CCM-category-wrapper select.EM-field-select {
	padding: 8px 12px 8px 12px;
}

.CCM-category-wrapper .add-btn {
	margin-top: 5px;
}

.CCM-new-category-row {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.CCM-new-category-row input {
	margin-bottom: 0;
}

.CCM-new-category-row .save-btn {
	padding: 8px 25px;
}

.EM-modal .EM-field-select {
	width: 100%;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	margin-bottom: 10px;
	background: var(--color-white);
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	background-image: url(../../assets/images/down-arrow-select.png);
	position: relative;
	background-position: calc(100% - 12px) center;
	background-size: 12px;
	background-repeat: no-repeat;
}

.EM-modal .EM-field-select:focus,
.EM-modal .EM-field-select:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

/* ADD CONTACT LIST MODAL CSS*/

.ALM-file-upload-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 15px 0;
}

.ALM-file-upload {
	min-width: 272px;
	font-size: 14px;
	flex: 1;
	font-family: var(--font-family-base);
}

.ALM-file-select {
	position: relative;
	display: flex;
	align-items: center;
	border: 2px solid #dce4ec;
	background-color: #ffffff;
	height: 40px;
	overflow: hidden;
	cursor: pointer;
}

.ALM-file-select-button {
	background-color: #dce4ec;
	padding: 0 10px;
	height: 40px;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.ALM-file-select-name {
	padding: 0 10px;
	width: calc(100% - 92px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ALM-file-select input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	appearance: none !important;
	box-shadow: none !important;
	border-radius: 2px;
}

.ALM-download-csv-btn {
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: var(--color-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	height: 40px;
}

.ALM-download-csv-btn:hover{
	text-decoration: none;
	color: var(--color-primary);
}

.ALM-download-csv-btn i {
	font-size: 18px;
}

.ALM-radio-group-wrapper {
	margin: 25px 0 10px 0;
}

.modal-radio-group {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 15px;
}

.modal-radio {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: var(--color-black);
	cursor: pointer;
}

.modal-radio input[type="radio"] {
	accent-color: var(--color-primary);
	width: 16px;
	height: 16px;
	cursor: pointer;
}

/* DATE FILTER MODAL CSS */

#dateFilterModal {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	display: none;
	/* toggled via JS */
	z-index: 1100;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	width: auto;
	/* let content decide */
	max-width: none;
	/* ensure no unintended cap */
}


.dateFilterDropdown {
	background: #fff;
	border-radius: 13px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	animation: EM-fadeIn 0.2s ease;
	overflow: hidden;
	background: var(--color-white);
	width: clamp(280px, 90vw, 720px);
	max-width: none;
}

.dateFilterDropdown-header {
	padding: 15px 20px;
	border-bottom: 1px solid var(--color-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.dateFilterDropdown-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin: 0;
}

.dateFilterDropdown-close {
	padding: 8px !important;
}

.dateFilterDropdown-body {
	padding: 25px 20px;
}

.dateFilterDropdown-footer {
	padding: 0 20px 25px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.dateFilterDropdown-footer .button-secondary,
.dateFilterDropdown-footer .button-primary {
	padding: 8px 10px;
	font-size: 14px;
	line-height: 1;
}

.dateFilterDropdown .EM-field-select {
	width: 100%;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	margin-bottom: 10px;
	background: var(--color-white);
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	background-image: url(../../assets/images/down-arrow-select.png);
	position: relative;
	background-position: calc(100% - 12px) center;
	background-size: 12px;
	background-repeat: no-repeat;
}

.dateFilterDropdown .EM-field-select:focus,
.dateFilterDropdown .EM-field-select:focus-visible {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.date-filter-content {
	display: flex;
	gap: 20px;
}

.date-filter-content .date-field-group:nth-child(1) {
	width: calc(40% - 14px);
}

.date-filter-content .date-field-group:nth-child(2),
.date-filter-content .date-field-group:nth-child(3) {
	width: calc(30% - 13px);
}

.date-field-group {
	/* display: flex;
  flex-direction: column;
  gap: 10px; */
}

.date-field-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-black);
}

.date-select-wrapper {
	position: relative;
	flex: 1;
}

.date-range-select {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	background: #fff;
	width: 220px;
}

.date-range-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 4px;
	z-index: 50;
	max-height: 250px;
	overflow-y: auto;
	list-style: none;
	padding: 0;
}

.date-range-dropdown li {
	padding: 10px 12px;
	cursor: pointer;
	font-size: 14px;
}

.date-range-dropdown li:hover {
	background: #f5f8ff;
}

.date-range-dropdown li.active {
	background: #eef4ff;
	font-weight: bold;
}

.date-picker-input {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 180px;
}






/* VIEW REPORT PAGE CSS STARTS */

.report-download-wrapper {
	margin-bottom: 40px;
}

.report-download-para {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: var(--color-black);
	margin-bottom: 10px;
}

.report-select-group {
	display: flex;
	align-items: center;
	gap: 20px;
}

.report-select-group .EM-field-select {
	max-width: 370px;
	padding: 8px 15px;
}

.report-select-group button {
	padding: 8px 15px;
	font-size: 16px;
}

.btn-primary {
	background: #0062ff;
	border: none;
	color: white;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 4px;
	cursor: pointer;
}

.campaign-details-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	color: var(--color-black);
}

/* Campaign Details Grid */
/* RE stands for Report */
.RE-campaign-details {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}

.RE-details-box {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 16px;
	border-radius: 4px;
	flex: 1;
}

.RE-details-box p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-black);
	margin: 20px 0;
}

.RE-details-box span {
	font-weight: 500;
	margin-left: 8px;
}

.RE-details-box p:first-child {
	margin-top: 0;
}

.RE-details-box p:last-child {
	margin-bottom: 0;
}

.RE-count-box {
	padding: 0;
}

.RE-count-box .RE-top-count {
	padding: 16px;
	border-bottom: 2px solid var(--color-border);
}

.RE-count-box .RE-top-count p {
	font-size: 12px;
	color: var(--color-black);
	margin-bottom: 8px;
}

.RE-count-box .RE-top-count h1 {
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
	margin: 0;
}

.RE-count-row {
	display: flex;
	justify-content: space-between;
	padding: 16px;
}

.RE-count-row div p {
	font-size: 12px;
	color: var(--color-black);
	margin-bottom: 8px;
}

.RE-count-row div span {
	font-size: 20px;
	font-weight: 600;
	display: block;
	color: var(--color-black);
}

/* Template Preview */
.RE-template-box p {
	font-size: 12px;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 12px;
}

.RE-template-preview {
	position: relative;
}

.RE-template-preview img {
	width: 100%;
	height: 132px;
	object-fit: cover;
	border-radius: 4px;
}

.RE-template-btn {
	width: 93%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	padding: 8px 16px;
	font-size: 14px;
	justify-content: center;
}

/* Charts Layout */
.RE-charts-row {
	display: flex;
	gap: 20px;
	margin-bottom: 50px;
}

.RE-chart-box {
	flex: 1;
	background: #fff;
	border: 1px solid var(--color-border);
}

.RE-chart {
	padding: 15px;
}

.RE-chart-box h4 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.1;
	border-bottom: 1px solid var(--color-border);
	padding: 8px 15px;
	margin-bottom: 12px;
	background: #F2F6FA;
}

.RE-chart-desc {
	font-size: 12px;
	color: #777;
	padding: 15px;
}

















/* LOGIN PAGE CSS */




.login_wrapper {
	display: flex;
	font-family: var(--font-family-base);
}

.login_block {
	width: 55%;
}

.login_block,
.loginSide_image {
	padding: 20px 80px;
	display: flex;
	height: 100vh;
	align-items: center;
}

.login_block .login_content {
	width: 100%;
}

.login_block .login_content h6 {
	color: var(--color-primary);
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 8px;
}

.login_block .login_content h6 span {
	font-weight: 600;
}

.login_block .login_content h2 {
	color: #28323b;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 48px;
}

.login_block .login_content form .form-group {
	margin-bottom: 16px;
}

.login_block .login_content form .form-group label.form-label {
	color: #28323b;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 8px;
}

.login_block .login_content form .form-group .login_input_field {
	border-radius: 5px;
	border: solid 1px #707070;
	background-color: #fff;
	height: 42px;
	appearance: none;
	box-shadow: none;
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 16px;
	line-height: 1.3;
	color: #495057;
	background-clip: padding-box;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.login_block .login_content form .form-group .login_input_field:focus {
	outline: none;
	box-shadow: none;
}

.login_block .login_content form button.button-primary {
	min-width: 160px;
	margin-top: 40px;
	padding: 11px 8px;
	justify-content: center;
}


.loginSide_image {
	width: 45%;
	background-image: url(../../images/login_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.loginSide_image_inner {
	width: 100%;
}

.logo_wrap {
	display: block;
	padding-bottom: 10px;
	max-width: 330px;
	margin: 0 auto;
}

.logo_wrap img {
	max-width: 100%;
}

.loginSide_image .loginSide_tagline {
	color: #ffffffcf;
	font-size: 22px;
	font-weight: 100;
	margin: 0;
	display: block;
	text-align: center;
}

.loginSide_image .loginSide_tagline span {
	color: #fff;
	font-weight: 500;
}

.EM-amount-input-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.EM-amount-input-wrapper .EM-input-field {
	flex: 1;
}

.EM-add-option-btn.button-primary {
	padding: 12px 20px;
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border: 1px solid var(--color-primary);
}

.EM-amount-options-container {
	margin-top: 15px;
}

.EM-amount-option {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;

	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 10px 15px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.EM-amount-option:hover {
	background: #e9ecef;
	border-color: #dee2e6;
}

.EM-amount-option>div.d-flex {
	width: 100%;
	align-items: center;
	gap: 15px;
}

.EM-amount-option .EM-input-field {
	flex: 1;
	padding: 8px 15px;
}

.EM-amount-option .EM-input-field {
	flex: 1;
	padding: 8px 15px;
}

.EM-amount-option .EM-remove-option-btn {
	background: #dc3545;
	color: var(--color-white);
	border: none;
	padding: 10px 14px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.EM-amount-option .EM-remove-option-btn:hover {
	background: #c82333;
}

.EM-amount-option .EM-remove-option-btn i {
	font-size: 12px;
}


.EM-remove-option-btn {
	background: #dc3545;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 5px 10px;
	font-size: 12px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.EM-remove-option-btn:hover {
	background: #c82333;
}

.EM-top-field-wrapper.EM-all-3 {
	display: flex;
	gap: 30px;
	row-gap: 0;
	flex-wrap: wrap;
}

#more-rec-amounts-div .EM-amount-option {
	max-width: 625px;
}

#more-rec-amounts-div .EM-amount-option .EM-input-field {
	flex: auto;
}

#more-rec-amounts-div .EM-amount-option .EM-remove-option-btn {
	display: flex;
	align-items: center;
	gap: 5px;
}

#more-rec-amounts-div .EM-amount-option .EM-field-select {
	padding: 8px 20px;
}

/* 

.d-flex.w-100{
	width: 100%;
} */

/* .valid-amount {
	border: 1px solid var(--color-border);
	padding: 12px 15px;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.2s ease;
}

.valid-amount:focus {
	border-color: var(--color-primary);
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
} */

/* Smart Token Selection Styles */
/* .EM-smart-token-selection {
	margin-bottom: 30px;
}

.EM-smart-token-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.EM-smart-token-div {
	flex: 1;
	min-width: 200px;
}

.EM-white-box {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 20px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.EM-white-box:hover {
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.EM-white-box.active {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

.EM-white-box figure {
	margin: 0;
	text-align: center;
}

.EM-white-box figure img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.EM-white-box figure img:last-child {
	display: none;
}

.EM-white-box.active figure img:first-child {
	display: none;
}

.EM-white-box.active figure img:last-child {
	display: inline;
}

.EM-white-box h6 {
	margin: 15px 0 0 0;
	font-size: 14px;
	font-weight: 500;
} */

/* Button Styles */
/* .EM-text-center {
	text-align: center;
	margin: 30px 0;
}

.EM-btn {
	padding: 12px 24px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	min-width: 140px;
}

.EM-btn-orange {
	background: var(--color-primary);
	color: var(--color-white);
}

.EM-btn-orange:hover {
	background: var(--color-primary-dark, #0056b3);
	transform: translateY(-1px);
}

.EM-btn-secondary {
	background: var(--color-white);
	color: var(--color-black);
	border: 1px solid var(--color-border);
}

.EM-btn-secondary:hover {
	background: var(--color-gray-light, #f8f9fa);
	transform: translateY(-1px);
} */

/* Error Labels */
/* .error {
	color: red;
	font-size: 12px;
	margin-top: 5px;
	display: none;
} */

/* More Options Container */
/* #more-options-container,
#more-amounts-container,
#more-rec-amounts-container {
	margin-top: 15px;
} */

/* Event Frequency Select */
/* .event-frequency {
	width: 100%;
} */

/* Template-specific styling */
/* .EM-card-form {
	padding: 20px;
	background: var(--color-white);
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.EM-card-form h3 {
	color: var(--color-primary);
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 600;
} */

/* Form validation styling */
/* .EM-input-field.error,
.EM-field-select.error {
	border-color: #dc3545;
	box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.EM-input-field:focus,
.EM-field-select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
	outline: none;
} */

/* Template navigation improvements */
/* .EM-donor-card {
	position: relative;
	overflow: hidden;
}

.EM-donor-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--color-primary);
	transition: width 0.3s ease;
}

.EM-donor-card.active::after {
	width: 100%;
} */

/* Responsive improvements */
/* @media (max-width: 768px) {
	.EM-smart-token-row {
		flex-direction: column;
		gap: 15px;
	}
	
	.EM-smart-token-div {
		min-width: auto;
	}
	
	.EM-top-field-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	
	.EM-field-group {
		max-width: none;
	}
	
	.EM-amount-input-wrapper {
		flex-direction: column;
		gap: 10px;
	}
	
	.EM-amount-input-wrapper .EM-add-option-btn {
		width: 100%;
		text-align: center;
	}
} */

/* Animation improvements */
/* .EM-white-box {
	transform: scale(1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.EM-white-box:hover {
	transform: scale(1.02);
}

.EM-white-box.active {
	transform: scale(1.02);
} */

/* Loading states */
/* .EM-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.EM-btn.loading {
	position: relative;
	color: transparent;
}

.EM-btn.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid transparent;
	border-top: 2px solid currentColor;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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



/* Bootstrap-like styling for form elements */

/* .form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.input-sm {
	height: calc(1.5em + 0.5rem + 2px);
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.2rem;
}

.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn_sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.2rem;
}

.ml-2 {
	margin-left: 0.5rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-4 {
	margin-top: 1.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col-md-6 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-12 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	flex: 0 0 100%;
	max-width: 100%;
}

.d-flex {
	display: flex !important;
} */

/* Frequency select styling */
/* .select-arrow {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
} */




.dataTables_empty {
	text-align: center !important;
}



.processLoader {
	position: relative;
}

.animLoader {
	position: absolute;
	left: 50%;
	width: 80px;
	top: 50%;
	display: block;
	z-index: 1052;
	transform: translate(-50%, -50%);
}

.processLoader::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1051;
}




.ML-tabs-header {
	margin-bottom: 30px;
	gap: 20px;
}

.ML-tabs-header.nav-pills .nav-link.active,
.ML-tabs-header.nav-pills .show>.nav-link {
	/* background-color: var(--color-primary); */
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border-color: var(--color-primary);
}

.ML-tabs-header.nav-pills .nav-link:hover {
	color: var(--color-btn-light);
}

.ML-tabs-header.nav-pills .nav-link.active:hover {
	color: var(--color-btn-light);
}

.campaigns-table-wrapper.contact-list-table-wrapper {
	overflow: visible;
}

.ML-dropdown-wrapper .dropdown-item a {
	font-size: 14px;
	font-weight: 400;
	color: #4c555b;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ML-dropdown-wrapper .dropdown-item a i {
	font-size: 13px;
}


.ECL-search-btns-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 25px;
}

.ECL-search-btns-wrapper .table-search {
	width: 100%;
	margin-bottom: 0;
}

.ECL-search-btns-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.ECL-search-btns-right button {
	padding: 8px 15px;
	font-size: 14px;
	line-height: 1.2;
}

.ECL-wrapper #contact-table-body tr td:first-child {
	font-weight: 600;
}

.ECL-wrapper #contact-table th,
.ECL-wrapper #contact-table td {
	vertical-align: middle;
}

.detail-panel {
	display: none;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.detail-panel.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}


.dataTables_paginate {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
	margin: 20px;
}


.EM-smartgive-wrapper .EM-section-heading {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 18px;

}


.EM-form-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.EM-form-wrapper .EM-form-col {
	min-width: 0;
}

.EM-form-wrapper .EM-form-col label {}

.EM-digital-pledge-wrapper .EM-section-heading{
	font-size: 20px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 20px;
}
/* ===== Event Type pills (like Figma tabs) ===== */
.EM-digital-pledge-wrapper .EM-radio-field-group{
  display:flex;
  gap:14px;
  margin-top:12px !important;
}

/* ===== Radio Pills styled like EM-donor-type-buttons ===== */

.EM-digital-pledge-wrapper .EM-radio-pill{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  min-width: 220px;
  padding: 0 18px;

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;

  cursor: pointer;
  user-select: none;
  overflow: hidden;

  font-family: var(--font-family-base);
  transition: all 0.2s ease;
}

/* hide radio */
.EM-digital-pledge-wrapper .EM-radio-pill input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.EM-digital-pledge-wrapper .EM-radio-pill span{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
  z-index: 1;
}

.EM-digital-pledge-wrapper .EM-radio-pill::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

/* hover */
.EM-digital-pledge-wrapper .EM-radio-pill:hover{
  background: var(--color-btn-bg-light);
  color: var(--color-btn-light);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.EM-digital-pledge-wrapper .EM-radio-pill:hover::before{
  left: 100%;
}

.EM-digital-pledge-wrapper .EM-radio-pill:hover span{
  color: var(--color-btn-light);
}

/* ===== Active (checked) state ===== */
.EM-digital-pledge-wrapper .EM-radio-pill:has(input:checked){
  background: var(--color-btn-bg-light);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.EM-digital-pledge-wrapper .EM-radio-pill:has(input:checked) span{
  color: var(--color-btn-light);
}

.EM-digital-pledge-wrapper .EM-radio-pill:has(input:checked)::before{
  left: 100%;
}


.EM-digital-pledge-wrapper .EM-card-form{ margin:0; }
.EM-digital-pledge-wrapper .EM-form-wrapper{
  display:grid;
  grid-template-columns: 1fr 1fr;       /* Figma = 2 columns */
  gap:22px 28px;
  align-items:start;
  margin-top:10px;
}

.EM-digital-pledge-wrapper .ms-options-wrap>button,
.EM-digital-pledge-wrapper .ms-options-wrap>button:focus {
	width: 100%;
	padding: 12px 20px;
	border-radius: 4px;
	border: 1px solid var(--color-border);
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-black);
	background: var(--color-white);

	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	background-image: url(../../assets/images/down-arrow-select.png);
	position: relative;
	background-position: calc(100% - 15px) center;
	background-size: 12px;
	background-repeat: no-repeat;
}

.EM-digital-pledge-wrapper .ms-options-wrap>button:after {
	display: none;
}

.EM-digital-pledge-wrapper .ms-options-wrap>button:focus {
	outline: 1px solid rgba(7, 86, 165, 0.4);
	box-shadow: none;
}

.EM-digital-pledge-wrapper .ms-options-wrap>.ms-options>ul input[type="checkbox"] {
	top: 11px;
	width: 14px;
	height: 14px;
}


.button-primary.dpc-show-donor-btn {
	font-size: 16px;
	padding: 12px 30px;
	margin-top: 45px;
}







/* SMART EMAIL FOR CHRISTMAS PAGE CSS*/


.email-template-wrapper {
	font-family: var(--font-family-base);
	padding: 0 20px 30px 20px;
}

.TSE-h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border);
}

.email-template-wrapper .top-content {
	/* padding: 25px 20px 15px 20px; */
}

.email-template-wrapper .top-content p {
	margin-bottom: 0;
}

.email-template-wrapper .top-content span {
	font-size: 16px;
	color: #333333;
}

.email-template-wrapper .top-content span:last-child {
	font-weight: 600;
}

.email-sent-para {
	padding: 15px 20px;
	background: #022A52;
}

.email-sent-para p {
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 0;
}

.email-template-tab-wrapper {
	padding: 0px 15px;
}

.email-template-tab-wrapper {
	margin: 25px 0;
}

.email-template-tab-wrapper .nav-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	border-bottom: 0;
}

.email-template-tab {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 15px !important;
	box-shadow: 0px 3px 6px #00000029 !important;
	border-radius: 5px !important;
	background-color: #fff !important;
	height: 80px;
	min-width: 315px;
}

.email-template-tab img {
	max-width: 100%;
}

.email-template-tab p {
	color: #303030;
	min-height: 0;
	margin-bottom: 0;
	font-size: 18px;
	line-height: 27px;
	font-weight: 400;
}

.email-template-tab.nav-link.active {
	color: #303030 !important;
	box-shadow: 0px 3px 6px #00000029 !important;
	border: 2px solid #0756A5 !important;
	border-radius: 5px;
}

.email-template-tab.nav-link.active p {
	font-weight: 600;
}

nav .br {
	height: 1px;
	background-color: rgba(51, 71, 93, 0.5);
	width: 100%;
	margin: 5px 0;
}

.tab-content-body {
	/* padding: 0 20px; */
	margin: 0;
	/* display: grid; */
	/* grid-template-columns: repeat(2,1fr); */
	/* gap: 10px; */
}

.tab-content-body .heading-h4 {
	color: var(--color-black);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 22px;
	margin-top: 22px;
}

.tab-content-body .eventTitle.dataTitle {
	font-weight: 400;
	color: #000;
	font-size: 14px;
	line-height: 1.2;
	display: inline-block;
	padding: 8px 15px;
	background-color: #f9f7f7;
	border-radius: 6px;
	margin-bottom: 20px;
}

.tab-content-header {
	padding: 5px 0 20px 0;
}

.tab-content-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tab-content-header .tophead {
	color: var(--color-black);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 0;
}

.tab-content-header .btn.btnmedium.btnblue {
	min-width: unset;
}

.left-tab-gift-box {
	/* padding: 13px;
  border: 1px solid #70707021;
  border-radius: 4px; */
	margin-bottom: 40px;
}

.input-field-group-wrapper {
	display: flex;
	align-items: flex-start;
	column-gap: 25px;
	flex-wrap: wrap;
}

.input-field-group {
	width: calc(50% - 13px);
	margin-bottom: 25px;
}

/* .left-tab-gift-box .email-subject , .left-tab-gift-box .left-input-field{
  display: flex;
  align-items: center;
  padding: 8px 0 20px 0;
  gap: 10px;
  border-bottom: 1px solid rgba(51, 71, 93, 0.1);
}
.left-tab-gift-box .left-input-field{
  border-bottom: 0 !important;
}
.left-tab-gift-box .email-subject span , .left-tab-gift-box .left-input-field span{
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  min-width: 130px;
}
.left-tab-gift-box .email-subject input, .left-tab-gift-box .left-input-field input{
  border: 1px solid #EDEDED;
  border-radius: 5px;
  padding: 7px 10px;
  width: 100%;
} */

/* .left-tab-gift-box .gift-type{
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
} */
.gift-type-radio-btn {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 12px;
}

.gift-type-radio-btn .form-check-inline {
	margin-right: 0;
}

.gift-type-radio-btn .form-check-input {
	width: 20px;
	height: 20px;
	accent-color: var(--color-primary);
	margin-right: 8px;
}

.gift-type-radio-btn .form-check-label {
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--color-black);
}

.TSE-btn.button-primary {
	font-size: 16px;
	padding: 14px 25px;
}

.left-tab-content {
	padding-right: 5px;
}

.left-tab-content .btn.btnmedium.btnblue {
	padding: 13px 32px;
}

.left-tab-content .checkbox-wrapper {
	padding: 0;
}

.left-tab-content h3 {
	font-size: 16px;
	color: #28323B;
	margin-bottom: 22px;
}



.right-tab-content {
	padding-left: 5px;
}

.right-tab-content .heading-h4-right {
	color: var(--color-black);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
}

.select-top-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.select-top-box-left {
	flex-grow: 1;
}

.select-top-box-left .EM-field-select {
	padding: 12px 35px 12px 12px;
}

.select-right-btn {
	border: 1px solid #0756A5;
	color: #0756A5;
	font-size: 16px;
	padding: 10px 13px;
	border-radius: 5px;
	background-color: #F3F9FF;
	white-space: nowrap;
}

.right-tab-template-box {
	padding: 15px;
	border: 1px solid #70707021;
	border-radius: 4px;
	height: 100%;
}

.right-tab-template-box .img-wrapper {
	width: 100%;
}

.right-tab-template-box .img-wrapper img {
	max-width: 100%;
}


.checkbox-wrapper {
	padding: 0px;
}

.checkbox-top-all {
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
	border-radius: 5px 5px 0px 0px;
	background-color: rgba(242, 246, 250, 0.9);
}

.checkbox-top-all input[type="checkbox"] {
	width: 17px;
	height: 17px;
	accent-color: var(--color-primary);
}

.checkbox-top-all label {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 600;
}

.checkbox-body-content {
	max-height: 315px;
	overflow-y: scroll;
	border-bottom: 1px solid rgba(112, 112, 112, 0.13);
	border-radius: 0px 0px 5px 5px;
}

.checkbox-body-content table {
	width: 100%;
}

.checkbox-body-content table {
	border: 1px solid rgba(112, 112, 112, 0.13);
	border-collapse: collapse;
}

.checkbox-body-content tr td div {
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.checkbox-body-content tr td label {
	margin-bottom: 0;
	font-size: 14px;
	color: #333333;
}

.checkbox-body-content tr td div input[type="checkbox"] {
	width: 17px;
	height: 17px;
	accent-color: var(--color-primary);
}

.checkbox-body-content tr td div input[type="checkbox"]:focus,
.checkbox-body-content tr td div input[type="checkbox"]:focus-visible {
	outline: none;
}

.noEmailFoundClass {
	height: unset !important;
	overflow-y: unset !important;
}

.noEmailFoundClass .checkbox-row td {
	padding: 20px;
	text-align: center;
}

.checkbox-wrapper .btn.btnmedium.btnblue {
	margin-top: 25px;
}

.feature-div .card-box {
	padding: 20px 25px;
}

.feature-div .card-box .img-wrapper {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: center;
}






.filtericon {
	box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
	background-color: #ffffff;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.filterbox {
	border-radius: 5px;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	background-color: #ffffff;
	padding: 8px 12px;
	position: absolute;
	white-space: nowrap;
	top: 50px;
	left: 0;
	z-index: 1;
	/* opacity: 0; */
	overflow: hidden;
	transition: 0.5s;
	width: 260px;
	display: none;
}

.filter-audience .filterbox {
	opacity: 1;
	overflow: visible;
	transition: 0.5s;
	display: block;
}

.filter-audience .common_table {
	width: calc(100% - 275px);
	transition: 0.5s;
	margin-left: auto;
}

.filterbox select.form-control {
	font-size: 12px;
	height: 32px !important;
	padding: 6px 25px 6px 8px;
	border-radius: 5px;
	border: solid 1px #ededed;
}

.notOverviewSerach {
	max-width: 300px;
	width: 100%;
}

.notOverviewSerach .table-search {
	margin-bottom: 0;
}

.button-primary.select-template-btn {
	padding: 8px 20px;
	justify-content: center;
	font-size: 16px;
	min-width: 110px;
}



#template-customlink .TCL-h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border);
}

#template-customlink .TCL-para {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-black);
	margin-bottom: 20px;
}

#template-customlink #box-header.TCL-para {
	margin-bottom: 25px;
}

#template-customlink .email-template-wrapper {
	font-family: var(--font-family-base);
	padding: 0 20px 30px 20px;
}

#template-customlink .TCL-top-tabs .nav {
	display: flex;
	align-items: center;
	gap: 25px;
	justify-content: flex-start;
}

#template-customlink .templates-tab .nav-pills .nav-link {
	color: var(--color-black);
	border-radius: 10px;
	border: 1px solid #F0F0F0;
	background-color: #FCFCFC;
	text-align: center;
	font-size: 16px;
	line-height: 1.1;
	font-weight: 400;
	padding: 13px 25px;
	text-decoration: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

#template-customlink .templates-tab .nav-pills .nav-link.active,
#template-customlink .templates-tab .nav-pills .show>.nav-link,
#template-customlink .templates-tab .nav-pills .nav-link:hover {
	background: var(--color-btn-bg-light);
	color: var(--color-btn-light);
	border: 1px solid var(--color-primary);
}

/* #template-customlink .choose_action .card-box {
  border-radius: 8px;
  border: 1px solid #efeeee;
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

#template-customlink .choose_action .card-box.active,
#template-customlink .choose_action .card-box:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #1b74fc;
  cursor: pointer;
}
#template-customlink .choose_action .card-box:hover h5{color: #0756a5;}

#template-customlink .choose_action .card-box p {
  font-size: 15px;
  color: #303030;
  margin: 0;
  line-height: 20px;
}

#template-customlink .choose_action .card-box h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 15px 0 10px;
} */

/* #template-customlink .block_cover {
  border-radius: 5px;
  background-color: #ffffff;
  padding: 0px 20px;
}

#template-customlink .block-wrapper {
    padding: 30px 60px;
    border-radius: 4px;
    box-shadow: 0 0 20px #ddd;
} */
#template-customlink .tab-content {
	margin-top: 45px;
}

#template-customlink .tab-content-box-wrapper {
	margin-top: 25px;
}


.TCL-inner-tabs .nav.nav-pills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	border: 0;
}

.TCL-inner-tabs .feature-div.nav-item {
	padding: 0;
	margin: 0;
}

.TCL-inner-tabs .card-box.nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;

	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	min-height: auto !important;
	line-height: 1.2;

	font-size: 16px;
	font-weight: 400;
	color: var(--color-black) !important;
	text-decoration: none;
	cursor: pointer;

}

.TCL-inner-tabs .card-box.nav-link.active,
.TCL-inner-tabs .card-box.nav-link:focus,
.TCL-inner-tabs .card-box.nav-link:active {
	background: transparent !important;
	box-shadow: none !important;
	color: var(--color-black) !important;
	text-decoration: none;
	outline: 0;
}

.TCL-inner-tabs .card-box.nav-link:hover {
	background: transparent !important;
	box-shadow: none !important;
	color: var(--color-black) !important;
	text-decoration: none;
}

.TCL-inner-tabs .card-box.nav-link::before {
	content: "";
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	border-radius: 50%;
	background-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	flex-shrink: 0;
}

.TCL-inner-tabs .card-box.nav-link.active::before {
	background: radial-gradient(#0756a5 42%, transparent 52%);
	border-color: var(--color-primary);
}

.TCL-form-group-row {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 15px;
}

.TCL-form-group-row .TCL-field-group {
	width: calc(33% - 15px);
}

.TCL-form-btns-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 35px;
}

.TCL-form-btns-wrapper .TCL-blue-btn {
	padding: 12px;
	border: 1px solid #027bff;
	font-family: var(--font-family-base);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 4px;
	background: var(--color-white);
	color: #027bff;
	cursor: pointer;
	text-decoration: none;
}

.TCL-form-btns-wrapper .TCL-blue-btn:hover {
	background: #027cff13;
}


#template-customlink .custom-link-btn-wrapper-bottom {
	display: flex;
	align-items: center;
	gap: 25px;
	justify-content: flex-start;
	padding-top: 15px;
}

#template-customlink .custom-link-btn-wrapper-bottom button {
	justify-content: center;
	line-height: unset;
}

/****** Choose file css ******/
/* ===========================
   FILE UPLOAD FIELD STYLING
   =========================== */
#template-customlink .file-upload {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

#template-customlink .file-upload .file-select {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #f8f9fa;
	height: 47px;
	padding: 0;
	cursor: pointer;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid var(--color-border);
	border-radius: 6px;
}

#template-customlink .file-upload .file-select .file-select-button {
	flex-shrink: 0;
	height: 100%;
	display: inline-block;
	line-height: 1.2;
	background: #edf1f5;
	color: #000;
	padding: 12px 20px;
	cursor: pointer;
	font-weight: 400;
	font-size: 16px;
	width: 140px;
	text-align: center;
	margin-bottom: 0;
	box-sizing: border-box;
}

#template-customlink .file-upload .file-select .file-select-name {
	flex: 1;
	min-width: 0;
	padding: 12px 20px;
	height: 100%;
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: var(--color-black);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
}

#template-customlink .file-upload .file-select input[type=file] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 10;
	box-sizing: border-box;
}



#template-customlink .file-upload .file-upload-hint {
	display: block;
	margin-top: 8px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 500;
	color: #a33a00;
}

#template-customlink .file-upload .file-select.file-select-disabled {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: none;
}

#template-customlink .file-upload .file-select.file-select-disabled input[type=file] {
	cursor: not-allowed;
}

/**********************/



.sendEmailModalBottomBtnWrapper {
	text-align: center;
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sendEmailModalBottomBtnWrapper button.button-primary {
	justify-content: center;
	/* font-size: 16px; */
	min-width: 140px;
}

.emailSentModalBottomBtnWrapper {
	text-align: center;
	margin-top: 25px;
}

.emailSentModalBottomBtnWrapper a.button-primary {
	display: inline-block;
	padding: 8px 20px;
	text-decoration: none;
	/* height: 42px; */
}

.emailSentModalBottomBtnWrapper a:hover {
	text-decoration: none;
	color: var(--color-white);
}

.continue-btn-primary.button-primary {
	font-size: 16px !important;
	padding: 8px 20px;
}

.continue-btn-primary.button-primary {
	font-size: 16px !important;
	padding: 8px 20px;
}


.test-email-btn-PE.button-secondary {
	border: 1px solid #F0F0F0;
	background-color: #FCFCFC;
	color: var(--color-black);
}

.test-email-btn-PE.button-secondary:focus i,
.test-email-btn-PE.button-secondary:hover i {
	color: var(--color-primary);
}


.test-email-btn-PE.button-secondary:focus {
	outline: none;
	background: var(--color-btn-bg-light);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.test-email-btn-PE.button-secondary:hover {
	background: var(--color-btn-bg-light);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.EM-modal-close.only-close {
	position: absolute;
	top: 15px;
	right: 15px;
}

.sendEmailRadioWrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
}

.sendEmailRadioWrapper .sendEmailRadio {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sendEmailRadioWrapper .sendEmailRadio input[type="radio"] {
	width: 17px;
	height: 17px;
	accent-color: var(--color-primary);
}

.sendEmailRadioWrapper .sendEmailRadio label {
	font-size: 14px;
	line-height: 1.1;
	color: var(--color-black);
	margin-bottom: 0;
}


.view_campaign_report {
	position: relative;
	cursor: pointer;
}

.view_campaign_report:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	top: -15px;
	left: 0;
	background: #F0F0F0;
	color: var(--color-black);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
}


.DPC-actions-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.DPC-filter-wrapper {
	position: relative;
}

.DPC-filter {
	display: flex;
	align-items: center;
	gap: 8px;
}

.DPC-filter-icon {
	box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
	background-color: #ffffff;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.DPC-filter-text {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-black);
}

.DPC-btns-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.DPC-btns-wrapper .button-secondary {
	font-size: 13px;
	line-height: 1.2;
	padding: 8px;
}

.DPC-btns-wrapper .button-primary {
	font-size: 13px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border: 1px solid var(--color-primary);
}

/* Wrapper styling */
.DPC-common-table {
	width: 100%;
	overflow-x: auto;
	border-radius: 6px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	margin-top: 20px;
}

/* Table base */
.DPC-common-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 0;
}

/* Header row */
.DPC-common-table thead {
	background-color: #f2f6fa;
}

.DPC-common-table thead th {
	text-align: left;
	padding: 12px 16px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	white-space: nowrap;
}

.DPC-common-table thead th:last-child {
	border-right: 0;
}

/* Body rows */
.DPC-common-table tbody tr {
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.2s ease;
}

.DPC-common-table tbody tr:hover {
	background-color: #f9fbff;
}

.DPC-common-table tbody td {
	border-right: 1px solid var(--color-border);
	padding: 12px 16px;
	color: #333;
	white-space: nowrap;
}

.DPC-common-table tbody tr td:last-child {
	border-right: 0;
}



/* Wrapper styling */
.SC-common-table {
	width: 100%;
	overflow-x: auto;
	border-radius: 6px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	/* margin-top: 20px; */
}

/* Table base */
.SC-common-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 0;
}

/* Header row */
.SC-common-table thead {
	background-color: #f2f6fa;
}

.SC-common-table thead th {
	text-align: left;
	padding: 12px 16px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	white-space: nowrap;
}

.SC-common-table thead th:last-child {
	border-right: 0;
}

/* Body rows */
.SC-common-table tbody tr {
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.2s ease;
}

.SC-common-table tbody tr:hover {
	background-color: #f9fbff;
}

.SC-common-table tbody td {
	border-right: 1px solid var(--color-border);
	padding: 12px 16px;
	color: #333;
	white-space: nowrap;
}

.SC-common-table tbody tr td:last-child {
	border-right: 0;
}


.bootbox.bootbox-alert .EM-modal-close.button-secondary {
	position: absolute;
	right: 20px;
	top: 15px;
}

.bootbox.bootbox-alert .EM-modal-body {
	padding-top: 55px;
}


#test-email-modal .test-email-hint {
	font-size: 12px;
	line-height: 1.2;
	font-weight: 300;
	font-family: var(--font-family-base);
	margin-bottom: 20px;
	color: var(--color-black);
}

#test-email-modal .test-email-card {
	background: #F3F7FB;
	border-radius: 4px;
	padding: 15px 15px
}

#test-email-modal .test-email-card-title {
	font-weight: 500;
	color: var(--color-black);
	font-size: 15px;
	line-height: 1.2;
	font-family: var(--font-family-base);
	margin-bottom: 15px
}

#test-email-modal .test-email-card-content {
	font-size: 14px;
	color: var(--color-black);
	line-height: 1.5;
	font-weight: 300;
}

#test-email-modal .test-email-card-content .test-email-list b {
	color: var(--color-black);
	font-weight: 500
}

#test-email-modal .test-email-card-content .test-email-list {
	white-space: wrap
}

.modal-content{
	border: 1px solid #fff!important;
    border-radius: 12px!important;
}

.modal-content.border-custom-0{
	border: 0!important;
}



/* SETTINGS PAGE CSS */

.EM-settings-card .EM-settings-card-title {
    font-size: 24px;
	line-height: 30px;
    font-weight: 600;
	font-family: var(--font-family-base);
	color: var(--color-black);
    margin: 0 0 20px;
}

.EM-settings-card .EM-settings-card-desc {
	font-size: 16px;
	line-height: 24px;
    font-weight: 400;
	font-family: var(--font-family-base);
	color: var(--color-black);
    margin: 0 0 20px;
}

.EM-settings-card .EM-email-row {
    display: flex;
    align-items: center;
    gap: 30px;
	max-width: 700px;
	border: 1px solid #E2E9EE;
	border-radius: 10px;
	padding: 13px 15px;
}

.EM-settings-card .EM-email-display {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
	gap: 5px;

	font-size: 16px;
	line-height: 1.2;
    font-weight: 400;
	font-family: var(--font-family-base);
	color: var(--color-black);
}

.EM-settings-card .EM-email-value {
    font-weight: 500;
}


/* whole bar */
.gc-pagination-bar {
    display: flex;
    justify-content: flex-end;      /* center everything horizontally */
    align-items: center;
    gap: 32px;
    padding: 14px 0 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #5f6368;               /* grey like material tables */
    background-color: #ffffff;
}

/* "Showing results" text */
.gc-pagination-info {
    white-space: nowrap;
}

.gc-pagination-info .gc-bold {
    font-weight: 600;
    color: #373a3c;               /* darker for 1–8 & 8 */
}

/* right side controls */
.gc-pagination-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* icon buttons ( << < > >> ) */
.gc-page-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #5f6368;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.gc-page-icon:hover:not(.gc-disabled) {
    background-color: #e3f2fd;    /* light blue hover circle */
}

/* disabled arrows (when on page 1 / last page) */
.gc-page-icon.gc-disabled {
    opacity: 0.35;
    cursor: default;
}

/* "Page" and "of 1" text */
.gc-page-label,
.gc-page-of {
    font-size: 13px;
    color: #5f6368;
}

/* current page number big rounded box */
.gc-page-current {
    min-width: 44px;
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #d5d7db;
    background-color: #e9f0fb;    /* light bluish background */
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.se-pre-con-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../../images/gc-loader.gif) center no-repeat #fff;
}

.PS-field-attachment.custom-file{
	height: 38px;
}

.PS-field-attachment .custom-file-label{
    padding: 8px 15px;
    color: var(--color-black);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
	height: 38px;
}

.PS-field-attachment .custom-file-input{
	height: 38px;
}

.PS-field-attachment .custom-file-label::after {
    font-size: 16px;
    padding: 7px 45px 7px 45px;
    background: #0756A5;
    color: #fff;
    height: 36px;
    border-radius: 0 2px 2px 0;
}