/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Navigation
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget select {
    width: 100%;
    padding: 6px 10px;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}
.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery-columns-3 .gallery-item:nth-child(3n+1) {
    clear: left;
}
.blog-post .post-teaser .gallery-item{
  background-color: transparent;
}
.post-teaser img {
    max-width: 100%;
    height: auto;
}
.edit-link {
    background: #333;
    color: #fff;
    display: inline-block;
    padding: 1px 10px;
    margin-left: 10px;
}
.edit-link a {
    color: #fff;
}
.wp-caption-text.gallery-caption {
    display: block;
    padding: 20px 20px 20px 0px;
    text-align: left;
}
blockquote {
    margin-bottom: 20px;
}
.post-teaser th {
  font-size: 17px !important;
}
.post-teaser a {
  font-size: 15px !important;
}
table {
  border-right: 1px solid hsl(0, 0%, 87%);
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 1.75em;
  table-layout: fixed;
  width: 100%;
}
table > thead > tr > th, table > tbody > tr > th, table > tbody > tr > td {
  border-top: 1px solid hsl(0, 0%, 87%);
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th, table > tbody > tr > td, table > tbody > tr > th, table > tfoot > tr > td, table > tfoot > tr > th, table > thead > tr > td, table > thead > tr > th, th, td {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: currentcolor currentcolor hsl(0, 0%, 82%) hsl(0, 0%, 82%);
  border-image: none;
  border-style: none none solid solid;
  border-width: medium medium 1px 1px;
  padding: 10px;
}
.post-teaser td {
  font-weight: 600;
}
.post-teaser img {
  height: auto;
  max-width: 100%;
}
.widget img {
  height: auto;
  max-width: 100%;
}
.category-list > li {
  font-size: 16px;
  line-height: 20px;
}
.category-list > li {
    font-size: 18px;
    line-height: 20px;
    padding: 10px 0 10px 20px;
    position: relative;
    margin-top: 0;
}
.post-teaser ul li > span {
  font-size: 14px !important;
}
.category-list > li a {
  color: hsl(0, 0%, 27%);
  font-size: 16px !important;
  text-decoration: none;
}
.category-list > li {
  font-size: 16px !important;
}
 .post-teaser input[type="text"], .post-teaser input[type="password"] {
  border: 1px solid hsl(0, 0%, 60%);
  border-radius: 0px;
  padding: 13px 22px;
}

.nav-links > .page-numbers {
  border: 1px solid #000;
  display: inline-block;
  padding: 10px 15px;
}
.blog-post > .inside {
  padding: 0;
}
.tags-links.tags-list > li {
	display: inline-block;
    margin-bottom: 7px;
    margin-right: 5px;
    padding: 0;
}
blockquote {
    border-left: none;
    position: relative;
    padding-left: 100px;
}
.blog-post .post-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.sticky_post_icon {
    font-size: 2.76em;
    position: absolute;
    right: 0;
    background: rgba(256,256,256, 0.9);
    color: #333;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    z-index: 1;
    padding: 4px;
    border: 3px solid;
}
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}
address {
    margin-bottom: 20px;
    line-height: 1.42857143;
    font-style: italic;
}
.category-list {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.list-image > img {
  max-width: 100%;
  height: auto;
  width: auto;
} 
/* 13-02-2017 unite test */
 .widget_nav_menu ul>li>ul.sub-menu>li>ul.sub-menu ul.sub-menu {
    padding-left: 13px;
} 
.widget_nav_menu ul > li > ul.sub-menu li > ul.sub-menu li {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
} 
.widget_nav_menu ul > li > ul.sub-menu li > ul.sub-menu.category-list > li>a{
  margin-left: 15px;
}
ol > li,ul li {
    margin-top: 8px;
}
.column-right ul {
    padding-bottom: 0;
} 
.post-image img {
    height: auto;
    max-width: 100%;
}
table {
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid #ccc;
    margin: 0 0 1.75em;
    table-layout: fixed;
    width: 100%;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.textwidget > form select option {
  width: 250px;
}
.comments .comment .comment {
    margin-left: 40px;
}
.comments .comment .comment {
    margin-left: 0px;
}
.entry-content img {
    max-width: 100%;
    height: auto;
}
.box-step .title span {
    color: #009cdc;
}
.comments-area .comment .comment {
    margin-left: 2em;
}
.comment-reply-title {
  font-size: 28px;
  font-weight: 600;
}
.blog #monster-widget-placeholder-1 {
    margin-top: 40px;
}
.post-teaser input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    border: 1px solid #333;
    background: #333;
    padding: 14px 22px 13px;
    display: inline-block;
    width: auto;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    margin: 0px 0;
}
ul, ol {
    margin: 0;
    padding: 0 0 0px 40px;
}
ol ol, ol ul, ul ol, ul ul,ul,ol {
    margin-bottom: 0;
}
.post-teaser ul ul,.post-teaser ol ol {
    padding-left: 20px;
    padding-bottom: 0px;
}
.wp-block-image.alignfull img, .wp-block-image.alignwide img {
  width: 100%;
}
.page > .offset-sm > p {
  padding-top: 20px;
}










/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.45
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */

