.table-style  {
    border-collapse: collapse;
    box-shadow: 0 5px 50px rgba(0,0,0,0.15);
    cursor: pointer;
    margin: 0px auto;
    border: 0px solid midnightblue;
}


thead tr {
    background-color: midnightblue;
    color: #fff;
    text-align: left;
}

th, td {
    padding: 15px 20px;
    text-align: center;
}

tbody tr, td, th {
    border: 1px solid #ddd;
}

tbody tr:nth-child(even){
    background-color: #f3f3f3;
}


/* Réinitialiser les styles par défaut du navigateur 
* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    border-spacing: 0;
    box-sizing: border-box;
  }
  
    Retirer les pastilles avant les items des listes */
  ul {
    list-style: none;
  }
  /*
  body {
    background-color: #e7e7e8;
  }
    */
  a {
    color: #401acb;
    text-decoration: none;
  }

  .menu-label,
  .menu-cb {
    cursor: pointer;
    appearance: none;
    position: fixed;
    height: 32px;
    width: 32px;
    top: 20px;
    right: 30px;
    z-index: 4;
  }
  
  .menu-nav {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: 90%;
      max-width: 400px;
    padding-top: 110px;
    text-align: right;
    background: rgb(255, 251, 251);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 1s linear;
  }
  
  .menu-item {
    padding: .5em 20px;
    border-top: 1px solid rgb(255, 255, 255);
  }
  
  .menu-cb:checked ~ .menu-nav {
    transform: translateX(0);
  }
  
  .menu-cote {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  .loader {
	position: absolute;
	height: 48px;
	width: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.loader div {
	display: inline-block;
	vertical-align: middle;
}

.loader .logo {
	border-radius: 50%;
	height: 48px;
	width: 48px;
	position: relative;
	transition: transform .3s, -webkit-transform .3s;
  -webkit-animation: overlay-animate 2s alternate infinite ease-in-out;
  animation: overlay-animate 2s alternate infinite ease-in-out;
}

.loader .logo::before {
	content: '';
	position: absolute;
	right: 22px;
	top: 2px;
	width: 350px;
	height: 44px;
	background: hwb(0 100% 0%);
}

.loader .logo img {
	height: 100%;
	width: 100%;
	z-index: 2;
	position: relative;
	transition: inherit;
  	animation: logo-animate 2s alternate infinite ease-in-out;
}

.loader .name {
	font-family: sans-serif;
	font-size: 2.5rem;
	color: rgb(50, 3, 180);
	text-shadow: 0 0 8px #000
}

@keyframes overlay-animate {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(350px);
    transform: translateX(350px);
  }
}

@keyframes logo-animate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

