.carte {
  width: 80%;
  z-index: 2;
}

.carte .menu {
  background-color: #91979e;
  border-radius: 10px 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}

.carte .menu.open .store {
  height: 25rem;
}

.carte .menu.open .menuimg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.carte .menu.close .store {
  height: 0rem;
}

.carte .menu .menuimg {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.8s ease-in;
  transition: -webkit-transform 0.8s ease-in;
  transition: transform 0.8s ease-in;
  transition: transform 0.8s ease-in, -webkit-transform 0.8s ease-in;
}

.carte .menu .menuimg img {
  height: 25px;
  margin: 0 auto;
}

.carte .menu .store {
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  border-top: 1px solid black;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.carte .menu .store .title-store {
  text-align: center;
  padding: 10px;
  border-bottom: 1px dashed black;
}

.carte .menu .store .selection-store {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-bottom: 1px solid black;
}

.carte .menu .store .selection-store input {
  font-size: 1.2rem;
  font-family: "Comfortaa", cursive;
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.carte .menu .store .selection-store .active-selection {
  font-weight: bold;
}

.carte .menu .store .up-list-store {
  height: 300px;
  overflow-y: scroll;
}

.carte .menu .store .up-list-store::-webkit-scrollbar {
  width: 7px;
  background-color: none;
}

.carte .menu .store .up-list-store::-webkit-scrollbar-thumb {
  background-color: #6b6b6b;
}

.carte .menu .store .boost-list-store {
  height: 300px;
  overflow-y: scroll;
}

.carte .menu .store .boost-list-store::-webkit-scrollbar {
  width: 7px;
  background-color: none;
}

.carte .menu .store .boost-list-store::-webkit-scrollbar-thumb {
  background-color: #6b6b6b;
}

.carte .menu .store .item {
  padding: 5px 10px;
  border-bottom: 1px dashed black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: relative;
}

.carte .menu .store .item h3 {
  margin-bottom: 5px;
}

.carte .menu .store .item .blocking {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.75);
}

.carte .menu .store .item .blocking.close {
  opacity: 0;
}

.carte .menu .store .item .blocking img {
  height: 25px;
  margin: 10px;
}

.carte .menu .store .item .valid {
  background-color: rgba(12, 77, 15, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
}

.carte .menu .store .item .valid img {
  height: 25px;
  margin: 10px;
}
/*# sourceMappingURL=carte.css.map */