.bootstrap-datetimepicker-widget {
	list-style: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	display: block;
	margin: 2px 0;
	padding: 4px;
	width: 19em;
}

@media (min-width: 768px) {
	.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
		width: 38em;
	}
}

@media (min-width: 992px) {
	.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
		width: 38em;
	}
}

@media (min-width: 1200px) {
	.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
		width: 38em;
	}
}

.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
	content: '';
	display: inline-block;
	position: absolute;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	top: -7px;
	left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid white;
	top: -6px;
	left: 8px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #ccc;
	border-top-color: rgba(0, 0, 0, 0.2);
	bottom: -7px;
	left: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid white;
	bottom: -6px;
	left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
	left: auto;
	right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
	left: auto;
	right: 7px;
}

.bootstrap-datetimepicker-widget .list-unstyled {
	margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
	padding: 6px 0;
}

.bootstrap-datetimepicker-widget a[data-action]:active {
	box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
	width: 54px;
	font-weight: bold;
	font-size: 1.2em;
	margin: 0;
}

.bootstrap-datetimepicker-widget button[data-action] {
	padding: 6px;
}

.bootstrap-datetimepicker-widget .btn {
	padding: 0 !important;
	height: auto !important;
	min-width: 0 !important;
	line-height: auto;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	background: #f4f4f4 !important;
	color: #000 !important;
}

.bootstrap-datetimepicker-widget .btn:after,
.bootstrap-datetimepicker-widget .btn:before {
	position: relative;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	opacity: 1;
	background: transparent !important;
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
	text-align: center;
}

.bootstrap-datetimepicker-widget .picker-switch::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Toggle Date and Time Screens";
}

.bootstrap-datetimepicker-widget .picker-switch td {
	padding: 0;
	margin: 0;
	height: auto;
	width: auto;
	line-height: inherit;
}

.bootstrap-datetimepicker-widget .picker-switch td span {
	line-height: 2.5;
	height: 2.5em;
	width: 100%;
}

.bootstrap-datetimepicker-widget table {
	width: 100%;
	margin: 0;
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
	text-align: center;
	border-radius: 4px;
}

.bootstrap-datetimepicker-widget table th {
	height: 20px;
	line-height: 20px;
	width: 20px;
}

.bootstrap-datetimepicker-widget table th.picker-switch {
	width: 145px;
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
	background: none;
	color: #777777;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table th.prev::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Previous Month";
}

.bootstrap-datetimepicker-widget table th.next::after {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	content: "Next Month";
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
	cursor: pointer;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
	background: #eeeeee;
}

.bootstrap-datetimepicker-widget table td {
	height: 54px;
	line-height: 54px;
	width: 54px;
}

.bootstrap-datetimepicker-widget table td.cw {
	font-size: .8em;
	height: 20px;
	line-height: 20px;
	color: #777777;
}

.bootstrap-datetimepicker-widget table td.day {
	height: 20px;
	line-height: 20px;
	width: 20px;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
	background: #eeeeee;
	cursor: pointer;
}

.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
	color: #777777;
}

.bootstrap-datetimepicker-widget table td.today {
	position: relative;
}

.bootstrap-datetimepicker-widget table td.today:before {
	content: '';
	display: inline-block;
	border: solid transparent;
	border-width: 0 0 7px 7px;
	border-bottom-color: #fede00;
	border-top-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	bottom: 4px;
	right: 4px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
	background-color: #fede00;
	color: #000;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td.active.today:before {
	border-bottom-color: #fff;
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
	background: none;
	color: #777777;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td span {
	display: inline-block;
	width: 54px;
	height: 54px;
	line-height: 54px;
	margin: 0;
	cursor: pointer;
	border-radius: 0;
}

.bootstrap-datetimepicker-widget table td span:hover {
	background: #ddd;
}

.bootstrap-datetimepicker-widget table td span.active {
	background-color: #fede00;
	color: #000;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td span.old {
	color: #777777;
}

.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
	background: none;
	color: #777777;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
	height: 27px;
	line-height: 27px;
}

.bootstrap-datetimepicker-widget.wider {
	width: 21em;
}

.bootstrap-datetimepicker-widget .datepicker-decades .decade {
	line-height: 1.8em !important;
}

