#stickyIconContainer {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  margin: 0.5em;
  width: fit-content;
  height: fit-content;
  position: fixed;
  right: 0em;
  top: 50%;
  transition: 0.25s ease;
  z-index: 10;
}
.initalSticky {
  background: #fff;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.25);
  translate: 2em 0;
  border-radius: 0.75em;
  cursor: pointer;
}
#stickyIconContainer .fa-caret-left {
  font-size: 1.5em;
  color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0.25em;
  top: 50%;
  translate: 0 -50%;
  pointer-events: inherit;
}
.stickyIcon {
  width: 3em;
  height: 3em;
  border-radius: 1.5em;
  background: #fff;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.stickyIcon > i {
  font-size: 2em;
}
.fa-whatsapp {
  color: #075e54;
}
.fa-instagram {
  color: #e1306c;
}
