@font-face {
    font-family: 'Inter';
    src: url('./../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Inter';
    src: url('./../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
}
@font-face {
    font-family: 'HindSiliguri';
    src: url('./../fonts/HindSiliguri-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'HindSiliguri';
    src: url('./../fonts/HindSiliguri-Medium.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'HindSiliguri';
    src: url('./../fonts/HindSiliguri-SemiBold.woff2') format('woff2');
    font-weight: 600;
}
@font-face {
    font-family: 'HindSiliguri';
    src: url('./../fonts/HindSiliguri-Bold.woff2') format('woff2');
    font-weight: 700;
}
@font-face {
    font-family: 'Ador';
    src: url('./../fonts/LiAdorNoirritVR-VF.ttf') format('truetype');
}
@font-face {
    font-family: 'Noto Serif Bengali';
    src: url('./../fonts/NotoSerifBengali.ttf') format('truetype');
}
@font-face {
    font-family: 'Noto Serif';
    src: url('./../fonts/NotoSerif-VariableFont.woff2') format('woff2');
}
@font-face {
    font-family: 'Kohinoor';
    src: url('./../fonts/Kohinoor-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Kohinoor';
    src: url('./../fonts/Kohinoor.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Kohinoor';
    src: url('./../fonts/Kohinoor-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Kohinoor';
    src: url('./../fonts/Kohinoor-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Akhand';
    src: url('./../fonts/Akhand-Bengali.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



.font-bn{
    font-family: 'HindSiliguri', sans-serif;
}
.font-bn-placeholder::placeholder{
    font-family: 'HindSiliguri', sans-serif;
}
.font-kohinoor{
    font-family: 'Kohinoor', sans-serif;
}
.font-ador{
    font-family: 'Ador', sans-serif;
}
.font-noto{
    font-family: 'Noto Serif Bengali', sans-serif;
}
.font-noto-en{
    font-family: 'Noto Serif', sans-serif;
}
.font-inter{
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
}
.font-akhand{
    font-family: 'Akhand', sans-serif;
}
.invoice-header{
    background-color: #4273b8;
}
.print-display-show{
    display: none !important;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}

.right-gap {
    margin-right: auto;
}
.text-hover-underline:hover{
    text-decoration: underline !important;
}
.truncate{
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.no-radius > .select2 .select2-selection{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}
.select2-results__options{
    font-size:15px !important;
    font-family: 'Kohinoor', sans-serif;
    font-weight: 500;
}
.select2-search__field{
    font-size:14px !important;
    font-family: 'Kohinoor', sans-serif;
    font-weight: 500;
}

.tooltip-inner{
    font-size: 14px;
    font-family: 'Kohinoor', sans-serif;
    font-weight: 500;
}

.image_wrapper_icon {
    position: absolute;
    top: 46%;
    left: 50%;
    scale: 5;
}
.fv-plugins-message-container {
    font-family: 'Kohinoor', sans-serif;
}
.datatables_length, .datatables_info, .datatables_paginate {
    font-family: 'Kohinoor', sans-serif;
}
@media print {
    .font-bn{
        font-family: 'HindSiliguri', sans-serif;
    }

    .print-display-none{
        display: none !important;
    }
    .print-display-show{
        display: block !important;
    }
    .app-content{
        background-color: #fff !important;
    }

    .print * {
        color : #000 !important;
    }

    .dt-table td, .dt-table th{
        padding-block: 0px !important;
        border-bottom: 1px solid #747474 !important;
    }

    .dt-table .tfoot tr:nth-child(1) th{
        padding-top: 10rem !important;
    }

}

.marquee {
    height: 50px;
    overflow: hidden;
    position: relative;
  }
.marquee .marquee-content {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;

    /* Starting position */
        -moz-transform:translateX(100%);
        -webkit-transform:translateX(100%);
        transform:translateX(100%);

/* Apply animation to this element */
        -moz-animation: marquee 15s linear infinite;
        -webkit-animation: marquee 15s linear infinite;
        animation: marquee 15s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes marquee {
    0%   { -moz-transform: translateX(100%); }
    100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes marquee {
    0%   { -webkit-transform: translateX(100%); }
    100% { -webkit-transform: translateX(-100%); }
}
@keyframes marquee {
    0%   {
    -moz-transform: translateX(100%); /* Firefox bug fix */
    -webkit-transform: translateX(100%); /* Firefox bug fix */
    transform: translateX(100%);
    }
    100% {
    -moz-transform: translateX(-100%); /* Firefox bug fix */
    -webkit-transform: translateX(-100%); /* Firefox bug fix */
    transform: translateX(-100%);
    }
}

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

/* Styling for each individual dot */
.loading-dots .dot {
    height: 10px;
    width: 10px;
    background-color: #20c997; /* Your theme's success color */
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;

    /* Attach the animation */
    animation: dot-pulse 1.4s infinite ease-in-out both;
}

/* Animation delay for each dot to create the sequential effect */
.loading-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0s;
}

/* The animation keyframes: scale the dots up and down */
@keyframes dot-pulse {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}

/* 🎀 Cute */
.bg-cute        { background-color: #f78fb3 !important; }
.text-cute      { color: #f78fb3 !important; }
.bg-cute-light  { background-color: #fde4ec !important; }
.text-cute-light{ color: #fde4ec !important; }

/* 💧 Aqua */
.bg-aqua        { background-color: #00d2d3 !important; }
.text-aqua      { color: #00d2d3 !important; }
.bg-aqua-light  { background-color: #e0fafa !important; }
.text-aqua-light{ color: #e0fafa !important; }

/* 🌅 Sunset */
.bg-sunset        { background-color: #ff7675 !important; }
.text-sunset      { color: #ff7675 !important; }
.bg-sunset-light  { background-color: #ffe5e5 !important; }
.text-sunset-light{ color: #ffe5e5 !important; }

/* 🌲 Forest */
.bg-forest        { background-color: #2ecc71 !important; }
.text-forest      { color: #2ecc71 !important; }
.bg-forest-light  { background-color: #d8f6e4 !important; }
.text-forest-light{ color: #d8f6e4 !important; }

/* 🌌 Midnight */
.bg-midnight        { background-color: #2d3436 !important; }
.text-midnight      { color: #2d3436 !important; }
.bg-midnight-light  { background-color: #dcdde1 !important; }
.text-midnight-light{ color: #dcdde1 !important; }

/* 🍑 Peach */
.bg-peach        { background-color: #fab1a0 !important; }
.text-peach      { color: #fab1a0 !important; }
.bg-peach-light  { background-color: #ffebe3 !important; }
.text-peach-light{ color: #ffebe3 !important; }

/* ❄️ Ice */
.bg-ice        { background-color: #dff9fb !important; }
.text-ice      { color: #dff9fb !important; }
.bg-ice-light  { background-color: #f4feff !important; }
.text-ice-light{ color: #f4feff !important; }

/* 🍇 Grape */
.bg-grape        { background-color: #a29bfe !important; }
.text-grape      { color: #a29bfe !important; }
.bg-grape-light  { background-color: #e8e7fd !important; }
.text-grape-light{ color: #e8e7fd !important; }

/* 🪙 Golden */
.bg-golden        { background-color: #f9ca24 !important; }
.text-golden      { color: #f9ca24 !important; }
.bg-golden-light  { background-color: #fff6d6 !important; }
.text-golden-light{ color: #fff6d6 !important; }

/* 🌋 Lava */
.bg-lava        { background-color: #eb4d4b !important; }
.text-lava      { color: #eb4d4b !important; }
.bg-lava-light  { background-color: #ffd8d7 !important; }
.text-lava-light{ color: #ffd8d7 !important; }


/* ✅ Teal Green (balanced) */
.bg-jungle         { background-color: #00b894 !important; }
.text-jungle       { color: #00b894 !important; }
.bg-jungle-light   { background-color: #b2f1e2 !important; }
.text-jungle-light { color: #b2f1e2 !important; }

/* 🌊 Sky Blue */
.bg-skyblue         { background-color: #0097e6 !important; }
.text-skyblue       { color: #0097e6 !important; }
.bg-skyblue-light   { background-color: #cfeeff !important; }
.text-skyblue-light { color: #cfeeff !important; }

/* 🌸 Rose Pink */
.bg-rose         { background-color: #e84393 !important; }
.text-rose       { color: #e84393 !important; }
.bg-rose-light   { background-color: #ffd9ea !important; }
.text-rose-light { color: #ffd9ea !important; }

/* 🟡 Soft Golden */
.bg-softgold         { background-color: #fdcb6e !important; }
.text-softgold       { color: #fdcb6e !important; }
.bg-softgold-light   { background-color: #fff3d9 !important; }
.text-softgold-light { color: #fff3d9 !important; }

/* 💜 Indigo Violet */
.bg-indigo         { background-color: #6c5ce7 !important; }
.text-indigo       { color: #6c5ce7 !important; }
.bg-indigo-light   { background-color: #e0ddff !important; }
.text-indigo-light { color: #e0ddff !important; }

/* 🧡 Golden Orange */
.bg-goldorange         { background-color: #fab24f !important; }
.text-goldorange       { color: #fab24f !important; }
.bg-goldorange-light   { background-color: #fff3d6 !important; }
.text-goldorange-light { color: #fff3d6 !important; }
