/*
Theme Name: presscore

Adding support for language written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

http://codex.wordpress.org/Right_to_Left_Language_Support

*/


body {
	direction: rtl;
	unicode-bidi: embed;
}

#navigation{
    
    float: none;
    display: block!important;
    padding-top: 20px;
   
}
#branding {
    padding-right: 20px;
    float: left;
   
   
}

#main-nav.underline-hover>li>a i.underline {
   
    left: inherit;
   }
#phantom .ph-wrap.with-logo .ph-wrap-content .logo-box {
   
    float: left;
}
#phantom .ph-wrap.with-logo .ph-wrap-content .menu-box {
    text-align: right;
    float: right;
}

.vc_progress_bar .vc_single_bar .vc_bar {
   
    right: 0!important;
}

.bottom-text-block, .right-block {
    text-align: left;
}
.breadcrumbs li {
    position: relative;
    display: inline-block;
    padding-right: 12px;
    margin-right: 8px;
}
.breadcrumbs li:before, .fancy-header .breadcrumbs li:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 13px;
    content: "/";
    opacity: .5;
    text-align: right;
    z-index: 3;
}