.input-group.date .input-group-addon {
	cursor: pointer;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}@font-face {
  font-family: 'auto';
  src:  url(//www.adamex.co.uk/wp-content/themes/car-repair-services/iconfont/fonts/auto.eot?4wh8dp);
  src:  url(//www.adamex.co.uk/wp-content/themes/car-repair-services/iconfont/fonts/auto.eot?4wh8dp#iefix) format('embedded-opentype'),
    url(//www.adamex.co.uk/wp-content/themes/car-repair-services/iconfont/fonts/auto.ttf?4wh8dp) format('truetype'),
    url(//www.adamex.co.uk/wp-content/themes/car-repair-services/iconfont/fonts/auto.woff?4wh8dp) format('woff'),
    url(//www.adamex.co.uk/wp-content/themes/car-repair-services/iconfont/fonts/auto.svg?4wh8dp#auto) format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'auto' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-star:before {
  content: "\e900";
}
.icon-calendar:before {
  content: "\e901";
}
.icon-calendar-page:before {
  content: "\e902";
}
.icon-oil:before {
  content: "\e903";
}
.icon-balance:before {
  content: "\e904";
}
.icon-power:before {
  content: "\e905";
}
.icon-car-wheel:before {
  content: "\e906";
}
.icon-disc-brake:before {
  content: "\e907";
}
.icon-check:before {
  content: "\e908";
}
.icon-close-cross:before {
  content: "\e909";
}
.icon-clock:before {
  content: "\e90a";
}
.icon-locate:before {
  content: "\e90b";
}
.icon-favorite:before {
  content: "\e90c";
}
.icon-interface:before {
  content: "\e90d";
}
.icon-lines-menu:before {
  content: "\e90e";
}
.icon-search:before {
  content: "\e90f";
}
.icon-rocket:before {
  content: "\e910";
}
.icon-people-1:before {
  content: "\e911";
}
.icon-people:before {
  content: "\e912";
}
.icon-transport:before {
  content: "\e913";
}
.icon-people-2:before {
  content: "\e914";
}
.icon-people-3:before {
  content: "\e915";
}
.icon-settings:before {
  content: "\e916";
}
.icon-shape:before {
  content: "\e917";
}
.icon-squares:before {
  content: "\e918";
}
.icon-technology:before {
  content: "\e919";
}
.icon-tool:before {
  content: "\e91a";
}
.icon-diploma:before {
  content: "\e91b";
}
.icon-transport-1:before {
  content: "\e91c";
}
.icon-mark:before {
  content: "\e91d";
}
.icon-web-settings:before {
  content: "\e91e";
}
.icon-arrow-left:before {
  content: "\e91f";
}
.icon-arrow-right:before {
  content: "\e920";
}
.icon-arrows-2:before {
  content: "\e921";
}
.icon-behance-logo:before {
  content: "\e922";
}
.icon-facebook-logo:before {
  content: "\e923";
}
.icon-google-plus-logo:before {
  content: "\e924";
}
.icon-instagram-logo:before {
  content: "\e925";
}
.icon-linkedin-logo:before {
  content: "\e926";
}
.icon-tumblr-logo:before {
  content: "\e927";
}
.icon-twitter-logo:before {
  content: "\e928";
}
.icon-arrowhead-pointing-to-the-right:before {
  content: "\e929";
}
.icon-arrow_up:before {
  content: "\e92a";
}
.icon-arrow_down:before {
  content: "\e92b";
}
.icon-exhaust-pipe:before {
  content: "\e92c";
}
.icon-engine:before {
  content: "\e92d";
}
.icon-gearshift:before {
  content: "\e92e";
}
.icon-shop-cart:before {
  content: "\e92f";
}
.icon-close:before {
  content: "\e930";
}
.icon-phone:before {
  content: "\e931";
}
.icon-email:before {
  content: "\e932";
}
.icon-ok:before {
  content: "\e933";
}
.icon-info:before {
  content: "\e934";
}
.icon-raketa:before {
  content: "\e935";
}
.icon-wrech1:before {
  content: "\e936";
}
.icon-gear:before {
  content: "\e937";
}
.icon-122264:before {
  content: "\e938";
}
.icon-diag:before {
  content: "\e939";
}
.icon-tow-truck:before {
  content: "\e93a";
}
.icon-tuneup:before {
  content: "\e93b";
}
.icon-wrench:before {
  content: "\e93c";
}
.icon-92962:before {
  content: "\e93d";
}
.icon-arrowhead-pointing-to-the-right1:before {
  content: "\e93e";
}
.icon-call:before {
  content: "\e93f";
}
.icon-triangle:before {
  content: "\e940";
}
.icon-calcilate:before {
  content: "\e941";
}
.icon-check1:before {
  content: "\e942";
}
.icon-pointer:before {
  content: "\e943";
}
.icon-youtube:before {
  content: "\e945";
}
/* Magnific Popup CSS */

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1000045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {}

.mfp-zoom {
	cursor: pointer;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1000044;
}

.mfp-preloader a {
	color: #CCC;
}

.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1000046;
	-webkit-box-shadow: none;
	box-shadow: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
	border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}


/* Main image in popup */

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}


/* The shadow behind the image */

.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
	/**
       * Remove all paddings around the image on small screen
       */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.mfp-ie7 .mfp-img {
	padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
	padding: 0;
}

.mfp-ie7 .mfp-content {
	padding-top: 44px;
}

.mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0;
}/**
 * jquery-bootstrap-scrolling-tabs
 * @version v2.4.0
 * @link https://github.com/mikejacobson/jquery-bootstrap-scrolling-tabs
 * @author Mike Jacobson <michaeljjacobson1@gmail.com>
 * @license MIT License, http://www.opensource.org/licenses/MIT
 */

.scrtabs-tab-container * {
	box-sizing: border-box;
}
.scrtabs-tab-container {
	height: 92px;
	position:  relative;
}
.scrtabs-tab-container .tab-content {
	clear: left;
}
.scrtabs-tab-container.scrtabs-bootstrap4 .scrtabs-tabs-movable-container > .navbar-nav {
	-ms-flex-direction: row;
	flex-direction: row;
}
.scrtabs-tabs-fixed-container {
	float: left;
	height: 100%;
	overflow: hidden;
	width: 100% !important;
}
.scrtabs-tabs-movable-container {
	position: relative;
}
.scrtabs-tabs-movable-container .tab-content {
	display: none;
}
.scrtabs-tab-container.scrtabs-rtl .scrtabs-tabs-movable-container > ul.nav-tabs {
	padding-right: 0;
}
.scrtabs-tab-scroll-arrow span:before {
	font-family: 'auto';
	content: '\e920';
}
.scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-left span:before {
	content: '\e91f';
}
.scrtabs-tab-scroll-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	color: #707070;
	display: flex !important;
	font-size: 17px;
	height: 100%;
	width: 35px;
	align-items:  center;
}
.scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-left {
	left: 0;
	background: rgba(255, 255, 255, 1);
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-right {
	right: 0;
	background: rgba(255, 255, 255, 0);
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.scrtabs-tab-scroll-arrow,
.scrtabs-tab-scroll-arrow .scrtabs-click-target {
	cursor: pointer;
}
.scrtabs-tab-scroll-arrow.scrtabs-with-click-target {
	cursor: default;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable,
.scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
	color: #ddd;
	cursor: default;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable:hover {
	background-color: initial;
}
.scrtabs-tabs-fixed-container ul.nav-tabs > li {
	white-space: nowrap;
}
.scrtabs-disable {
	display: none !important;
}body:not(.home) {
    background-repeat: no-repeat;
}
.product-block-gallery .flex-viewport {
    float: right;
    width: 75%;
}
.woocommerce-product-gallery__image {
    text-align: center;
}
.woocommerce-product-gallery__trigger {
    position: absolute;
    right: 17px;
    top: 5px;
    z-index: 999;
}
.product.custom-sale-style .row .onsale {
    left: 12% !important;
}
.flex-control-nav.flex-control-thumbs img {
    cursor: pointer;
}
.flex-control-nav.flex-control-thumbs {
    float: left;
    height: 427px;
    overflow: auto;
    width: 20%;
    padding: 0;
}
.woocommerce-variation-price {
    margin-bottom: 20px;
}
.woocommerce div.product form.cart .variations select {
    padding: 10px;
}
.woocommerce div.product form.cart .variations label {
    margin-top: 20px;
}
.woocommerce button.button.single_add_to_cart_button {
    font-size: 18px;
    line-height: 30px;
    padding: 20px 35px;
    overflow: hidden;
}

#container .woocommerce-breadcrumb {
    background-color: transparent;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 18px 0;
    width: 100%;
}
#container .woocommerce-breadcrumb a {
    color: #fff;
    margin: 0 10px;
}
#container .woocommerce-breadcrumb a:first-child {
    margin-left: 0;
}

.woocommerce-products-header {
    text-align: center;
    color: #292929;
    font-family: "Muli",sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 44px;
    margin: 0 0 54px;
}
.woocommerce-products-header h1{
	font-size:44px;
	color:#fff;
}
@media (max-width: 767px) {
    .woocommerce-products-header h1{
        font-size: 30px;
        line-height: normal;
    } 
    .woocommerce-products-header {
        margin: 0 0 20px;
    }   
}
body.custom-background.single-product  {
    background-color: #fff;
}
body.custom-background.archive.post-type-archive  {
    background-color: #fff;
}
.flex-control-nav.flex-control-thumbs > li:first-child {
    margin-top: 0;
}
.summary.entry-summary.col-md-6 {
    margin-top: 0;
}
.product_title.entry-title {
    font-size: 30px;
    line-height: 36px;
}

body.single-product #pageContent {
    padding-top: 100px;
}
.woocommerce-review-link {
    text-decoration: underline;
}
.woocommerce-review-link:hover {
    color:#000;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #000000;
    font-size: 26px;
}
.woocommerce div.product .stock {
    color: #000;
}


