@keyframes random {
  15% {
    background-color: rgb(random(255), random(255), random(255));
  }

  30% {
    background-color: yellow;
  }

  45% {
    background-color: green;
  }

  60% {
    background-color: blue;
  }

  75% {
    background-color: white;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.menu-button {
  border: 0;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 50px;
  margin: 10px;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 1em;
  top: 1em;
  z-index: 998;
  outline: none;
  cursor: pointer;
  
}

.menu-button:hover,
.menu-button.active {
  transition: all 0.3s ease-out;
  background-color: #ffffff;
}



.menu-button:hover .menu-bar,
.menu-button.active .menu-bar {
  /* background-color: #000; */
  /* background: linear-gradient(-45deg, #efee2d, #ee7752, #e73c7e, #23a6d5, #23d5ab); */
  background-color: #120f12;

}

.menu-button .menu-bar {
  width: 30px;
  height: 2px;
  background-color: #c7d5d5cc;
  position: relative;
  margin: 4px 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#menu {
  width: 0%;
  height: 100%;
  position: fixed;
  background-color: #c7d5d5;
  top: 0%;
  left: 100%;
  -webkit-transform: translate(-100%, 0%);
  transform: translate(-100%, 0%);
  z-index: 10;
}

.menu-nav {
  width: 100%;
  list-style: none;
  margin: 0;
  /* padding: 30px 0; */
  text-align: center;
  position: absolute;
  top: 5em;
  /* left: 50%; */
  /* -webkit-transform: translate(-50%, -50%); */
  /* transform: translate(-50%, -50%); */
  /* width: fit-content; */
  font-size: 2rem;
  overflow: hidden;

}



.menu-nav a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
  opacity: 0;
  transition: 0.5s;
  width: 100%;
  border-bottom: 2px solid #fff;

}

.menu-nav a:hover {
  /* background-color: #fff; */
  color: #2e2a27;
  /* text-decoration: line-through; */
  /* background: linear-gradient(-45deg, #efee2d, #ee7752, #e73c7e, #23a6d5, #23d5ab); */
  background-color: #c7d5d5;
  /* background-size: 400% 400%;
	animation: gradient 15s ease infinite; */
  /* -webkit-animation: random 1s infinite;
  animation: random 5s infinite ; */
  /* -webkit-animation: gradient 5s infinite;
  animation: gradient 5s  infinite; */


}

.menu-nav li {
  width: 100%;
  text-transform: uppercase;
  width: fit-content;
}

.prod_titulo {
  width: 100%;
  display: block;
}

.lang {
  position: fixed;
  left: 0em;
  top: 1em;
  background-color: #120f12;
  width: fit-content;
  z-index: 99;
  color: #fff;
  padding: 0.5em;
  padding-left: 1em;
  border-top-right-radius: 1rem;
  padding-right: 1em;
  text-transform: uppercase;
}


.dropbtn {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  padding: 0px;
  border: none;
  cursor: none;
  font-size: 1em;
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: 0.5s;
  text-transform: uppercase;
  text-align: right;
  z-index: 999;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: -16px;
  /* background-color: #000; */
  min-width: 160px;
  z-index: 1;
  padding-bottom: 2em;
  padding-top: 1em;
  border-top-right-radius: 1rem;
}

.dropdown-content a {
  color: #fff;
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav_pais {
  right: 3vw;
  top: 3vh;
}

@media only screen and (max-width: 768px) {

  .menu-button {
    /* top: 0; */
  }

  .menu-nav {
    width: 80%;
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 468px) {

  .menu-button {
    margin: 0;
  }
}