/**
 * The following is explained in detail on:
 *     http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio
 * which was pointed out on:
 *     http://stackoverflow.com/a/6615994/2577454
 */
.bw-flow-sm-container {
    display: inline-block;
    position: relative;
    width: 100%;
}
.bw-flow-sm-height {
    margin-top: 100%; /* 1:1 aspect ratio */
}
.bw-flow-sm-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent url(/wp-content/plugins/bw-flow-socialmedia/img/background.png) no-repeat scroll 0 0;
    background-size: 100%;
}

.bw-flow-sm-background .instagram,
.bw-flow-sm-background .google-plus,
.bw-flow-sm-background .twitter,
.bw-flow-sm-background .pinterest,
.bw-flow-sm-background .facebook,
.bw-flow-sm-background .vimeo {
    position: absolute;
    display: block;
    height: 24%;
    width: 24%;
    text-indent: -9000px;
}

.bw-flow-sm-background .instagram {
    top: 15%;
    left: 38%;
}

.bw-flow-sm-background .google-plus {
    top: 15%;
    left: 10%;
}

.bw-flow-sm-background .facebook {
    top: 15%;
    left: 66%;
}

.bw-flow-sm-background .twitter {
    top: 44%;
    left: 10%;
}

.bw-flow-sm-background .pinterest {
    top: 44%;
    left: 38%;
}

.bw-flow-sm-background .vimeo {
    top: 44%;
    left: 66%;
}


@media screen and (min-width: 481px) and (max-width: 680px) {

    .bw-flow-sm-background {
        padding-left: 100%;
        width: 0;
    }

    .bw-flow-sm-background .instagram,
    .bw-flow-sm-background .google-plus,
    .bw-flow-sm-background .twitter,
    .bw-flow-sm-background .pinterest,
    .bw-flow-sm-background .facebook {
        background-size: 100%;
    }
}

@media screen and (max-width: 480px) {
    .bw-flow-sm-background {
        height: 150px;
        width: 150px;
    }

    .bw-flow-sm-background .instagram,
    .bw-flow-sm-background .google-plus,
    .bw-flow-sm-background .twitter,
    .bw-flow-sm-background .pinterest,
    .bw-flow-sm-background .facebook {
        background-size: 100%;
    }
}
