/*
Theme Name: Ukemi

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

*/

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



@media (min-width: 1200px) {
/* 	#home-slider-info {
	right: calc((100vw - 1170px) / 2 + 20px);
	left:auto;
} */
}

@media (max-width: 1200px) {
/* 	#home-slider-info {
	right: calc((100vw - 970px) / 2 + 20px);
	left:auto;
} */
}

@media (max-width: 992px) {
/* 	#home-slider-info {
	right: calc((100vw - 750px) / 2 + 20px);
	left:auto;
} */
}

@media (max-width: 768px) {
/* 	#home-slider-info {
	right: 20px;
	left:auto;
} */
}


.contact-form-rtl form {
    direction: rtl !important;
    text-align: right;
	float: right;
}


/*--------------------------------------------------------------
## Support Page
--------------------------------------------------------------*/



#support-form input, #support-form select {

    float: right;
}


#support-form span{

    float: right;
}

#support-form .form-row {
	/* float: right; */

}



/*--------------------------------------------------------------
## Wpforo
--------------------------------------------------------------*/
#wpforo-wrap i.fas.fa-reply {
    transform: scale(1,-1);
}
