.wl2d_contact_sidebar_wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  z-index: 10;
}

.wl2d_contact_sidebar_wrapper ul {
  list-style: none;
}

.wl2d_contact_sidebar_wrapper ul li {
  width: 50px;
  height: 50px;
  position: relative;
  background: #ceb198;
  color: #fff;
  margin: 2px 0;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 0 5px rgba(0,0,0,0.8);
}

.wl2d_contact_sidebar_wrapper ul li .far,
.wl2d_contact_sidebar_wrapper ul li .farr {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  font-size: 26px;
}

.wl2d_contact_sidebar_wrapper .slider {
  content: "";
  position: absolute;
  top: 0;
  right: 52px;
  width: 0;
  height: 50px;
  background: #ceb198;
  border-radius: 0;
  transition: all 0.5s 0.3s ease;
  box-shadow: 0 0 5px rgba(0,0,0,0.8);
}

.wl2d_contact_sidebar_wrapper .slider p {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 50px;
  opacity: 0;
  transition: all 0.6s ease;
  margin-top: 0 !important;
}

.wl2d_contact_sidebar_wrapper ul li:hover .slider {
  width: 300px;
  transition: all 0.5s ease;
}

.wl2d_contact_sidebar_wrapper ul li:hover .slider p {
  opacity: 1;
  transition: all 1s 0.2s ease;
}

@media only screen and (max-width: 800px) {
  .wl2d_contact_sidebar_wrapper ul li {
    width: 30px;
    height: 30px;
  }
  .wl2d_contact_sidebar_wrapper ul li .far,
  .wl2d_contact_sidebar_wrapper ul li .farr {
    font-size: 18px;
  }
  .wl2d_contact_sidebar_wrapper .slider p {
    line-height: 30px;
    font-size: 12px;
  }
  .wl2d_contact_sidebar_wrapper .slider {
    right: 32px;
    height: 30px;
  }
  .wl2d_contact_sidebar_wrapper ul li:hover .slider {
    width: 220px;
  }
}
