@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    font-size: 62.5%;
}

:root {
    --sidebar-width: 250px;
    --transition-time: 0.3s;
    --sidebar-bg: #ffffff;
    --sidebar-color: #64748b;
    --sidebar-active-color: #2563EB;
    --sidebar-active-bg-color: #EFF6FF;
    --sidebar-active-border-color: #2563EB;
    --sidebar-border-color: transparent;
    --text-black-color: #1e293b;
    --dark-gray: #475569;
    --success-green: #10B981;
    --dark-gray-1a: #334155;
    --ethis-color: #ECFDF5;
    --premium-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --premium-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Inter", sans-serif;
}



body {
    font-family: "Poppins", sans-serif;
    background: #f8f9fa;
    font-size: 1.6rem;
    overflow-x: hidden;
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
    padding: 0 !important;

}

ul li {
    list-style: none;
}

img {
    width: 100%;
}

p {
    margin: 0 !important;
    padding: 0 !important;
}

a {
    text-decoration: none !important;
}

.btn {
    font-size: 16px;
}

.dashboard-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.sidebar {
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    background: var(--sidebar-bg);
    color: var(--sidebar-color);
    transition: all var(--transition-time);
    min-height: 100vh;
    position: fixed;
}

.sidebar-header {
    padding: 1.5rem 2.4rem;
    border-bottom: 1px solid #B8B8B8;
    margin-bottom: 4.5rem;
}

.logo {
    text-align: center;
}


.logo a img {
    width: 170px;
    margin: auto;
    height: auto;
}

.sidebar-menus {
    padding: 0 2.4rem 2.4rem 2.4rem !important;
}

.sidebar ul li a {
    padding: 1.2rem 1.6rem;
    font-size: 1.5rem;
    display: block;
    color: var(--sidebar-color);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    border: 1px solid var(--sidebar-border-color);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}



.sidebar ul li a:hover {
    color: var(--sidebar-active-color);
    background: var(--sidebar-active-bg-color);
    border-color: var(--sidebar-active-border-color);
}

.sidebar ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar ul li.active>a {
    color: var(--sidebar-active-color);
    background: var(--sidebar-active-bg-color);
    border-color: var(--sidebar-active-border-color);
}

.sidebar ul .submenu {
    display: none;
    background: #2c3136;
    padding-left: 0;
}

.sidebar ul .submenu.show {
    display: block;
}

.sidebar ul .submenu a {
    font-size: 0.9em !important;
    padding-left: 40px !important;
}

.sidebar ul .submenu a:hover {
    background: #3d4348 !important;
}

.sidebar ul .submenu a.active {
    color: #fff;
    background: #0056b3 !important;
}

.content {
    width: 100%;
    min-height: 100vh;
    transition: all var(--transition-time);
    background: #F8FAFC;
    padding: 4rem 4rem;
    margin-left: var(--sidebar-width);
}

.content-top {
    margin-bottom: 3.5rem;
}

.content-top h1 {
    font-size: 4rem;
    line-height: 4rem;
    color: var(--text-black-color);
    font-family: var(--secondary-font);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-top p {
    font-size: 2rem;
    line-height: 3.2rem;
    color: var(--text-black-color);
    font-family: var(--secondary-font);
}

.total-domain {
    padding: 2.4rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: var(--premium-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.total-domain:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-shadow-hover);
}

.icons {
    width: 6rem;
    height: 6rem;
    background: var(--sidebar-bg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .8rem;
    margin-bottom: 2rem;
}

.icons i {
    font-size: 3rem;
}

.total-domain h2 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 1rem;
}

.total-domain h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--text-black-color);
    font-family: var(--secondary-font);
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.total-domain p {
    color: var(--dark-gray-1a);
    font-size: 1.2rem;
    line-height: 150%;
    font-weight: 400;
}

.total-domain p span {
    color: var(--success-green);
    font-weight: 400;
}



.total-domain p span i {
    margin-right: 0.5rem;
}


.dashboard-content .col-lg-4.col-md-6:nth-child(1) .total-domain {
    background: var(--sidebar-active-bg-color);
    border-color: var(--sidebar-active-color);
}

.dashboard-content .col-lg-4.col-md-6:nth-child(1) .total-domain .icons i {
    color: var(--sidebar-active-color);
}

.dashboard-content .col-lg-4.col-md-6:nth-child(2) .total-domain {
    background: var(--ethis-color);
    border-color: var(--success-green);
}

.dashboard-content .col-lg-4.col-md-6:nth-child(2) .total-domain .icons i {
    color: var(--success-green);
}


.dashboard-content .col-lg-4.col-md-6:nth-child(3) .total-domain {
    background: #F4EBFD;
    border-color: #9435EB;
}

.dashboard-content .col-lg-4.col-md-6:nth-child(3) .total-domain .icons i {
    color: #9435EB;
}

.top-icon {
    width: 4rem;
    height: 4rem;
    background: #F4EBFD;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.top-content {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 2.8rem;
}

.top-content h2 {
    color: var(--text-black-color);
    font-size: 2.8rem;
    line-height: 4.4rem;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.dashboard-domain-area {
    margin-bottom: 5rem;
}

.top-ompanies {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    height: 100%;
    box-shadow: var(--premium-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-ompanies:hover {
    box-shadow: var(--premium-shadow-hover);
}

.visitors-progress-bar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-progress-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-title {
    font-weight: bold;
}

.progress-number {
    font-size: 16px;
    text-align: center;
}

.dashboard-progress-bar {
    width: 100%;
    background: #e2e8f0;
    height: 12px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.dashboard-progress-fill {
    height: 100%;
    background: var(--sidebar-active-color);
    width: 0;
    border-radius: 8px;
    transition: width 1s ease-in-out;
}

.dashboard-progress-bar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dashboard-progress-bar-top h3,
.dashboard-progress-bar-top p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 0;
    font-family: var(--secondary-font);
    font-weight: 600;
}


.dashboard-progress-bar-top p span {
    margin-right: 0.7rem;
}

.visitors-progress-bar a {
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: var(--sidebar-active-color);
    font-family: var(--secondary-font);
    text-align: right;
    text-decoration: none;
    transition: color 0.2s ease;
}

.visitors-progress-bar a:hover {
    color: #1D4ED8;
}

.quick-top img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
}

.quick-top {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 10px;
}

.quick-top h3 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--text-black-color);
}

