/* 
 * 	Core Owl Carousel CSS File
 *	v1.24
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../img/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.24
*/

.owl-theme .owl-item {
	padding: 15px;
}

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}
.owl-theme .owl-controls.top {
	margin: 0 0 10px;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls.outside .owl-buttons div {
	position: absolute;
	top: 50%;
	margin-top: -1em;
	z-index: 101;
}
.owl-theme .owl-controls.outside .owl-buttons .owl-prev {
	left: -2.5em;
}
.owl-theme .owl-controls.outside .owl-buttons .owl-next {
	right: -2.5em;
}
.owl-theme .owl-controls .owl-buttons div {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	width: 2em;
	height: 2em;
	margin: 0 5px;
	line-height: 1.875em !important;
	text-align: center;
	border: 2px solid #919191;
	border-radius: 50%;
	-webkit-transition: color 0.2s ease-out, border-color 0.2s ease-out;
	-moz-transition: color 0.2s ease-out, border-color 0.2s ease-out;
	-o-transition: color 0.2s ease-out, border-color 0.2s ease-out;
	-ms-transition: color 0.2s ease-out, border-color 0.2s ease-out;
	transition: color 0.2s ease-out, border-color 0.2s ease-out;
	behavior: url('PIE.htc');
}
.owl-theme .owl-controls .owl-buttons div:hover {
	border-color: #FA6F57;
	color: #FA6F57;
}
/* 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;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading, 
.owl-item.loading .product .entry-media {
	min-height: 150px;
	background: url(../img/AjaxLoader2.gif) no-repeat center center
}
.owl-item.loading .product .entry-media {
	background: #CCC url(../img/AjaxLoader2.gif) no-repeat center center
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

/* FlexSlider GFashion Theme
*********************************/
.flexslider {
	position: relative;
	zoom: 1;
}
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport { max-height: 300px; }
.flexslider .slides { zoom: 1; }
.flexslider .slides > li {
	position: relative;
	overflow: hidden;
}
#home-slider .flexslider {
	max-height: 465px;
}


.flex-caption {
	position: absolute;
	top: 0;
	left: 0;
}


.flex-direction-nav,
.flex-control-nav {
	padding: 0;
	margin: 0;
	list-style: none;
}

.flex-direction-nav a {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	width: 32px !important;
	height: 32px !important;
	border-radius: 50%;
	background: #fff !important;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
	text-align: center;
	color: #333;
	opacity: 0;
	z-index: 20 !important;
}
.flex-direction-nav a:hover {
	background: #333 !important;
	color: #fff;
}
.flex-direction-nav a > i {
	display: block;
	padding: 10px 0;
}
.flex-prev {
	left: 50px;
}
.flex-next {
	right: 50px;
}
.flexslider:hover .flex-direction-nav .flex-next {
	opacity: 1;
	right: 80px;
}
.flexslider:hover .flex-direction-nav .flex-prev {
	opacity: 1;
	left: 80px;
}

