@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);
    }
}