@charset "UTF-8";
/*
PUB_FLEXTRAS/social-media/sm-buttons.css
v2.0.0 - 12/03/16
Phil Chapman
Copyright (c) 2013-2015 KodingMadeSimple
Portions of this code Copyright (c) 2015-2016 Hi-Peak Internet

Version history:
1.0.0   17/09/15    ValliP  Initial version (from http://www.kodingmadesimple.com/2014/11/create-stylish-bootstrap-3-social-media-icons.html)
                    PhilC   Added right-alignment
1.1.0   07/03/16    PhilC   Added @charset declaration
2.0.0   12/03/16    PhilC   Renamed social class to sm-buttons
*/

.sm-buttons {
    margin: 0;
    padding: 0;
}

.sm-buttons ul {
    margin: 0;
    padding: 5px;
}

@media (min-width: 768px) {
  .sm-buttons ul {
    float: right !important;
  }
}

.sm-buttons ul li {
    margin: 5px;
    list-style: none outside none;
    display: inline-block;
}

.sm-buttons i {
    width: 40px;
    height: 40px;
    color: #FFF;
    background-color: #909AA0;
    font-size: 22px;
    text-align:center;
    padding-top: 12px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.sm-buttons i:hover {
    color: #FFF;
    text-decoration: none;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.sm-buttons .fa-facebook:hover {
    background: #4060A5;
}

.sm-buttons .fa-twitter:hover {
    background: #00ABE3;
}

.sm-buttons .fa-google-plus:hover {
    background: #e64522;
}

.sm-buttons .fa-github:hover {
    background: #343434;
}

.sm-buttons .fa-pinterest:hover {
    background: #cb2027;
}

.sm-buttons .fa-linkedin:hover {
    background: #0094BC;
}

.sm-buttons .fa-flickr:hover {
    background: #FF57AE;
}

.sm-buttons .fa-instagram:hover {
    background: #375989;
}

.sm-buttons .fa-vimeo-square:hover {
    background: #83DAEB;
}

.sm-buttons .fa-stack-overflow:hover {
    background: #FEA501;
}

.sm-buttons .fa-dropbox:hover {
    background: #017FE5;
}

.sm-buttons .fa-tumblr:hover {
    background: #3a5876;
}

.sm-buttons .fa-dribbble:hover {
    background: #F46899;
}

.sm-buttons .fa-skype:hover {
    background: #00C6FF;
}

.sm-buttons .fa-stack-exchange:hover {
    background: #4D86C9;
}

.sm-buttons .fa-youtube:hover {
    background: #FF1F25;
}

.sm-buttons .fa-xing:hover {
    background: #005C5E;
}

.sm-buttons .fa-rss:hover {
    background: #e88845;
}

.sm-buttons .fa-foursquare:hover {
    background: #09B9E0;
}

.sm-buttons .fa-youtube-play:hover {
    background: #DF192A;
}