/**
 * #MENULATERAL REDES SOCIALES BHK
 */

.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px 0 0 10px;
  padding: 10px 5px;
  z-index: 9999
}

.social-icon {
  display: block;
  margin: 10px 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
  color: #fff;
}

.facebook:hover {
  background-color: #3b5998;
}

.phone:hover {
  background-color: #25d366;
}

.whatsapp:hover {
  background-color: #25d366;
}

.paypal:hover {
  background-color: #0070ba;
}

.social-icon i {
  font-size: 20px;
}
