/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 70%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: #ffc107;
  font-size: 10px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: rgba(0, 0, 0, 0.6);
  color: #ffc107;
}

.twitter {
  background: rgba(0, 0, 0, 0.6);
  color: #ffc107;
}

.google {
  background: rgba(0, 0, 0, 0.6);
  color: #ffc107;
}

.youtube {
  background: rgba(0, 0, 0, 0.6);
  color: #ffc107;
}