/**
 * Created by fedya on 28.03.14.
 */
.btn-social {
    display: inline-block;
}

.fa-vk, .fa-twitter {
    color: rgb(0, 184, 255);
}
.fa-2x.fa-group {
    color: cornflowerblue;
}

.fa-google-plus {
    color: rgb(214, 80, 80);
}

.fa-cloud {
    color: rgb(255, 122, 0);
}

.fa-2x.fa-globe {
    color: forestgreen;
}

/*---- social icons ----*/
.social-icon {
    padding: 0;
    /*text-align: center;*/
}
.social-icon li {
    list-style: none;
    display: inline-block;
    cursor: pointer;
    margin-left: 5px;
    margin-bottom: 5px;
}
.social-icon li a {
    display: block;
    width: 72px;
    height: 72px;
    text-align: center;
    font-size: 36px;
    line-height: 72px;
    color: #428bca;
    background: #fff;
    border: 1px solid #428bca;
    border-radius: 50% !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.social-icon li:hover a {
    transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -webkit-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    color: #FFF !important;
    background: #428bca;
}
.social-icon li:hover a i {
    transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    color: #FFF !important;
}
/*---- social icons ----*/