:root {
    --app1: #4ce665;
    --app2: #ffffff;
    --white: #ffffff;
    --cancel: #e90c39;
    --text: #0c3133;
    --red: red;
    --revoke: #ff4700;
    --info: #2196F3;
    --dark: black;
    --success: rgb(81 209 2);
    --linear-gradient: linear-gradient(85deg, rgb(211, 141, 252), rgb(129, 66, 255));
}

.authentication-bg {
    /* background: var(--app1); */
    background: url(../images/background-3.jpg);
    height: 100vh;
    width: 100%;
    background-size: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.mt-6 {
    margin-top: 6.5rem !important;
}

.mt-7 {
    margin-top: 7.5rem !important;
}

.new-mb-3-29 {
    margin-bottom: -3.29rem !important;
}

.logo-img {
    width: 30%;
    height: 30%;
}

.validation_error {
    color: red;
    font-weight: 500;
}

.btn-custom {
    background: var(--app1) !important;
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 17px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.btn-custom:hover {
    color: var(--app1) !important;
}

.btn-custom:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.btn-custom:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}

.bg-app {
    background-color: var(--app1) !important;
}

.border-app {
    border-color: var(--app1) !important;
}

.btn-app {
    color: #fff;
    background-color: var(--app1);
    border-color: var(--app1);
}

.new-bg-danger {
    --bs-bg-opacity: 1;
    background-color: var(--red) !important;
}

.new-bg-success {
    --bs-bg-opacity: 1;
    background-color: var(--success) !important
}

.new-text-danger {
    --bs-bg-opacity: 1;
    color: var(--red) !important;
}

.new-text-success {
    --bs-bg-opacity: 1;
    color: var(--success) !important
}

.new-text-warning {
    --bs-bg-opacity: 1;
    color: var(--revoke) !important
}

.new-text-info {
    --bs-bg-opacity: 1;
    color: var(--info) !important
}

.new-badge {
    cursor: pointer !important;
    padding: 5px 10px !important;
    display: inline-block !important;
    /* font-size: 1em !important; */
    /* line-height: 1.1 !important; */
    text-transform: uppercase;
}

.action-button {
    /* margin-bottom: 5px !important; */
    cursor: pointer !important;
    background: transparent;
    border: none;
}


table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
    text-align: center !important;
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
    text-align: center !important;
}

.action-width {
    width: 57px !important;
}



/* .pagination .page-link {
    border-radius: 30px !important;
    margin: 0 6px;
    border: none
} */

.bg-app-theme {
    background-color: var(--app1);
}

.mdi-19px {
    font-size: 19px !important;
}


.table-btn {
    font-family: inherit !important;
    display: inline-block !important;
    width: 8em !important;
    height: 2.6em !important;
    line-height: 2.5em !important;
    margin: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid var(--app1) !important;
    transition: color .5s !important;
    z-index: 1 !important;
    font-size: 17px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    color: var(--app1) !important;
}

.table-btn:before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    background: var(--app1) !important;
    height: 150px !important;
    width: 200px !important;
    border-radius: 50% !important;
}

.table-btn:hover {
    color: #fff !important;
}


.table-btn:hover:before {
    top: -30px !important;
    left: -30px !important;
}

.table-btn:active:before {
    background: var(--app1) !important;
    transition: background 0s !important;
}

.btn-mute {
    font-size: 16px !important;
    color: var(--app1) !important;
    border: 1px solid var(--app1) !important;
    background-color: #fff !important;
    background-image: none !important;
    border-radius: 10px !important;
    margin-right: 10px !important;
    text-transform: uppercase !important;
}

.btn-mute:hover {
    color: #fff !important;
    border-color: var(--app1) !important;
    background-color: var(--app1) !important;
}

.btn-mute:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.btn-cancel {
    background: var(--red) !important;
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 17px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.btn-cancel:hover {
    color: var(--red) !important;
}

.btn-cancel:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.btn-cancel:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}


.mr-1 {
    margin-right: 10px !important;
}



/* Back Button */

.button {
    display: block;
    position: relative;
    width: 56px;
    height: 56px;
    margin: 7px 0 0 16px;
    overflow: hidden;
    outline: none;
    background-color: transparent;
    border: 0;
}

.button:before,
.button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
}

.button:before {
    border: 4px solid var(--app1);
    transition: opacity .4s cubic-bezier(.77, 0, .175, 1) 80ms, transform .5s cubic-bezier(.455, .03, .515, .955) 80ms;
}