.quick-setup {
    background: #F8FAFC;
    padding: 2.4rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.quick-setup-list ol li {
    margin-left: 1.5rem;
    color: var(--dark-gray);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin-bottom: 0.8rem;
}

.quick-setup-list ol li a {
    color: var(--sidebar-active-border-color);
    text-decoration: underline !important;
}

.add-domain {
    max-width: 75rem;
    width: 100%;
    padding: 2.4rem;
    border: 1px solid #DFDFDF;
    border-radius: 1.6rem;
    background: var(--sidebar-bg);
}

.input {
    margin-bottom: 2rem;
}

.input input,
.input textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    padding: 1.6rem 2rem;
    color: var(--text-black-color);
    outline: none;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1.5rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.input input:focus,
.input textarea:focus {
    border-color: var(--sidebar-active-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.input label {
    font-size: 1.8rem;
    font-family: var(--secondary-font);
    line-height: 2.8rem;
    color: var(--text-black-color);
    margin-bottom: 1rem;
}

.input p {
    color: #606060;
    font-size: 1.4rem;
    line-height: 2rem;
    margin-top: 0.5rem !important;
}

.submit-btn {
    outline: none;
    border: none;
    padding: 1.2rem 2rem;
    background: var(--sidebar-active-color);
    color: var(--sidebar-bg);
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.domain-successfully-icons {
    width: 6rem;
    height: 6rem;
    background: var(--ethis-color);
    border-radius: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-successfully-icons img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.domain-successfully-contetn h2 {
    color: var(--text-black-color);
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 2.4rem;
}

.domain-successfully-contetn p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #5D5D5D;
    font-weight: 400;
    font-family: var(--secondary-font);
}

.domain-successfully {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.installation-script h2,
.script-status h2,
.email-notification h2 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: var(--text-black-color);
    margin-bottom: 1.5rem;
}

#script-management .installation-script h2,
#change-password .installation-script h2,
.script-status h2,
.email-notification h2 {
    font-size: 2rem;
}

.installation-script button {
    position: relative;
}

.tooltip {
    opacity: 0;
    background-color: var(--success-green);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 4px 8px;
    position: absolute;
    z-index: 1;
    transition: opacity 0.3s;
    font-size: 12px;
    white-space: nowrap;
    top: -34px;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--success-green) transparent transparent transparent;
}

.copy-btn.show-tooltip .tooltip {
    visibility: visible;
    opacity: 1;
}

.installation-script input,
.installation-script textarea {
    width: 100%;
    border: none;
    padding: 1.6rem 2rem;
    color: #525252;
    outline: none;
    border-radius: .8rem;
    background: #F9FAFB;
    margin-bottom: 2.4rem;
}

.copy-btn {
    outline: none;
    border: none;
    padding: 1.2rem 2rem;
    background: var(--sidebar-active-color);
    color: var(--sidebar-bg);
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    border-radius: 8px;
    font-family: var(--secondary-font);
    font-weight: 500;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.generate-btn {
    padding: 1.2rem 2rem;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    border-radius: .8rem;
    outline: none;
    background: transparent;
    border: 1px solid #929292;
    color: #3B3B3B;
    transition: .5s;
    font-family: var(--secondary-font);
    font-weight: 500;
}

.generate-btn:hover {
    background: var(--success-green);
    border-color: var(--success-green);
    color: var(--sidebar-bg);
    transition: .5s;
}

.generate-btn img {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1rem;
}

.installation-btn {
    margin-bottom: 2.4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.installation-script p {
    background: var(--sidebar-active-bg-color);
    color: #163B8D;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: .8rem 1.6rem !important;
    border-radius: .8rem;
}

.add-domain-successfully {
    max-width: 84rem;
    width: 100%;
    padding: 2.4rem;
    border: 1px solid #DFDFDF;
    border-radius: 1.6rem;
    background: var(--sidebar-bg);
}

.single-domain-overview .domain-successfully-icons {
    background: var(--sidebar-active-bg-color);
}


.left-overview>p {
    color: var(--success-green);
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.overview-visitors {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.single-overview-visitors h3 {
    color: #656565;
    font-size: 2rem;
    line-height: 3.2rem;
    font-weight: 400;
    font-family: var(--secondary-font);
    margin-bottom: .4rem;
}

.single-overview-visitors h4 {
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-family: var(--secondary-font);
    font-weight: 600;
    text-align: center;
}

.single-overview-visitors h4 span {
    color: #9435EB;
}

.last-visit-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
}

.last-visit-btn button {
    background: none;
    border: none;
    color: var(--text-black-color);
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
    outline: none;
}

.last-visit p {
    color: #515151;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 400;
    text-align: right;
    margin-top: 3.7rem !important;
}

.single-domain-overview {
    box-shadow: 0 0 5px #eee;
    padding: 3rem 2.4rem;
    background: var(--sidebar-bg);
    border-radius: 1rem;
    margin-bottom: 2.4rem;
}

.single-domain-overview:last-child {
    margin: 0;
}

#script-management .installation-script {
    border-bottom: 1px solid #F4F5F7;
    margin-bottom: 2rem;
}

.script-status {
    padding-bottom: 2.4rem;
    border-bottom: 1px solid #F4F5F7;
    margin-bottom: 2.4rem;
}

.script-status ul li {
    color: var(--success-green);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: var(--secondary-font);
    list-style: disc;
    margin-left: 1.5rem;
}

.script-status input {
    width: 100%;
    border: 1px solid #D0D0D0;
    padding: 1.6rem 2rem;
    color: var(--text-black-color);
    outline: none;
    border-radius: .8rem;
    margin-bottom: 2rem;
}

.script-status button {
    width: auto !important;
}

.notification-card {
    background: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: .8rem;
    padding: 2.4rem;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

/*.notification-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
  cursor: pointer;
}*/



.card-content h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: var(--text-black-color);
    margin-bottom: 1.4rem;
}

.card-content p {
    color: #6E6E6E;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--secondary-font);
}

.checkbox-wrapper {
    flex-shrink: 0;
    margin-left: 20px;
}

.custom-checkbox {
    display: none;
}

.checkbox-label {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    border-color: #9ca3af;
}

.custom-checkbox:checked+.checkbox-label {
    background-color: #2563eb;
    border-color: #2563eb;
}

.custom-checkbox:checked+.checkbox-label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
}

.email-notification>p {
    font-size: 1.4rem;
    font-weight: 400;
    color: #747474;
    margin-bottom: 2.4rem !important;
}

.ip-address textarea {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #B4B4B4;
    height: 20rem;
    color: #707070;
    outline: none;
    margin-bottom: 2rem;
}

.ip-address label {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    font-family: var(--secondary-font);
    margin-bottom: 1.5rem;
}

.current-exclusions {
    background: #FEEAEA;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.ip-address button {
    width: auto;
}

.current-exclusions h3,
.sync-status h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    font-family: var(--secondary-font);
    margin-bottom: 1.5rem;
}

.current-exclusions ul li,
.sync-status ul li {
    font-size: 1.4rem;
    color: #272727;
    line-height: 2rem;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-bottom: .5rem;
}

.current-exclusions ul li:last-child {
    margin: 0;
}

.input-label {
    font-size: 1.6rem;
    font-family: var(--secondary-font);
    line-height: 2.4rem;
    color: var(--text-black-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.input-field {
    width: 100%;
    border: 1px solid #cbd5e1;
    padding: 1.6rem 2rem;
    color: var(--text-black-color);
    outline: none;
    border-radius: 8px;
    font-size: 1.5rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.input-field:focus,
.form-select:focus {
    border-color: var(--sidebar-active-color) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.google-sheets-btn .copy-btn {
    background: var(--success-green);
}

.google-sheets-btn .copy-btn:hover {
    background: var(--sidebar-active-color);
}

.google-sheets-btn .generate-btn {
    color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.google-sheets-btn .generate-btn:hover {
    border-color: var(--success-green);
    color: var(--sidebar-bg);
}

.google-sheets-btn {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.form-select {
    outline: none;
    box-shadow: inherit;
}

.form-select:focus {
    border-color: inherit;
    outline: 0;
    box-shadow: inherit;
}

.data-sync {
    margin: 4rem 0 2rem 0;
}

.sync-status {
    padding: 2rem;
    background: var(--sidebar-active-bg-color);
    border-radius: 1rem;
}

.setting-tabs ul li button {
    padding: 1.5rem 2rem;
    color: #8E8E8E;
    border-bottom: 1px solid #F4F5F7;
    transition: .5s;
    font-weight: 500;
}

.setting-tabs ul li button:hover {
    color: var(--sidebar-active-color);
    background: var(--sidebar-active-bg-color);
    border-color: var(--sidebar-active-border-color);
    transition: .5s;
}

.setting-tabs ul li button.active {
    background: var(--sidebar-active-bg-color);
    border-color: var(--sidebar-active-border-color);
    color: var(--sidebar-active-color);
    transition: .5s;
}

.setting-tabs ul li button i {
    margin-right: 1.5rem;
}

#settingtab {
    margin-bottom: 2.4rem;
}

.table-header-content img {
    width: 3rem;
    height: 3rem;
}

.table-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.table-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.table-header-content h2 {
    font-size: 2rem;
    line-height: 3.2rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.finqer-table thead tr th {
    padding: 2rem;
    border: none;
    font-size: 1.6rem;
    color: var(--text-black-color);
    line-height: 2rem;
    font-family: var(--secondary-font);
    font-weight: 500;
}

.finqer-table thead tr th:hover {
    outline: none;
}

.finqer-table tbody tr td {
    padding: 2rem;
    border: none;
    font-size: 1.6rem;
    color: var(--text-black-color);
    line-height: 2rem;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.table-striped>tbody>tr:nth-of-type(2n+1)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: #E9F9EF !important;
}

.finqer-table_wrapper .finqer-table_info {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: var(--text-black-color);
}

.finqer-table_wrapper .dt-paging-button {
    outline: none;
    border: none;
    padding: 0.9rem 1.6rem;
    background: var(--sidebar-active-border-color);
    color: var(--sidebar-bg) !important;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6rem;
    border-radius: .4rem;
    transition: .5s;
}

.finqer-table_wrapper .dt-paging-button:hover {
    background: var(--success-green) !important;
    transition: .5s;
}

.dt-paging-button.current {
    background: var(--success-green) !important;
}

.dt-paging-button.disabled.first,
.dt-paging-button.last {
    display: none !important;
}


.finqer-table_wrapper nav {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.dt-search input {
    border: 1px solid #D0D0D0;
    padding: 1.6rem 2rem;
    color: var(--text-black-color);
    outline: none;
    border-radius: .8rem;
    font-size: 1.6rem;
}

.table-header-right button img {
    width: 2.2rem;
}

.table-header-right button {
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: .8rem;
    /* width: 200px; */
    width: auto;
    margin-left: 10px;
}


.setting-tabs {
    background: var(--sidebar-bg);
    padding: 3rem;
    border-radius: 1.6rem;
}

.finqer-table tbody tr td h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-black-color);
    font-family: var(--secondary-font);
    line-height: 2.4rem;
}

.finqer-table tbody tr td p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--success-green);
    font-family: var(--secondary-font);
    line-height: 2.4rem;
}


.finqer-table tbody tr td a {
    color: var(--sidebar-active-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 500;
    font-family: var(--secondary-font);
    transition: .5s;
}

/* .finqer-table tbody tr td a i{
    margin-right: 0.7rem;
} */

.finqer-table tbody tr td a:hover {
    color: var(--success-green);
    transition: .5s;
}

/* 
.finqer-table tbody tr td span{
    color: var(--sidebar-active-color);
} */

.input label span {
    color: red;
}

/* new custom css  */
.login-box {
    background: var(--sidebar-bg);
    margin: auto;
    max-width: 50rem;
    box-sizing: border-box;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo img {
    height: 50px;
    width: auto;
}

.login-box h1 {
    margin-bottom: 20px;
    color: #111827;
}

.login-with-google {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 25px;
}

.google-btn {
    background: #4285F4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: .8rem;
    font-size: 1.6rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.google-btn:hover {
    background: #357ae8;
}

.google-icon {
    background: white;
    border-radius: 2px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.google-icon img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.Login-page-area {
    margin: 100px 0;
}

.signup-page-area {
    margin: 50px 0;
}

.forget-btn {
    text-align: center;
    margin: 10px;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 10px;
}

.login__btn {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #D0D0D0;
    padding-top: 10px;
}

.forget-btn a,
.signup-btn a,
.login__btn a {
    color: var(--sidebar-active-color);
    text-decoration: none;
    font-size: 1.6rem;
}

.signup-btn {
    text-align: center;
}

.btn-danger,
.modal-title {
    font-size: 16px;
}



/* === Product Stock Popup === */
.stock-pop.finqer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    display: none;
}

.stock-pop.finqer-popup-overlay.active {
    display: flex;
    z-index: 9999;
}

.stock-pop .finqer-product {
    background: #fff;
    max-width: 550px;
    padding: 24px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* opacity: 0; */
    width: 100%;
    height: 100%;
}

.stock-pop .finqer-stock-alert::after {
    position: absolute;
    bottom: 15px;
    content: "";
    width: 110%;
    height: 2px;
    background: #C3C3C3;
    left: -25px;
}

.stock-pop .finqer-stock-alert {
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.stock-pop .finqer-product-popup-header h2 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    width: 90%;
}

.stock-pop .finqer-stock-body .finqer-product-image {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 15px;
}

.stock-pop .finqer-product-image img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    object-position: center top;
}

.stock-pop .discount {
    position: absolute;
    left: 8px;
    top: 8px;
    background: #22C55E;
    padding: 5px 12px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
}

.stock-pop .finqer-stock-body .discount {
    right: 8px;
    left: inherit;
    background: #FF2424;
}

.stock-pop .finqer-stock-lavel {
    margin-bottom: 10px;
}

.stock-pop .finqer-stock-header {
    font-size: 16px;
    color: #7C7C7C;
    line-height: 24px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.stock-pop .finqer-progress-bar {
    width: 100%;
    height: 18px;
    background: #D9D9D9;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.stock-pop .finqer-progress-fill {
    height: 100%;
    background: #e52421;
    border-radius: 30px;
    transition: width 0.6s ease;
    width: 80%;
}

.stock-pop .finqer-stock-body .finqer-product-info {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-top: 10px;
}

.stock-pop .finqer-product-price h3 {
    font-size: 36px;
    line-height: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.stock-pop .finqer-product-price span del {
    color: #8B8B8B;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.stock-pop .stock-shipping-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.stock-pop .stock-shipping-btn>span {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

.stock-pop .secure-btn {
    background: #E9EFFD;
    color: #2563EB;
}

.stock-pop .stock-shipping-btn>span img {
    width: 16px;
    height: 20px;
    object-fit: contain;
    margin-right: 15px;
}

.stock-pop .free-ship-btn {
    background: #E9F9EF;
    color: #22C55E;
}

.stock-pop .quality-btn {
    background: #F4EBFD;
    color: #9435EB;
}

.stock-pop .finqer-product-checkout-btn {
    padding: 20px;
    background: #2563EB;
    width: 100%;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.stock-pop .finqer-product-browsing-btn {
    padding: 20px;
    background: #E9EFFD;
    width: 100%;
    color: #272727;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.stock-pop .finqer-stock-footer-bottom {
    margin-bottom: 30px;
}

.stock-pop .finqer-stock-footer-bottom p {
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.stock-pop .finqer-stock-footer-bottom p::after {
    position: absolute;
    content: "";
    left: 0;
    top: 14px;
    background: #8C8C8C;
    width: 47%;
    height: 1px;
}

.stock-pop .finqer-stock-footer-bottom p::before {
    position: absolute;
    content: "";
    right: 0;
    top: 14px;
    background: #8C8C8C;
    width: 47%;
    height: 1px;
}

.stock-pop .finqer-product-footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.stock-pop .finqer-product-footer-contact button {
    background: #9435EB;
    padding: 20px;
    color: #fff;
    border: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.stock-pop .finqer-product-footer-contact button {
    background: #9435EB;
    padding: 20px;
    color: #fff;
    border: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.stock-pop .finqer-stock-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 16px;
    color: #666;
}

.stock-pop .finqer-product-free-shipping-btn {
    padding: 5px 12px;
    background: #9435EB;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}

.stock-pop .finqer-stock-body .finqer-product-info .finqer-product-free-shipping-btn {
    background: #E9F9EF !important;
    color: #1FB155;
}

.stock-pop .finqer-close-btn {
    position: absolute;
    right: 25px;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: normal;
}

.stock-pop .finqer-banner-stock-btn {
    padding: 20px 40px;
    background: #FF2424;
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    position: absolute;
    right: 50px;
    bottom: 50px;
}

.stock-pop .finqer-banner-stock-btn img {
    width: 20px;
    height: 12px;
    margin-right: 15px;
}

.stock-pop .premium-lavel p {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.stock-pop .premium-lavel p span {
    color: #22C55E;
}

.stock-pop .premium-lavel h2 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.stock-pop .finqer-stock-popup {
    position: absolute;
    right: 0;
    top: 0;
}


@media (max-width: 767px) {

    .stock-pop .finqer-product {
        padding: 15px 24px;
        width: 90%;
        height: 100%;
        margin: auto;
    }

    .stock-pop .finqer-stock-popup {
        left: 0;
    }

}

@media (max-width: 575px) {
    .stock-pop .finqer-stock-popup {
        position: absolute;
        right: 0;
        top: 0;
        left: 0;
    }

    .stock-pop .finqer-product {
        width: 85%;
        height: 100%;
        margin: auto;
    }

    .stock-pop .finqer-product-popup-header h2 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .stock-pop .premium-lavel h2 {
        font-size: 20px;
        line-height: 32px;
    }

    .stock-pop .finqer-product-price h3 {
        font-size: 28px;
        line-height: 40px;
        font-weight: 500;
        color: #000;
        margin-bottom: 10px;
    }

    .stock-pop .finqer-stock-body .finqer-product-info,
    .stock-pop .stock-shipping-btn {
        flex-wrap: wrap;
    }

    .stock-pop .finqer-product-price h3 {
        margin-bottom: 10px;
    }

    .stock-pop .finqer-stock-body .finqer-product-info {
        margin-bottom: 10px;
    }

    .stock-pop .stock-shipping-btn button {
        padding: 12px;
    }

    .stock-pop .finqer-product-checkout-btn,
    .stock-pop .finqer-product-browsing-btn,
    .stock-pop .finqer-product-footer-contact button,
    .stock-pop .finqer-banner-stock-btn {
        padding: 15px;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .stock-pop .finqer-product-footer-contact {
        gap: 15px;
        flex-wrap: wrap;
    }

    .stock-pop .stock-shipping-btn {
        display: none;
    }

    .stock-pop .finqer-stock-body .finqer-product-image {
        height: 250px;
    }

}


@media (max-width: 450px) {
    .stock-pop .finqer-stock-alert::after {
        width: 116%;
        left: -24px;
    }

    .stock-pop .finqer-product-price h3 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 0;
    }

}

/* === End Product Stock Popup === */


/* === Product Exclusive Popup === */

.exclusive-pop .free-shipping-popup {
    padding: 20px 40px;
    background: #9435EB;
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    position: absolute;
    bottom: 50px;
    left: 50px;
}

.exclusive-pop .free-shipping-popup img {
    width: 20px;
    height: 12px;
    margin-right: 15px;
}

.exclusive-pop #e-commerce-finqer-stock {
    background: #FF2424;
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    line-height: 28px;
}

.exclusive-pop.finqer-product-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exclusive-pop .finqer-product-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exclusive-pop .finqer-product {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    padding: 24px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    position: absolute;
    left: 50px;
    bottom: 50px;
}

.exclusive-pop.finqer-popup-overlay.active {
    display: block;
}

.exclusive-pop .finqer-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    transition: color 0.3s ease;
    position: absolute;
    right: 20px;
    top: 20px;
}

.exclusive-pop .finqer-close-btn:hover {
    color: #000;
    background: transparent;
}

.exclusive-pop .finqer-product-content {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.exclusive-pop .finqer-product-btn {
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.exclusive-pop .finqer-product-btn.primary {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
}

.exclusive-pop .finqer-product-btn.primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.exclusive-pop .finqer-product-btn.secondary {
    background: transparent;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
}

.exclusive-pop .finqer-product-btn.secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.exclusive-pop .features {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
}

.exclusive-pop .feature {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    flex: 1;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.exclusive-pop .feature:hover {
    transform: translateY(-5px);
}

.exclusive-pop .feature i {
    font-size: 2.5rem;
    color: #6a11cb;
    margin-bottom: 10px;
}

.exclusive-pop .feature h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.exclusive-pop .finqer-product-popup-header h2 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    width: 95%;
}

.exclusive-pop .finqer-product-popup-header p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
    width: 90%;
}

.exclusive-pop .finqer-product-popup-header p span {
    color: #9435EB;
}

.exclusive-pop .finqer-product-popup-header p span:last-child {
    color: #22C55E;
}

.exclusive-pop .free-shipping {
    color: #9435EB;
}

.exclusive-pop .sucess {
    color: #22C55E;
}

.exclusive-pop .finqer-product-popup-header {
    margin-bottom: 20px;
}

.exclusive-pop .finqer-product-body {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 40px;
}

.exclusive-pop .finqer-product-image {
    width: 35%;
    height: auto;
    position: relative;
}

.exclusive-pop .finqer-product-info {
    width: 65%;
}

.exclusive-pop .finqer-product-image img {
    border-radius: 10px;
    max-height: 200px;
    max-width: 200px;
    object-fit: contain;
}

.exclusive-pop .finqer-product-price h3 {
    font-size: 36px;
    line-height: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.exclusive-pop .finqer-product-price span del {
    color: #8B8B8B;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.exclusive-pop .finqer-product-free-shipping button {
    margin-bottom: 20px;
}

.exclusive-pop .finqer-product-free-shipping-btn {
    padding: 5px 12px;
    background: #9435EB;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
}

.exclusive-pop .finqer-product-free-shipping p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.exclusive-pop .finqer-product-checkout-btn {
    padding: 20px;
    background: #2563EB;
    width: 100%;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.exclusive-pop .finqer-product-checkout-btn:hover,
.exclusive-pop .finqer-product-browsing-btn:hover {
    background: #9435EB;
    color: #FFF;
}

.exclusive-pop .finqer-product-browsing-btn {
    padding: 20px;
    background: #E9EFFD;
    width: 100%;
    color: #272727;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.exclusive-pop .finqer-qty-btn {
    width: 30px;
    height: 30px;
    color: #0D3250;
    border: 1px solid #0D3250;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
}

.exclusive-pop .finqer-qty-input {
    background: #E7EBEE;
    width: 38px;
    height: 30px;
    text-align: center;
    border: none;
    outline: none;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
}

.exclusive-pop .finqer-quantity-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.exclusive-pop .finqer-shipping-time p {
    color: #F87171;
    font-size: 16px;
    line-height: 24px;
}

.exclusive-pop .discount {
    position: absolute;
    left: 8px;
    top: 8px;
    background: #22C55E;
    padding: 5px 12px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
}

.exclusive-pop .finqer-quantity-controls-area {
    display: flex;
    align-items: center;
    gap: 40px;
}

.exclusive-pop .finqer-shipping-time p i {
    margin-right: 7px;
}

.exclusive-pop .finqer-product-free-shipping {
    margin-bottom: 25px;
}

.exclusive-pop .footer-bottom {
    margin-top: 30px;
    padding-top: 12px;
    border-top: 1px solid #D2D2D2;
}

.exclusive-pop .footer-bottom a {
    color: #7C7C7C;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}


.exclusive-pop.finqer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    display: none;
}

.exclusive-pop .finqer-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    transition: color 0.3s ease;
    position: absolute;
    right: 20px;
    top: 20px;
}

.exclusive-pop .finqer-close-btn:hover {
    color: #000;
    background: transparent;
}

@media (max-width: 575px) {
    .exclusive-pop .finqer-product {
        width: 85%;
        padding: 15px;
        left: 0;
        bottom: 20px;
        right: 0;
        margin: auto;
    }

    .exclusive-pop .finqer-product-popup-header h2 {
        font-size: 20px;
        line-height: 32px;
    }

    .exclusive-pop .finqer-product-price h3 {
        font-size: 28px;
        line-height: 40px;
        font-weight: 500;
        color: #000;
        margin-bottom: 10px;
    }

    .exclusive-pop .finqer-product-checkout-btn,
    .exclusive-pop .finqer-product-browsing-btn,
    .exclusive-pop .free-shipping-popup {
        padding: 10px;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .exclusive-pop .footer-bottom {
        margin-top: 5px;
        padding-top: 5px;
    }

    .exclusive-pop .footer-bottom a {
        font-size: 12px;
    }

}

/* === End Product Exclusive Popup === */
/* === General Popup === */
.general-pop.finqer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.general-pop.finqer-overlay.active {
    display: flex;
}

.general-pop .finqer-general-popup {
    background: #fff;
    max-width: 400px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    width: 95%;
}

.general-pop .finqer-general-popup h2 {
    font-size: 22px;
    line-height: 34px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: #000;
}

.general-pop .finqer-close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

.general-pop .finqer-playbook-image {
    width: 80px;
    height: 80px;
    background: #9435EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 100px;
    margin-bottom: 40px;
}

.general-pop .finqer-playbook-image img {
    width: 30px;
    height: auto;
}

.general-pop .finqer-playbook p {
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #000;
    margin: 0;
    margin-bottom: 10px !important;
}

.general-pop .finqer-playbook p span {
    color: #22C55E;
}

.general-pop .finqer-popup-bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.general-pop .finqer-popup-bottom button,
.general-pop .finqer-popup-bottom a {
    background: #2563EB;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* .general-pop .finqer-popup-bottom a:last-child{
    background: #DEE8FC;
    color: #383838;
}  */
.general-pop .finqer-popup-bottom button:hover,
.finqer-popup-bottom a:hover {
    background: #9435eb;
    color: #FFF;
    transform: translateY(-2px);
}

.general-pop .browsing {
    background: #DEE8FC !important;
    color: #383838 !important;
}

.general-pop .finqer-side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #9435EB;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    color: #fff;
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    width: fit-content;
    margin: auto;
}

.general-pop .finqer-playbook {
    padding: 30px;
}

.general-pop .finqer-playbook:target {
    display: block;
}

.finqer-countdown {
    font-size: 30px;
    line-height: 35px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    color: #000;
}

.finqer-discount-code {
    margin-top: 15px;
}

.finqer-discount-code p {
    border: 2px dotted #BF3322;
    padding: 9px 20px !important;
    display: block;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 5px;
    color: #BF3322;
}

@media (max-width: 575px) {
    .general-pop .finqer-popup-bottom {
        gap: 15px;
        flex-direction: column;
    }
}

/* === End General Popup === */

/* === Start Lead form Popup === */
.lead-pop.finqer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    display: none;
}

.lead-pop.finqer-popup-overlay.active {
    display: flex;
}

.lead-pop #finqer-overlay {
    max-width: 550px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 90%;
    overflow-y: auto;
}

.lead-pop .finqer-popup h2 {
    font-size: 24px;
    line-height: 38px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #000;
    max-width: 385px;
    text-align: center;
    margin: auto;
    margin-bottom: 12px;
    width: 100%;
}

.lead-pop .finqer-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    transition: color 0.3s ease;
    position: absolute;
    right: 20px;
    top: 20px;
}

.lead-pop .finqer-close-btn:hover {
    color: #000;
    background: transparent;
}

.lead-pop #finqer-overlay .finqer-playbook-image {
    width: 70px;
    height: 70px;
    background: #DEE8FC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 100px;
    margin-bottom: 30px;
}

.lead-pop .finqer-playbook-image img {
    width: 30px;
    height: auto;
}

.lead-pop .finqer-playbook p {
    font-size: 20px;
    line-height: 32px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #000;
    margin-bottom: 40px !important;
}

.lead-pop .finqer-playbook p span {
    color: #22C55E;
}

.lead-pop .finqer-popup-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lead-pop .finqer-popup-bottom button {
    background: #2563EB;
    padding: 12px 24px;
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    color: #fff;
}

.lead-pop .finqer-input {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.lead-pop .finqer-input input {
    width: 100%;
    padding: 20px 20px 20px 50px;
    box-sizing: border-box;
    border: 1px solid #C2C2C2;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #696969;
}

.lead-pop .finqer-input img {
    position: absolute;
    width: 20px;
    left: 20px;
    top: 65px;
}

.lead-pop .finqer-input-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.lead-pop .finqer-popup-bottom a button {
    background: #DEE8FC;
    color: #383838;
}

.lead-pop .browsing {
    background: #DEE8FC !important;
    color: #383838 !important;
}

.lead-pop .finqer-b2b-popup-area {
    height: 100vh;
    position: relative;
}

.lead-pop .finqer-popup-header {
    background: #EFF5FF;
    padding: 30px;
    border-radius: 16px 16px 0 0;
}

.lead-pop .finqer-popup-header p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    max-width: 385px;
    width: 100%;
    text-align: center;
    margin: auto !important;
}

.lead-pop .finqer-playbook {
    background: #FFFFFF;
    padding: 30px 45px;
    border-radius: 0 0 16px 16px;
    overflow-y: auto;
}

.lead-pop .finqer-input textarea {
    width: 100%;
    padding: 20px 20px 20px 50px;
    box-sizing: border-box;
    border: 1px solid #C2C2C2;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #696969;
    height: 180px;
}

.lead-pop .finqer-input.textareas img {
    position: absolute;
    width: 20px;
    left: 20px;
    top: 25px;
}

.lead-pop .finqer-input label {
    text-align: left;
    display: block;
    color: #1D1D1D;
    font-size: 18px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    margin-bottom: 15px;
}

.lead-pop .finqer-input label span {
    color: #F87171;
}

.finqer-form .iti {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
}

.lead-pop .number-required p {
    text-align: left !important;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin: 0 !important;
    margin-bottom: 12px !important;
}

.lead-pop .number-required p span {
    color: #3A3A3A;
    font-weight: 500;
}

.lead-pop .finqer-form-bottom {
    text-align: left;
}

.lead-pop .finqer-form-bottom p {
    margin-bottom: 16px !important;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #242424;
}

.lead-pop .finqer-form-button {
    margin-bottom: 40px;
}

.lead-pop .finqer-form-button button {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    border: none;
    background: #B1B1B1;
    border-radius: 10px;
    color: #252525;
    cursor: pointer;
    transition: .5s;
}

.lead-pop .finqer-form-button button:hover {
    background: #2563EB;
    transition: .5s;
    color: #fff !important;
}

.lead-pop .finqer-form-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lead-pop .finqer-form-submitting-btn button {
    padding: 20px;
    width: 100%;
    border: none;
    background: #2563EB;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 24px;
}

.lead-pop .finqer-thanks {
    background: #E9EFFD !important;
    color: #272727 !important;
}

.lead-pop .finqer-form-submitting-btn p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #737373;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.lead-pop .finqer-popup #close-finqer-btn {
    position: absolute;
    right: 0;
    background: none;
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

.lead-pop .finqer-form-btn {
    position: absolute;
    padding: 20px 40px;
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    background: #22C55E;
    color: #FFF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: fit-content;
}

@media (max-width: 767px) {
    .lead-pop #finqer-overlay {
        width: 95%;
    }
}

@media (max-width: 575px) {

    .lead-pop .finqer-popup h2 {
        font-size: 20px;
        line-height: 32px;
    }

    .lead-pop .finqer-playbook {
        padding: 20px 30px;
    }

    .lead-pop .finqer-input label {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .lead-pop .finqer-input input {
        padding: 15px 15px 15px 50px;
    }

    .lead-pop .finqer-input.finqer-industry input {
        padding: 15px !important;
    }

    .lead-pop .finqer-input img {
        top: 54px;
    }

    .lead-pop .finqer-form-button {
        flex-wrap: wrap;
    }
}

/* === End Lead form Popup === */

/* === Start Standard Popup === */
#standard-product-popup {
    display: none;
}

#standard-product-popup.active {
    display: block;
}

.standard-pop .finqer-product {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    padding: 15px;
    position: relative;
    -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    position: relative;
}

.standard-pop .finqer-product-info h2 {
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    color: #38472A;
    margin: 0;
    margin-bottom: 6px;
    margin-top: 10px;
}

.standard-pop .finqer-product-info p {
    font-size: 16px;
    line-height: normal;
    color: #000;
    font-weight: 400;
    margin: 0;
    margin-bottom: 6px;
}

.standard-pop .finqer-product-info p span {
    color: #9435EB;
}

.standard-pop .finqer-product-info p span:last-child {
    color: #22C55E;
}

.standard-pop .finqer-product-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.standard-pop .finqer-product-image {
    width: 50%;
    height: auto;
    position: relative;
    padding-left: 20px;
}

.standard-pop .finqer-product-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.standard-pop .finqer-product-image img {
    border-radius: 7px;
    /* max-height: 200px; */
    /* max-width: 200px; */
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 420px;
}

.standard-pop .finqer-product-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.standard-pop .finqer-product-price h3 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #38472A;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.standard-pop .finqer-product-price del {
    color: #38472A;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    -webkit-text-decoration-color: red;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    padding-left: 10px;
}

.standard-pop .finqer-product-checkout-btn {
    padding: 15px;
    background: #38472A;
    width: 100%;
    color: #fff;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.standard-pop .finqer-product-checkout-btn img {
    margin-right: 10px;
    width: auto;
}

.standard-pop .finqer-product-checkout-btn:hover {
    background: #9435EB;
    color: #FFF;
}

.standard-pop .finqer-copy-btn {
    background: transparent;
    width: 100%;
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.standard-pop .finqer-copy-btn>span {
    background-color: #D9EBE2;
    padding: 10px 15px;
    margin-left: 15px;
    border-radius: 2px;
    color: #38472A;
}

.standard-pop .finqer-copy-btn span img {
    margin-right: 6px;
    width: auto;
}

.standard-pop .discount {
    /* background: #F03232; */
    /* padding: 4px 15px; */
    font-size: 14px;
    line-height: 24px;
    color: #008500;
    border: none;
    border-radius: 50px;
    /* margin-left: 15px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    margin: 10px 0;
}

.standard-pop .discount img {
    margin-right: 5px;
    width: auto;
    height: 15px;
}

.standard-pop .finqer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.standard-pop .finqer-close-btn {
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 999;
    background: #FFF;
    border-radius: 2px;
    line-height: 20px;
    padding: 5px 6px 3px 6px;
}

.standard-pop .finqer-close-btn:hover {
    color: #FFFFFF;
    background: #F03232;
}

.finqer-product-info p.sptitle,
.finqer-product-info p.ptitle {
    color: #F36A15;
    background: #FFEEE0;
    padding: 3px 6px !important;
    display: inline-block;
    margin: 0;
    border-radius: 2px;
    font-weight: 600;
    align-self: start;
}


/* new standard css  */
.fq-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
    width: 100%;
}

.fq-buttons p {
    border: 2px dotted #BF3322;
    padding: 9px 20px !important;
    display: block;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 5px;
    color: #BF3322 !important;
}

.fq-buttons a {
    background: #2563EB;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

@media (max-width: 767px) {
    .standard-pop .finqer-product {
        max-width: 300px;
        width: 100%;
        padding: 10px;
    }

    .standard-pop .finqer-product-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .standard-pop .finqer-product-info {
        width: 100%;
    }

    .standard-pop .finqer-product-image {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
    }

    .standard-pop .finqer-product-image img {
        height: 200px;
    }

    .standard-pop .finqer-product-price {
        margin: 10px 0;
    }

    .standard-pop .finqer-product-price del {
        font-size: 15px;
    }

    .standard-pop .finqer-product-price h3 {
        font-size: 24px;
        line-height: normal;
    }

    .standard-pop .discount {
        font-size: 12px;
    }
}

/* === End Standard Popup === */

/* === Animation === */
@keyframes finqerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Modern Alerts === */
.alert {
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-weight: 500 !important;
    border-width: 1px !important;
    border-style: solid !important;
    margin-bottom: 20px !important;
}

.alert-danger {
    background-color: #FEF2F2 !important;
    color: #991B1B !important;
    border-color: #FCA5A5 !important;
}

.alert-success {
    background-color: #ECFDF5 !important;
    color: #065F46 !important;
    border-color: #6EE7B7 !important;
}

.alert-warning {
    background-color: #FFFDEB !important;
    color: #92400E !important;
    border-color: #FCD34D !important;
}

/* === Modern Badges === */
.badge {
    vertical-align: middle !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
    letter-spacing: .3px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
}

.badge-success,
.badge.badge-success,
.bg-success {
    background-color: #10B981 !important;
    color: #ffffff !important;
}

.badge-danger,
.badge.badge-danger,
.bg-danger {
    background-color: #EF4444 !important;
    color: #ffffff !important;
}

.badge-warning,
.badge.badge-warning,
.bg-warning {
    background-color: #F59E0B !important;
    color: #ffffff !important;
}

/* === Modern Buttons === */
.btn {
    font-weight: 500;
    line-height: 24px;
    padding: .6rem 1.2rem;
    letter-spacing: .5px;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #2563EB !important;
    border-color: #2563EB !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #1D4ED8 !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3) !important;
}

.btn-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: white !important;
}

.btn-success:hover {
    background-color: #059669 !important;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3) !important;
}

.btn-danger {
    background-color: #EF4444 !important;
    border-color: #EF4444 !important;
    color: white !important;
}

.btn-danger:hover {
    background-color: #DC2626 !important;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3) !important;
}

.btn-warning {
    background-color: #F59E0B !important;
    border-color: #F59E0B !important;
    color: white !important;
}

.btn-warning:hover {
    background-color: #D97706 !important;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3) !important;
}

.text-danger {
    color: #EF4444 !important;
}

.text-success {
    color: #10B981 !important;
}

/* Company Details  */

/* Pagination css  */
.dataTables_paginate {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dataTables_paginate .paginate_button {
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: .4rem;
    margin: 0 0.3rem;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--sidebar-active-color);
    background: var(--sidebar-active-bg-color);
    border-color: var(--sidebar-active-border-color);
}

.dataTables_paginate .paginate_button.current {
    background: var(--success-green);
    color: var(--sidebar-bg);
    border-color: var(--success-green);
}

.dataTables_filter {
    float: right;
    margin-bottom: 15px;
}

.dataTables_filter input {
    margin-left: 10px;
    border: 1px solid #DEDEDE;
    border-radius: 6px;
    padding: 10px 15px;
}

.dataTables_length {
    float: left;
    margin-bottom: 15px;
}

.dataTables_length select {
    border: 1px solid #DEDEDE;
    border-radius: 6px;
    padding: 10px 15px;
    background: #FFF;
}

.dataTables_processing {
    text-align: center;
}

.dataTables_empty {
    color: red !important;
}

/*Visitors Listing Css*/

.company-header-image {
    width: 100px;
    height: 100px;
    background: #F4EBFD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-header-image img {
    width: 80px;
    height: auto;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.visitors-form .input-form label {
    max-width: 200px;
    font-size: 1.8rem;
    font-family: var(--secondary-font);
    line-height: 2.8rem;
    color: var(--text-black-color);
    margin-bottom: 1rem;
    width: 100%;
}

.visitors-form .input-form input,
.visitors-form .input-form textarea {
    border: 1px solid #cbd5e1;
    padding: 1rem 1.6rem;
    color: var(--text-black-color);
    outline: none;
    border-radius: 8px;
    width: 100%;
    background: #F8FAFC;
    transition: all 0.2s ease;
}

.visitors-form .input-form input:focus,
.visitors-form .input-form textarea:focus {
    border-color: var(--sidebar-active-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: #ffffff;
}

.visitors-form .input-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    margin-bottom: 16px;
}

.website {
    width: 100%;
}

.website input {
    width: 50%;
}

.website {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.website a {
    font-size: 14px;
    color: var(--sidebar-active-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.website a:hover {
    color: #1D4ED8;
}

.sites-visitors {
    display: flex;
    gap: 30px;
}

.visitors-form {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--premium-shadow);
}

.website-url {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--sidebar-active-bg-color);
}

.sites-visitors-form-area {
    width: 40%;
}

.visitors-list {
    padding: 40px 30px 30px 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    height: 100vh;
    overflow-y: scroll;
    width: 60%;
    background: #ffffff;
    box-shadow: var(--premium-shadow);
}

.comment-item h2 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--text-black-color);
    font-family: var(--primary-font);
    font-weight: 600;
}

.comment-item p {
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--dark-gray);
    font-weight: 400;
    margin-top: 4px;
}

.comment-replay-item h3,
.comment-replay-item h4 {
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--text-black-color);
    font-family: var(--primary-font);
    font-weight: 500;
}

.comment-replay-item h4 span {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--sidebar-active-color);
}

.comment-replay-item p {
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--dark-gray);
    font-weight: 400;
}

.visitors-listing {
    padding-left: 50px;
    border-left: 3px solid #cbd5e1;
    position: relative;
    margin-bottom: 60px;
}

.visitors-listing:last-child {
    margin-bottom: 0;
}

.visitors-listing::before {
    position: absolute;
    content: "\f57d";
    left: -15px;
    top: -39px;
    font-family: FontAwesome;
    font-weight: 900;
    font-size: 24px;
    color: var(--dark-gray);
}

.visitors-listing::after {
    position: absolute;
    content: "";
    left: -9px;
    top: -3px;
    font-family: FontAwesome;
    font-weight: 900;
    font-size: 24px;
    color: var(--sidebar-color);
    background: url('../images/arrow-up-regular-full.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.comment-replay-item {
    padding-left: 50px;
    position: relative;
    margin-top: 10px;
}

.comment-replay-item::after {
    position: absolute;
    content: "";
    left: -50px;
    top: 0px;
    width: 50px;
    height: 3px;
    background: #cbd5e1;
}

.comment-replay-item::before {
    position: absolute;
    content: "";
    top: 0;
    width: 3px;
    height: 100%;
    background: #cbd5e1;
    left: 0;
}

.comments-replay-write {
    position: relative;
    border-top: 1px solid var(--sidebar-active-bg-color);
    padding-top: 10px;
    margin-top: 15px;
}

/*.comments-replay-write::before {
    position: absolute;
    content: "\f15c";
    left: -65px;
    top: 20px;
    font-weight: 900;
    font-family: FontAwesome;
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: var(--dark-gray);
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.link-visitor {
    margin-bottom: 15px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.link-visitor h3 i {
    margin-right: 5px;
}

.comment-item i {
    margin-right: 5px;
}

.link-visitor::before {
    position: absolute;
    content: "\f15c";
    left: -65px;
    top: 0px;
    font-weight: 900;
    font-family: FontAwesome;
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: var(--sidebar-active-color);
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

input:read-only {
    background-color: #e9ecef;
    color: #495057;
    cursor: not-allowed;
    border-color: #ced4da;
}

input:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    border-color: #ddd;
    opacity: 0.7;
}

/* Company Details  */
.popup_preview {
    padding: 2.4rem;
    border: 1px solid #DFDFDF;
    border-radius: 1.6rem;
    background: var(--sidebar-bg);
}

/* popup preview  */
.popup_preview_box {
    margin-top: 30px;
}

#previewPopup .finqer-playbook {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
}

#previewPopup2 {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    margin-top: 30px;
    max-width: 550px;
}

#previewPopup3 .finqer-product {
    background: white;
    border-radius: 16px;
    max-width: 550px;
    padding: 24px;
    position: inherit;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-top: 30px;
}

#previewPopup4 .finqer-stock-popup {
    position: inherit;
    border-radius: 16px;
    margin-top: 30px;
}

#previewPopup4 .stock-pop {
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#previewPopup4 .finqer-product {
    position: inherit;
    border-radius: 16px;
}

.popup_preview {
    position: relative;
    top: 0;
    transition: top 0.3s ease;
}

.popup_preview.is-sticky {
    position: fixed;
    top: 20px;
}

.popup_label {
    padding: 10px 20px !important;
    border: none;
    font-size: 16px;
    line-height: 24px;
    background: #F4EBFD;
    color: #9435EB;
    display: block;
    margin-bottom: 15px !important;
    margin-top: 30px !important;
}

.color_area {
    width: 100%;
    border: 1px solid #2563EB;
    padding: 1.6rem 2rem;
    outline: none;
    border-radius: .8rem;
    box-sizing: border-box;
    background: #e9effd;
}

.lead-details p {
    padding: 5px 0 !important;
}

.lead-details p b {
    font-weight: 500;
}

.cb-wrap.sticky-controls {
    margin-left: 10px;
}


.fq-select .select2-container {
    min-width: 250px !important;
    margin-left: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
}

.fq-select .select2-container .select2-selection--single {
    height: auto !important;
}

.fq-select .select2-container--default .select2-selection--single {
    border: 1px solid #D0D0D0;
    padding: 1.2rem 2rem;
    color: var(--text-black-color);
    outline: none;
    border-radius: .8rem;
    font-size: 1.6rem;
}

.fq-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 15px;
    right: 10px;
}

.fq-select .select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
}