input.input-text.qty {
    -moz-appearance: textfield;
    border-color: #eeeeee;
    border-width: 0 1px;
    min-height: 46px;
}
.ui-spinner-button {
    background-color: #f7f7f7;
    display: block;
    height: 70px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}
.ui-spinner-button.ui-spinner-up::before, .ui-spinner-button.ui-spinner-down::before {
    color: #808080;
    content: "+";
    cursor: pointer;
    display: block;
    line-height: 70px;
    text-align: center;
    transition: color 0.3s ease 0s;
    width: 30px;
	font-size: 21px;
}
.ui-spinner {
    display: block;
    padding: 0 30px;
    position: relative;
	height: 72px;
}
.ui-spinner-button.ui-spinner-down::before {
    content: "-";
	 font-size: 33px;
}
.ui-spinner-button.ui-spinner-down {
    left: 0;
    right: auto;
}

.input-text.qty.text.ui-spinner-input {
    border: 1px solid #eee;
    border-radius: 5px;
    height: 70px;
    margin: 1px 0;
    width: 57px;
}
.quantity {
    background: #f5f5f5 none repeat scroll 0 0;
	margin-right: 25px !important;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    padding: 10px 20px;
}
.add_to_cart_button span {
    font-size: 13px;
}
.woocommerce-pagination .page-numbers li span,
.woocommerce-pagination .page-numbers li a{
    font-size: 12px;
    width: 56px;
    height: 56px;
    line-height: 46px;
}
.layout-1 .icon-shop-cart {
    padding-right: 14px;
    font-size: 17px;
    vertical-align: text-bottom;
    color: #fff;
    line-height: 22px;
}
.layout-1 .header-cart .icon-shop-cart{
  margin-right: 0;
}
.woocommerce-product-details__short-description {
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    padding: 25px 0 5px;
    margin-bottom: 30px;
}
.up_cart{
    margin-top: 30px;
}
.woocommerce span.onsale{
  padding: 0px;
}
.wc-tabs > li > a::after {
    background: #fede00 none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease 0s;
    width: 100%;
}
.wc-tabs > li.active > a::after, .nav-tabs > li:hover > a::after {
    transform: scale(1);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border: 0 solid #d3ced2;
    bottom: -1px;
    content: " ";
    height: 5px;
    position: absolute;
    width: 5px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color:transparent;
    border: 0px solid #d3ced2;
    border-radius: 4px 4px 0 0;
    display: inline-block;
    margin: 0 -5px;
    padding: 0 1em;
    position: relative;
    z-index: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	bottom: 0;
    height: 0px;
    width: 0px;
}
.tabs.wc-tabs
{
	padding:0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 20px;
    padding: 0;
}
.tabs.wc-tabs li.active a {
    color: #fede00 !important;
}
.tabs.wc-tabs li a {

    font-size: 18px;
    text-transform: uppercase;
}
.woocommerce-Tabs-panel.panel.entry-content.wc-tab {
    box-shadow: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border: 0 solid #e4e1e3;
    border-radius: 4px;
    margin: 0;
    padding: 1em 0 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border: 0 solid #e4e1e3;
}
.woocommerce .star-rating {
    float: left;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    color: #000;
    float: left;
    font-size: 1.3em;
    line-height: 13px;
	margin-left:1em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
    float: left;
    width: 100%;
}
.woocommerce p.stars a {
    color: #fede00 !important;
}
.star-5.active {
    color: #81d742 !important;
}
#commentform #comment:hover, #commentform #comment:focus, #commentform #comment.focus {
    border-color: #fede00;
    box-shadow: none;
    outline: medium none;
}
.textarea-custom {
    -moz-appearance: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dbdbdb;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #2b2b2b;
    font-size: 18px;
    height: auto;
    line-height: 24px;
    margin-bottom: 4px;
    min-height: 193px;
    padding: 15px;
}
.textarea-custom:hover, 
.textarea-custom:focus, 
.input-custom:hover,  
.input-custom.focus,
.wpcf7-form-control.wpcf7-textarea:hover,
.wpcf7-form-control.wpcf7-textarea:focus{
    border-color: #fede00 !important;
    box-shadow: none !important;
    outline: medium none !important;
}
.input-custom {
    -moz-appearance: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dbdbdb !important;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) !important;
    color: #2b2b2b;
    font-size: 18px;
    height: 54px !important;
    line-height: 24px;
    margin-bottom: 4px;
    padding: 15px !important;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    color: #515151;
}
#commentform #submit {
    max-width: unset;
}
.woocommerce-tabs.wc-tabs-wrapper {
    margin-bottom: 48px;
    margin-top: 48px;
}
.related.products {
    margin-bottom: 120px;
    margin-top: 100px;
}
header .header-right-bottom {
    margin-right: 70px;
}
.woocommerce .products .prd-info .star-rating ,.woocommerce .product .prd-info .star-rating{
    display: block;
    float: none;
    margin: 0 auto 20px;
}
.prd.product.type-product.status-publish {
    text-align: center;
}
.woocommerce-loop-product__title {
    margin-bottom: 15px !important;
}
.btn.btn-invert.product_type_simple.add_to_cart_button.ajax_add_to_cart,
.btn.btn-invert.add_to_cart_button {
    margin-top: 20px;
}
.related.products .prd-grid:not(.prd-carousel) .prd{
	
	margin:8px;
}

