button.open-menu {
  font-family: fantasy;
  font-size: 15px;
  letter-spacing: 5px;
  background: transparent;
  border: none;
  outline: none;
  color: rgb(199, 43, 43);
  cursor: pointer;
  left: -100%;
  /* transition: left 1s;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite; */
}

button.open-menu-disabled {
  font-family: fantasy;
  font-size: 15px;
  letter-spacing: 5px;
  background: transparent;
  border: none;
  outline: none;
  color: rgb(199, 43, 43);
  cursor: pointer;
  left: -100%;
  /* transition: left 1s;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite; */
}

@keyframes pulse {
  0% {
    font-size: 15px;
  }
  50% {
    font-size: 17px;
  }
  100% {
    font-size: 15px;
  }
}

button.close-menu {
  font-family: fantasy;
  font-size: 15px;
  letter-spacing: 5px;
  background: transparent;
  border: none;
  outline: none;
  color: rgb(209, 49, 49);
  cursor: pointer;
  left: -100%;
  transition: left 1s;
}

.activeted {
  left: 0;
}

.popup-applet {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: auto;
  left: 50%;
  top: 50%;
  z-index: -1;
  background: rgba(250, 250, 250, 1);
  transform: translate(-150%, -50%);
  transition: transform 1s 1s, height 1s;
}

.open-popup-applet {
  height: auto;
  transform: translate(-50%, -50%);
  transition: transform 1s, height 1s 1s;
  z-index: 50;
}
.revers-popup-applet {
  height: auto;
  transform: translate(-150%, -50%);
  transition: transform 1s, height 1s 1s;
  z-index: -1;
}
.close-popup-applet {
  height: auto;
  transform: translate(-50%, -50%);
  transition: transform 1s, height 1s 1s;
}
