:root {
  --header-height: 48px;
  --nav-width: 55px;
  --first-color: #222d32;
  --first-color-light: #aacdf9;
  --white-color: #fff;
  --body-font: 'Nunito', sans-serif;
  --normal-font-size: 16px;
  --z-fixed: 100;
}

*,
::before,
::after {
  box-sizing: border-box;
}


/*
 *  STYLE 7
 */

#style-7::-webkit-scrollbar-track
{
	    -webkit-box-shadow: none;
    background-color: #305aa9;
    background: linear-gradient(0deg, rgba(31, 42, 99, 1) 0%, rgba(52, 63, 119, 1) 63%, rgb(46 105 197) 100%);
    border-radius: 0;
}

#style-7::-webkit-scrollbar
{
	width: 7px;
	background-color: #F5F5F5;
}

#style-7::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}


#style-7::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:4px solid #91bbff;
}


.nav {

    overflow-y: auto !important;
}





body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  /*padding: 0 16px;*/
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
  background-color: #f8fbff;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

table.table tbody td {
  vertical-align: middle;
}

.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background-color: #3c8dbc;
	    background-color: #1f2a63;
  z-index: var(--z-fixed);
  transition: 0.5s;
	
	background: rgb(31, 42, 99);
    background: -moz-linear-gradient(90deg, rgb(0 46 133) 0%, rgb(63 109 191) 63%, rgb(63 138 255) 100%);
    background: -webkit-linear-gradient(0deg, rgb(0 46 133) 0%, rgb(63 109 191) 63%, rgb(63 138 255) 100%);
    background: linear-gradient(90deg, rgb(0 46 133) 0%, rgb(63 109 191) 63%, rgb(63 138 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f2a63",endColorstr="#47528a",GradientType=1);

}

.header_toggle {
  color: var(--white-color);
  font-size: 24px;
  cursor: pointer;
  left: 0px;
  transition: 0.5s;
}

.header_img {
  /*width: 35px;
	height: 35px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: var(--white-color);
}

.card .header_img {
  width: 80px;
  height: 80px;
}

.card .header_img img {
  width: 80px;
  height: 80px;
}

.header_img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: var(--first-color);
	    background-color: #3d4a85;
  padding: 8px 16px 0 0;
  transition: 0.5s;
  z-index: var(--z-fixed);
	
	    background: rgb(31, 42, 99);
    background: -moz-linear-gradient(0deg, rgba(31, 42, 99, 1) 0%, rgba(52, 63, 119, 1) 63%, rgb(46 105 197) 100%);
    background: -webkit-linear-gradient(90deg, rgba(31, 42, 99, 1) 0%, rgba(52, 63, 119, 1) 63%, rgb(46 105 197) 100%);
    background: linear-gradient(0deg, rgba(31, 42, 99, 1) 0%, rgba(52, 63, 119, 1) 63%, rgb(46 105 197) 100%);
	
}

.l-navbar .nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 16px;
  padding: 8px 10px 8px 14px;
}

.nav_logo {
  margin-bottom: 32px;
}

.nav_logo-icon {
  font-size: 20px;
  color: var(--white-color);
}

.nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
  white-space: nowrap;
}

.nav_link {
  position: relative;
  color: var(--first-color-light);
  margin-bottom: 10px;
  transition: 0.3s;
	
	font-size: 15px;
    line-height: 15px;
}

.nav_link:hover {
  color: var(--white-color);
}

.nav_icon {
  min-width: 22.5px;
  text-align: center;
}

.nav_icon i {
  font-size: 14px;
}

.nav_name {
  white-space: nowrap;
}

.nav-show {
  left: 0;
  width: calc(var(--nav-width) + 156px);
}

.body-pd {
  padding-left: var(--nav-width);
}

.nav_link.active {
  color: var(--white-color);
}

.nav_link.active::before {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}

.height-100 {
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.height-100 > .card {
  flex: 1;
  border-radius: 0;
  border: none;
}

*:has(> .table-responsive) {
  display: flex;
  flex-direction: column;
}

.table-responsive {
  flex: 1;
}

.card-header .breadcrumb li:not(.active) a {
  color: var(--bs-breadcrumb-item-active-color);
}

.card-header .breadcrumb li.active {
  color: var(--bs-card-title-color);
}







tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    font-size: 14px;
    line-height: 14px;
}

.table>:not(caption)>*>* {
padding: .5rem .5rem;
    background-color: transparent;
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}


.card{
	    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
	    overflow: auto;
}


thead{
	    z-index: 9;
    position: relative;
    box-shadow: 0 .325rem .55rem rgba(0, 0, 0, .075) !important;
}

thead th{
    font-size: 13px;
    line-height: 13px;
    font-weight: 800;
}


table.table tbody td {
    vertical-align: middle;
    font-size: 13px;
    font-weight: 600;
    text-align: left !important;
	max-width: 230px;
}

.form-label {
    margin-bottom: .1rem;
    font-weight: 700;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
    box-shadow: var(--bs-box-shadow-sm) ;
}




.form-control {
    display: block;
    width: 100%;
    padding: .675rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f5f5f5;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


	.tittle{
		display: flex !important;
		    align-items: center !important;
	}

@media screen and (max-width: 767px) {
	
	#notifications .dropdown-menu.show {
    display: block;
    max-width: 240px !important;
    min-width: 240px !important;
    width: 100%;
    left: 0 !important;
}
	
	.dropdown-menu.show {
	    left: auto !important;
    right: 0 !important;
	}
	
	.dropdown-item {

   white-space: normal;
	}

	
	.l-navbar {
      left: 0;
    width: calc(var(--nav-width) + 156px);
	}
	
		.nav-show {
    left: -30%;
    width: var(--nav-width);
}
	
	
		
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
 
    padding-right: calc(var(--bs-gutter-x)* 1) !important;
    padding-left: calc(var(--bs-gutter-x)* 1) !important;

}
	
	.header_img {
display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
		padding-left: 30px;
        color: var(--white-color);
        flex-direction: row;
        flex-wrap: wrap;
}
	
	.header {
    width: 100%;
    height: auto;
	}
	
	body {
     margin: 90px 0 0 0;
		padding-left: var(--nav-width);
	}
	
	.body-pd {
    padding-left: 0;
}
	
	.header_toggle {
        color: var(--white-color);
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        left: 240px;
        transition: 0.5s;
        background: #043289;
        padding: 0px;
        padding-left: 0px;
        padding-right: 0px;
        border-radius: 5px;
        z-index: 9;
}
	
	.header_toggle i{
	padding: 10px;
    padding-left: 13px;
    padding-right: 13px;
	}
	
  .body-pd .header_toggle {
    position: relative;
    left: 10px;
  }

  .body-pd .header {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 16px) 0 0 0;
    padding-left: var(--nav-width);
  }

  .header {
    height: calc(var(--header-height) + 16px);
    padding: 0 16px 0 calc(var(--nav-width) + 16px);
  }

  /*.header_img{
		width: 40px;
		height: 40px
	}*/

  .header_img img {
    width: 45px;
    height: 45px;
  }

  .l-navbar {
    left: 0;
    padding: 16px 10px 0 0;
  }

  .nav-show {
    width: calc(var(--nav-width) + 156px);
  }

  .body-pd {
    padding-left: calc(var(--nav-width) + 156px);
  }

  .header.body-pd {
    padding-left: calc(var(--nav-width) + 172px);
  }

  .height-100 {
    min-height: calc(100vh - 64px);
  }
}

@media screen and (max-width: 500px) {
  .img_home {
    flex-direction: column;
  }
}