.related.products .prd-grid:not(.prd-carousel){
	margin:0;
}



.flex-direction-nav li::before {
    content: "\e91f";
}
.flex-direction-nav li:last-child:before {
  content: "\e920";
}
.flex-direction-nav li::before, .flex-direction-nav li::before {
    -moz-osx-font-smoothing: grayscale;
    color: #727272;
    cursor: pointer;
    font-family: "auto";
    font-size: 23px;
    line-height: 30px;
}
.flex-direction-nav li:first-child {
    left: -50px;
}
.flex-direction-nav li{
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 30px;
    line-height: 0;
    margin-top: -15px;
    outline: medium none;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 30px;
    z-index: 200;
}
.flex-direction-nav li:last-child {
    right: -50px;
}
.archive .prd-grid {
	margin-bottom: 70px !important;
}
span.show-result {
    float: left;
    line-height: 35px;
	font-size: 16px;
}
.filters-row .form-inline select {
    font-size: 16px;
}
.filters-row .simple-pagination > span {
    float: left;
    line-height: 35px;
	font-size: 16px;
}
.filters-row .page-numbers {
    background: transparent none repeat scroll 0 0;
    color: #383838;
    float: left;
    padding: 0;
	border: 0 none;
}
.filters-row ul.page-numbers {
    float: left;
    margin: 0 !important;
    padding-left: 0;
	font-size: 16px;
}
.woocommerce-pagination .page-numbers span.page-numbers,.woocommerce-pagination .page-numbers a.page-numbers {
    padding: 20px !important;
}
.woocommerce-pagination .page-numbers > li {
    border: 0px solid #d3ced2 !important;
    margin: 10px 5px!important;
}
.woocommerce-pagination ul.page-numbers {
    border:0px !important;
}
.woocommerce-pagination .page-numbers {
    border: 1px solid #d3ced2 !important;
}
.woocommerce nav.woocommerce-pagination {
    clear: both;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: #fede00 none repeat scroll 0 0;
    color: #8a7e88;
	border:1px solid #fede00 !important;
}

