@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

/* CONTENEDOR LATERAL */

.wrapper{
  position: fixed;
  top: 50%;                  /* CENTRADO VERTICAL */
  right: 15px;               /* SEPARACIÓN DEL BORDE */
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* BOTONES */

.wrapper .button{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 45px;
  width: 45px;
  margin: 6px 0;
  overflow: hidden;
  background: #e4dede;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* EXPANSIÓN */

.wrapper .button:hover{
  width: 200px;
}

/* ICONO */

.wrapper .button .icon{
  flex-shrink: 0;
  height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50px;
  line-height: 45px;
}

/* COLORES REDES */

.wrapper .button:nth-child(1):hover .icon{
  background:#4267B2;
}

.wrapper .button:nth-child(2):hover .icon{
  background:#000000;
}

.wrapper .button:nth-child(3):hover .icon{
  background:#E1306C;
}

.wrapper .button:nth-child(4):hover .icon{
  background:#333;
}

.wrapper .button:nth-child(5):hover .icon{
  background:#ff0000;
}

/* ICONO */

.wrapper .button .icon i{
  font-size:18px;
  line-height:45px;
  color:#000000;
  transition:all 0.3s ease;
}

/* COLOR ICONO HOVER */

.wrapper .button:hover .icon i{
  color:#ffffff;
}

/* TEXTO */

.wrapper .button span{
  font-size:16px;
  font-weight:500;
  line-height:45px;
  margin-right:12px;
  white-space:nowrap;
}

/* COLOR TEXTO */

.wrapper .button:nth-child(1) span{
  color:#4267B2;
}

.wrapper .button:nth-child(2) span{
  color:#000000;
}

.wrapper .button:nth-child(3) span{
  color:#E1306C;
}

.wrapper .button:nth-child(4) span{
  color:#333;
}

.wrapper .button:nth-child(5) span{
  color:#ff0000;
}

/* 📱 RESPONSIVE (OCULTAR EN MÓVIL) */

@media (max-width: 768px){
  .wrapper{
    display: none;
  }
}