﻿/* author-box start */
.author-box {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 10px 25px 5px rgba(137,173,255,.35);
    -moz-box-shadow: 0 10px 25px 5px rgba(137,173,255,.35);
    box-shadow: 0 10px 25px 5px rgba(137,173,255,.35);
}

    .author-box a, .author-box .author-description b, .author-box .author-description p, .author-box .author-description i {
        color: #333;
    }

    .author-box .author-description i {
        width: 22px;
        color: #fff;
        text-align: center;
        background: #8778ff;
        padding: 5px 0;
        font-size: 0.8rem;
        margin-right: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }

    .author-box .author-info {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0.56rem;
    }

        .author-box .author-info .author-info {
            color: #7d6eff;
        }

        .author-box .author-info .author-social {
            margin: 4px 0;
        }

            .author-box .author-info .author-social a {
                color: #fff;
                text-align: center;
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 1.1rem;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                border-radius: 50%;
                -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.15);
                -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
                box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.15);
                position: relative;
                border: 1px solid #fff;
                display: inline-block;
                margin-right: 10px;
                font-weight: normal;
                transition: 0.5s all;
                overflow: hidden;
            }

                .author-box .author-info .author-social a:hover {
                    color: #8778ff;
                    padding-left: 5px;
                    background: #ed1c24 !important;
                    padding-left: 0px !important;
                }

                .author-box .author-info .author-social a:before {
                    content: "";
                    opacity: 0;
                    position: absolute;
                    background: rgba(255,255,255,0.6) none repeat scroll 0 0;
                    transition: all 0.8s;
                    transform: rotate(-45deg);
                    top: -50%;
                    left: -50%;
                    width: 200%;
                    height: 200%;
                }

                .author-box .author-info .author-social a:hover:before {
                    opacity: 1;
                    height: 0;
                }

                .author-box .author-info .author-social a i {
                    font-size: 1rem;
                }

        .author-box .author-info .author-name {
            margin: 0 15px 0 0;
            font-weight: bold;
            font-size: 1.2rem;
            text-transform: uppercase;
            color: #000;
        }

    .author-box .author-description {
        text-align: justify;
        line-height: 1.8;
        margin: 15px 0;
    }

    .author-box .author-img {
        width: 100px;
        border-radius: 6px;
        overflow: hidden;
        padding-top: 1rem;
    }

        .author-box .author-img img, .related-post {
            max-width: 100%
        }
/* author-box end */