.button:after {
    border: 4px solid var(--success);
    transform: scale(1.3);
    transition: opacity .4s cubic-bezier(.165, .84, .44, 1), transform .5s cubic-bezier(.25, .46, .45, .94);
    opacity: 0;
}

.button:hover:before,
.button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity .4s cubic-bezier(.165, .84, .44, 1), transform .5s cubic-bezier(.25, .46, .45, .94);
}

.button:hover:after,
.button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity .4s cubic-bezier(.77, 0, .175, 1) 80ms, transform .5s cubic-bezier(.455, .03, .515, .955) 80ms;
}

.button-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 18px 18px 0 18px;
    transform: rotate(180deg);
    fill: var(--revoke);
}

.button:hover .button-box,
.button:focus .button-box {
    transition: .4s;
    transform: translateX(-56px);
}

/* Back Button Ends */

.justify-content-right {
    justify-content: right !important;
}

.new-img {
    width: 9rem !important;
    height: 9rem !important;
    border: 3px solid #fff !important;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3) !important;
}


/* Image preview */

.admin-profile {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.admin-profile img {
    position: absolute;
    object-fit: cover;
    width: 165px;
    height: 165px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, .35);
    border-radius: 100px;
    z-index: 0;
}

.admin-profile .-label {
    cursor: pointer;
    height: 165px;
    width: 165px;
}

.admin-profile:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
}

.admin-profile span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}

.custom-back {
    margin-left: 10px;
    margin-bottom: -45px;
    width: 55px;
}

.img-input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.login-badge {
    font-size: 1em;
    text-transform: uppercase;
}

.dataTables_filter {
    text-align: right;
    clear: both;
    float: right;
}


/* download button */
.dwd-button {
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #17795E;
    background-color: #209978;
    overflow: hidden;
}

.dwd-button,
.button__icon,
.button__text {
    transition: all 0.3s;
}

.dwd-button .button__text {
    transform: translateX(22px);
    color: #fff;
    font-weight: 600;
}

.dwd-button .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: #17795E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dwd-button .svg {
    width: 20px;
    fill: #fff;
}

.dwd-button:hover {
    background: #17795E;
}

.dwd-button:hover .button__text {
    color: transparent;
}

.dwd-button:hover .button__icon {
    width: 148px;
    transform: translateX(0);
}

.dwd-button:active .button__icon {
    background-color: #146c54;
}

.dwd-button:active {
    border: 1px solid #146c54;
}

/* Download Button Ends */


.new-cards {
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.w-15vw {
    width: 16vw !important;
}

.listing-img {
    width: 60px;
    height: 60px;
}

/* mui react table class starts */

.MuiDataGrid-virtualScrollerContent.css-1kwdphh-MuiDataGrid-virtualScrollerContent {
    /* height: 50px !important; */
    min-height: 50px !important;
}

.MuiDataGrid-columnHeaders.MuiDataGrid-withBorderColor.css-1iyq7zh-MuiDataGrid-columnHeaders {
    background-color: whitesmoke;
    font-style: bold;
    /* border: #000000 solid 1px; */
}

.MuiDataGrid-root.MuiDataGrid-root--densityStandard.MuiDataGrid-withBorderColor.css-ptkaw2-MuiDataGrid-root {
    border: none !important;
    /* border: #000000 solid 1px;
    box-shadow: 1px 10px 12px 0; */
}

.css-aop0yh .MuiDataGrid-columnHeader:focus,
.css-aop0yh .MuiDataGrid-cell:focus {
    outline: none !important;
}

.css-ptkaw2-MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within,
.css-ptkaw2-MuiDataGrid-root .MuiDataGrid-cell:focus-within {
    outline: none !important;
}

.css-pdct74-MuiTablePagination-selectLabel,
.css-levciy-MuiTablePagination-displayedRows {
    margin: inherit !important;
}

/* Button Starts */
.css-1knaqv7-MuiButtonBase-root-MuiButton-root {
    border: 1px solid var(--app1) !important;
    background: var(--app1) !important;
    color: white !important;
    border-radius: 0.425em !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.css-1knaqv7-MuiButtonBase-root-MuiButton-root:hover {
    color: var(--app1) !important;
}

.css-1knaqv7-MuiButtonBase-root-MuiButton-root:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.css-1knaqv7-MuiButtonBase-root-MuiButton-root:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}

/* Button Ends */


.css-128fb87-MuiDataGrid-toolbarContainer {
    margin-bottom: .75rem !important;
    margin-top: .375rem !important;
    margin-left: 4.7rem !important;
}

.css-v4u5dn-MuiInputBase-root-MuiInput-root:after {
    border-bottom: 2px solid var(--app1) !important;
}

/* mui react table class ends */


/* daterangepicker class starts */
.daterangepicker .ranges li.active {
    background-color: var(--app1) !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--app1) !important;
}

