/*
Theme Name: sdewarburg

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;
	text-align: right;
	unicode-bidi: embed
  }
#colorbox.advgb_lightbox #cboxClose {
    right: auto !important;
    left: 0 !important;
}
#colorbox.advgb_lightbox #cboxTitle {
		bottom: -70px !important;
    font-size: 14px !important;
    white-space: break-spaces !important;
    background: #f8f9fa !important;
    padding: 10px !important;
    text-align: right !important;
    color: #333 !important;
}