/*
Theme Name: Invess
Description: Adds support for languages written in a Right To Left (RTL) direction.
It's easy, 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
*/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Typography
 * 3.0 - Elements
 * 4.0 - Forms
 * 5.0 - Navigations
 * 6.0 - Accessibility
 * 7.0 - Alignments
 * 8.0 - Header
 * 9.0 - Widgets
 * 10.0 - Content
 *   10.1 - Posts and pages
 *   10.2 - Comments
 * 11.0 - Media Queries
 *    11.1 - Mobile Large
 *    11.2 - Tablet Small
 *    11.3 - Tablet Large
 *    11.4 - Desktop Small
 *    11.5 - Desktop Medium
 *    11.6 - Desktop Large
 *    11.7 - Desktop X-Large
 */

/**
 * 1.0 Reset
 */

body {
	direction: rtl;
	unicode-bidi: embed;
}

caption, th, td {
	text-align: right;
}

/**
 * 3.0 Elements */
caption, th, td {
	text-align: right;
}

/**
 * 4.0 Forms
 */
.post-password-form input[type="submit"] {
	right: auto;
	left: 0;
}

/**
 * 5.0 Navigations
 */
.main-navigation ul ul {
	margin-right: 0.8em;
	margin-left: auto;
}

.main-navigation .menu-item-has-children > a {
	padding-right: 0;
	padding-left: 48px;
}

.dropdown-toggle {
	right: auto;
	left: 0;
}

.dropdown-toggle:after {
	right: -1px;
	left: auto;
}

.social-navigation li {
	float: right;
}

.social-navigation a:before {
	right: 0;
	left: auto;
}

.secondary-toggle {
	right: auto;
	left: 0;
}

.post-navigation .has-post-thumbnail a:before {
	right: 0;
	left: auto;
}

.pagination .prev {
	right: 0;
	left: auto;
}

.pagination .prev:before {
	content: "\f429";
	right: -1px;
	left: auto;
}

.pagination .next {
	right: auto;
	left: 0;
}

.pagination .next:before {
	content: "\f430";
	right: auto;
	left: -1px;
}

.image-navigation .nav-previous a:before, .comment-navigation .nav-previous a:before {
	content: "\f429";
	margin-right: auto;
	margin-left: 0.2em;
}

.image-navigation .nav-next a:after, .comment-navigation .nav-next a:after {
	content: "\f430";
	margin-right: 0.2em;
	margin-left: auto;
}

/**
 * 6.0 Accessibility
 */
.screen-reader-text:hover, .screen-reader-text:focus {
	right: 5px;
	left: auto;
}

/**
 * 7.0 Alignments
 */
.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.aligncenter {
	margin-right: auto;
	margin-left: auto;
}

blockquote.alignright, .wp-caption.alignright, img.alignright {
	margin: 0.4em 0 1.6em 1.6em;
}

blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
	margin: 0.4em 1.6em 1.6em 0;
}

/**
 * 8.0 Header
 */
.site-branding {
	padding-right: 0;
	padding-left: 60px;
}

/**
 * 9.0 Widgets
 */
.widget_categories .children, .widget_nav_menu .sub-menu, .widget_pages .children {
	margin: 0.7667em 0.8em 0 0;
}

/**
 * 10.0 Content
 */

/**
 * 10.1 Posts and pages
 */

.entry-content .more-link:after {
	content: "\f430";
}

.author-link:after {
	content: "\f430";
}

.author-info .avatar {
	float: right;
	margin: 0 0 1.6em 1.6em;
}

.posted-on:before, .byline:before, .cat-links:before, .tags-links:before, .comments-link:before, .entry-format:before, .edit-link:before, .full-size-link:before {
	margin-right: auto;
	margin-left: 2px;
}

.type-attachment .entry-header {
	clear: left;
}

.format-link .entry-title a:after {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}

/**
 * 10.2 Comments
 */
.comment-list .children > li {
	padding-right: 0.8em;
	padding-left: 0;
}

.comment-author .avatar {
	float: right;
	margin-right: 0;
	margin-left: 0.4em;
}

.bypostauthor > article .fn:after {
	right: 3px;
	left: auto;
}

.comment-metadata .edit-link {
	margin-right: 1em;
	margin-left: auto;
}

.pingback .edit-link {
	margin-right: 1em;
	margin-left: auto;
}

.comment-content ul, .comment-content ol {
	margin: 0 1.3333em 1.6em 0;
}

.comment-reply-title small a {
	float: left;
}

/**
 * 11.0 Media Queries
 */

/**
 * 11.1 Mobile Large 620px
 */
@media screen and (min-width:38.75em) {
	ul, ol {
		margin-right: 0;
		margin-left: auto;
	}

	li > ul, li > ol, blockquote > ul, blockquote > ol {
		margin-right: 1.3333em;
		margin-left: auto;
	}

	blockquote {
		margin-right: -1em;
		margin-left: auto;
	}

	blockquote > blockquote {
		margin-right: 0;
		margin-left: auto;
	}

	.page-header {
		border-color: inherit;
		border-left: none;
		border-style: solid;
		border-width: 0 7px 0 0;
	}

	.page-title, .taxonomy-description {
		margin-right: -7px;
		margin-left: auto;
	}

	.comment-content ul, .comment-content ol {
		margin-right: 0;
		margin-left: auto;
	}

	.comment-content li > ul, .comment-content li > ol, .comment-content blockquote > ul, .comment-content blockquote > ol {
		margin-right: 1.3333em;
		margin-left: auto;
	}

}

/**
 * 11.2 Tablet Small 740px
 */
