/* lapiz */
.lapiz {
  position: absolute;
  bottom: 12%;
  right: 0;
  margin-right: 1.2%;
}

.editBtn {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  border: none;
  background-color: #488AFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.editBtn::before {
  content: "";
  width: 200%;
  height: 200%;
  background-color: rgb(0, 0, 253);
  position: absolute;
  z-index: 1;
  transform: scale(0);
  transition: all 0.3s;
  border-radius: 50%;
  filter: blur(10px);
}
.editBtn:hover::before {
  transform: scale(1);
}
.editBtn:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.336);
}

.editBtn svg {
  height: 17px;
  fill: white;
  z-index: 3;
  transition: all 0.2s;
  transform-origin: bottom;
}
.editBtn:hover svg {
  transform: rotate(-15deg) translateX(5px);
}
.editBtn::after {
  content: "";
  width: 25px;
  height: 1.5px;
  position: absolute;
  bottom: 19px;
  left: -5px;
  background-color: white;
  border-radius: 2px;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}
.editBtn:hover::after {
  transform: scaleX(1);
  left: 0px;
  transform-origin: right;
}


/* PAPELERA */
.button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #707070;
  border: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
  gap: 2px;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: #b6b6b6;
}

.button:hover {
  transition-duration: 0.3s;
  background-color: rgb(0, 0, 253);
  align-items: center;
  gap: 0;
}

.bin-top {
  transform-origin: bottom right;
}
.button:hover .bin-top {
  transition-duration: 0.5s;
  transform: rotate(160deg);
}

.footer{
  display: flex;
  justify-content: space-evenly;
  width:auto;
}

.notas, .papelera {
  display: flex;
  flex-direction: column;
}

.p-footer{
  display: flex;
  justify-content: space-around;
  padding-top: 5px;
  align-items: center;
  text-align: center;
}

a{
  text-decoration: none;
}

/* css de papelera */
.papeleraEchas{
  flex: 1;
  height: 100vh;
}

.msjPapelera{
  display: flex;
  justify-content: center;
}

.hoja:hover{
  cursor: pointer;
}