﻿
/* outer wrapper, fixed to left */
#share-wrapper {
    margin-top: 100px;
    position:fixed;
  z-index:10000;
    left: 0;
}
/* inner wrapper */
#share-wrapper ul.share-inner-wrp{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
/* the list */
#share-wrapper li.button-wrap {
    background: #E4EFF0;
    padding: 0px 0px 0px 0px;
    display: block;
    width: 140px;
    margin: 0px 0px 1px -122px; /* position determines width of starting block */
}
/* share link */
#share-wrapper li.button-wrap > a {
    padding-right: 160px;
    height: 48px;
    display: block;
    line-height: 48px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding-left:10px;
}
/* button customizations */
#share-wrapper .Facebook a{
background: url(facebookicon.jpg) no-repeat right;
background-color: #4F6BAA;
}
#share-wrapper .Twitter a{
background: url(twittericon.jpg) no-repeat right;
background-color: #4DB7E7;
}
#share-wrapper .Podcasts a{
background: url(podcasticon.JPG) no-repeat right;
background-color: #882FC5;
}
#share-wrapper .LinkedIn a{
background: url(linkedinicon.jpg) no-repeat right;
background-color: #2D74B4;
}
#share-wrapper .Blog a{
background: url(blogicon.jpg) no-repeat right;
background-color: #FF6600;
    white-space: nowrap;
}



/* regular css */
.class a{
    font-size:20px;
}
/* change font-size of class if screen size goes below 1150px */
@media all and (max-width: 1150px) { 
    .class a{
        font-size:13px;
    }
}
@media all and (max-width: 1150px) {
#share-wrapper {
    bottom: 0;
    position: fixed;
    padding: 5px 5px 0px 5px;
    background: #EBEBEB;
    width: 100%;
    margin: 0px;
    -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 -1px 4px rgba(0,0,0,0.15);
    -o-box-shadow: 0 -1px 4px rgba(0,0,0,0.15);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
}
#share-wrapper ul.share-inner-wrp {
    list-style: none;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
    overflow: auto;
  
}
#share-wrapper li.button-wrap {
    display: inline-block;
    width: 48px!important;
    margin: 0px;
    padding: 0px;
    margin-left:0px!important;
}
#share-wrapper li.button-wrap > a {
    height: 48px;
    display: inline-block;
    text-indent: -10000px;
    width: 48px;
    padding-right: 0;
    float: left;
}
}