.finqer-popup-bottom {
    /* margin: 300px !important; */
    background: red !important;
}

/* Professional Modal Styles */
.fq-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fq-modal-body {
    text-align: center;
    padding: 1.5rem !important;
}

.fq-modal-icon {
    width: 60px;
    height: 60px;
    background: #ffebeb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.fq-modal-icon i {
    font-size: 30px;
    color: #dc3545;
}

.fq-modal-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.fq-modal-text {
    color: #6c757d;
    /* text-muted */
    margin-bottom: 1.5rem !important;
}

.fq-modal-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.fq-modal-btn-cancel {
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 24px;
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.fq-modal-btn-cancel:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.fq-modal-btn-delete {
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 24px;
    background-color: #dc3545;
    color: #fff;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(220, 53, 69, 0.2), 0 2px 4px -1px rgba(220, 53, 69, 0.1);
}

.fq-modal-btn-delete:hover {
    background-color: #b91c1c;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(220, 53, 69, 0.3), 0 4px 6px -2px rgba(220, 53, 69, 0.15);
    transform: translateY(-1px);
}

.table-header-right .submit-btn {
    width: auto;
    margin-left: 10px;
}

.table-header-right.dashboard-tpl-header-actions {
    display: flex;
    align-items: center;
}

#btnTemplateLibrary {
    background: var(--text-black-color) !important;
}


