:root {
	--h1size: 40px;
	--h2size: 30px;
	--h3size: 24px;
	--h4size: 20px;
	--h5size: 18px;
	--h6size: 16px;
	--bodysize: 14px;
	--h1height: 58px;
	--h2height: 38px;
	--h3height: 32px;
	--h4height: 28px;
	--h5height: 26px;
	--h6height: 26px;
	--bodyheight: 1.5;
	--pfamily: "Work Sans", sans-serif;
	--red: #dc3545;
	--gray: #f8f8f8;
	--text: #999;
	--blue: #0d6efd;
	--darkblue: #101840;
    --lightblue: #EAE9F7;
	--white: #ffffff;
	--chalk: #EBECF3;
	--green: #25D366;
	--purple: #b12fad;
	--orange: #fd7e14;
	--dark: #000000;
	--yellow: #f9b917;
	--body: #efe3c5;
	--border: #ededed;
	--heading: #39404a;
	--primary: #6A5AE0;
	--secondary: #70c7c2;
	--sub-heading: #565765;
	--green-chalk: #9aa396;
	--green-dark: #072f17;
	--gray-chalk: #f2f2f2;
	--intro-bg: #e5eef6;
	--facebook: #3b5998;
	--linkedin: #0e76a8;
	--twitter: #00acee;
	--google: #E60023;
	--instagram: #F77737;
}
* {
    margin: 0px;
    padding: 0px;
    outline: 0px
}
img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    display: inline-block
}
a:hover {
    text-decoration: none
}
ul, ol {
    padding: 0px;
    margin: 0;
    list-style: none
}
b, strong{
    font-weight: bold;
}
a, button, img, input, span {
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

html, body {
    scroll-behavior: smooth
}
body {
    color: var(--dark);
    background: var(--primary);
    font-size: var(--bodysize);
    font-family: var(--pfamily);
    line-height: var(--bodyheight);
    overflow-x: hidden;
    font-optical-sizing: auto;
    font-weight: 300;
}
.h-screen{
    height: 100vh;
}
.text-primary{
    color: var(--primary) !important;
}
.form-control, .form-select{
    padding: 10px 15px;
    border-radius: 10px;
}
.form-control-sm, .form-select-sm{
    padding: 5px 15px;
    border-radius: 4px;
}
.border-white{
    border-color: var(--white);
}
.form-login{
    max-width: 340px;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    margin: 15px;
}
.alert{
    border-radius: 10px;
}
.w-full{
    width: 100%;
}
.btn{
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 500;
}
.btn-primary{
    background: var(--primary);
    border-color: var(--primary);
    columns: var(--white);
}
.btn-success{
    background: var(--green);
    border-color: var(--green);
}
/* Header Nav*/
.header-nav{
    position: relative;
    width: 100%;
    border-radius: 10px;
    color: var(--white);
    margin-bottom: 20px;
}
.header-nav ul{
    display: flex;
    justify-content: space-between;
}
.header-nav ul li a{
    color: var(--white);
}
.avatar{
    width: 40px;
    height: 40px;
}
.avatar img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.rounded-lg{
    border-radius: 10px !important;
}

#mainwrapper{
    padding-bottom: 80px;
}

/*Footer Nav*/
.footer-nav{
    position: fixed;
    bottom: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    background: var(--white);
    border-radius: 10px;
    z-index: 11;
    border-top: 1px solid var(--primary);
}
.footer-nav ul{
    display: flex;
    justify-content: space-evenly;
}
.footer-nav ul li a{
   position: relative;
   padding: 5px;
   cursor: pointer;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   align-items: center;
   width: 60px;
   height: 60px;
}
.footer-nav ul li a .icon{
   width: 50px;
   height: 50px;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   line-height: 60px;
   text-align: center;
   transition: 0.5s;
   margin: 0 auto;
   background: var(--white);
   border-radius: 50%;
   border: 5px solid var(--white);
}
.footer-nav ul li a .icon svg, .footer-nav ul li a .icon img{
    width: 30px;
    height: 30px;
    object-fit: contain;
 }
.footer-nav ul li a span{
    position: absolute;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: 0.5s;
    transform: translateY(20px);
    opacity: 0;
    z-index: 1;
    font-size: 14px;
}
.footer-nav ul li.active a .icon{
    transform: translateY(-29px);
    border: 5px solid var(--primary);
}
.footer-nav ul li.active a span{
    opacity: 1;
    transform: translateY(10px);
}
/**/
.card{
    border: 0;
    border-radius: 10px;
}
.card-body{
    padding: 10px;
    border-radius: 10px;
}
.list-group-item{
    padding: 10px;
    font-size: .8125rem;
}
.btn-list{
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--chalk);
}
.btn-square {
    align-items: center;
    display: inline-flex;
    height: 2.275rem;
    justify-content: center;
    padding: 0 !important;
    width: 2.275rem;
}
.btn-neutral {
    background-color: #fff;
    border-color: #e7eaf0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
    color: #16192c;
}
/*Footer Menu*/
.footer-menu {
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    display: none;
    transition: all .2s ease-in-out;
    transform: translateY(0);
    position: relative;
    bottom: 0;
}

.footer-menu.active {
   display: block;
    transform: translateY(-50%);
}
.footer-menu ul li a{
    color: var(--dark);
    padding: 5px;
    display: flex;
}
.footer-menu ul li a img{
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 15px;
}

.icon-shape{
    text-align: center;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    background: var(--primary);
}
.icon-shape img{
    filter: brightness(100%) invert(100%);
}
.bg-light{
    background: var(--lightblue) !important;
}
.bg-white{
    background: var(--white);
}
.btn-sm{
    font-size: 12px;
    padding: 8px 15px;
}
.topnav{
    margin: 10px 0;
    font-weight: bold;
    font-size: 16px;
}
.topnav .back, .topnav .add{
    filter: brightness(100%) invert(100%);
    width: 30px;
    height: 30px;
}
div.dataTables_wrapper div.dataTables_length label{
    width: 100% !important;
    font-size: 11px;
}
div.dataTables_wrapper div.dataTables_filter input{
    width: 100% !important;
    margin-left: 0 !important;
}
div.dataTables_wrapper div.dataTables_length select{
    width: 100% !important;
    max-width: 150px;
}
.dataTables_filter{
    font-size: 11px;    
}
table{
    border-radius: 10px;
    background: var(--white);
}
.table tr td{
    background: var(--lightblue);
}
.table, .table tr, .table th{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 0 !important;
}
.table tr:last-child td{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.table td{
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: left;
}
.table tbody tr:first-child td{
    padding-top: 8px;
}
.table tbody tr:last-child td{
    padding-bottom: 8px;
}
.bootstrap-table .fixed-table-container .table td, .bootstrap-table .fixed-table-container .table th{
    border: 0;
}
#table td{
    text-align: start !important;
}
.bootstrap-table.bootstrap5 .float-left{
    width: 100%;
}
.page-link{
    font-size: 12px;
}
.pagination-info, 
.pagination-detail, 
.page-list {
    display: none;
}
.navbar-nav .nav-link{
    font-weight: 500;
}
.text-xs{
    font-size: 11px;
}
.replacefile {
    position: absolute;
    right: 10px;
    bottom: 0;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1;
}
.form-hide{
    border: 0;
    padding: 0;
    max-width: fit-content;
}
/* Loader styles */
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader::before {
    content: '';
    background-image: url(../images/loader.svg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}