@media screen and (min-width:46.25em) {
	blockquote {
		margin-right: -1.05em;
		margin-left: auto;
		padding-right: 0.85em;
		padding-left: 0;
	}

	.main-navigation ul ul {
		margin-right: 1em;
		margin-left: auto;
	}

	blockquote.alignright, .wp-caption.alignright
	img.alignright {
		margin: 0.4118em 0 1.6471em 1.6471em;
	}

	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4118em 1.6471em 1.6471em 0;
	}

	.site-branding {
		padding-right: 0;
		padding-left: 66px;
	}

	.widget blockquote {
		margin-right: -1.2353em;
		margin-left: auto;
		padding-right: 1em;
		padding-left: 0;
	}

	.widget blockquote > blockquote {
		margin-right: 0;
		margin-left: auto;
	}

	.widget blockquote.alignright, .widget .wp-caption.alignright, .widget img.alignright {
		margin: 0.5em 0 1.5em 1.5em;
	}

	.widget blockquote.alignleft, .widget .wp-caption.alignleft, .widget img.alignleft {
		margin: 0.5em 1.5em 1.5em 0;
	}

	.widget_categories .children, .widget_nav_menu .sub-menu, .widget_pages .children {
		margin: 0.9643em 1em 0 0;
	}

	.page-links a, .page-links > span {
		margin: 0 0 0.2857em 0.2857em;
	}

	.author-info .avatar {
		margin: 0 0 1.6471em 1.6471em;
	}

	.comment-list .children > li {
		padding-right: 1.2353em;
		padding-left: 0;
	}

	.comment-author .avatar {
		margin-left: 1.64705em;
	}

	.bypostauthor > article .fn:after {
		right: 6px;
		left: auto;
	}

}

/**
 * 11.3 Tablet Large 880px
 */
@media screen and (min-width:55em) {
	blockquote {
		margin-right: -1.0909em;
		margin-left: auto;
		padding-right: 0.9091em;
		padding-left: 0;
	}

	blockquote.alignright, .wp-caption.alignright
	img.alignright {
		margin: 0.4211em 0 1.6842em 1.6842em;
	}

	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4211em 1.6842em 1.6842em 0;
	}

	.site-branding {
		padding-right: 0;
		padding-left: 74px;
	}

	.widget blockquote {
		margin-right: -1.2632em;
		margin-left: auto;
		padding-right: 1.0526em;
		padding-left: 0;
	}

	.widget_categories .children, .widget_nav_menu .sub-menu, .widget_pages .children {
		margin: 0.7188em 1em 0 0;
	}

	.page-links a, .page-links > span {
		margin: 0 0 0.25em 0.25em;
	}

	.author-info .avatar {
		margin: 0 0 1.6842em 1.6842em;
	}

	.comment-list .children > li {
		padding-right: 1.4737em;
		padding-left: 0;
	}

	.comment-author .avatar {
		margin-left: 1.6842em;
	}

}

/**
 * 11.4 Desktop Small 955px
 */
@media screen and (min-width:59.6875em) {
	body:before {
		right: 0;
		left: auto;
	}

	.sidebar {
    float: right;
    margin-right: auto;
   }

	blockquote {
		margin-right: -1.3333em;
		margin-left: auto;
		padding-right: 1.1111em;
		padding-left: 0;
	}

	.main-navigation .menu-item-has-children > a {
		padding-right: 0;
		padding-left: 30px;
	}

	blockquote.alignright, .wp-caption.alignright, img.alignright {
		margin: 0.4em 0 1.6em 1.6em;
	}

	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4em 1.6em 1.6em 0;
	}

	.widget blockquote {
		margin-right: -1.5em;
		margin-left: auto;
		padding-right: 1.1667em;
		padding-left: 0;
	}

	.widget_categories .children, .widget_nav_menu .sub-menu, .widget_pages .children {
		margin: 0.4583em 1em 0 0;
	}

	.page-links a, .page-links > span {
		margin: 0 0 0.3333em 0.3333em;
	}

	.author-info .avatar {
		margin: 0 0 1.5em 1.5em;
	}

	.comment-list .children > li {
		padding-right: 0.8em;
		padding-left: 0;
	}

	.comment-author .avatar {
		margin-left: 0.8em;
	}

	.bypostauthor > article .fn:after {
		right: 3px;
		left: auto;
	}

	.site-branding {
		padding: 0;
	}

}

/**
 * 11.5 Desktop Medium 1100px
 */
@media screen and (min-width:68.75em) {
	blockquote {
		margin-right: -1.05em;
		margin-left: auto;
		padding-right: 0.85em;
		padding-left: 0;
	}

	.main-navigation .menu-item-has-children > a {
		padding-right: 0;
		padding-left: 34px;
	}

	blockquote.alignright, .wp-caption.alignright
	img.alignright {
		margin: 0.4118em 0 1.6471em 1.6471em;
	}

	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4118em 1.6471em 1.6471em 0;
	}

	.widget blockquote {
		padding-right: 1.2143em;
		padding-left: 0;
	}

	.widget_categories .children, .widget_nav_menu .sub-menu, .widget_pages .children {
		margin: 0.4643em 1em 0 0;
	}

	.page-links a, .page-links > span {
		margin: 0 0 0.2857em 0.2857em;
	}

	.author-info .avatar {
		margin: 0 0 1.6471em 1.6471em;
	}

	.comment-list .children > li {
		padding-right: 1.1667em;
		padding-left: 0;
	}

	.comment-author .avatar {
		margin-left: 1.64705em;
	}

	.bypostauthor > article .fn:after {
		right: 6px;
		left: auto;
	}

}

/**
 * 11.6 Desktop Large 1240px
 */
