@charset "utf-8";

/*============================================================================
 COMF, includes mobile
============================================================================*/


/* ---------------------- review-site-button ---------------------- */
.review-site-button{
    display:inline-block;
    width: auto;
    padding:15px 30px;
    margin: 15px;
    background: rgb(146, 255, 125);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.review-site-button:link{
    color: #000;
    text-decoration: none;
}
.review-site-button:visited{
    color: #000;
    text-decoration: none;
}
.review-site-button:hover{
    background: rgb(255, 255, 255);
    color: #044abd;
    text-decoration: none;
}


/* ---------------------- container testimonials ---------------------- */
.box-testimonial{
    margin: 50px auto;
    max-width: 700px;
}
.bt-img-main{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    max-width: 300px;
}
.bt-img-main img{
    max-width: none;
    width: 300px;
}
.bt-table{
    display: table;
    width: 100%;
}
.bt-row{
    display: table-row;
}
.bt-cell{
    display: table-cell;
}
.bt-header{
    text-align: center;
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 22px;
    font-weight: 100;
    color: #555;
}
.bt-content{
    display: table-cell;
    vertical-align: middle;
}
.bt-title{
    text-align: left;
    margin: 0 0 30px 0;
    font-weight: 400;
    font-size: 18px;
    font-style: italic;
    color: #333;
}
.bt-mobile-quote{
    display: none;
}
.bt-quote-left{
    padding: 0 20px 0 0;
    width: 35px;
    max-width: none;
}
.bt-quote-right{
    padding: 0 15px 0 0;
    width: 35px;
    max-width: none;
    vertical-align: bottom;
}
.bt-text{
    text-align: left;
    position: relative;
    margin: 0;
    left: -5px;
    font-size: 14px;
    font-style: italic;
    line-height: 150%;
    color: #666;
    font-weight: normal;
}
.bt-by-who{
    color: #888;
    font-style: normal;
    margin: 30px 50px 0 0;
    text-align: right;
    font-size: 18px;
}





/* --------------------- 0px to 849 px horizontal --------start---------------- */
/* retain ALL RULES from the previous condition + these: */
/* IMPORTANT: keep ALL rules & in THAT order for logical + practical reasons */
/*@media only screen and (min-width: 500px) and (max-width: 780px)*/
/*,only screen and (min-device-width: 500px) and (max-device-width: 780px){*/

@media screen and (max-width: 849px){

    /* --- container testimonials --- */
    .box-testimonial{}
    .bt-img-main{
        display: block;
        width: auto;
    }
    .bt-img-main img{}
    .bt-table{
        display: block;
    }
    .bt-row{
        display: block;
    }
    .bt-cell{
        display: block;
    }
    .bt-header{
        margin: 20px 0;
    }
    .bt-content{
        margin: 0;
    }
    .bt-title{
        margin: 20px 0 20px 0;
    }
    .bt-quote-left{
        width: 10px;
    }
    .bt-quote-right{
        width: 10px;
    }
    .bt-quote-left img{
        display: none;
    }
    .bt-quote-right img{
        display: none;
    }
    .bt-text{}
    .bt-by-who{}

}