:root {
    --im-font-primary-font-family: "Poppins", sans-serif;
    --im-body-font-size: 0.875rem;
    --im-body-font-weight: 400;
    --im-body-line-height: 1.5;
    --im-body-color: #000;
    --im-body-bg: #fff
}

body {
    background: var(--im-body-bg);
    font-family: var(--im-font-primary-font-family);
    font-weight: var(--im-body-font-weight);
    font-size: var(--im-body-font-size);
    line-height: var(--im-body-line-height)
}

a {
    color: #000!important;
    text-decoration: none!important;
    cursor: pointer
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

.bg-grey {
    background-color: #6c757d!important
}

.nav-link {
    display: block;
    color: rgba(0, 0, 0, 0.9)!important;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

.navbar-nav {
    display: flex;
    flex-direction: row!important
}

.navbar-nav .nav-link {
    padding-right: .5rem!important;
    padding-left: .5rem!important
}

.mt-60 {
    margin-top: 60px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-100 {
    margin-bottom: 100px
}

.w-wekit {
    width: -webkit-fill-available;
    width: -moz-available
}

.font-12 {
    font-size: 12px!important
}

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

.font-16 {
    font-size: 16px!important
}

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

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

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

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

.font-26 {
    font-size: 26px!important
}

.font-28 {
    font-size: 28px!important
}

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

.font-32 {
    font-size: 32px!important
}

.font-34 {
    font-size: 34px!important
}

.font-36 {
    font-size: 36px!important
}

.w-10 {
    width: 10%!important
}

.w-20 {
    width: 20%!important
}

.w-30 {
    width: 30%!important
}

.w-40 {
    width: 40%!important
}

.w-50 {
    width: 50%!important
}

.w-60 {
    width: 60%!important
}

.w-70 {
    width: 70%!important
}

.w-80 {
    width: 80%!important
}

.w-90 {
    width: 90%!important
}

.transaction-list:hover {
    background-color: #fff
}

.transaction .active {
    background-color: #fff
}

.mh-400 {
    max-height: 450px
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #e1e3e6;
}

.r-tab .nav-tabs .nav-link.active {
    background-color: #3c454c;
    color: #ffffff !important;
}

.height-70vh {
    height: 70vh;
}

.font-150 {
    font-size: 150px;
}

.h-200px {
    height: 200px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-50 {
    margin-bottom: 50px;
}

.custom-dropdown {
    opacity: 0;
    transform: translateY(-10px);
    box-shadow: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
    max-height: 500px;
    overflow-y: scroll;
}


/* Visible state */

.custom-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.max-width-290 {
    max-width: 290px;
}

.scroll-hidden {
    overflow: scroll;
    /* Keeps the element scrollable */
    scrollbar-width: none;
    /* Hides scrollbar in Firefox */
}

.scroll-hidden::-webkit-scrollbar {
    display: none;
    /* Hides scrollbar in WebKit browsers */
}

.floating-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1050;
    z-index: 1050;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.paginate_button.page-item.active {
    background: #6c757d aliceblue !important;
}

.paginate_button.active>.page-link,
.paginate_button.page-link.active {
    background: #6c757d !important;
    color: #fff !important;
    border: #6c757d !important;
}

.highlight-row {
    background-color: #d4edda;
    /* Light green (you can adjust the color) */
    transition: background-color 0.5s ease;
}

@keyframes highlightAnimation {
    0% {
        background-color: #ffffcc;
        /* Light yellow */
    }
    100% {
        background-color: transparent;
    }
}

.top-dropdown .dropdown-item:focus,
.dropdown-item:active {
    background-color: #f5f5f5 !important;
    color: inherit !important;
    box-shadow: none !important;
}

.bg-light-theme {
    background-color: #DCE8FA;
}

.image-preview,
#callback-preview {
    width: 250px;
    height: 250px;
    border: 2px dashed #ddd;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff !important;
    color: #ecf0f1;
}

.image-preview input,
#callback-preview input {
    line-height: 200px;
    font-size: 200px;
    position: absolute;
    opacity: 0;
    z-index: 10
}

.image-preview label,
#callback-preview label {
    position: absolute;
    z-index: 5;
    opacity: 0.8;
    cursor: pointer;
    background-color: #bdc3c7;
    width: 150px;
    height: 50px;
    font-size: 12px;
    line-height: 50px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center
}

.image-preview.pull-left {
    float: left !important;
}

.image-preview.pull-right {
    float: right !important;
}