@media screen and (min-width:77.5em) {
	blockquote {
		margin-right: -1.0909em;
		margin-left: auto;
		padding-right: 0.9091em;
		padding-left: 0;
	}

	.main-navigation .menu-item-has-children > a {
		padding-right: 0;
		padding-left: 38px;
	}

	blockquote.alignright, .wp-caption.alignright
	img.alignright {
		margin: 0.4211em 0 1.6842em 1.6842em;
	}

	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4211em 1.6842em 1.6842em 0;
	}

	.widget blockquote {
		padding-right: 1.25em;
		padding-left: 0;
	}

	.widget_categories .children, .widget_nav_menu .sub-menu, .widget_pages .children {
		margin: 0.4688em 1em 0 0;
	}

	.page-links a, .page-links > span {
		margin: 0 0 0.25em 0.25em;
	}

	.author-info .avatar {
		margin: 0 0 1.6842em 1.6842em;
	}

	.comment-list .children > li {
		padding-right: 1.4737em;
		padding-left: 0;
	}

	.comment-author .avatar {
		margin-left: 1.64705em;
	}

}

/**
 * 11.7 Desktop X-Large 1403px
 */
@media screen and (min-width:87.6875em) {
	body:before {
		width: -webkit-calc(50% - 289px);
		width: calc(50% - 289px);
	}

}

/* Heading Element */
.tm-heading-style-horizontal.tm-element-align-center .tm-vc_general.tm-vc_cta3 .tm-vc_cta3-content .tm-vc_cta3-content-header {
	text-align: left;
	padding-left: 80px;
	padding-right: 0px;
}

.tm-heading-style-horizontal.tm-element-align-center .tm-vc_general.tm-vc_cta3 .tm-vc_cta3-content .tm-vc_cta3-content-header:after {
	left: 40px;
	right: auto;
}

.tm-heading-style-horizontal.tm-element-align-center .tm-vc_general.tm-vc_cta3 .tm-vc_cta3-content p {
	text-align: right;
}

.tm-header-style-centerlogo #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal {
	direction: ltr;
}

.tm-header-style-centerlogo .themetechmount-fbar-btn {
	margin-right: -22px;
}

/* Widget Area */
.tm-list.tm-list-style-icon .tm-list-li-content {
	padding-right: 25px;
	padding-left: 0px;
}

body.search .tm-sresult-form-wrapper .search-form .search-field {
	text-align: right;
	padding-left: 0;
	padding-right: 15px;
}

.widget .search-form .search-submit {
	left: 0px;
	right: auto;
}

.widget .widget-title:after {
	left: auto;
	right: 0;
}

/*
ul.invess_contact_widget_wrapper li:before,
.widget_recent_comments li.recentcomments:before, 
.widget_recent_entries a:before, 
.widget_meta a:before, 
.widget_categories a:before, 
.widget_archive li a:before, 
.widget_pages li a:before, 
.widget_nav_menu li a:before {
    left: auto;
	right: 0px;
}*/
.widget_recent_comments li.recentcomments, .widget_recent_entries a, .widget_meta a, .widget_categories a, .widget_archive li a, .widget_pages li a, .widget_nav_menu li a {
	padding-left: 0px;
	padding-right: 15px;
}

/*.widget_recent_comments li.recentcomments:before, .widget_recent_entries a:before, .widget_meta a:before, .widget_categories a:before, .widget_archive li a:before, .widget_pages li a:before, .widget_nav_menu li a:before {
    content: "\e808";
}*/
ul.invess_contact_widget_wrapper li {
	padding-left: 0px;
	padding-right: 30px;
}

.mailchimp-inputbox input[type="submit"], .mc_form_inside .mc_signup_submit .button, .main-holder .newsletter-widget .newsletter-submit {
	right: auto;
	left: 0;
	border-left: none;
	border-right: 1px solid rgba(255, 255, 255, 0.23);
}

/*.mailchimp-inputbox:after, .mc_form_inside .mc_merge_var:after, .widget_newsletterwidget .newsletter-widget:after {
    right: auto;
    left: 17px;
	content: '\e83a';	  
}*/
.sidebar .widget_product_categories li span, .sidebar .widget_categories li span {
	left: 0;
	right: auto;
}

ul.tm-recent-post-list > li > a:first-child {
	margin-left: 15px;
	margin-right: 0px;
	float: none;
	float: right;
}

/* List style */
.tm-list.tm-list-style-icon.tm-list-textsize-small .tm-list-li-content {
	padding-left: 0px;
	padding-right: 16px;
}

.tm-list.tm-list-textsize-medium.tm-list-style-icon .tm-list-li-content {
	padding-left: 0px;
	padding-right: 22px;
}

.tm-list.tm-list-textsize-large.tm-list-style-icon .tm-list-li-content {
	padding-left: 0px;
	padding-right: 25px;
}

.tm-list.tm-list-style-icon.tm-list-textsize-xlarge .tm-list-li-content {
	padding-left: 0px;
	padding-right: 37px;
}

