*{
	box-sizing: border-box;
	outline: 0;
	scrollbar-width:none;
}
/* general */
@keyframes comeDown{
	from{top:0; opacity: 0}
	to{top:30px; opacity: 1;}
}
#notifPanel{
	position: fixed;
	top:-56px;
	opacity:0;
	width:300px;
	border-width: 0px 0px 0px 6px;
	left:calc((50% + 70px) - 150px);
	padding:7px;
	height: 36px;
	z-index: 5000;
}
.normal{
	background-color: white;
	border:1px solid grey;
}
.error{
	background-color: #ffdddd;
	border:solid red;
}
.success{
	background-color: #ddffdd;
	border:solid #4CAF50;
}
.info{
	background-color:  #e7f3fe;
	border:solid #2196F3;
}
.warning{
	background-color:  #ffffcc;
	border:solid #ffeb3b;
}
#closeMes{
	position: absolute;
	width: 160px;
	background-color: grey;
	color: white;
	padding: 1px;
	text-align: center;
	border-radius: 0px 0px 5px 5px;
	left:calc(50% - 80px);
	bottom:-21px;
	height: 21px;

}
#notifClose{
	position: absolute;
	right: 10px;
	cursor:pointer;
	color:grey;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 26px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/*Code started */
body{
	margin:0;
	background-color: #f5f5f5;
}
#head{
	position: fixed;
	background-color: black;
	width:100%;
	height:56px;
	padding:5px 20px;
	color:white;
	display:flex;
	justify-content: space-between;
	align-items: center;
	z-index: 20000;
}
#hIndex{
	color:white;
	text-decoration: none;
	font-size: 34px;
}
#headProf{
	position: relative;
	background-color: grey;
	display:flex;
	align-items: center;
	padding:0px 5px;
	border-radius: 30px;
	height: 33px;
}
#headProf:hover #editSpan{
	display:block;
}
#editSpan{
	display:none;
	position: absolute;
	bottom:-25px;
	background-color: grey;
	width:87px;
	padding:3px 0px;
	text-align: center;
	left:13px;
}
#editSpan a{
	color:white;
	text-decoration: none;
}
#editSpan a:hover{
	text-decoration: underline;
}
#headPic{
	width:30px;
	height: 30px;
}
nav{
	position: fixed;
	top:56px;
	width:140px;
	background-color:#323267 ;
	height: 100%;
	z-index: 10px;
}
nav a{
	color:white;
	border-bottom:1px solid #ffffffc7;
	display:block;
	padding:15px 10px;
	text-decoration: none;
	cursor:pointer;
}
#actif{
	background-color: #f5f5f5;
	color:#323267;
}
section{
	padding-top:56px;
	margin-left:140px;
}
#sugFormDiv{
	width:400px;
	height:360px;
	background-color: white;
	border:1px solid grey;
	position: fixed;
	top:calc(50% - 180px);
	left:100%;
	transition: .5s;
}
#sugFormDiv button{
	padding:5px;
	border-radius: 0;
	background-color: black;
	color:white;
	border:0;
	position: absolute;
	transform: rotate(90deg);
	left:-25.5%;
	top:135px;
	font-weight: bold;
	cursor:pointer;
	outline: 0;
}
#sugFormDiv h3{
	border-bottom: 1px solid #00000026;
	padding-bottom: 10px;
	padding-left:15px;
}
#sugFormDiv h3 i{
	color:#02ccba;
	position: absolute;
	right:18px;
	cursor: pointer;
}
#sugFormDiv div{
	width:90%;
	margin:auto;
}
#sugFormDiv div label{
	display:block;
}
#sugFormDiv div input, #sugFormDiv div textarea{
	width:100%;
	border:1px solid #02ccba;
	padding:7px;
	margin-bottom: 10px;
}
#sugFormDiv input[type=submit]{
	border:0;
	display:block;
	padding:15px 50px;
	margin-top: 15px;
	margin-left: 5%;
	background: linear-gradient(88deg, #02b3e4, #02ccba);
	font-weight: bold;
	color:white;
}
#sugFormDiv label{
	color:#02ccba;
}
#cust{
	margin:20px 0px 0px;
}
label {
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
}
#sugForm select{
	width:100%;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 9px;
    outline: 0;
    background-color: white;
    background-image: url(../images/se.png);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right;
    border: 1px solid #02ccba;
    margin-bottom: 15px;
    border-radius: 0px;
    color: #02ccba;
}

input[type=submit]{
	cursor:pointer;
}
input[type=submit]:active{
	transform: scale(0.90);
}
