/*
Theme Name: Firezy Layout3
Description: Adds support for languages written in a Right To Left (RTL) direction.
It's easy, just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
See http://codex.wordpress.org/Right_to_Left_Language_Support
*/
@import url("../firezy/rtl.css");
.box-category {
    padding: 14px 30px;
    text-align: right;
}
.box-category-heading {
    padding: 0px;
}
.category-title {
    margin-left: 0;
    margin-right: 10px;
}
.header-bottom-center {
    float: right;
}
@media only screen and (max-width: 1200px) {
    .header-top-center {
        float: left !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
    .header-top-center {
        margin: 0px 15px 0 0 !important;
    }
}
@media only screen and (max-width: 479px) {
.box-category {
    padding: 14px 20px 14px 3px !important;
}
}