/*
Theme Name: KBS

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.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/

/* Reset */

body {
	direction: rtl;
}
input[type="email"]{
	direction: rtl!important
}
/* header menu  */
.popup-menu {
  display: none;
  position: absolute;
  right: 0;
  top: -160px;
}
.left-menu .sub-menu {
  margin-left: -90px;
}
/* home contact  */
.contact-form input,
.contact-form textarea,
.contact-form textarea{
	 direction: rtl!important;
}
.rtl .contact-form .frm_primary_label{
  text-align: right!important;
}
.rtl .contact-form .frm_submit {
  text-align: right!important;
}
.contact-form .frm_error {
  text-align: right!important;
  direction: rtl!important;
}