.media-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.media-dashboard-header .content-top {
    margin-bottom: 0;
}

.media-card {
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background: #fff;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.media-img-wrapper {
    height: 180px;
    background-color: #f3f4f6;
    background-image: linear-gradient(45deg, #e5e7eb 25%, transparent 25%),
        linear-gradient(-45deg, #e5e7eb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e5e7eb 75%),
        linear-gradient(-45deg, transparent 75%, #e5e7eb 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.media-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.media-card:hover .media-img-wrapper img {
    transform: scale(1.05);
}

.media-card-body {
    padding: 16px;
}

.media-filename {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}

.media-actions {
    display: flex;
    gap: 8px;
}

.media-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.15s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.media-btn-copy {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.media-btn-copy:hover {
    background: #DBEAFE;
    color: #1D4ED8;
}

.media-btn-delete {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.media-btn-delete:hover {
    background: #FEE2E2;
    color: #B91C1C;
}

#previewModalImage {
    background: #FFF;
}

.header-actions .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 1.2rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-actions .btn-outline-primary {
    color: #2563EB;
    border-color: #2563EB;
}

.header-actions .btn-outline-primary:hover {
    background: #2563EB;
    color: #fff;
}

.header-actions .btn-primary {
    background: #2563EB;
    border-color: #2563EB;
    color: #fff;
}

.header-actions .btn-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
}

.media-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-img-wrapper:hover .media-img-overlay {
    opacity: 1;
}

.builder-preview-btn {
    background: linear-gradient(90deg, #2563EB, #63a4ff);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.4rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-empty-state {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 60px 20px;
    transition: all 0.3s ease;
}

.media-empty-state i {
    font-size: 2rem;
    color: #FFF;
}

.media-empty-state h5 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-black-color);
    margin-bottom: 10px;
}

.media-empty-state p {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.media-empty-state .btn-primary {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    border: none;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.media-empty-state .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
}

/* Fullscreen Upload Loader */
.media-upload-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.media-upload-loader .spinner-border {
    width: 4rem;
    height: 4rem;
    color: var(--sidebar-active-color);
    margin-bottom: 20px;
}

.media-upload-loader h4 {
    font-family: var(--primary-font);
    font-size: 2rem;
    color: var(--text-black-color);
    font-weight: 600;
}

.builder-preview-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
}

.builder-preview-btn i {
    font-size: 16px;
}

#builder_popup_preview_btn {
    margin-top: 10px;
}