/*-> custome checkbox*/
#menu-checkbox {
  display: none;
}
#menu-checkbox:checked ~ .menu-desplazable {
  transform: translate(0);
}
.menu-icon-container {
  position: relative;
  height: 2rem;
  width: 2rem;
  padding: 0.1rem;
  cursor: pointer;
}
.linea {
  height: 10%;
  width: 75%;
  background-color: black;
  border-radius: 10px;
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.linea-top {
  top: 25%;
}
.linea-low {
  top: 75%;
}
#menu-checkbox:checked + .label-menu-checkbox .menu-icon-container .linea-med {
  opacity: 0;
}
#menu-checkbox:checked + .label-menu-checkbox .menu-icon-container .linea-top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: red;
}
#menu-checkbox:checked + .label-menu-checkbox .menu-icon-container .linea-low {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: red;
}
/*-> custom-button element  */

.custom-button {
  display: block;
  position: relative;
  z-index: 0;
  max-width: 290px;
  background-color: #00f3bb;
  /* font properties */
  color: #060a24;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  padding: 13px 0;
  font-weight: 450;
}
.custom-button:hover {
  text-decoration: line-through;
  font-weight: 500;
}
.custom-button:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  width: 0%;
  background-color: rgba(0, 243, 187, 0);
  transition: all 0.4s ease-out;
}
.custom-button:hover:before {
  width: 100%;
  /* background-color: rgba(15, 214, 168, 1); */
  background-image: linear-gradient(225deg, #0000fe 0%, #00f0b8 100%);
  transition: all 0.4s ease-in;
}