.daterangepicker td.in-range {
    background-color: var(--app1) !important;
    color: white !important;
}

/* daterangepicker class ends */


/* Table Starts */

.new-table {
    overflow: auto;
    max-height: 200px;
    /* Set a max height for the table body to enable scrolling */
}

.table_scrollHead {
    position: sticky;
    top: 0;
    background-color: #fff;
    /* You can set the background color as needed */
    z-index: 1;
    /* Ensure the header stays on top of the body */
}

.table_scrollBody {
    overflow-y: auto;
    max-height: 300px;
    /* Set the height of the scrollable body */
}

/* Table Ends */

.form-control:focus {
    border-color: var(--app1) !important;
    border-width: 1px !important;
}

.css-t3ipsp-control {
    border-color: var(--app1) !important;
    box-shadow: 0 0 0 1px var(--app1) !important;
}

.css-t3ipsp-control:hover {
    border-color: var(--app1) !important;
    box-shadow: 0 0 0 1px var(--app1) !important;
}

/* New outlined button for custom theme Starts */
.btn-outline-app {
    font-size: 16px !important;
    color: var(--app1) !important;
    border: 1px solid var(--app1) !important;
    background-color: #fff !important;
    background-image: none !important;
    border-radius: 10px !important;
    margin-right: 10px !important;
    text-transform: uppercase !important;
}

.btn-outline-app:hover {
    color: #fff !important;
    border-color: var(--app1) !important;
    background-color: var(--app1) !important;
}

.btn-outline-app:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

/* New outlined button for custom theme Ends */


/* loader component  */
.d-loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999;
    transform: translate(-70%, -70%);
}

/* to overlap for react select if z-index-1 is used */
.css-1nmdiq5-menu {
    z-index: 3001 !important;
}

.flag-img {
    width: 20px;
    margin-right: 8px
}

.cursor-pointer {
    cursor: pointer;
}

.delete-img-button {
    position: absolute;
    top: -0.7rem;
    right: -1rem;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    z-index: 999;
    background: white;
    padding: 4px 8px;
    border: none;
    border-radius: 20px;
    height: 33px;
    width: 31px;
    box-shadow: 0px 0px 6px 0px rgba(176, 171, 171, 0.81);
}

/* dropzone starts */
.d-dropzone {
    border: 2px dashed #cccccc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.preview-container {
    display: flex;
    margin-top: 20px;
}

.first-d-preview {
    position: relative;
    margin-right: 10px;
}

.other-d-preview {
    position: relative;
    margin-right: 10px;
    margin-left: 1.2rem;
}

.preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

/* dropzone ends */


.navbar-custom .topnav-menu .nav-link {
    color: var(--white);
}

/* Table.css */
.bordered-table {
    border: 1px solid #ccc;
    border-collapse: collapse;
}

.bordered-table th,
.bordered-table td {
    border: 1px solid #ccc;
    padding: 5px;
}


/* Tanstack React-Table */

div.reactTables_wrapper div.reactTables_filter {
    text-align: right;
}

div.reactTables_wrapper div.reactTables_filter input {
    margin-left: 0.5em;
    margin-right: 0;
    display: inline-block;
    width: auto;
    height: 36px;
}

div.reactTables_wrapper div.reactTables_buttons {
    text-align: left;
}

.reactTables-pagination-buttons {
    display: grid;
    grid-template-columns: repeat(4, auto);
    /* Adjust the number of columns based on your needs */
    gap: 5px;
    /* Adjust the gap between buttons */
    justify-content: end;
    margin-top: 3px;
}

.reactTable thead>tr>th.sorting,
.reactTable thead>tr>th.sorting_asc,
.reactTable thead>tr>th.sorting_desc,
.reactTable thead>tr>th.sorting_asc_disabled,
.reactTable thead>tr>th.sorting_desc_disabled,
.reactTable thead>tr>td.sorting,
.reactTable thead>tr>td.sorting_asc,
.reactTable thead>tr>td.sorting_desc,
.reactTable thead>tr>td.sorting_asc_disabled,
.reactTable thead>tr>td.sorting_desc_disabled {
    cursor: pointer;
    position: relative;
    padding: 0.75rem;
    /* for space ; */
    /* padding-right: 0.75rem;  */
    /* padding-right: 26px; */
}

/* div.reactTables_wrapper div.reactTables_buttons button {
    
} */


