/********** Template CSS **********/
:root {
    --primary: #7227dd;
    --light: #F3F6F9;
    --dark: #191C24;


body{
	font-family:"Heebo",sans-serif;
    font-size:14px;
    font-weight:500;
}

a{  text-decoration:none }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
font-size:14px;
font-weight:600;
min-width:100px;
transition: .5s;
}

.btn.btn-primary {
	background-color: var(--primary);
    border-color:var(--primary);
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/* Heading / Title */

.col-title{
	font-size:12px;
    text-transform:uppercase;
    margin:0 0 10px 0;
}

/* Table */
table{
width: 100%;
}
.table{
margin:10px 0}

.table-bordered thead th{
background-color:#f3f3f3}

.table thead th{
        font-size: 12px;
        font-weight: 400;
        color: #7a7a7a;
        white-space: nowrap;
}
.table tbody td{
text-align:left;
 white-space: nowrap;
}
.table tbody td input{
min-width:60px;}

.table-summary tr td{
	text-align:right
}
.table .cta-buttons{
display:flex; 
align-items:center;
gap:10px}
.table .cta-buttons .btn{
min-width:auto;
padding: 0;}

/* Form */
.form-label{
	font-size:13px
}
.form-control,
.form-control:focus,
.form-select,
.form-select:focus{
	font-size:13px;
    font-weight: 500;
    color:#000000
}



/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: #f4f4f4;
    transition: 0.5s;
    z-index: 999;
}
.sidebar  .navbar{
	background-color:transparent!important;
    border-bottom:none!important
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #FFFFFF;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: 0;
        z-index: -1;
    }

    .content {
        width: calc(100% - 250px);
        position: relative;
        z-index: 99999;
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    font-size:16px;
    color: #7d9fc1;
    font-weight: 500;
    border-radius: 0 10px 10px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: #00c2ff;
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
    box-shadow:2px 2px 2px 0 rgba(0,0,0,0.05);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 40px;
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}

.navbar {
background: #fff !important;
border-bottom: solid 2px #ececec;
}

main{
	position: relative;
	z-index: 3;
	min-height: calc(90vh - 80px);
	margin-bottom: 80px;
	background: #fff;
	max-width: 1200px;
	margin: 0 auto;
}

footer{
background-color(--light);
    padding: 20px 30px;
    font-size: 13px;
    color:#9e9e9e;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
}

footer .credits{
display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    font-size: 11px;
        font-weight: 400;
    }

footer .poweredby{
	display: inline;
	background-color:#f7f7f7;
    padding:6px 12px;
    border-radius:30px;
    font-size: 10px;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 40px;
    border: none;
    color: #000000;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    margin: 0 5px 0 0;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/* Table Responsive */

.table-responsive-stack tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}


.table-responsive-stack td,
.table-responsive-stack th {
   display:block;
   font-weight: bold;
  text-align:left;
/*      
   flex-grow | flex-shrink | flex-basis   */
   -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.table-responsive-stack .table-responsive-stack-thead {
   font-weight: normal;
}

@media screen and (max-width: 768px) {
   .table-responsive-stack tr {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border-bottom: 3px solid #ccc;
      display:block;
      
   }
   /*  IE9 FIX   */
   .table-responsive-stack td {
      float: left\9;
      width:100%;
   }
}

/* Cleint Styles */
.businesses-name{
	font-size:18px;
    font-weight:600
}