#menu-container {
    width: 50px;
    min-height: 400px;
    background-color: #000000;
    overflow-x: hidden;
    overflow-y: hidden;
  }

#menu-closed {
  background-color: #000000;
  width: 50px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: slideLeft;
  animation-duration: 0.5s;
}
@keyframes slideLeft {
  0% {
    width: 150px;
  }
  50% {
    width: 80px;
  }
  100% {
    width: 50px;
  }
}

#menu-opened {
  background-color: #000000;
  width: 300px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: slideRight;
  animation-duration: 2.9s;
  z-index: 150;
}
.menu-fullsize {
  width:100vw !important;
  height: 90vh !important;
  background-color: #2b2b2b00;
  display: flex;
}
#menu-produces-search-container{
  width: calc(100vw - 70px);
  height: 70px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  background-color: #ffffff00;
}
#menu-produces-container{
  width: calc(100vw - 70px);
  height: 82vh;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  background-color: #0e0e0e00;
  align-items: center;
  justify-content: center;
}
.produces-card{
  width: 350px;
  height: 350px;
  padding: 0px;
  border: 1px solid rgb(41, 41, 41);
  margin-bottom: 50px;
  margin-left: 50px;
  background-color: #0f0f0f;
  word-wrap: break-word;
  cursor: pointer;
  overflow: hidden;
}
#produces-head{
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  font-size: 1.2em;
  margin-top: -80px;
  background-color: #0f0f0f;
  animation-iteration-count: 1;
  animation-duration: 1.4s;
}
@keyframes pullDown {
  0% {
    margin-top: -80px;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes pullUp {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: -80px;
  }
}
.produces-card h3{
  padding-left: 5px;
  padding-right: 5px;
  /* backdrop-filter: blur(10px); */
  padding-bottom: 100px;
  position: relative;
  font-size: 0.8em;
  font-weight: 400;
  color: #c5bfbf;
  background-color: #0f0f0f;
  font-family: "Figtree", sans-serif;
}
#produces-media {
  background-color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
  justify-content: center;
  align-items: center;
  animation:  0.5s slideUp;
  animation-iteration-count: 1;
  animation-direction: reverse;
}

@keyframes slideUp {
  0% {
    margin-bottom: 0px;
  }
  100% {
    margin-bottom: 150px;
  }
}
#produces-media img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  max-height: 90%;
}
#produces-media video {
  min-width: 0;
  max-height: 90%;
}
#produces-media h5{
  display: none;
}

@keyframes slideRight {
  0% {
    transform: translate(-80px, 0px);
  }
  50% {
    transform: translate(-5px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
#cross {
  animation-name: rotateRight;
  animation-duration: 2.5s;
}
#cross:hover {
  animation-name: rotateBlink;
  cursor: pointer;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
@keyframes rotateRight {
  0% {
    transform: rotate(-180deg);
  }
  80% {
    transform: rotate(-60deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotateBlink {
  0% {
    transform: rotate(-180deg);
  }
  40% {
    transform: rotate(-60deg);
  }
  80% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#ham {
  animation-name: litUp;
  animation-duration: 1s;
  opacity: 1;
}
#ham:hover {
  cursor: pointer;
}
@keyframes litUp {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#menu-hidden {
  background-color: #00000000;
  width: 50px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: slideLeft;
  animation-duration: 0.5s;
}
#menu-contents-opened {
  width: 250px;
  animation-name: slideRight;
  animation-duration: 2s;
}
#menu-contents-closed {
  display: none;
}
#menu-contents-opened h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 2px;
  font-size: 1.1em;
  color: #e00707;
  font-weight: 300;
  margin-right: 20px;
  padding: 5px 10px;
  border: solid 0.1px rgba(160, 160, 160, 0.267);
}
#menu-contents-opened a:active {
  text-decoration: none;
  color: #5e0000;
}
#menu-contents-opened a:link {
  text-decoration: none;
  color: #929292;
}
#menu-contents-opened a:visited {
  text-decoration: none;
  color: #929292;
}
#menu-contents-opened a:hover {
  text-decoration: none;
  color: #e9e9e9;
}
#drop {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#drop-icon {
  margin-top: 8px;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  cursor: pointer;
}
#drop-icon-down {
  cursor: pointer;
  transform: rotate(180deg) translate(0px, 0px);
  margin-top: 8px;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}
@keyframes dropDown {
  0% {
    transform: rotate(180deg) translate(0px, -2px);
  }
  80% {
    transform: rotate(180deg) translate(0px, 2px);
  }
  100% {
    transform: rotate(180deg) translate(0px, -2px);
  }
}
@keyframes dropUp {
  0% {
    transform: translate(0px, -2px);
  }
  80% {
    transform: translate(0px, 2px);
  }
  100% {
    transform: translate(0px, -2px);
  }
}

#drop:hover {
}
#all-produces-close {
  height: 0px;
  display: block;
  border: solid 0.1px rgba(160, 160, 160, 0.267);
  margin-right: 20px;
  border-left: 0px;
  border-right: 0px;
  animation-name: allProducePush;
  animation-duration: 1.8s;
}
#all-produces-open {
  display: block;
  height: calc(100vh - 250px);
  border: solid 0.1px rgba(160, 160, 160, 0.267);
  margin-right: 20px;
  border-left: 0px;
  border-right: 0px;
  animation-name: allProducePull;
  animation-duration: 1.8s;
}
@keyframes allProducePull {
  0% {
    height: 0vh;
    transform: translate(0px, 50px);
    margin-bottom: 100px;
  }
  60% {
    height: 35px;
    transform: translate(0px, 35px);
    margin-bottom: 50px;
  }
  100% {
    height: calc(100vh - 250px);
    transform: translate(0px, 0px);
    margin-bottom: 0px;
  }
}
@keyframes allProducePush {
  0% {
    height: calc(100vh - 250px);
    transform: translate(0px, 50px);
    margin-bottom: 50px;
  }
  40% {
    height: 35px;
    transform: translate(0px, 35px);
    margin-bottom: 80px;
  }
  100% {
    height: 0vh;
    transform: translate(0px, 0px);
    margin-bottom: 0px;
  }
}
@media all and (orientation:portrait) {
  #menu-hidden {
    background-color: #000000;
  }
  #praxis-button-container{
    display: none;
  }
}
#menu-list{
  height: 95%;
  margin: 10px;
  overflow-y: scroll;
  font-family: "Figtree", sans-serif;
  list-style-type: single-emoji;
}
@counter-style single-emoji {
  system: cyclic;
  symbols: "\1F41B"; // unicode code point
  suffix: " ";
}
#menu-list li{
  margin-bottom: 5px;
  margin-left: 15px;
  color: #e9e9e9;
}