/* -- Start Preloader CSS -- */
.preloader { position:fixed; top:0; left:0; right:0; bottom:0; background:#fff; z-index:9999; }
.preloader-wrapper {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  position:absolute;
  left:50%; top:50%;
  margin:-25px 0 0 -25px;
}

.preloader-wrapper.small {
  width: 36px;
  height: 36px;
  margin:-18px 0 0 -18px;
}

.preloader-wrapper.big {
  width: 64px;
  height: 64px;
  margin:-32px 0 0 -32px;
}

.preloader-wrapper.active {
  -webkit-animation: container-rotate 1568ms linear infinite;
  animation: container-rotate 1568ms linear infinite;
}

@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-color: #d39e00;
}
.active .spinner-layer,.active .spinner-layer.spinner-blue-only,.active .spinner-layer.spinner-red-only,.active .spinner-layer.spinner-yellow-only,.active .spinner-layer.spinner-green-only {
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
  }

  25% {
    -webkit-transform: rotate(270deg);
  }

  37.5% {
    -webkit-transform: rotate(405deg);
  }

  50% {
    -webkit-transform: rotate(540deg);
  }

  62.5% {
    -webkit-transform: rotate(675deg);
  }

  75% {
    -webkit-transform: rotate(810deg);
  }

  87.5% {
    -webkit-transform: rotate(945deg);
  }

  to {
    -webkit-transform: rotate(1080deg);
  }
}

@keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }

  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }

  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }

  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }

  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }

  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

.gap-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}

.gap-patch .circle {
  width: 1000%;
  left: -450%;
}

.circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}

.circle-clipper .circle {
  width: 200%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-color: inherit;
  border-bottom-color: transparent !important;
  border-radius: 50%;
  -webkit-animation: none;
  animation: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.circle-clipper.left .circle {
  left: 0;
  border-right-color: transparent !important;
  -webkit-transform: rotate(129deg);
  transform: rotate(129deg);
}

.circle-clipper.right .circle {
  left: -100%;
  border-left-color: transparent !important;
  -webkit-transform: rotate(-129deg);
  transform: rotate(-129deg);
}

.active .circle-clipper.left .circle {
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.active .circle-clipper.right .circle {
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
  }
}

@keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
  }
}

@keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}
/* -- End Preloader CSS -- */

body {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	color: #555555;
	padding-left: 300px;
}

a {
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
	cursor: pointer;
	text-decoration: none;
	word-break: break-word;
}

a:hover,
a:focus,
a:active {
	text-decoration: none;
}

a:focus {
	outline: none;
	text-decoration: none;
}

::-moz-selection {
	color: #fff;
	background: #d39e00;
}

.m-auto {
	margin: 0 auto;
}

.d-block {
	display: block;
}

.mt-10 {
	margin-top: 10px;
}

::selection {
	color: #fff;
	background: #d39e00;
}

.clearfix--5 {
	display: block;
	clear: both;
	height: 5px;
}

.clearfix--10 {
	display: block;
	clear: both;
	height: 10px;
}

.clearfix--20 {
	display: block;
	clear: both;
	height: 20px;
}

.clearfix--30 {
	display: block;
	clear: both;
	height: 30px;
}

.clearfix--40 {
	display: block;
	clear: both;
	height: 40px;
}

.clearfix--50 {
	display: block;
	clear: both;
	height: 50px;
}

.leftBar {
	background: #1f1a16;
	bottom: 0;
	display: block;
	color: #fff;
	left: 0;
	position: fixed;
	top: 0;
	width: 300px;
}

.leftBar__header {
	background: #1f1a16;
	display: block;
	padding: 30px;
}

.header__logo {
	display: inline-block;
}

.header__logo img {
	display: block;
	max-width: 100%;
}

.header__logo-text {
	color: #fff;
	display: inline-block;
	font-size: 30px;
	font-weight: 900;
}

.header__logo-text img {
	display: inline-block;
	margin-right: 5px;
}

.header__logo-text:hover,
.header__logo-text:focus,
.header__logo-text:active {
	color: #fff;
	outline: 0;
}

