@font-face{font-family: 'Ubuntu';src: url("./fonts/Ubuntu-Regular.ttf");}

:root {
	--blue: #2a2185;
	--white: #fff;
	--smWhite: #6458d6;
	--green : #2b9a83;
	--red : #d91341;
	--orange : #f09c34;
	--grey : #a1a1a1;
	--grey2 : #e6e6e6;
	--gray: #f9f9f9;
	--shadow: #e6e6e6;
	--black1: #3b3b3b;
	--black2: #a8a8a8;
}

body{
	overflow-x: hidden;
	background: var(--white);
}

body::-webkit-scrollbar {
  width: 10px; /* width of the entire scrollbar */
}
*::-webkit-scrollbar {
  width: 10px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: none; /* color of the tracking area */
}

*::-webkit-scrollbar-track {
  background: none; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  	background-color: var(--blue); /* color of the scroll thumb */
  	border-radius: 20px; /* roundness of the scroll thumb */
  	border: 2px solid #edf2f9; /* creates padding around scroll thumb */
}
*::-webkit-scrollbar-thumb {
	background-color: var(--blue);
	border-radius: 20px;
	border:2px solid white;
}
button{
	border: none;
	background: none;
	
}
.container {
	max-height: 100vh;
	posision : relative;
	width: 100%;
	font-family: "Ubuntu", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.menu-bar{
	position: fixed;
	width: 270px;
	height: 100%;
	background: var(--blue);
	height: 100%;
	border-left: 10px solid var(--blue);
	transition: 0.2s;
	overflow: hidden;
}
.menu-bar ul{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0px;
}
.menu-bar ul li {
	margin: 0px;
	width: 100%;
	list-style: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.menu-bar ul li:hover{
	background: linear-gradient(to right,var(--shadow),var(--white) 80%);
}

.menu-bar ul li:nth-child(1) {
	margin-bottom: 40px;
	pointer-events: none;
	margin-top: 10px;
	font-weight: bolder;
}
.menu-bar ul li a {
	position: relative;
	display: block;
	width: 100%;
	display: flex;
	text-decoration: none;
	color: var(--white);
}
.menu-bar ul li:hover a {
	color: var(--blue);
	transition: 0.3s;
}

.menu-bar ul li a .icon {
	position: relative;
	display: block;
	min-width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	z-index: 5;
}
.menu-bar ul li a .icon ion-icon {
	font-size: 1.3rem;
}

.menu-bar ul li a .title{
	position: relative;
	display: block;
	padding: 0 10px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: start;
	white-space: nowrap;
	font-size: 0.9rem;
}

/*--------------curve outside------*/

.menu-bar ul li:hover a::before{
	content: '';
	position: absolute;
	right: 0;
	top: -40px;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 30px 30px 0 10px var(--white);
	pointer-events: none;
	z-index: 1;
}

.menu-bar ul li:hover a::after{
	content: '';
	position: absolute;
	right: 0;
	bottom: -40px;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 30px -30px 0 10px var(--white);
	pointer-events: none;
	z-index: 1;
}
/*====================== ACTIVE =======================*/
.menu-bar ul .active {
	background-color: var(--white);
}
.menu-bar ul .active a {
	color: var(--blue);
}
.menu-bar ul .active a::before{
	content: '';
	position: absolute;
	right: 0;
	top: -40px;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 30px 30px 0 10px var(--white);
	pointer-events: none;
	z-index: 1;
}
.menu-bar ul .active a::after{
	content: '';
	position: absolute;
	right: 0;
	bottom: -40px;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 30px -30px 0 10px var(--white);
	pointer-events: none;
	z-index: 1;
}

/*======================= MAIN =======================*/
.main{
	position: absolute;
	width: calc(100% - 280px);
	height: 100%;
	left: 280px;
	min-height: 100vh;
	/*background-color: var(--white);*/
	background: linear-gradient(to left,var(--white), var(--white));
	transition: 0.2s;
}

.topbar{
	width: 100%;
	height: 45px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px;
	padding-right: 10px;
	padding-left: 10px;
}

.body{
	min-height: 50%;
	max-height: calc(100% - 45px);
	padding: 15px;
	overflow: auto;
	display: grid;
	grid-template-columns: repeat(4, 0fr);
	grid-gap: 0px;
}
.smart-body{
	padding: 15px;
	overflow: auto;
	height: calc(100% - 48px);
	display: inline-flex;
}
.smart-body2{
	padding: 8px 15px 15px 15px;
	overflow: auto;
	height: calc(100% - 90px);
	display: inline-flex;
}
.mini-smart-body{
	padding: 9px 15px 0px 15px;
	display: inline-flex;
}
.styl-details:hover{
	box-shadow: 0px 0px 3px var(--blue);
	transition: 0.4s;
}
.slide{
	border-radius: 5px;
	position: relative;
	width: 200px;
	height: 120px;
	padding: 0px;
	margin-left: 10px;
	margin-right: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 3px var(--grey);
}

.slide:hover{
	transition: 0.3s;
	box-shadow: 0px 0px 3px var(--white);
}

.inerslide1{
	position: relative;
	width: 100%;
	height: 90px;
	padding-top: 20px;
	margin: 0px;
	background-color: var(--black1);
	color: var(--white);
	font-size: 20px;
	padding-left: 20px;
}


.inerslide2{
	position: relative;
	width: 100%;
	height: 30px;
	padding-top: 4px;
	margin: 0px;
	background-color: var(--black2);
	color: var(--white);
	font-size: 15px;
	padding-left: 20px;
}

a{
	text-decoration: none;
	font-style: none;
}
.search{
	border: 2px solid var(--blue);
	border-radius: 50px;
	padding: 5px;
	padding-left: 20px;
	padding-right: 10px;
	width: 35%;
	position: relative;
}
.search input{
	border: none;
	outline: none;
	width: calc(100% - 50px);
	position: absolute;
	top: 2px;
}
.search ion-icon{
	position: absolute;
	top: 4px;
	right: 10px;
}
.adduser{
	height: 70vh;
	display: block;
	position: relative;
}
#insertfile{
	display: none;
}
.big-icon{
	font-size: 40px;
}
.round{
	background-color: var(--shadow);
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 15px;
	color: var(--white);
	height: 61px;
}
.insimple{
	border-radius: 7px;
	width: 100%;
	height: 33px;
	border: 1px solid var(--grey);
	padding-left: 15px;
	padding-right: 15px;
	outline: none;
	font-size: 13px;
}
.inview{
	background: none;
	width: 100%;
	height: 25px;
	font-size: 13px;
	outline: none;
	border: none;
	padding-left: 5px;
	padding-right: 5px;
	margin: 0px;
	border-bottom: 1px solid var(--shadow);
	color: grey;
}
.classement{
	line-height: 45px;
	width: 100%;
}
.inclass{
	padding: 5px;
}
.content{
	margin-right: 15px;
}
.flex{
	display: flex;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.block{
	display: block;
	margin: 0px;
	padding: 0px;
}
.btn-submit{
	background-color: var(--blue);
	color: white;
}
.btn-default{
	background-color: var(--gray);
}
.btn{
	border-radius: 10px;
	height: 40px;
}
.btn-sm{
	border-radius: 2px;
	height: 32px;
}
.big-content{
	background: var(--gray);
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	height: 80%;
	margin-top: 70px;
	padding: 15px;
	position: relative;
	display: block;
	overflow-y: auto;
}
.small-img{
	border-radius: 8px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--black2);
}
.xs-img{
	border-radius: 5px;
	width: 25px;
	height: 25px;
	border: 1px solid var(--shadow);
}
.b-head{
	color: var(--black1);
	font-size: 13px;
	font-weight: bold;
}
.b-title{
	color: var(--blue);
	font-size: 13px;
	font-weight: bold;
}
.b-soustitle{
	font-size: 13px;
	font-weight: bold;
	line-height: 0;
}
.b-content{
	font-size: 12px;

}
.sans-espacement{
	line-height: 15px;
}
.selected:hover{
	background: var(--gray);
	transition: 0.1s;
}
.selected2{
	padding: 5px;
}
.selected2:hover {
	background: var(--blue);
	color: white;
	transition: 0.1s;
}
a{
	color: var(--black1);
}
.table{
	height: 100%;
}
.thead{
	display: block;
	width: 100%;
}
.tbody{
	height: calc(100% - 40px);
	width: 100%;
	display: block;
	overflow-y: scroll;
}
.styl-emp{
	/*box-shadow: 0px 0px 8px var(--shadow);*/
	background: var(--gray);
	border-radius: 6px;
	height: 100%;
	padding: 12px;
	margin-right: 10px;
}
.styl-details{
	/*box-shadow: 0px 0px 8px var(--shadow);*/
	background: var(--gray);
	border-radius: 6px;
	height: 100%;
	padding: 12px;
	width: 100%;
	transition: 0.4s;
}

.styl-menu-button{
	background: var(--blue);
	color: white;
	border-radius: 10px;
	height: 35px;
	padding: 5px 15px 5px 15px;
	width: 100%;
}

.smal-details{
	box-shadow: 0px 5px 30px var(--shadow);
	background: var(--white);
	border-radius: 10px;
	padding: 12px;
	width: 100%;
	height: 100%;
	transition: 0.5s;
}
.hover-type:hover{
	background: var(--blue);
	transition: 0.2s;
}
.hover-type:hover h1{
	color: var(--white);
	transition: 0.2s;
}
.hover-type:hover b{
	color: var(--white);
	transition: 0.2s;
}

.padd-h-12{
	padding-left: 6px;
	padding-right: 6px;
}
.padd-v-12{
	padding-top: 0px;
	padding-bottom: 12px;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
/*========================= COLOR ==========================*/
.b-white{
	color: var(--white);
}
.b-sm-white{
	color: var(--smWhite);
}
.b-blue{
	color: var(--blue);
}
.b-orange{
	color: var(--orange);
}
.b-gray{
	color: var(--gray);
}
.b-red{
	color: var(--red);
}
.b-green{
	color: var(--green);
}
.b-black{
	color: var(--black1);
}
.big-icon{
	font-size: 50px;
}
.sous-styl-emp{
	text-align: right;
	color: grey;
}
/*============================ BACK THEM ============================*/
.back-blue{
	background: var(--blue);
	color: white;
}
.back-green{
	background: var(--green);
	color: white;
}
.back-orange{
	background: var(--orange);
	color: white;
}
.back-red{
	background: var(--red);
	color: white;
}
.back-grey{
	background: var(--grey);
	color: white;
}
.back-grey2{
	background: var(--grey2);
	color: white;
}
.back-gray{
	background: var(--gray);
	color: white;
}
.back-black1{
	background: var(--black1);
	color: white;
}
.back-black2{
	background: var(--black2);
	color: white;
}
.back-white{
	background: var(--white);
	color: black;
}
/*================================================*/
/*-------------------------------------------------------------------*/

a.ttip em {
	display: none;
}

a.ttip:hover {
 position: relative;
 z-index: 500;
}

a.ttip:hover em {
 display: block;
 position: absolute;
 top: 20px;
 left: 0px;
 width: 200px;
 padding: 5px;
 color: white;
 border-radius: 4px;
 background: var(--black1);
 opacity: 0.9;
}

.mini-menu {
	list-style: none;
	margin-left: 0px;
	font-size: 14px;
	line-height: 35px;
}
.mini-menu i{
	font-size: 20px;
	padding-right: 15px;
}
.mini-menu div{
	width: 100%;
	padding-left: 12px;
	padding-right: 12px;
	border-radius: 4px;
	font-weight: bold;
	margin-top: 5px;
}
.mini-menu div:hover{
	background: var(--white);
	color: var(--black1);
}
.mini-active {
	background: var(--blue);
	color: white;
}
.slim{
	margin: 2px;
}
.photos{
	width: 70px;
	height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 10px;
	border-radius: 4px;
	border: 1px solid var(--shadow);
}
.newphotos{
	width: 70px;
	height: 80px;
	background: grey;
	margin-top: 10px;
	border-radius: 4px;
	margin-left: 12px;
	position: relative;
}
.newphotos span{
	color: white;
	position: absolute;
	top: 24%;
	left: 28%;
	font-size: 30px;
}
.newphotos input{
	width: 70px;
	height: 80px;
	opacity: 0;
}

/*========================= LOGIN ==========================*/

.body-log{
	background-image: url('../data/files/ai-generated-8428726_1280.jpg');
	backdrop-filter: blur(3px);
	/*background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background: var(--blue);*/
	height: 100vh;
	width: 100%;
	position: relative;
}
.back-log{
	background-color: var(--blue);
	opacity: 0.7;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.content-log{
	position: relative;
	margin: auto;
	padding-top: 100px;
	height: 100vh;
	z-index: 2;
}
.form-log{
	box-shadow: 0px 0px 2px black;
	/*border: 1px solid #2f2a2a;*/
	border-radius: 10px;
	margin: auto;
	/*backdrop-filter: blur(100px);*/
	background: var(--white);
	transition: 0.2s;
	padding: 20px;
}
.content-log h2{
	
	color: var(--blue);
	font-family: 'Ubuntu';
	text-align: center;
	border-radius: 4px;
	height: 42px;
}
.in-log{
	width: 80%;
	margin: auto;
	height: 40px;
	border: 1px solid var(--black1);
	border-radius: 20px;
	display: flex;
	color: var(--blue);
	padding-left: 10px;
	padding-right: 0px;
}
.in-log input{
	background: none;
	height: 100%;
	width: calc(100% - 10px);
	border: none;
	outline: none;
	color: var(--black1);
	padding-left: 12px;
	padding-right: 12px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
.in-log i{
	font-size: 25px;
}
.eye{
	margin-right: 10px;
}
.btn-log{
	width: 80%;
	margin: auto;
	height: 40px;
	display: flex;
}
.btn-log button{
	background: var(--blue);
	border: none;
	border-radius: 20px;
	width: 100%;
	height: 40px;
	color: white;
	text-align: center;
}
.in-check{
	width: 80%;
	margin: auto;
	height: 40px;
	color: black;
}
.in-check input{
	width: 40px;
}
.absence{
	border-right: 1px solid var(--shadow);
	height: 100%;
	padding-right: 10px;
	overflow-y: auto;
}
.inputgroup{
	display: flex;
	width: 100%;
	border: 1px solid var(--shadow);
	height: 35px;
	border-radius: 5px;
	text-align: center;
	background: var(--white);
}
.inputgroup input{
	display: none;
}
.inputgroup .radio1,.radio2{
	border-right: 1px solid var(--shadow);
}
.inputgroup .radio1,.radio2,.radio3{
	padding-top: 3px;
}
.inputgroup .radio1{
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.inputgroup .radio3{
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background: var(--blue);
	color: white;
}
.date-autorisation div{
	width: 48%;
}
.cautat{
	padding-bottom: 5px;
	background: var(--white);
	border-radius: 5px;
	box-shadow: 0px 0px 3px var(--shadow);
}
.cot{
	text-align: center;
}
.calendar{
	padding-left: 10px;
}
.tbl-calendar{
	width: 80%;
	height: 80%;
	margin: auto;
	border-collapse: collapse;
}

.case{
	border: 1px solid var(--shadow);
}
.slide-menu{
	padding: 12px;
	border-radius: 8px;
	color: white;
	position: relative;
	height: 180px;
	margin-bottom: 30px;
	overflow: hidden;
	
}
.slide-menu:hover .i{
	transform: rotate(-20deg);
	transition: 1s;
}
.slide-menu .i{
	color: black;
	font-size: 170px;
	position: absolute;
	opacity: 0.2;
	top: -40px;
	right: -20px;
	transition: 0.4s;
}
.slide-foot{
	position: absolute;
	height: 30px;
	width: 100%;
}



.simple-table{
	border: 1px solid var(--shadow);
	width: 100%;
	border-collapse: collapse;
}
.simple-table th{
	border: 1px solid var(--shadow);
	padding: 0px 5px 0px 5px;
	background: var(--white);
}
.simple-table td{
	border: 1px solid var(--shadow);
	padding: 0px 5px 0px 5px;
}
.simple-table thead{
	font-size: 11px;
}
.simple-table tbody{
	font-size: 11px;
}


/* =============================== DROPDOWN ================================  */

.drop{
	position: relative;
}
.drop-menu{
	display: none;
	position: absolute;
	list-style: none;
	z-index: 9;
	background: var(--blue);
	border-radius: 10px;
	margin: 5px;
	padding: 12px 0px 12px 0px;
	min-width: 200px;
}
.drop-menu a{
	font-size: 14px;
	color: white;
	margin: 0px 12px 0px 12px;
}
.drop-menu li{
	height: 30px;
}
.drop-menu i{
	margin: 0px 10px 0px 5px;
}
.drop-menu li:hover{
	background: var(--white);
}

.drop-menu li:hover a{
	color: var(--blue);
}

.drop-left{
	right: 10px;
}
.drop-hr{
	color: white;
}

/* ======================== MODAL =========================  */

.notif-fade{
		backdrop-filter: blur(5px);
	}
	.notif-centered{

	}
	.notif-content{
		border-radius: 5px;
		backdrop-filter: blur(50px);
		border: none;
	}
	.notif-head, .notif-body, .notif-foot{
		padding: 12px;
	}
	.notif-foot{
		display: flex;
	}
	.btn-simple{
		background: var(--grey);
		color: white;
	}

	.select:hover{
		background: #dbdbdb;
	}
	.link-disabled{
		cursor: not-allowed;
		pointer-events: none;
		text-decoration: none;
		opacity: 0.5;
	}
	#org-form{
		background: linear-gradient(to right,var(--white),var(--blue));
		height: 10px;
		border-radius: 3px;
		border: 1px solid var(--blue);
	}
	.radiosimple{
		width: 16px;
		height: 16px;
		margin-top: 12px;
		margin-right: 12px;
		margin-left: 12px;
	}

	/*=============================== NOTIFICATION ================================*/

	.bottom-notif-content{
		display: none;
		border-radius: 5px;
		position: absolute;
		z-index: 9;
		width: 20%;
		min-width: 400px;
		min-height: 150px;
		bottom: 20px;
		right: 20px;
		background: var(--blue);
		border: 1px solid var(--shadow);
		opacity: 0.9;
		transition: 0.2s;
	}
	.bottom-notif-content:hover{
		opacity: 1;
		transition: 0.2s;
	}

.bottom-notif-content	.bottom-head{
		padding: 5px 10px 0px 10px;
		height: 25px;
		color: white;
	}
.bottom-notif-content	.bottom-head a{
		color: white;
	}

.bottom-notif-content	.bottom-body{
		padding: 5px 10px 0px 10px;
		color: white;
		min-height: 80px;
	}
.bottom-notif-content	.bottom-foot{
		padding: 5px 10px 0px 10px;
	}

/*---------------- POINTER EVENTS ----------------*/
.pointer-auto{
	pointer-events: auto;
}
.pointer-stroke{
	pointer-events: stroke;
}
.pointer-none{
	pointer-events: none;
}
.pointer-fill{
	pointer-events: fill;
}
.pointer-all{
	pointer-events: all;
}
.pointer-painted{
	pointer-events: painted;
}
.visible{
	pointer-events: visible;
}