.flex-control-nav {
	position: absolute;
	right: 40px;
	bottom: 20px;
	padding: 6px 10px;
	background: #1f1f1f;
	background: rgba(0,0,0,0.3);
	border-radius: 12px;
	line-height: 1;
}
.flex-control-nav > li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
}
.flex-control-nav a {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	text-indent: -999em;
	cursor: pointer;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.flex-control-nav .flex-active {
	width: 12px;
	height: 12px;
	border: 3px solid #FA6F57;
	background: trasnparent;
}











.flex-caption.gfc {
	position: absolute;
	color: #fff;
	text-shadow: none;
	font-weight: 900;
	font-size: 36px;
	line-height: 1.75;
	margin: 0;
	border: 0;
	white-space: nowrap;
	text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.gfc a {
	color: #fff;
}
.gfc a:hover {
	color: #fff;
}
.gfc .btn {
	margin: 15px 0;
}
.gfc.h6 {
	font-size: 18px;
}
.gfc.h5 {
	font-size: 24px;
}
.gfc.h4 {
	font-size: 32px;
}
.gfc.h3 {
	font-size: 36px;
}
.gfc.h2 {
	font-size: 22px;
}
.gfc.h1 {
	font-size: 48px;
}
.gfc.herotext {
	font-size: 52px;
}
.gfc.super-giant {
	font-size: 160px;
	font-weight: 600;
	letter-spacing: 5px;
	line-height: 1;
	text-shadow: none;
}
.gfc.round {
	padding: 20px;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	width: 280px;
	height: 280px;
	font-size: 50px;
}
.gfc.round span {
	display: block;
	line-height: 1.25;
	color: #fa6f57;
	text-shadow: none;
}

@media only screen and (max-width: 767px) {
	.gfc { zoom: 0.5; }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.gfc { zoom: 0.65; }
}


.gfc.bg-dark {
	background: #333;
	background: rgba(0,0,0,0.3);
	color: #fff;
	padding: 15px;
	line-height: 1;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
	.header-top .actions > li:first-child {
		width: 100%;
		margin-bottom: 10px;
	}
	.bnds {
	background-image: none;
}
}
/* col-xs */
@media only screen and (max-width: 767px) {
	/*
	| ---------------------------------------------------------
	| General & Helper Class
	| ---------------------------------------------------------
	*/
	.bnds {
	background-image: none;
}
	.center-xs {
		display: table;
		width: auto;
		margin: 0 auto;
		float: none;
		position: static;
		text-align: center;
	}
	
	/*
	| ---------------------------------------------------------
	| Header
	| ---------------------------------------------------------
	*/
	.header-top {
		height: auto;
	}
	.header-top .contact-info,
	.header-top .actions {
		display: table;
		margin: 0 auto;
		padding: 15px 0;
		float: none;
		text-align: center;
	}
	
	.main-header {
		height: auto;
		margin: 0;
		padding: 30px 0;
	}
	.main-header .actions {
		display: table;
		margin: 0 auto 30px auto;
		float: none;
		position: static;
	}
	.main-header .logo-wrapper {
		position: static;
		float: none;
	}
	
	.dl-menuwrapper {
		margin: 0 0 3em;
	}
	.dl-menuwrapper .dl-menu.dl-menuopen,
	.dl-menuwrapper > .dl-submenu {
		top: 5em;
	}
	
	
	.products-wrapper {
		top: 0;
	}
	.products-layout.list .entry-media, 
	.products-layout.list .entry-main {
		display: block;
		width: auto;
	}
	.products-layout.list .entry-media {
		max-width: 280px;
		margin: 0 auto;
	}
	.products-layout.list .entry-main > * {
		margin-right: auto;
	}
	.products-layout.list .entry-price {
		position: static;
		margin: 20px auto;
		padding: 0;
		border: 0;
	}
	.products-layout.list .entry-links {
		display: table;
		margin: 10px auto;
		float: none;
	}
	
	.nav-tabs>li {
		float: none;
		margin-bottom: 3px;
	}
	
	.tbl-cart td {
		font-size: 12px;
	}
	.tbl-cart .qty-btn-group {
		min-width: 28px;
		width: 32px;
	}
	.tbl-cart .qty-btn-group button {
		height: 20px;
	}
	.tbl-cart tbody tr > td:nth-child(3):after {
		content: none;
	}
	.bnds {
	background-image: none;
}
}
/* col-sm */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}

/* col-md */
@media only screen and (min-width: 992px) and (max-width: 1170px) {
	.main-menu > li > a {
		padding: 25px 10px;
	}
}
/* col-xs , col-sm */
@media only screen and (max-width: 991px) {
	/*
	| ---------------------------------------------------------
	| Promo
	| ---------------------------------------------------------
	*/
	.promo.first-child {
		margin-top: 0;
	}
}

/* col-md and col-lg */
@media only screen and (min-width: 992px) {
	/*
	| ---------------------------------------------------------
	| Promo
	| ---------------------------------------------------------
	*/
	.promo.first-row {
		margin-top: 0;
	}
	
}
/* All but col-xs */
@media only screen and (min-width: 768px) {
	#frm-contact-us { margin-right: 80px; }
	
}