.navbar-collapse {
	padding: 0px;
}

.nav__menu {
	border-top: 1px solid #36312e;
	display: block;
	margin: 0px;
	padding: 30px;
	list-style: none;
}

.nav__menu li {
	display: block;
}

.nav__menu li a {
	border-bottom: 1px solid #36312e;
	color: #8f8d8b;
	display: block;
	font-size: 16px;
	font-weight: 400;
	padding: 10px 0px;
	position: relative;
}

.nav__menu li.is-active a {
	border-bottom: 1px solid #d39e00;
	color: #d39e00;
}

.nav__menu li a .caret {
	position: absolute;
	right: 15px;
	top: 20px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.nav__menu li a:focus,
.nav__menu li a:hover,
.nav__menu li a:active {
	background: none;
	color: #d39e00;
}

.nav__menu li.open a .caret {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	transition: transform 550ms ease;
	-moz-transition: -moz-transform 550ms ease;
	-ms-transition: -ms-transform 550ms ease;
	-o-transition: -o-transform 550ms ease;
	-webkit-transition: -webkit-transform 550ms ease;
}

.dropdown-menu {
	padding: 0px 0px 10px 0px;
	margin: 0px;
	background: none;
	border: none;
	border-radius: 0px;
	min-width: inherit;
	width: 100%;
	position: relative;
	webkit-box-shadow: none;
	box-shadow: none;
	z-index: 99;
}

.dropdown-menu li a {
	font-size: 13px;
	padding: 5px 0px 5px 10px;
	white-space: normal;
}

.dropdown-menu li a:focus,
.dropdown-menu li a:hover,
.dropdown-menu li a:active {
	background: none;
	color: rgba(256, 256, 256, 0.75);
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
	background: none;
	border-bottom: 1px solid rgba(256, 256, 256, 0.25);
}

.leftBar__footer {
	display: block;
	padding: 0px 30px;
}

.search {
	display: block;
	position: relative;
}

.search__input {
	display: block;
	width: 100%;
	padding: 10px 30px 10px 0px;
	font-size: 13px;
	line-height: 1.42857143;
	color: #fff;
	background: none;
	border: none;
	border-bottom: 2px solid rgba(256, 256, 256, 0.5);
	-webkit-transition: border-color ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s;
	transition: border-color ease-in-out .15s;
}

.search__input:focus {
	border-bottom: 2px solid rgba(256, 256, 256, 1.0);
	outline: 0;
}

.search__input::-moz-placeholder {
	color: rgba(256, 256, 256, 0.5);
	opacity: 1;
}

.search__input:-ms-input-placeholder {
	color: rgba(256, 256, 256, 0.5);
}

.search__input::-webkit-input-placeholder {
	color: rgba(256, 256, 256, 0.5);
}

.leftBar__btn {
	border: 1px solid #d39e00;
	color: #d39e00;
	display: block;
	font-size: 15px;
	margin-top: 10px;
	padding: 8px 15px;
	text-align: center;
	position: relative;
}

.leftBar__btn:hover,
.leftBar__btn:focus,
.leftBar__btn:active {
	background: #d39e00;
	color: #fff;
}

.leftBar__icon {
	margin-right: 5px;
}

.a-link {
	display: inline-block;
	color: #555;
	text-decoration: underline;
}

.a-link:hover,
.a-link:focus,
.a-link:active {
	color: #d39e00;
	text-decoration: underline;
}

.theme-color {
	color: #d39e00;
}

.text-block {
	display: block;
}

.text-phone {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.main {
	display: block;
	position: relative;
	padding: 45px 30px;
}

.main__title {
	display: block;
	color: #d39e00;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px 0;
	padding: 0px 0px 30px 0px;
	text-align: center;
	position: relative;
}

.main__title:before {
	background: #d39e00;
	content: "";
	display: block;
	height: 1px;
	width: 200px;
	position: absolute;
	bottom: 10px;
	left: 50%;
	margin-left: -100px;
}

.main__title:after {
	background: #fff;
	border: 2px solid #d39e00;
	box-shadow: 0px 0px 0px 10px #fff;
	content: "";
	display: block;
	height: 10px;
	width: 10px;
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin-left: -5px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.main__btn {
	display: block;
	color: #d39e00;
	margin: 30px 0px 0px 0px;
	padding: 0px;
	position: relative;
	text-align: center;
}

.main__btn a {
	background: #ffffff;
	border: 1px solid #d39e00;
	color: #d39e00;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 60px;
	position: relative;
}

.main__btn a:hover,
.main__btn a:focus,
.main__btn a:active {
	background: #d39e00;
	color: #ffffff;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.row.product__list {
	margin: 0px -8px;
}

.row.product__list .col-xss-12 {
	padding: 0px 8px;
}

.product__block {
	display: block;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	list-style: none;
	text-align: center;
	border: 1px solid #ddd;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.product__block:hover {
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.product__image {
	display: block;
	padding: 10px;
	background: #fff;
}

.product__image img {
	height: 175px;
	max-width: 175px;
	margin: 0px auto;
}

.product__name {
	color: #000;
	display: block;
	font-weight: 700;
	min-height: 45px;
	padding: 0px 15px;
}

.product__name a {
	color: #555;
	text-decoration: none;
}

.product__name a:hover {
	color: #555;
}

.product__price {
	color: #d39e00;
	font-size: 13px;
}

.product__quantity {
	color: #999;
	font-size: 13px;
}

.product__inquiry {
	display: block;
	padding: 15px 15px 20px 15px;
}

.product__btn {
	border: 1px solid #d39e00;
	color: #d39e00;
	display: inline-block;
	padding: 8px 20px;
	margin: 0px auto;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}

.product__block:hover .product__btn,
.product__btn:hover,
.product__btn:focus,
.product__btn:active {
	background: #d39e00;
	color: #fff;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.footer {
	display: block;
	padding: 0px 30px;
}

.footer__copyright {
	border-top: 1px solid #ddd;
	display: block;
	padding: 30px 0px;
}

.footer__copyright-content {
	position: relative;
	padding-right: 50px;
}

.footer__copyright strong {
	color: #d39e00;
}

.footer__copyright-link,
.footer__copyright-link:hover,
.footer__copyright-link:focus,
.footer__copyright-link:active {
	color: #030305;
	font-weight: 700;
	text-decoration: underline;
}

.footer__copyright .footer__logo {
	color: #d39e00;
	display: block;
	position: absolute;
	text-align: right;
	top: -5px;
	right: 0px;
	width: 136px;
}

.scroll-top {
	border: 2px solid #ddd;
	color: #ddd;
	cursor: pointer;
	display: block;
	font-size: 16px;
	line-height: 36px;
	height: 38px;
	width: 38px;
	top: -4px;
	right: 0;
	text-align: center;
	position: absolute;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.scroll-top:hover,
.scroll-top:focus {
	background: #d39e00;
	border: 2px solid #d39e00;
	color: #fff;
}

.modal-backdrop.in {
	background-image: url(../img/bg-inquiry.png);
	background-color: #d39e00;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
	filter: alpha(opacity=100);
	opacity: 1.0;
}

.modal-content {
	border: none;
	border-radius: 0px;
	padding: 30px;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.modal-header {
	padding: 0px 0px 15px 0px;
	margin-bottom: 15px;
}

.modal-title {
	font-weight: bold;
	text-transform: uppercase;
}

.modal-title .glyphicon {
	color: #d39e00;
	margin-right: 5px;
}

button.close:focus {
	outline: 0;
}

.modal-dialog {
	margin: 60px auto;
	max-width: 400px;
}

.close {
	font-size: 26px;
}

.form__input {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.table th,
.table td {
	padding: 8px 10px 8px 0px !important;
}

.errMsg,
.form__input.errMsg,
.form__input.errMsg:focus {
	border: 1px solid red;
}

.errMsg__block {
	color: red;
	margin-top: 5px;
	font-size: 11px;
	text-align: right;
}

.sucMsg,
.form__input.sucMsg,
.form__input.sucMsg:focus {
	border: 1px solid #28a745;
}

.sucMsg__block {
	color: #28a745;
	margin-top: 5px;
	font-size: 11px;
	text-align: right;
}

.form__input:focus {
	border-color: #4cca24;
	outline: 0;
}

.form__input::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.form__input:-ms-input-placeholder {
	color: #999;
}

.form__input::-webkit-input-placeholder {
	color: #999;
}

.form__input::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form__input[disabled],
.form__input[readonly],
fieldset[disabled] .form__input {
	background-color: #eee;
	opacity: 1;
}

.form__input[disabled],
fieldset[disabled] .form__input {
	cursor: not-allowed;
}

.form__btn {
	background: #d39e00;
	border: none;
	color: #fff;
	display: block;
	margin-top: 10px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	width: 100%;
	position: relative;
}

.form__btn:before {
	background: #d39e00;
	border: none;
	color: #fff;
	display: block;
	padding: 6px 12px;
	margin: 0px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	-webkit-box-shadow: inset 200px 0px 0px 0px rgba(0, 0, 0, 0.0), 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 200px 0px 0px 0px rgba(0, 0, 0, 0.0), 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: inset 75px 200px 0px 0px rgba(0, 0, 0, 0.0), 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	width: 100%;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form__btn:hover,
.form__btn:focus,
.form__btn:active {
	background: #d39e00;
	outline: 0;
	-webkit-box-shadow: inset 200px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 200px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: inset 75px 200px 0px 0px rgba(0, 0, 0, 0.1), 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.sub__header {
	display: block;
	position: relative;
	padding: 116px 0px;
	background: url(../img/bg.jpg) repeat #000;
	text-align: center;
	overflow: hidden;
}

.sub__header h1,
.sub__header h2,
.sub__header h3,
.sub__header h4 {
	display: block;
	margin: 0px;
	font-weight: 900;
	padding: 0px;
	color: #fff;
	position: relative;
	z-index: 2;
}

.sub__header-image {
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	filter: Alpha(Opacity=50);
	opacity: 0.50;
}

.sub__header .bradcrumbs {
	color: #fff;
	display: block;
	font-size: 18px;
	padding: 0px;
	margin: 10px 0px 0px 0px;
	position: relative;
	z-index: 2;
}

.googleMap_block {
	display: block;
	padding: 0px;
}

#googleMap {
	display: block;
	min-height: 305px;
	width: 100%;
}

.ulList {
	display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.ulList li {
	display: block;
	padding: 5px 5px 5px 20px;
	position: relative;
}

.ulList li:before {
	color: #d39e00;
	content: "+";
	position: absolute;
	left: 0;
	top: 5px;
}

.ulList li a {
	display: inline-block;
	color: #555;
	text-decoration: underline;
}

.ulList li a:hover,
.ulList li a:focus,
.ulList li a:active {
	color: #d39e00;
	text-decoration: underline;
}

.widget-tab {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border: 1px solid #ddd;
	font-size: 16px;
}

.widget-tab li {
	display: block;
	position: relative;
}

.widget-tab li a {
	background: #d39e00;
	display: block;
	padding: 10px 15px 10px 20px;
	color: #fff;
	font-weight: 900;
}

.widget-tab li ul {
	display: block;
	margin: 0;
	padding: 10px 0px;
	list-style: none;
	border: none;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}

.widget-tab li ul li {
	display: block;
	position: relative;
}

.widget-tab li ul li a {
	background: #fff;
	display: block;
	padding: 5px 15px 5px 40px;
	border-bottom: none;
	color: #333 !important;
	font-weight: normal;
}

.widget-tab li ul li a:hover,
.widget-tab li ul li.active a {
	color: #d39e00 !important;
}

.widget-tab li ul li a:before {
	display: block;
	content: "+";
	color: #d39e00;
	position: absolute;
	left: 20px;
	top: 5px;
	background: none;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.widget-tab li ul.categories__icon-caret li a:before {
	font-family: 'FontAwesome';
	content: "\f0da";
	top: 5px;
}

.widget-tab li ul li label {
	display: block;
	padding: 5px 15px 5px 50px;
	border-bottom: none;
	color: #333 !important;
	font-weight: normal;
}

.widget-tab li ul li label input {
	display: block;
	color: #d39e00;
	position: absolute;
	left: 23px;
	top: 5px;
	border: 1px solid #000;
}

.widget-tab li.filter-buttons {
	display: block;
	padding: 15px;
	text-align: center;
}

.product-img {
	background: url(../img/preloader-yellow.gif) center center no-repeat;
	display: block;
	border: 2px solid #ddd;
	min-height: 300px;
}

.product-img img {
	display: block;
	width: 100%;
}

.product-thumb {
	display: block;
	text-align: center;
	margin-top: -2px;
}

.product-thumb img {
	border: 2px solid #ddd;
	display: inline-block;
	width: 75px;
	margin: 0px auto;
	cursor: pointer;
}

.product-thumb img.active {
	border-top: 2px solid #fff;
}

.email__link {
	color: #555;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	padding: 0px;
	position: relative;
}

.email__icon {
	color: #d39e00;
	font-size: 13px;
	margin-right: 5px;
}

.email__link:hover,
.email__link:focus,
.email__link:active {
	color: #d39e00;
}

.supplier__btn {
	border: 1px solid #d39e00;
	color: #555;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 20px 10px 50px;
	position: relative;
}

.supplier__icon {
	background: #d39e00;
	color: #fff;
	display: block;
	width: 40px;
	font-size: 18px;
	line-height: 38px;
	text-align: center;
	position: absolute;
	left: 2px;
	top: 2px;
	bottom: 2px;
}

a.supplier__btn:hover,
a.supplier__btn:focus,
a.supplier__btn:active {
	background: #d39e00;
	color: #fff;
}

.pagination {
	display: block;
	margin: 15px auto 0px auto;
	text-align: center;
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: none;
	margin: 0px;
	color: #555;
	border: 1px solid #ddd;
	border-radius: 0px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-radius: 0px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	color: #555;
	background-color: #fff;
	border-color: #d39e00;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	color: #fff;
	background-color: #d39e00;
	border-color: #d39e00;
}

.list {
	display: block;
	margin: 0 -10px;
	padding: 0;
}

.list:after {
	content: '';
	clear: both;
	display: block;
}

.list__item {
	display: block;
	padding: 10px;
	float: left;
	width: 20%;
}

.list__info {
	background: #fff;
	border: 1px solid #1f1a16;
	display: block;
	padding: 30px 0;
	text-align: center;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.list__info:hover {
	border: 1px solid #d39e00;
}


/* -- Start Template CSS -- */

@media (min-width: 992px) and (max-width: 1199px) {
	.sub__header {
		padding: 80px 0px;
	}
	#googleMap {
		min-height: 235px;
	}
	.list__item {
		font-size: 14px;
		width: 25%;
	}
	.list__info {
		padding: 20px 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	body {
		padding-left: 250px;
	}
	.leftBar {
		left: 0px;
		width: 250px;
	}
	.header__logo-text {
		font-size: 22px;
	}
	.main__title {
		font-size: 24px;
	}
	.navigation__menu li a {
		padding: 15px 10px;
	}
	.dropdown-menu li a {
		padding: 10px;
	}
	.sub__header {
		padding: 60px 0px;
	}
	.sub__header h1,
	.sub__header h2,
	.sub__header h3,
	.sub__header h4 {
		font-size: 32px;
	}
	.sub__header .bradcrumbs {
		font-size: 16px;
	}
	#googleMap {
		min-height: 190px;
	}
	.list__item {
		font-size: 14px;
		width: 33.33%;
	}
	.list__info {
		padding: 20px 0;
	}
}

@media (max-width: 767px) {
	body {
		padding-left: 0px;
	}
	.leftBar {
		position: relative;
		left: inherit;
		width: 100%;
	}
	.leftBar__header {
		padding: 15px;
		text-align: center;
	}
	.header__logo {
		max-width: 150px;
	}
	.header__logo-text {
		font-size: 22px;
	}
	.nav__menu {
		height: auto !important;
	}
	.leftBar__footer {
		padding: 0px 30px 30px 30px;
	}
	.navigation {
		background: #d39e00;
		color: #fff;
		display: block;
	}
	.navigation__menu {
		border: none;
		border-top: 1px solid rgba(256, 256, 256, 0.25);
		margin: 0px 0px;
		padding: 0px;
		float: none;
	}
	.navigation__menu li {
		float: none;
	}
	.navigation__menu li a {
		border: none;
		border-bottom: 1px solid rgba(256, 256, 256, 0.25);
		font-size: 14px;
		padding: 10px 10px;
	}
	.navigation__menu li a:focus,
	.navigation__menu li a:hover,
	.navigation__menu li a:active {
		background: rgba(256, 256, 256, 0.25);
	}
	.navbar-toggle {
		font-size: 22px;
		line-height: 22px;
		margin: 0px;
		padding: 0px;
		width: auto;
		position: absolute;
		right: 15px;
		top: 22px;
	}
	.navbar-toggle .glyphicon-menu-hamburger {
		display: none;
	}
	.navbar-toggle.collapsed .glyphicon-menu-hamburger {
		display: inline-block;
	}
	.navbar-toggle .glyphicon-remove {
		display: inline-block;
	}
	.navbar-toggle.collapsed .glyphicon-remove {
		display: none;
	}
	.dropdown-menu {
		position: relative;
		top: auto;
		left: auto;
		float: none;
		min-width: inherit;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.main__title {
		font-size: 22px;
	}
	.main__btn {
		margin: 30px 0px 0px 0px;
	}
	.main__btn a {
		font-size: 16px;
		padding: 10px 30px;
	}
	.footer {
		padding: 0px;
	}
	.footer__copyright {
		padding: 15px;
		text-align: center;
	}
	.footer__copyright-content {
		padding-right: 0px;
	}
	.footer__copyright .footer__logo {
		display: block;
		position: relative;
		margin: 15px auto 0px auto;
		top: auto;
		right: auto;
	}
	.sub__header {
		padding: 60px 0px;
	}
	.sub__header h1,
	.sub__header h2,
	.sub__header h3,
	.sub__header h4 {
		font-size: 28px;
	}
	.sub__header .bradcrumbs {
		font-size: 16px;
	}
	.table th,
	.table td {
		width: auto;
	}
	.scroll-top {
		font-size: 14px;
		line-height: 30px;
		margin: 15px auto 0 auto;
		height: 30px;
		width: 30px;
		right: auto;
		text-align: center;
		bottom: auto;
		position: relative;
	}
	#googleMap {
		min-height: 150px;
	}
	.list__item {
		font-size: 14px;
		width: 25%;
	}
	.list__info {
		padding: 20px 0;
	}
}

@media (max-width: 599px) {
	.main__title {
		font-size: 20px;
	}
	.sub__header {
		padding: 30px 0px;
	}
	.sub__header h1,
	.sub__header h2,
	.sub__header h3,
	.sub__header h4 {
		font-size: 24px;
	}
	.sub__header .bradcrumbs {
		font-size: 14px;
	}
	.list__item {
		width: 33.33%;
	}
}

@media (max-width: 479px) {
	.col-xss-12 {
		width: 100%;
	}
	.hidden-xss {
		display: none !important;
	}
	.header__btn {
		font-size: 12px;
		margin: 10px 0px 0px 0px;
		padding: 10px 10px 10px 45px;
	}
	.header-icon {
		width: 35px;
		font-size: 16px;
		line-height: 35px;
	}
	.modal-dialog {
		margin: 15px;
		max-width: inherit;
	}
	.list__item {
		font-size: 13px;
		width: 50%;
	}
}


/* -- Start Banner Css -- */

#banner__slider {
	margin: 0px;
	position: relative;
	text-align: center;
}

#banner__slider .owl-item {
	display: block;
	overflow: hidden;
}

#banner__slider .owl-item img {
	display: block;
	margin: 0px auto;
	width: 100%;
	max-height: 100%;
}

.banner__slider-content {
	display: block;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	padding: 60px;
	position: absolute;
	margin-top: -112px;
	top: 50%;
	left: 30px;
	right: 30px;
}

.banner__slider-content .form-control {
	border-radius: 0;
	color: #fff;
	background: none;
	border: 1px solid #d39e00;
}

.banner__slider-content .form-control:focus {
	border-color: #d39e00;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(211, 158, 0, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(211, 158, 0, .6);
}

.banner__slider-content .form-control::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.banner__slider-content .form-control:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.banner__slider-content .form-control::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.banner__slider-content .btn {
	border-radius: 0 !important;
	color: #fff;
	background-color: #d39e00;
	border-color: #d39e00;
}

.banner__slider-title {
	color: #d39e00;
	font-weight: 700;
	margin: 0 0 20px 0;
}

.banner__slider-text {
	backgroung: #d39e00;
	color: #fff;
}

#banner__slider .owl-controls .owl-buttons .owl-prev,
#banner__slider .owl-controls .owl-buttons .owl-next {
	background: none;
	color: #fff;
	display: block;
	zoom: 1;
	*display: block;
	margin: 0px;
	padding: 0px;
	border: 2px solid #fff;
	border-radius: 0px;
	font-size: 18px;
	line-height: 36px;
	filter: Alpha(Opacity=50);
	/*IE7 fix*/
	opacity: 0.5;
	height: 38px;
	width: 38px;
	position: absolute;
	top: 50%;
	text-align: center;
	margin-top: -19px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

#banner__slider .owl-controls .owl-buttons .owl-prev {
	left: 15px;
}

#banner__slider .owl-controls .owl-buttons .owl-next {
	right: 15px;
}

#banner__slider .owl-controls .owl-buttons .owl-prev:hover,
#banner__slider .owl-controls .owl-buttons .owl-prev:focus,
#banner__slider .owl-controls .owl-buttons .owl-prev:active,
#banner__slider .owl-controls .owl-buttons .owl-next:hover,
#banner__slider .owl-controls .owl-buttons .owl-next:focus,
#banner__slider .owl-controls .owl-buttons .owl-next:active {
	background: #d39e00;
	border: 2px solid #d39e00;
	filter: Alpha(Opacity=100);
	/*IE7 fix*/
	opacity: 1.0;
	outline: 0;
}

#banner__slider .owl-pagination {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 25px;
	text-align: center;
}

#banner__slider .owl-pagination .owl-page {
	display: inline;
}

#banner__slider .owl-pagination .owl-page span {
	background: #fff;
	border: none;
	width: 30px;
	height: 4px;
	margin: 0px 2px;
	display: inline-block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	position: relative;
	text-align: center;
}

#banner__slider .owl-pagination .owl-page.active span {
	background: #d39e00;
}


