:root {
    --rem_form: 0.1rem;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
 


body {
    font-family: 'Poppins', sans-serif !important;
    /* background-image: linear-gradient(to right bottom, #2b58c8, #637dd8, #92a4e7, #bfcbf3, #eff3ff); */
}

.btn {
    font-size: 0.9rem !important;
}

.main-header {
    min-height: 52px !important;
}

.navbar {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
}

/* ====== theme ====== */


.btn {
    border-radius: 1.25rem !important;
    margin: 1px;
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    /* not work with modal bootstrap */
    /* animation-fill-mode: both;  */
    animation-name: fadeInRight;
}

.card {
    border-radius: 1.25rem !important;
    margin: 10px;
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    /* not work with modal bootstrap */
    /* animation-fill-mode: both;  */
    animation-name: fadeInUp;
}

.card .card-header { 
    border-radius: 1.25rem 1.25rem 0rem 0rem !important;
}

.card .card-body {
    padding: 1.25rem 0.5rem 1.25rem 0.5rem !important;
} 


.form-control {
    border-radius: var(--rem_form) !important;
    /* padding:5px !important;  */
    /* background-image: none !important; */
    /* background-color: #EFF3FF !important; */
    /* padding-left: var(--rem_form) !important; */
    /* -------- */
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    /* not work with modal bootstrap */
    /* animation-fill-mode: both;  */
    animation-name: fadeInUp;
}

.btn {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
 
/* ======= theme ====== */
body.dark .form-control,
body.dark .form-select {
    color: #000;
}

.btn:active {
    transform: translatey(5px);
}

.btn:hover {
    /* transform: scale(1.05); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}

 
.trx:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}


/* table  */
/* 
.table {
    border-spacing: 0 5px !important;
    border-collapse: separate !important;
    padding: 5px;
    border: none !important; 
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

.table thead tr th,
.table thead tr td,
.table tbody tr th,
.table tbody tr td {
    vertical-align: middle;
    border: none;
}

.table thead tr th:nth-last-child(1),
.table thead tr td:nth-last-child(1),
.table tbody tr th:nth-last-child(1),
.table tbody tr td:nth-last-child(1) {
    text-align: center;
}

.table tbody tr {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    border-radius: 5px;
}

.table tbody tr td { 
    padding: 0rem 0.75rem 0rem 0.75rem !important;
}

.table tbody tr td:nth-child(1) {
    border-radius: 5px 0 0 5px;
}

.table tbody tr td:nth-last-child(1) {
    border-radius: 0 5px 5px 0;
} */

.user-info {
    display: flex;
    align-items: center;
}

.user-info__img img {
    margin-right: 15px;
    height: 55px;
    width: 55px;
    border-radius: 45px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.active-circle {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    margin-right: 5px;
    display: inline-block;
}

/* table */
 
/* Prject custom css */

.bg-modern {
    background-image: linear-gradient(to top, #0d68b1, #0b71c1, #097ad1, #0783e1, #078cf2);
}

.btnSubmit {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.btn-raised {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
} 

/* .linkx:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
    background-color: #E1E9FE;
}
  */
/* .card:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
 } */

 /* 

.xin {
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
    animation-name: fadeIn;
}

.xup {
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

.xright {
    animation-duration: 0.25s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
    animation-name: fadeInRight;
} */