:root {
  --header-height: 48px;
  --nav-width: 55px;
  --first-color: #222d32;
  --first-color-light: #aacdf9;
  --white-color: #003049;
  --body-font: 'Nunito', sans-serif;
  --normal-font-size: 16px;
  --z-fixed: 100;
}

*,
::before,
::after {
	box-sizing: border-box;
}

#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;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
  background-color: #fff;
}

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: #ebf1fa;
	z-index: var(--z-fixed);
	transition: 0.5s;
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(to right, #eaeaea, #f5f5f5);
	background: -webkit-linear-gradient(to right, #eaeaea, #f5f5f5);
	background: linear-gradient(to right, #eaeaea, #f5f5f5);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebf1fa",endColorstr="#fff",GradientType=1);
}
.header_toggle {
  color: #003049;
  font-size: 24px;
  cursor: pointer;
  left: 0px;
  transition: 0.5s;
}
.header_img {
  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%;
}

.form-check-input {

    border: var(--bs-border-width) solid #a7a7a7;
}

.l-navbar {
	position: fixed;
	overflow: hidden;
	    box-shadow: 0 0.5rem 9rem rgba(0, 0, 0, 0.15);
	top: 0;
	left: -30%;
	width: var(--nav-width);
	height: 100vh;
	background-color: var(--first-color);
	background-color: #fff;
	padding: 8px 16px 0 0;
	transition: 0.5s;
	z-index: var(--z-fixed);
	background: rgb(255, 255,255);
	background: -moz-linear-gradient(to bottom, rgb(255 255 255), rgb(242 242 242));
	background: -webkit-linear-gradient(to bottom, rgb(255 255 255), rgb(242 242 242));
	background: linear-gradient(to bottom, rgb(255 255 255), rgb(242 242 242));
}

.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: #003049;
	margin-bottom: 10px;
	transition: 0.3s;
	font-size: 15px;
	line-height: 15px;
}

.nav_link:hover {
  	color: var(--white-color);
	background: #ebf1f7;
	border-radius: 0 10px 10px 0;
	transition: background-position 0.4s linear;
}

.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: #008bb4;    
	background: #f3f3f3;
    border-radius: 0 10px 10px 0;
}

.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);
}

.bg-secondary {
    --bs-bg-opacity: 1;
   background-color: rgb(98 175 198) !important;
}

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: .8rem .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: 16px;
	line-height: 16px;
}

table.table tbody td {
vertical-align: middle;
    font-size: 13px;
    font-weight: 600;
    text-align: left !important;
    max-width: 230px;
    border: solid 1px #d8d8d8;
}

.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: .375rem .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: #e9ecef;
    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) {
	
	
	.mt20{
		margin-top: 20px;
	}
	
			.mob{
	
    min-width: 100% !important;
    width: 100% !important;
     clear: both !important;
    float: left !important;

}
	
			.flex_mob {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.rowwrap_mob  {
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.columnwrap_mob  {
	-webkit-flex-flow: column wrap;
	-moz-flex-flow: column wrap;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
}


.right_mob  {
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
}

.center_mob  {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.space-around_mob  {
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}
.space-between_mob  {
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
.space-evenly_mob  {
	-webkit-justify-content: space-evenly;
	-moz-justify-content: space-evenly;
	-ms-justify-content: space-evenly;
	justify-content: space-evenly;
}
.align_mob  {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}


.start_mob  {
    -webkit-align-items: start;
    -moz-align-items: start;
    -ms-align-items: start;
    align-items: start;
}

.end_mob  {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
}

	
	
	
	#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) + 176px);
	}
	.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 {
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        left: 230px;
        top: 0;
        transition: 0.5s;
        background: #ffffff;
        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;
	}
}


.icone{
    background-color: #eceff4;
    border-radius: 0;
    padding: 7px;
    font-size: 14px;
}


.card-header {
    padding: 0;
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: 0;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgb(255 255 255) !important;
}

a.card{
	    transition-duration: 0.5s;
    transition-property: transform;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

a.card:hover{
	    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1) !important;   
	background-color: #fefefe;
}



.program-link{
	background: #0087ff;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 16px;
}

@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 img {
		width: 45px;
		height: 45px;
	}
	.l-navbar {
		left: 0;
		padding: 16px 10px 0 0;
	}
	.nav-show {
		width: calc(var(--nav-width) + 176px);
	}
	.body-pd {
		padding-left: calc(var(--nav-width) + 176px);
	}
	.header.body-pd {
		padding-left: calc(var(--nav-width) + 192px);
	}
	.height-100 {
		min-height: calc(100vh - 64px);
	}
}

@media screen and (max-width: 500px) {
	.img_home {
		flex-direction: column;
	}
}