.bookmarkBtn {
  width: 260px;
  height: 60px;
  border-radius: 40px;
  background: rgb(219, 179, 32);
  background: linear-gradient(
    34deg,
    rgba(219, 179, 32, 1) 8%,
    rgba(235, 197, 58, 1) 35%,
    rgba(255, 204, 152, 1) 53%,
    rgba(235, 197, 58, 1) 72%,
    rgba(219, 179, 32, 1) 100%
  );
  display: flex;
  color: black;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.062);
  padding: 0px 20px;
}

.IconContainer {
  width: 40px;
  height: 40px;
  background-color: var(--btn-hover-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
}

.icon {
  border-radius: 1px;
}

.text {
  height: 100%;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(26, 26, 26);
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
  font-weight: 600;
}

.bookmarkBtn:hover .IconContainer {
  width: 220px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.bookmarkBtn:hover .text {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}