body:not(.home).woocommerce #pageContent {
    padding-top: 100px;
}
.woocommerce-breadcrumb > span {
    margin-left: 10px;
}
.title-aside {
    font-size: 30px;
}

.prd-sm-img {
    float: left;
    min-width: 100px;
    width: 100px;
}
.attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image {
    margin: 0;
    width: 100px;
    height: auto;
}
@media (max-width: 991px) {
    .title-aside {
        font-size: 26px;
    }
    body:not(.home).woocommerce #pageContent {
        padding-top: 45px;
    }  
    .prd-sm-img {
        /* width: 40%; */
    }  
    .attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image {
        width: 100%;
    }
}

.prd-sm-info span {
    color: #292929 !important;
	font-weight: normal;
}
.col-md-4.col-lg-3.column-left.column-filters.sidebar-div {
    padding: 0;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #c7c7c7;
}

.coupon-custom.col-md-6 > label {
    text-align: left !important;
    width: 100%;
}
.apply-coupon.btn.btn-invert {
    float: left;
    margin-top: 20px;
}

.woocommerce-Tabs-panel {
    padding-left: 20px !important;
}
ol.commentlist {
    padding-left: 0;
}
header .header-cart:hover {
    padding-left: 10px;
    padding-right: 5px;
}

 header.page-header-1 .header-cart {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: -24px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    padding-left: 15px;
    left: 50px;
    width: 45px;
    height: 30px;
}
 header.page-header-2 .header-cart {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: 15px;
    margin-top: 3px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
@media (max-width: 991px) {

  header.page-header-1 .header-cart {
    display: none
  }
}

.woocommerce .search-container button.button{
    position: absolute;
    background-color: transparent;
    padding: 0;
    font-size: 20px;
}
.woocommerce .search-container button.button:hover{
    background-color: #fede00;
}
header .header-cart a.icon {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
}
header .header-cart .badge {
  width: 24px;
  height: 24px;
  line-height: 20px;
  font-size: 12px;
  position: absolute;
  right: -12px;
  top: -14px;
  background-color: #fede00;
  color: #000;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
header .header-cart:hover a.icon,
header .header-cart.opened a.icon {
  color: #fede00;
}
header .header-cart:hover .badge,
header .header-cart.opened .badge {
  background-color: #fff;
}
header .header-cart-dropdown {
  position: absolute;
  z-index: 1;
  right: -20px;
  top: -5000px;
  width: 350px;
  padding: 35px 32px 25px;
  background: #fff;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  text-align: left;
}
@media (max-width: 479px) {
  header .header-cart-dropdown {
    width: 270px;
    padding: 15px 15px;
  }
}
header .header-cart-dropdown .header-cart-total {
  font-size: 24px;
  line-height: 30px;
  border-top: 1px solid #e8e8e8;
  padding: 20px 0;
  overflow: hidden;
}
header .header-cart.opened .header-cart-dropdown {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  -moz-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  -ms-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.prd-sm-item {
    float: left;
    margin-bottom: 10px;
    position: relative;
    width: 100% !important;
}
.prd-sm-img {
margin-right: 10px;
}
.prd-sm {
	display:block;
    position: relative;
}
.woocommerce-message .btn.btn-invert.wc-forward ,
.woocommerce-error .btn.btn-invert.wc-forward{
    float: right;
}
.woocommerce a.added_to_cart{
	display:none;
}
.btn.btn-invert.add_to_cart_button,
.btn.btn-invert.product_type_simple {
    font-size: 12px !important;
    min-width: 120px !important;
    padding:13px 18px 15px;
}
.loader-cart-delete {
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}
.loader-cart-delete > img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.select2-container .select2-selection--single {
    height: 46px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 8px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 5px;
}
@media (max-width: 767px) {
.input-text.qty.text.ui-spinner-input {
    min-width: auto;
}
.quantity {
    margin-right:0px !important;
}
.ui-spinner {
    display: inline-block;
}
.woocommerce table.shop_table_responsive tr, 
.woocommerce-page table.shop_table_responsive tr {
    display: block;
    margin-bottom: 30px;
}
.woocommerce table.shop_table_responsive tr td.actions  {
    text-align: center !important;
}
.apply-coupon.btn.btn-invert {
    float: none;
    margin-top: 20px;
}
}
@media (min-width: 1199px){
.prd-grid:not(.prd-carousel) .prd:nth-child(3n+1) {
    clear: left;
}
.prd-grid:not(.prd-carousel) .prd {
    width: calc(33.333% - 30px);
    float: left;
}
.single-product .prd-grid:not(.prd-carousel) .prd {
    width: calc(25% - 30px);
    float: left;
}
.single-product .prd-grid:not(.prd-carousel) .prd:nth-child(3n+1) {
    clear: none;
}

.prd {
    margin: 45px 15px;
}
}
/* comments css */
@media (max-width: 767px) {
 .comment ul.children,.comment ul.children li{
  margin-left:0 !important;
  padding-left:0 !important;
 }
}
.column-filters {
  margin-bottom: 35px;
}
.column-filters-inside {
  border: 3px solid #f5f5f5;
}
.column-filters .side-block {
  border-color: #ebebeb;
  padding: 20px;
  margin-bottom: 0;
}
.column-filters .side-block h3 {
  margin-bottom: 25px;
}
.column-filters .category-list {
  margin-top: 20px;
}
.column-center {
  margin-bottom: 35px;
}
.woocommerce-page .column-center {
  margin-bottom: 70px;
}
/*range slider*/
.noUi-horizontal {
  height: 6px;
}
.noUi-horizontal .noUi-handle {
  width: 15px;
  height: 15px;
  left: -7.5px;
  top: -5px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fede00;
  border-radius: 50%;
  cursor: pointer;
}
.noUi-target {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background-color: #c7c7c7;
  margin-bottom: 24px;
}
.noUi-origin {
  border-radius: 0;
  box-shadow: none;
}
.noUi-connect {
  background: #fede00;
  border: 0;
  border-radius: 0;
  height: 6px;
  -webkit-transition: background 450ms;
  transition: background 450ms;
}
.noUi-handle:before,
.noUi-handle:after {
  display: none;
  border: 0;
  border-radius: 0;
  -webkit-transition: background 450ms;
  transition: background 450ms;
}
.range {
  margin-top: 35px;
}
.range p {
  color: #444444;
  font-size: 15px;
  line-height: 20px;
}
.prd-sm {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: flex;
}
.wc-forward {
    width: 100%;
    margin-top: 15px;
}
.prd-sm:not(:last-child) {
  margin-bottom: 20px;
}
.header-cart-dropdown .prd-sm {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}
.prd-sm-img {
  min-width: 88px;
}
.prd-sm-delete {
  position: absolute;
  top: 0;
  right: -4px;
  cursor: pointer;
  font-size: 18px;
}
.prd-sm-delete:hover {
  opacity: .5;
}

.prd-sm-info h3 {
  font-size: 15px;
  line-height: 22px;
  text-transform: none;
  color: #292929;
}
.prd-sm-info h3 a {
  text-decoration: none;
}
.prd-sm-info h3 a:hover {
    text-decoration: none;
}
.prd-sm-info .price {
    font-size: 16px;
    margin-top: 15px;
}
.header-cart-dropdown .prd-sm-info {
  padding-right: 30px;
}
.prd-grid.prd-carousel {
  margin: -45px 0 0;
}
.prd-grid:not(.prd-carousel) .prd {
  width: calc(33.333% - 30px);
  float: left;
}
.prd {
  margin: 45px 15px !important;
}
.prd-grid:not(.prd-carousel) {
    margin: -45px -15px 0 !important;
}
.prd-img img {
  width: 100%;
}
.prd-info {
  padding: 0 15px;
  text-align: center;
}
.prd-info h3 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
  text-transform: none;
  color: #292929;
}
.prd-info h3 a {
  text-decoration: none;
}
.prd-info h3 a:hover {
  text-decoration: underline;
}
.prd-info .price {
  font-size: 26px;
  margin-top: 15px;
}
.prd-info .btn {
  min-width: 0;
  margin-top: 20px;
  height: 45px;
  font-size: 12px;
  line-height: 13px;
  font-weight: 800;
  padding: 13px 18px 15px;
}
.prd-info .btn [class*='icon-'] {
  font-size: 18px;
  color: #fff;
  padding-right: 14px;
  vertical-align: text-bottom;
}
.prd .rating + .price {
  margin-top: 10px;
}
.rating i {
  font-size: 10px;
  padding: 0 1px;
  color: #fede00;
}
.rating-4 i:nth-child(5) {
  color: #c2c2c2;
}
.rating-3 i:nth-last-child(-n+2) {
  color: #c2c2c2;
}
.rating-2 i:nth-last-child(-n+3) {
  color: #c2c2c2;
}
.rating-1 i:nth-last-child(-n+4) {
  color: #c2c2c2;
}
.rating-0 i {
  color: #c2c2c2;
}
.rating-text {
  display: inline-block;
  vertical-align: baseline;
  padding-left: 15px;
  font-size: 14px;
}
h5 > .rating {
  margin-right: 15px;
}
@media (min-width: 1199px) {
  .prd-grid:not(.prd-carousel) .prd:nth-child(3n) {
    margin-right: 0;
  }
  .prd-grid:not(.prd-carousel) .prd:nth-child(3n+1) {
    clear: left;
  }
}
@media (max-width: 1199px) and (min-width: 480px) {
  .prd-grid:not(.prd-carousel) .prd {
    width: calc(50% - 30px);
  }
  .prd-grid:not(.prd-carousel) .prd:nth-child(2n) {
    margin-right: 0;
  }
  .prd-grid:not(.prd-carousel) .prd:nth-child(2n+1) {
    clear: left;
  }
}
@media (max-width: 479px) {
  .prd-grid {
    margin-right: 0;
    margin-left: 0;
  }
  .prd-grid:not(.prd-carousel) .prd {
    width: 100%;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.product-card img {
  width: 100%;
}
.prd-carousel .slick-next {
  right: -50px;
}
.prd-carousel .slick-prev {
  left: -50px;
}
.filters-row {
  display: inline-block;
  width: 100%;
  padding: 25px 0;
  border-top: 1px solid #e8e8e8;
}
.filters-row-left {
  float: left;
}
.filters-row-right {
  float: right;
  text-align: right;
}
.filters-row .form-inline {
  display: inline-block;
}
.filters-row .form-inline:not(:first-child) {
  margin-left: 3vw;
}
.filters-row .form-inline select {
  background-color: #f0f0f0;
  height: 35px;
  border-radius: 5px;
  border: 0;
  padding-left: 15px;
  outline: none !important;
  color: #7c7c7c;
}
.filters-row .form-inline .select-wrapper:before {
  right: 1px;
  top: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #f0f0f0;
  border-radius: 5px;
}
.simple-pagination {
  display: inline-block;
  color: #444;
}
.simple-pagination span,
.simple-pagination li {
  display: inline-block;
  vertical-align: top;
  color: #444;
  padding: 2px 5px;
  text-decoration: none;
}
.simple-pagination li.active {
  color: #fede00;
}
.product-block .rating i {
  font-size: 12px;
}
.product-block-info > *:not(:first-child):not(span) {
  margin-top: 21px;
}
.product-previews {
  float: left;
  width: 106px;
}
@media (max-width: 480px) {
  .product-previews {
    width: 80px;
  }
}
.product-previews img {
  width: 100%;
}
.product-previews-item {
  display: block;
  margin-bottom: 11px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.product-previews-item:hover {
  opacity: .7;
}
.product-block-gallery {
  margin-bottom: 30px;
  overflow: hidden;
}
.product-block-mainimage {
  float: right;
  width: calc(100% - 127px);
}
@media (max-width: 480px) {
  .product-block-mainimage {
    width: calc(100% - 100px);
  }
}
.product-block-mainimage img {
  width: 100%;
}
.product-block-title {
  font-size: 30px;
  line-height: 36px;
}
.product-block-price {
  font-size: 26px;
  line-height: 36px;
}
.product-block-price-comment {
  font-size: 14px;
  margin-top: 0 !important;
}
.btn.product-block-add-to-cart:not([data-action]) span {
  line-height: 30px;
}
@media (max-width: 480px) {
  .btn.product-block-add-to-cart:not([data-action]) {
    width: 100%;
    margin-top: 30px;
  }
}
.product-block-description {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  padding: 12px 0px 25px;
}
.product-block-actions {
  margin-top: 40px !important;
}
.qty-count {
  height: 70px;
  background-color: #f5f5f5;
  display: inline-block;
  border-radius: 5px;
  margin-right: 25px;
}
.error-404.not-found{
  margin-top: 30px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]
{
  -moz-appearance: textfield;
}
.woocommerce #review_form #respond p {
    margin: 0 0 30px;
}
@media (max-width: 767px) {
.prd-grid:not(.prd-carousel) {
    margin: -45px -15px !important;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    line-height: 28px;
    margin-left: 0px;
}
}
.woocommerce-message .wc-forward {
    width: auto;
    margin-top: 15px;
}
.woocommerce .product .ajax_add_to_cart.added{
    font-size: 12px !important;
    min-width: 155px !important;
    padding: 13px 25px 15px;
}
.ajax_add_to_cart.added span i{
    position: relative;
}
.ajax_add_to_cart.added span i.icon-shop-cart {
    padding-right: 14px;
}
.ajax_add_to_cart.added span i::before{
    position: absolute;
    content: "\e91d";
    font-family: 'auto';
    left: -10px;
    font-size: 16px;
    top: 0;
}
.woocommerce .woocommerce-ordering {
    margin: 0;
}
/* New Categories Css */
.product-categories-listing {
    display: block;
    overflow: hidden;
    margin: 0px 0px 30px;
    width: 102%;
    margin-left: -2%;
}
.product-categories-listing:empty {
    display: none;
}
.product-categories-listing .product-category {
    width: 31.33%;
    float: left;
    list-style: none;
    margin: 0;
    margin-left: 2%;
}
.woocommerce-loop-category__title {
    font-size: 22px;
    padding-top: 10px;
}
/* woocommerce 3.3.0*/
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    width: 300px;
}
.woocommerce ul.cart_list li .star-rating, .woocommerce ul.product_list_widget li .star-rating {
    margin-top: 10px;
}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img{
       width: 150px;
}