/************
TR 26 - Display Social Icons in Tablet and Mobile View
https://trello.com/c/NJy0empR
GH 25/03/2015
************/

/* Large mobile and tablet */
@media (min-width: 500px) and (max-width: 1024px) {
  #social-links{
    z-index: 1001; /* Bring the repositioned #social-links div in front of .navbar div */
    display: flex;
    position: absolute;
    left: 42%;
    width: 30%;
    bottom: 30px;
  }
  #social-links a{
    flex: 1;
    display: block;
    width: 24px;
    height: 24px;
    background-position: center!important; 
  }
}

/* Small mobile < 500px wide */
@media (min-width: 420px) and (max-width: 499px) {
  #social-links{
    z-index: 1001; /* Bring the repositioned #social-links div in front of .navbar div */
    display: block;
    position: absolute;
    right: 130px;
    width: 60px;
    bottom: 20px;
  }
  #social-links a{
    display: block;
    float: left;
    margin: 0px 5px 5px 0px;
    width: 24px;
    height: 24px; 
  }
  #social-links a:nth-child(3){
    clear:both;
    display: block;
    width: 24px;
    height: 24px;
    background-position: center!important; 
  }
}
