/* Direction and layout flips for Arabic.
   No font rules here any more: this sheet used to import Cairo from Google
   and force it onto p/a/h1-h6/span/label/li/div with !important, which beat
   the site's own Thmanyah typeface everywhere and forced counter-!important
   rules elsewhere. The typeface now comes from public/css/thmanyah.css. */
/* ---------------- Basic css ------------------ */
.mobile-menu{padding-right:40px}
body {
    direction: rtl;
}

/* Example of flipping padding/margin */
.container {
    padding-right: 15px;
    padding-left: 0;
}

.text-left {
    text-align: right;
}

.text-right {
    text-align: left;
}

/* Example of flipping float */
.float-left {
    float: right;
}

.float-right {
    float: left;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: 0 !important;
    }
    #page-topbar {
        left: 0 !important;
    }
}