.tm-list.tm-list-style-icon li i {
	right: 2px;
	left: auto;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.tm-vc_icon_element.tm-vc_icon_element-outer.tm-vc_icon_element-align-left {
	text-align: right;
}

.tm-sbox.tm-sbox-iconalign-top-left .tm-vc_general.tm-vc_cta3 .tm-vc_cta3-icons {
	text-align: right;
}

.tm-sbox-iconalign-right-spacing .tm-vc_general {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.tm-sbox-iconalign-left-spacing .tm-vc_cta3-icons-left.tm-vc_general.tm-vc_cta3 .tm-vc_cta3-icons {
	float: right;
}

.tm-vc_general.tm-vc_cta3.tm-vc_cta3-align-left .tm-vc_cta3-content, .tm-sbox.tm-sbox-iconalign-left-spacing  .tm-vc_cta3-icons-left.tm-vc_general.tm-vc_cta3 .tm-vc_cta3_content-container {
	text-align: right;
}

.tm-vc_general.tm-vc_cta3.tm-vc_cta3-icons-left .tm-vc_cta3_content-container {
	padding-left: 0em;
	padding-right: 1em;
}

.tm-vc_btn3.tm-vc_btn3-style-text.tm-vc_btn3-size-md.tm-vc_btn3-icon-right:not(.tm-vc_btn3-o-empty) {
	padding-right: 0px;
	padding-left: 30px;
}

.tm-vc_btn3.tm-vc_btn3-style-text.tm-vc_btn3-size-md.tm-vc_btn3-icon-right:not(.tm-vc_btn3-o-empty) .tm-vc_btn3-icon {
	right: auto;
	left: 0;
}

.tm-heading-style-vertical.tm-element-align-left .tm-vc_general.tm-vc_cta3 .tm-vc_cta3-content-header:after {
	right: 0;
	left: auto;
}

.tm-sbox-iconalign-before-heading.tm-sbox .tm-vc_general.tm-vc_cta3:not(.tm-vc_cta3-icon-size-xl) .tm-vc_cta3-icons {
	padding-left: 10px;
	padding-right: 0px;
}

.themetechmount-events-box-view-top-image-details .themetechmount-post-readmore a:after, .themetechmount-blogbox-footer-readmore a:after {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* Accordion  Tab */
.vc_general.vc_tta-color-white.vc_tta-style-classic .vc_tta-panel .vc_tta-controls-icon-position-left.vc_tta-panel-title > a:before {
	right: 48px;
	left: auto;
}

.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
	left: auto;
	right: 20px;
}

.vc_general.vc_tta-color-white.vc_tta-style-classic .vc_tta-controls-icon-position-left.vc_tta-panel-title>a {
	padding-right: 63px;
	padding-left: 0px;
	text-align: right;
}

/* Tour tab */
.tm-tourtab-style1.vc_tta-tabs.vc_tta-tabs-position-right.vc_tta-style-outline .vc_tta-tab.vc_active>a, .tm-tourtab-style1.vc_tta-tabs.vc_tta-tabs-position-left.vc_tta-style-outline .vc_tta-tab>a {
	border-left-width: 2px;
	border-style: solid;
	border-right: none;
}

.tm-tourtab-style1.vc_tta-tabs.vc_tta-tabs-position-left.vc_tta-style-outline .vc_tta-tab.vc_active>a, .tm-tourtab-style1.vc_tta-tabs.vc_tta-tabs-position-right.vc_tta-style-outline .vc_tta-tab>a {
	border-left: none;
}

/* Team Member */
.themetechmount-team-box-view-overlay .themetechmount-box-social-links {
	right: 15px;
	left: auto;
}

.themetechmount-team-box-view-overlay .themetechmount-box-social-links ul li {
	margin-right: -60px;
	margin-left: auto;
}

.themetechmount-team-box-view-overlay:hover .themetechmount-box-social-links ul li {
	margin-right: 0px;
}

/* Progress bar */
.vc_progress_bar .vc_single_bar .vc_bar {
	right: 0;
	left: auto;
}

span.tm-vc_label_units.vc_label_units {
	left: 1px;
	right: auto;
}

.vc_progress_bar .tm-pbar-icon-true .vc_single_bar {
	margin-left: auto;
	margin-right: 60px;
}

.tm-pbar-single-bar-w {
	margin-right: 0;
}

/* Facts and Digit */
.tm-fid-view-lefticon-border .tm-fld-contents {
	padding-right: 102px;
	padding-left: 0;
	text-align: right;
}

.tm-fid-view-righticon-border .tm-fid-icon-wrapper:after, .tm-fid-view-lefticon-border .tm-fid-icon-wrapper:after {
	left: -35px;
	right: auto;
}

.themetechmount-boxes-textalign-left .tm-sortable-list ul {
	text-align: right;
}

.themetechmount-boxes-textalign-left .tm-sortable-list .tm-sortable-link {
	margin-left: 10px;
	margin-right: 0px;
}

.tm-boxes-carousel-arrows-above.tm-boxes-txtalign-left .themetechmount-boxes-row-wrapper .slick-prev {
	right: auto;
	left: 0px;
}

.tm-boxes-carousel-arrows-above.tm-boxes-txtalign-left .themetechmount-boxes-row-wrapper .slick-next {
	left: 40px;
	right: auto;
}

.themetechmount-boxes-view-carousel .themetechmount-box-heading-wrapper.tm-element-align-left .tm-element-heading-wrapper {
	padding-left: 100px;
	padding-right: 0px;
}

.tm-boxes-carousel-arrows-above.tm-boxes-txtalign-justify .themetechmount-boxes-row-wrapper .slick-prev, .tm-boxes-carousel-arrows-above.tm-boxes-txtalign-center .themetechmount-boxes-row-wrapper .slick-prev {
	right: 50%;
	left: auto;
}

/* Testimonials */
.themetechmount-box-view-default .themetechmount-box-author .themetechmount-box-img {
	float: right;
}

.themetechmount-boxes-view-slickview.themetechmount-boxes-col-one .testimonial_item .themetechmount-box-title {
	left: auto;
	right: -39px;
}

.main-holder .site #content table.cart td.actions .input-text, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input, select {
	text-align: right;
}

/* Single portfolio */
.themetechmount-pf-detailbox-list .tm-pf-details-date .tm-pf-left-details {
	padding-right: 0;
}

.themetechmount-pf-detailbox-list .tm-pf-details-date .tm-pf-left-details i {
	padding-left: 10px;
	padding-right: 0;
	float: right;
	margin-top: 2px;
}

@media only screen and (min-width:1801px) {
	.tm-left-span .tm-col-wrapper-bg-layer {
		margin-left: auto;
		margin-right: -500px;
	}

	.tm-right-span .tm-col-wrapper-bg-layer {
		margin-right: auto;
		margin-left: -500px;
	}

}

@media only screen and (max-width:1600px) and (min-width:1401px) {
	.tm-left-span .tm-col-wrapper-bg-layer {
		margin-left: auto;
		margin-right: -300px;
	}

	.tm-right-span .tm-col-wrapper-bg-layer {
		margin-right: auto;
		margin-left: -300px;
	}

}

@media only screen and (max-width:1400px) and (min-width:1171px) {
	.tm-left-span .tm-col-wrapper-bg-layer {
		margin-left: auto;
		margin-right: -200px;
	}

	.tm-right-span .tm-col-wrapper-bg-layer {
		margin-right: auto;
		margin-left: -200px;
	}

}

@media only screen and (max-width:1170px) and (min-width:1000px) {
	.tm-left-span .tm-col-wrapper-bg-layer {
		margin-left: auto;
		margin-right: -100px;
	}

	.tm-right-span .tm-col-wrapper-bg-layer {
		margin-right: auto;
		margin-left: -100px;
	}

}

@media only screen and (max-width:999px) {
	.tm-left-span .tm-col-wrapper-bg-layer {
		margin-left: auto;
		margin-right: -50px;
	}

	.tm-right-span .tm-col-wrapper-bg-layer {
		margin-right: auto;
		margin-left: -50px;
	}

}

.vc_row[data-vc-full-width] {
	left: 0 !important;
	margin-right: 0;
}

.ps-container.ps-active-x>.ps-scrollbar-x-rail, .ps-container.ps-active-y>.ps-scrollbar-y-rail {
	right: auto !important;
	left: 0 !important;
}

.tm-header-invert .themetechmount-fbar-btn {
	margin-left: 22px;
}

.tm-sresults-settings-wrapper {
	padding-left: 0px;
	padding-right: 15px;
}

/*new css*/
.text-left-arrow i {
	position: absolute;
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
	top: 0;
}

.elementor-button .elementor-button-icon i {
	transform: rotate(180deg);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	line-height: 10px;
}

.elementor-button:hover .elementor-button-icon i {
	transform-origin: left;
	transform: translateX(10px) rotate(180deg);
}

.elementor-button {
	padding: 15px 30px 15px 30px;
}

.tm-fid.tm-fid-view-style5 .tm-fld-contents {
	text-align: right;
	display: inline-block;
	width: 100%;
}

.tm-fid.tm-fid-view-style5 .tm-digit-content {
	display: inline;
	float: right;
	padding-left: 30px;
}

.themetechmount-portfoliobox-style1 .themetechmount-box-overlay {
	padding: 22px 27px 22px 27px;
	text-align: right;
}

.themetechmount-portfoliobox-style1 .tm-post-iconbox a i {
	position: absolute;
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
	top: -5px;
	right: -2px;
	margin: 0 auto;
}

.themetechmount-blogbox-styleone .tm-post-iconbox a i {
	position: absolute;
	transform: rotate(180deg);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -4px;
}

.themetechmount-iconbox-stylefive .tm-iconbox-btn a span:after {
	right: 90px;
	top: 0;
	position: absolute;
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
}

.themetechmount-iconbox-stylefive .tm-iconbox-btn a:hover span:after {
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
}

.tm-col-stretched-right .tm-stretched-div {
	margin-left: -500px !important;
	right: 0;
	margin-right: 0px !important;
}

.tm-col-stretched-left .tm-stretched-div {
	margin-right: -500px !important;
	right: 0;
	margin-left: 0px !important;
}

.themetechmount-iconbox.themetechmount-iconbox-stylethree .themetechmount-iconbox-icon {
	padding-left: 25px;
	padding-right: 0;
}

.tm-testimonial-arrow-style1 .tm-boxes-carousel-arrows-1 .themetechmount-boxes-row-wrapper .slick-prev {
	right: auto;
	left: 12px;
	margin-right: 83px;
}

.tm-testimonial-arrow-style1 .tm-boxes-carousel-arrows-1 .themetechmount-boxes-row-wrapper .slick-next {
	right: auto;
	left: 70px;
}

.themetechmount-boxes-testimonial .themetechmount-box-author .themetechmount-box-title {
	float: right;
}

.footer .widget.widget_nav_menu li a:hover:before {
	margin-left: -100% !important;
	margin-right: 0;
}

.widget_recent_comments li.recentcomments:before, .widget_recent_entries a:before, .widget_meta a:before, .widget_categories a:before, .widget_archive li a:before, .widget_pages li a:before, .widget.widget_nav_menu li a:before, .widget_product_categories a:before {
	left: auto;
	right: 0;
}

.footer .widget ul.tm-recent-post-list>li .post-detail {
	text-align: right;
}

.footer-nav-menu li {
	margin-right: 14px;
	padding-left: 4px;
}

ul.footer-nav-menu li:after {
	padding-left: 7px;
	padding-right: 7px;
}

.themetechmount-box-blog.themetechmount-blogbox-styleone .tm-entry-meta .tm-meta-line:after {
	left: auto;
	right: 51px;
}

.themetechmount-blogbox-styleone .themetechmount-box-desc {
	text-align: right;
}

.themetechmount-blogbox-styleone .themetechmount-box-desc:after, .themetechmount-blogbox-styleone .themetechmount-box-desc:before {
	right: 0;
}

.themetechmount-blogbox-styleone:hover .themetechmount-box-desc:after {
	margin-left: -100%;
	margin-right: 0;
}

.tm-info-widgettext .tm-company-number {
	float: left;
}

.tm-info-widgettext .tm-boxcontent {
	text-align: right;
	float: right;
	padding-left: 15px;
}

.work-column>.elementor-element-populated {
	margin-left: -145px !important;
}

.testimonial-column .tm-stretched-div.tm-stretched-left {
	margin-left: -188px !important;
}

.elementor-progress-percentage {
	left: 0;
	right: auto;
}

.tm-seperator-solid.left-align .tm-element-subheading, .tm-seperator-solid.right-align .tm-element-subheading {
	padding-right: 47px;
	padding-left: 0;
}

.tm-seperator-solid .tm-element-subheading:before, .tm-seperator-solid .tm-element-subheading:after {
	right: 0;
	left: auto;
}

.tm-heading-style-horizontal.tm-element-heading-content-wrapper .tm-content-header {
	text-align: right;
	padding-left: 80px;
	padding-right: 0;
}

.tm-heading-style-horizontal.tm-element-heading-content-wrapper .tm-content-header:after {
	left: 65px;
	right: auto;
}

.tm-heading-style-horizontal.tm-element-heading-content-wrapper .tm-content-header, .tm-heading-style-horizontal.tm-element-heading-content-wrapper .tm-element-content-desctxt {
	text-align: right;
}

.themetechmount-iconbox.themetechmount-iconbox-styletwo .tm-iconbox-btn {
	float: left;
}

.themetechmount-iconbox.themetechmount-iconbox-styletwo .themetechmount-iconbox-icon {
	vertical-align: top;
	padding-left: 15px;
	padding-right: 0;
}

.tm-fid.tm-fid-without-icon .tm-fld-contents {
	text-align: right;
}

.tm-fid-view-lefticon.inside h4 {
	float: none;
}

.inside.tm-fid-view-lefticon h3 {
	text-align: right;
}

.tm-tab-element.elementor-widget-tabs .elementor-tabs-wrapper .elementor-tab-title:first-child {
	margin-right: 0;
}

.tm-fid-view-circle-progress .tm-fid-content {
	padding-right: 25px;
	text-align: right;
}

.tm-fid-view-circle-progress .tm-fid-title {
	text-align: right;
}

.themetechmount-iconbox-styleseven .tm-icon-readmore a:before {
	content: "\f060";
}

.themetechmount-iconbox-styleseven:hover .tm-icon-readmore a:before {
	transform: translateX(-5px);
}

.themetechmount-iconbox.themetechmount-iconbox-stylefour .themetechmount-iconbox-icon {
	padding-left: 25px;
	padding-right: 0;
}

.themetechmount-servicebox-styletwo:hover .tm-servie-icon {
	right: 0;
}

.themetechmount-servicebox-styletwo .tm-servie-icon {
	right: -65px;
}

.tm-invess-icon-angle-right:before {
	content: '\e808';
}

.themetechmount-servicebox-styletwo .themetechmount-box-bottom-content {
	text-align: right;
}

.confidence-testi-column .tm-stretched-div.tm-stretched-left {
	margin-left: -150px !important;
}

.form-column.tm-col-stretched-right  .tm-stretched-div {
	margin-right: -170px !important;
}

ul.tm-recent-post-list>li .post-date i {
	margin-left: 4px;
}

.top-contact i {
	margin-left: 7px;
	margin-right: 0px;
}

.tm-headerstyle-classic2 .ttm-header-button a:after, .tm-headerstyle-classic .ttm-header-button a:after, .tm-header-overlay .ttm-header-button a:after, .tm-slider-button i, .mailchimp-inputbox button i {
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
	top: 0;
	line-height: 10px;
}

.tm-headerstyle-classic2 .ttm-header-button a:hover:after, .tm-headerstyle-classic .ttm-header-button a:hover:after, .tm-header-overlay .ttm-header-button a:hover:after, .tm-slider-button:hover i, .mailchimp-inputbox button:hover i,.themetechmount-iconbox.themetechmount-iconbox-styletwo .tm-iconbox-btn a:hover:after,.widget.tm-sidebar-contact-banner a:hover:after {
	transform: translateX(-3px) rotate(180deg);
}

.tm-slider-button i {
	top: 0;
}

.wpcf7 .tm-commonform .tm-contact-btn:hover i, .themetechmount-box-blog.themetechmount-blogbox-styletwo .themetechmount-blogbox-desc-footer a:hover:after, .themetechmount-iconbox.themetechmount-iconbox-styleone .tm-iconbox-btn a:hover:after, .wpcf7 .tm-commonform.tm-teamform .tm-contact-btn:hover i, .wpcf7 .tm-commonform.tm-contactform-03 .tm-contact-btn:hover i, .tm-ptablebox .tm-ptable-btn a:hover:after, .themetechmount-teambox-style1 .tm-team-profile-btn:hover i, .wpcf7 .tm-commonform.tm-contactform-01 .tm-contact-btn:hover i, .wpcf7 .tm-commonform.tm-contactform-02 .tm-contact-btn:hover i, a.tm-button-simple:hover i, .elementor-widget-button .elementor-button:hover .elementor-align-icon-right {
	transform: translateX(10px) rotate(180deg);
}

.themetechmount-iconbox.themetechmount-iconbox-styletwo .tm-iconbox-btn a:after {
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
	left: 30px;
	right: auto;
}

.themetechmount-iconbox.themetechmount-iconbox-styletwo .tm-iconbox-btn a {
	padding: 14px 30px 14px 40px;
}

a.tm-button-simple i {
	position: relative;
	top: 0px;
	display: inline-block;
	transform-origin: left;
	transform: translateX(15px) rotate(180deg);
}

.themetechmount-stepboxes-wrapper.tm-staticbox-style1 .tm-ptable-icon-wrapper:before {
	left: -10px;
	right: auto;
}

.tm-contactform-onepage .tm-contact-btn .kw_invess, .wpcf7 .tm-commonform.tm-contactform-03 .tm-contact-btn .kw_invess, .wpcf7 .tm-commonform.tm-teamform .tm-contact-btn .kw_invess, .wpcf7 .tm-commonform.tm-contactform-02 .tm-contact-btn .kw_invess {
	left: 0;
	position: absolute;
	top: 34px;
	font-size: 18px;
	color: #fff;
	z-index: 9;
	right: 75px;
	display: inline-block;
	width: 25px;
	margin: 0 auto;
	transform-origin: left;
	transform: translateX(3px) rotate(180deg);
}

.tm-commonform.tm-contactform-02 .tm-contact-btn input[type="submit"] {
	padding-right: 0px;
}

.post.themetechmount-box-blog-classic .tm-box-post-date {
	right: 25px;
	left: auto;
}

.footer .widget_recent_entries a, .footer .widget_meta a, .footer .widget_categories a, .footer .widget_archive li a, .footer .widget_pages li a, .footer .widget.widget_nav_menu li a, .footer .widget_product_categories a {
	padding-right: 0;
}

.widget.tm-sidebar-contact-banner {
	text-align: right;
}

.themetechmount-iconbox-stylefive .tm-iconbox-btn a span:after {
	left: -20px;
	right: auto;
	transform-origin: left;
	transform: translateX(5px) rotate(180deg);
}

.tm-ptablebox .tm-ptable-btn a:after, .widget.tm-sidebar-contact-banner a:after {
	left: 30px;
	right: auto;
	transform-origin: left;
	transform: translateX(5px) rotate(180deg);
}

.themetechmount-teambox-style1 .tm-team-profile-btn i {
	transform-origin: left;
	transform: translateX(5px) rotate(180deg);
	top: 1px;
	left: 13px;
}

.themetechmount-iconbox.themetechmount-iconbox-styletwo.themetechmount-iconbox-styleeight .tm-iconbox-btn a:after {
	right: 80px;
	top: 14px;
	left: auto;
}

.wpcf7 .tm-commonform.tm-teamform .tm-contact-btn i.kw_invess {
	right: 70px;
	top: 27px;
}

.themetechmount-ptables-w.tm-ptablebox .tm-ptable-btn a {
	padding: 14px 28px 14px 55px;
}

.widget.tm-sidebar-contact-banner a {
	padding: 10px 28px 10px 55px;
}

.themetechmount-topbar-wrapper .tm-topbar-content .tm-align-right {
	text-align: left;
}

.themetechmount-topbar-wrapper:not(.tm-borderbottom-yes) .tm-wrap-cell:not(.tm-align-right) .top-contact li:first-child {
	padding-right: 0px !important;
}

.tm-header-overlay .tm-topbar-content .tm-wrap-cell .top-contact li:last-child {
	padding-left: 15px;
}

.mailchimp-inputbox button[type="submit"] {
	left: 10px;
	right: auto;
}

.mailchimp-inputbox input[type="email"] {
	padding-left: 230px;
}

.inner-margin {
	margin: 0 20px !important;
}

body div.pp_default .pp_close {
	font-size: 0;
}

.wpcf7 .tm-commonform.tm-contactform-03 .tm-contact-btn i.kw_invess {
	right: 75px;
	top: 32px;
}

.themetechmount-boxes-testimonial .themetechmount-box-desc blockquote {
	text-align: right;
}
.post.themetechmount-box-blog-classic .tm-right-meta .themetechmount-commentbox, article.themetechmount-box-blog-classic .tm-blog-classic-box-content .tm-classic-footer-meta .tm-entry-meta .tm-meta-line {
    padding-left: 23px;
    padding-right: 0;
}
article.themetechmount-box-blog-classic .tm-blog-classic-box-content .tm-entry-meta .tm-meta-line:after {
	left: 0;
	right: auto;
}
article.themetechmount-box-blog-classic .tm-blog-classic-box-content .tm-entry-meta .tm-meta-line.comments-link {
    display: inline-block;
    position: relative;	
}
.single article.post blockquote:before {
	right: auto;
	left: 25px;
}

.single-tm_portfolio .tm-social-share-title {
	float: right;
}

.tm-social-share-wrapper.tm-social-share-portfolio-wrapper {
	padding-top: 0;
	float: right;
}

.tm-team-member-single-content-wrapper blockquote:before {
	right: auto;
	left: 15px;
}
 article.themetechmount-box-blog-classic .tm-blog-classic-box-content .tm-classic-footer-meta .tm-entry-meta .tm-meta-line

.single-tm_team_member .tm-team-social-links-wrapper ul {
	text-align: right;
}

.top-contact.tm-highlight-right {
	margin-right: 15px;
	padding-right: 10px;
	margin-left: 0;
	padding-left: 0;
}

.tm-file.widget .tm-links i {
    padding-left: 10px;
    padding-right: 0;

}

.themetechmount-testimonialbox-styletwo .themetechmount-testimonial-text:before {
	right: -5px;
	left: auto;
}

.themetechmount-testimonialbox-styletwo .tm-box-footer {
    text-align: right;
}

.themetechmount-servicebox-styletwo .themetechmount-more-button {
    left: 30px;
    right: auto;
}

.tm-commonform.tm-contactform-03 .wpcf7-list-item {
	float: right;
}
.tm-commonform.tm-contactform-03  span.wpcf7-list-item-label {
	float: left;
}

.themetechmount-teambox-style1 .tm-member-social {
    left: 24px;
    right: auto;
 
}

.themetechmount-teambox-style1 .themetechmount-box-social-links .tm-team-social-links-wrapper ul li {
	right: 0;
	left: auto;
}

.tm-pf-single-related-wrapper .tm-heading-style-horizontal.tm-element-heading-content-wrapper .tm-content-header:after {
    left: 60px;
    right: auto;
}

.tm-pf-single-related-wrapper .tm-heading-style-horizontal.tm-element-heading-content-wrapper .tm-content-header {
    width: 45%;
    padding-left: 80px;
    padding-right: 0;
}

.single-tm_portfolio .tm-quickcta-details div.tm-wrap-cell:before {
	right: 0;
	left: auto;
}

ul.tm-recent-post-list>li img {
	margin-left: 18px;
	margin-right: 0;
}
.pagination-item.next .pagination-content {
    padding-left: 15px;
    padding-right: 0;
    text-align: right;
}

.pagination-item.prev .pagination-content {
    padding-right: 15px;
    padding-left: 0;
}

.tm-social-share-wrapper .tm-social-share-title, .tm-social-share-wrapper .tm-social-share-links, .tm-social-share-wrapper .tm-single-top-btn {
    float: right;
}

.single-tm_team_member .tm-team-social-links-wrapper ul li:first-child {
    margin-left: 10px;
}

.single-tm_team_member .themetechmount-team-member-single-featured-area {
    padding-left: 45px;
    padding-right: 0;
    float: right;
}

.themetechmount-team-member-single-content-area {
    padding-top: 80px;
    padding-bottom: 60px;
    float: right;
}

.elementor-widget-accordion .elementor-tab-content {
	border-bottom: 1px solid rgba(0, 0, 0, 0.11) !important;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{
	position: relative;
	z-index: 2;
	color:#fff;
	font-size: 14px;
    line-height: 24px;
    padding-left: 3px;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right:before{
	content:'';
	position:absolute;
	width:60px;
	height:62px;
	background-color:#000;
	left:-20px;
	margin-top: -20px;
	z-index: -1;
	border-bottom: 1px solid rgb(255, 255, 255,0.30);
}
.elementor-accordion .elementor-active.elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right:before{
    border-left: 1px solid rgba(255, 255, 255, 0.20);
	background-color:transparent;
	border-bottom: none;
}
.tm-accor-btn{
	padding: 10px 20px 6px;
    background-color: #000;
    border-radius: 3px;
	margin-top:5px;
	display: inline-block;
}
.tm-accor-btn:hover{
	color:#fff;
}

.single-post article.post .entry-content ol.tm-roundedicon-list li, .single-post article.post .entry-content ul.tm-roundedicon-list li {
    padding-right: 22px;
}

.single-post article.post .entry-content ol.tm-roundedicon-list li:after, .single-post article.post .entry-content ul.tm-roundedicon-list li:after {
	left: auto;
	right: 0;
}

@media (min-width:1200px) {
	.tm-header-text-area, #site-header-menu #site-navigation .nav-menu, #site-header-menu, .tm-header-icons, .tm-header-icon, #site-header-menu #site-navigation .mega-menu-wrap, .menu-tm-main-menu-container {
		float: left;
	}

	#site-header-menu #site-navigation div.nav-menu > ul ul li > a, .tm-mmmenu-override-yes #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > a, .tm-mmmenu-override-yes #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal li.mega-menu-megamenu .mega-sub-menu a {
		text-align: right;
	}

	#site-header-menu #site-navigation div.nav-menu > ul ul li > a:before, .tm-mmmenu-override-yes #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal > li.mega-menu-item ul.mega-sub-menu li > a:before {
		margin-left: 5px;
		margin-right: 0px;
	}

	.tm-mmmenu-override-yes #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal li.mega-menu-flyout ul.mega-sub-menu ul.mega-sub-menu, #site-header-menu #site-navigation div.nav-menu > ul li > ul ul {
		right: 100%;
		left: auto;
	}

	#site-header-menu #site-navigation div.nav-menu > ul ul {
		left: auto;
		right: 0;
	}

	#site-header-menu #site-navigation div.nav-menu > ul > li i {
		right: -13px;
		left: auto;
	}

	#site-header-menu #site-navigation div.nav-menu > ul > li ul li.page_item_has_children > a:after, #site-header-menu #site-navigation div.nav-menu > ul > li ul li.menu-item-has-children > a:after {
		content: "\f104";
		left: 20px;
		right: auto;
	}

	.tm-header-invert .tm-header-icon, .tm-header-invert .themetechmount-fbar-btn {
		margin-left: 20px;
		margin-right: 0px;
	}

	.tm-header-text-area:before, .tm-header-icons:before {
		left: auto;
		right: 0;
	}

	.tm-header-style-classic-box .site-header:not(.is_stuck) .site-branding {
		padding-right: 30px;
	}

	.tm-header-text-area {
		padding-right: 30px;
		margin-right: 5px;
		padding-left: 10px;
	}

}