div.reactTables_wrapper div.reactTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--app1);
    border-color: var(--app1)
}

.reactTables-btn {
    background: var(--app1) !important;
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 17px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.reactTables-btn:hover {
    color: var(--app1) !important;
}

.reactTables-btn:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.reactTables-btn:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}

.reactTables-pagination-btn {
    border-radius: 0.625em !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    border: 1px solid #dee2e6;
    color: gray;
}

.reactTables-pagination-btn:hover {
    background-color: hsl(240 5.9% 90%) !important;
    color: black;
}

.reactTables-pagination-info {
    display: flex;
}

.reactTables-page-info {
    font-weight: 600;
}

.new-dropdown {
    position: absolute;
    inset: 0px 0px auto auto;
    margin: 0px;
    transform: translate(0px, 39px);
}

.new-btn {
    background: var(--app1) !important;
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 17px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.new-btn:hover {
    color: var(--app1) !important;
}

.new-btn:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.new-btn:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}

.new-btn-success {
    color: white !important;
    background: var(--success) !important;
}

.new-btn-success:hover {
    color: var(--success) !important;
}

.new-btn-danger {
    color: white !important;
    background: var(--red) !important;
}

.new-btn-danger:hover {
    color: var(--red) !important;
}

.new-btn-info {
    color: white !important;
    background: var(--info) !important;
}

.new-btn-info:hover {
    color: var(--info) !important;
}


.css-1wvake5 {
    position: relative;
    -webkit-transition: width, left, right, 300ms;
    transition: width, left, right, 300ms;
    width: 240px !important;
    min-width: 240px !important;
}

.img-logo-lg {
    /* background: white;
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: -18px; */
    display: inline-block;
    height: auto;
    max-height: 40px;
    margin-right: 8px;
    /* Space between logo and text */
}

.img-logo-sm {
    /* display: flex;
    background: white; */
    height: 3rem;
}

.new-card-header {
    padding: 1.005rem 1.5rem;
    margin-bottom: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #cdcecf;
}

.custom-accordion a.collapsed i.accordion-arrow:before {
    content: "\f0142";
}

/* Initially hide the menu */
/* .topnav-container {
    display: none;
} */

/* Show the menu when screen size is below 992px */
/* @media (max-width: 992px) {
    .topnav-container {
        display: block;
    }
} */


.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--app1);
    border-color: var(--app1);
}

.daterangepicker .drp-buttons .btn.applyBtn {
    color: #fff;
    background-color: var(--app1) !important;
    border-color: var(--app1) !important;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
    color: #fff;
    background-color: var(--red) !important;
    border-color: var(--red) !important;
}

.swal2-icon.swal2-question {
    color: var(--app1) !important;
    border-color: var(--app1) !important;
}

.swal2-modal .swal2-confirm {
    background-color: var(--app1) !important;
}

.action-btn {
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

/* .action-btn:hover {
    color: var(--app1) !important;
} */

.action-btn:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.action-btn:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}


.swal2-modal .swal2-file:focus,
.swal2-modal .swal2-input:focus,
.swal2-modal .swal2-textarea:focus {
    outline: 0;
    border: 2px solid var(--app1);
}

.btn-clear {
    background: var(--info) !important;
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 17px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.btn-clear:hover {
    color: var(--info) !important;
}

.btn-clear:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.btn-clear:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}


.btn-export {
    background: var(--app1) !important;
    color: white !important;
    border-radius: 0.625em !important;
    font-size: 17px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

.btn-export:hover {
    color: var(--app1) !important;
}

.btn-export:after {
    content: "" !important;
    background: white !important;
    position: absolute !important;
    z-index: -1 !important;
    left: -20% !important;
    right: -20% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: skewX(-45deg) scale(0, 1) !important;
    transition: all 0.5s !important;
}

.btn-export:hover:after {
    transform: skewX(-45deg) scale(1, 1) !important;
    -webkit-transition: all 0.5s !important;
    transition: all 0.5s !important;
}

.expand-btn {
    width: 40px;
    height: 40px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.expand-btn i {
    font-size: large;
}

.expand-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.transition-icon {
    transition: transform 0.3s ease-in-out;
}

.rotate-icon {
    transform: rotate(180deg);
}

.transition-icon {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.7;
    margin-left: auto;
    /* Pushes the icon to the right */
}

.sorting:hover .transition-icon {
    opacity: 1;
}


.default-sort {
    color: #ccc;
    /* Light grey default color */
}

.active-sort {
    color: #000;
    /* Change to black or desired color when active */
}