/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */

.icon-bar {
    display: none;
}

.footer_icon-bar {
      display: inline-block;
}

.footer_text {
    display: inline-block;
}

@media only screen and (min-width: 751px)
{
   .icon-bar {
    display: block;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  } 
  
  .footer_icon-bar {
      display: none;
  }

  .footer_text {
      display: block;
  }
}

  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }

  .footer_icon-bar a{
      padding: 10px;
      transition: all 0.3s ease;
      color: white;
      border-radius: 50%;
  }
  
  /* Style the social media icons with color, if you want */
  .icon-bar a:hover {
    background-color: #000;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .instagram {
    background: #5280A4;
    color: white;
  }