@media (max-width:1200px) {
	.site-header-main.tm-wrap .tm-wrap-cell {
		float: left;
	}

	.tm-header-invert .site-branding {
		float: left;
	}

	.tm-header-invert .tm-header-icons {
		display: none;
	}
	.site-branding {
		padding-left:0px;
	}
}

.tm-header-overlay .tm-search-overlay .w-search-form-row:before {
    left: 27px;
    right: auto;
}
.tm-header-style-classic .tm-search-overlay, .tm-header-overlay .tm-search-overlay {
    left: -24px;
    right: auto;
}
article.themetechmount-box-blog-classic .tm-blog-classic-box-content .tm-classic-footer-meta .tm-entry-meta .tm-meta-line:first-child,
.themetechmount-box-blog-classic .tm-entry-meta .tm-meta-line:first-child {
	padding-right:0px;
}
ul.invess_contact_widget_wrapper li:before {
    right: 0;
	left:auto;
}
.sidebar .widget ul.invess_contact_widget_wrapper li {
    padding-right: 37px;
    padding-left:0px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:before, .widget.tm_widget_nav_menu li a:before, .widget.invess_all_post_list_widget li a:before, .widget.invess_category_list_widget li a:before {
    left:auto;
    right: 0;
}
.sidebar .widget.invess_category_list_widget ul>li a:after, .sidebar .widget.invess_all_post_list_widget ul>li a:after {
    content: '\e808';
    left: 5px;
	right: auto;
}
.tm-seperator-solid.left-align .tm-content-header .tm-element-subhead {
    padding-left: 60px;
	padding-right: 0;
}
.tm-seperator-solid.left-align .tm-content-header .tm-element-subhead:before, .tm-seperator-solid .tm-content-header .tm-element-subhead:after {
    left: 0;
	right: auto;
}
input[type="checkbox"], input[type="radio"] {
    margin-left: .4375em;
    margin-right:0;
}
.wpcf7-list-item {
    margin: 0 0em 0 1em;
}
@media (max-width:991px){	
.tm-info-widgettext .tm-company-number {
    float: right;
}
}
@media (max-width:767px){	
.tm-team-details-line.tm-team-extra-details-line-phone {
    width: 100%;
}
}