.sticky-icon-links {
  position: fixed;
  right: 10px;
  top: 200px;
  z-index: 23;
}
@media (max-width: 767px) {
  .sticky-icon-links {
    display: none;
  }
}
.sticky-icon-links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sticky-icon-links li:not(:last-child) {
  margin-bottom: 5px;
}
.sticky-icon-links .fa-shopping-cart:before {
  margin-left: -2px;
}
.sticky-icon-links li a {
  display: flex;
  align-items: center;
  border-radius: 3px;
  /* background: #33363b; */
  color: #fff;
  overflow: hidden;
  transition: color 0.3s, background-color 0.3s;
}
.sticky-icon-links li a:hover span {
  padding-right: 10px;
}
.sticky-icon-links li:nth-child(1) a:hover span {
  width: 80px;
}
.sticky-icon-links li:nth-child(2) a:hover span {
  width: 86px;
}
.sticky-icon-links li:nth-child(3) a:hover span {
  width: 66px;
}
.sticky-icon-links li:nth-child(4) a:hover span {
  width: 72px;
}
.sticky-icon-links li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 20px;
}
.sticky-icon-links li span {
  display: inline-block;
  white-space: nowrap;
  width: 0;
  text-transform: capitalize;
  font-weight: 600;
  transition: width 0.3s;
}

.sticky-icon-links li:nth-child(1) a {
  background: #3b5998;
}

.sticky-icon-links li:nth-child(2) a {
  background: #e4405f;
}

.sticky-icon-links li:nth-child(3) a {
  background: #1da1f2;
}

.sticky-icon-links li:nth-child(4) a {
  background: #0077b5;
}
