*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

body {
  background-color: rgba(0, 0, 0, 0.95);
  color: #18191d;
}

.baniere {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  background-image: "entete.png";
}



.container {
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

a {
  color: #18191d;
  font-family: Arial, Helvetica, sans-serif;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(102, 102, 102, 0.95);
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
          box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  height: auto;
  font-family: Arial, Helvetica, sans-serif;
}

.menu-list {
  margin: 0;
  display: block;
  width: 100%;
  padding: 8px;
}

.menu-list + .menu-list {
  border-top: 3px solid #d92027;
}

.menu-sub-list {
  display: none;
  padding: 2px;
  background-color: rgba(102, 102, 102, 0.95);
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
          box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  position: absolute;
  left: 99%;
  right: 0;
  z-index: 100;
  width: 100%;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-sub-list:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-item {
  position: relative;
}

.menu-button {
  border: 0;
  padding: 8px 8px;
  padding-right: 36px;
  width: 100%;
  margin-bottom: 5px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #96bbb3;
}

.menu-button:hover {
  background-color: #dff3b8;
}

.menu-button:hover + .menu-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-button--delete:hover {
  color: #d92027;
}

.menu-button--orange {
  background-color: #dc9960;
}

.menu-button--green {
  background-color: #1eb8b1;
}

.menu-button--purple {
  background-color: #657cc4;
}

.menu-button--black {
  background-color: #18191d;
}

.menu-button--checked {
  background-color: #d92027;
}

.menu-button--nouveau {
  background-color: #dc9960;
  -webkit-animation-name: essai;
          animation-name: essai;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

 @media screen and  (max-width: 800px){
     .main{
         visibility : hidden ;
         
     }
 }



@-webkit-keyframes essai {
  from {
    background-color: #dc9960;
    color: black;
  }
  to {
    background-color: #d92027;
    color: white;
  }
}

@keyframes essai {
  from {
    background-color: #dc9960;
    color: black;
  }
  to {
    background-color: #d92027;
    color: white;
  }
}
/*# sourceMappingURL=style.css.map */