/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;
	/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);
	/*IE7 fix*/
	opacity: 0.5;
}


/* Clickable class fix problem with hover on touch devices */


/* Use it for non-touch hover action */

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);
	/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}


/* preloading images */

.owl-item.loading {
	min-height: 150px;
	background: url(../img/preloader.gif) no-repeat center center;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.product-thumb img {
		width: 60px;
	}
	.banner__slider-content {
		margin-top: -110px;
	}
	.banner__slider-title {
		font-size: 32px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.product-thumb img {
		width: 75px;
	}
	.banner__slider-content {
		margin-top: -107px;
		padding: 60px 30px;
	}
	.banner__slider-title {
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.banner__slider-content {
		margin-top: -105px;
		left: 15px;
		right: 15px;
		padding: 60px 30px;
	}
	.banner__slider-title {
		font-size: 28px;
	}
	.banner__slider-content:before {
		display: none;
	}
	#banner__slider .owl-pagination {
		bottom: 10px;
	}
}

@media (max-width: 600px) {
	.banner__slider-content {
		margin-top: -105px;
	}
	.banner__slider-title {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.banner__slider-content {
		margin-top: -73px;
		padding: 30px 15px;
	}
	.banner__slider-title {
		font-size: 16px;
	}
	.product-thumb img {
		width: 50px;
	}
}


/* -- End Banner Css -- */