/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .rating-header .text {
        font-size: 67px;
    }
/*
    .inner-header {
        padding: 0;
    }
*/
    .rating-img img {
        height: 190px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
/*
    .inner-header {
        background: url(inner-header-bg.png) center/auto no-repeat;
    }
*/
    .inner-header__avatar .avatar img {
        height: 128px;
        width: 128px;
    }
    .inner-header__img img {
        height: 180px;
    }
    .rating-header .text {
        font-size: 47px;
    }
    .rating-img img {
        height: 140px;
    }
    .inner-header {
        padding: 8px 0 0;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .inner-header__avatar .avatar img {
        height: 64px;
        width: 64px;
    }
    .inner-header__avatar .description h2 {
        font-size: 18px;
    }
    .inner-header__avatar .description h3 {
        font-size: 16px;
    }
    .inner-header__img img {
        height: 130px;
    }
    .rating-header .text {
        font-size: 45px;
        padding: 20px 15px;
        line-height: 120%;
    }
    .inner-header {
        box-shadow: none;
        padding-bottom: 40px;
    }
    .rating-img {
        display: none;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .inner-header__img img {
        height: 85px;
    }
    .inner-header__avatar .avatar img {
        height: 36px;
        width: 36px;
    }
    .inner-header__avatar .description h2 {
        font-size: 14px;
    }
    .inner-header__avatar .description h3 {
        font-size: 13px;
        margin-top: 4px;
    }
    .inner-header__avatar {
        margin: 15px 0 15px 0;
    }
    .inner-header {
        border-radius: 0px 0px 15px 15px;
        padding-top: 6px;
    }
    .flows {
        margin-top: 0;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}