/*
Theme Name: hyyat
Description: Adding support for languages 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.

See: https://codex.wordpress.org/Right_to_Left_Language_Support
*/

body{
	direction: rtl;
	text-align: right;
}

.dropdown-menu{
	right: 0;
	left: auto;
	float: left;
	text-align: right;
}
.dropdown-item.active, .dropdown-item:active{
	background: transparent linear-gradient(180deg, #D83954 0%, #DB4E1B 100%) 0% 0% no-repeat padding-box;
}

body .wp-megamenu-wrap .wpmm-nav-wrap > ul{
	text-align: right;
}

.wpml-ls-menu-item .wpml-ls-flag{
    margin-left: 5px;
    margin-right: 0;
}