/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/

#home-slideshow .owl-controls{
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
}

/* Styling Next and Prev buttons */

#home-slideshow .owl-controls .owl-buttons div{
	position: absolute;
	top: -245px;
	width: 50px;
	height: 100px;
	background: #626a7d url(sprite.png) no-repeat;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
#home-slideshow:hover .owl-buttons div {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
#home-slideshow .owl-controls .owl-buttons div.owl-prev{
	left: 5px;
	background-position: -42px -549px;
}
#home-slideshow .owl-controls .owl-buttons div.owl-prev:hover{
	background-position: -42px -615px;
}
#home-slideshow .owl-controls .owl-buttons div.owl-next{
	right: 5px;
	background-position: -34px -65px;
}
#home-slideshow .owl-controls .owl-buttons div.owl-next:hover{
	background-position: -34px -130px;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
#home-slideshow .owl-controls.clickable .owl-buttons div:hover{
	text-decoration: none;
	background-color: #000;
}

/* Styling Pagination*/

#home-slideshow .owl-pagination {
	display: none !important;
}

#home-slideshow .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
#home-slideshow .owl-controls .owl-page span{
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #1a1519;
	-webkit-transition: background 200ms ease;
    -moz-transition: background 200ms ease;
    -o-transition: background 200ms ease;
    transition: background 200ms ease;
}

#home-slideshow .owl-controls .owl-page.active span,
#home-slideshow .owl-controls.clickable .owl-page:hover span{
	background: #d30708;
}

#brands-carousel .owl-next, #brands-carousel .owl-prev {
	position: absolute;
	top: 18px;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	width: 27px;
	height: 27px;
	background: url(sprite.png) no-repeat;
}

#brands-carousel .owl-prev {
	left: -50px;
	background-position: -9px -559px;
}

#brands-carousel .owl-next {
	right: -40px;
	background-position: -9px -590px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(ajax-loader.gif) no-repeat center center
}




/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.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 .75s ease both;
  -moz-animation: scaleUpFrom .75s ease both;
  animation: scaleUpFrom .75s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .75s ease both;
  -moz-animation: scaleUpTo .75s ease both;
  animation: scaleUpTo .75s 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); }
}



@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(http://fonts.googleapis.com/css?family=Oswald:300,400,700);
@font-face {
  font-family: 'IdealSans';
  src: url("../fonts/IdealSans/medium/IdealSans-Medium.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/IdealSans/medium/IdealSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/IdealSans/medium/IdealSans-Medium.woff") format("woff"), url("../fonts/IdealSans/medium/IdealSans-Medium.ttf") format("truetype"), url("../fonts/IdealSans/medium/IdealSans-Medium.svg#IdealSans-Medium") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'IdealSans';
  src: url("../fonts/IdealSans/semibold/IdealSans-Semibold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/IdealSans/semibold/IdealSans-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/IdealSans/semibold/IdealSans-Semibold.woff") format("woff"), url("../fonts/IdealSans/semibold/IdealSans-Semibold.ttf") format("truetype"), url("../fonts/IdealSans/semibold/IdealSans-Semibold.svg#IdealSans-Semibold") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 700;
}

/*********************** BASE & RESET *********************/
 {
  position: relative;
  color: #fff;
  /* IE6 */
  /* IE7 */
}
 div,  span,  applet,  object,  iframe,  h1,  h2,  h3,  h4,  h5,  h6,  p,  blockquote,  pre,  a,  abbr,  acronym,  address,  big,  cite,  code,  del,  dfn,  em,  img,  ins,  kbd,  q,  s,  samp,  small,  strike,  strong,  sub,  sup,  tt,  var,  b,  u,  i,  center,  dl,  dt,  dd,  ol,  ul,  li,  fieldset,  form,  label,  legend,  table,  caption,  tbody,  tfoot,  thead,  tr,  th,  td,  article,  aside,  canvas,  details,  embed,  figure,  figcaption,  footer,  header,  hgroup,  menu,  nav,  output,  ruby,  section,  summary,  time,  mark,  audio,  video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
 article,  aside,  details,  figcaption,  figure,  footer,  header,  hgroup,  menu,  nav,  section {
  display: block;
}
 ol,  ul {
  list-style: none;
}
 blockquote,  q {
  quotes: none;
}
 blockquote:before,  blockquote:after,  q:before,  q:after {
  content: none;
}
 table {
  border-collapse: collapse;
  border-spacing: 0;
}
 *,  :before,  :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
 a,  a:link,  a:visited {
  text-decoration: none;
  color: #fff;
}
 .display-none {
  display: none !important;
}
 .css-reset {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
 .clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
 * html .clearfix {
  zoom: 1;
}
 *:first-child + html .clearfix {
  zoom: 1;
}
 .wrapper {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}
 .htl {
  /* Links with hidden text */
  font: 0/0 a;
  color: transparent;
  text-indent: -999;
  overflow: hidden;
}
 .htl a {
  display: block;
  width: 100%;
  height: 100%;
}
 .shop-now {
  color: #fff;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
 .shop-now,  .add-to-cart {
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
 .shop-now:hover,  .add-to-cart:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}



/*====== RESPONSIVE BREAKPOINT VARIABLES ======= */
@media only screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

#header {
  width: 100%;
  /*height: 193px;*/
}
#header object {
  display: block;
  height: 200px;
  /*display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;*/
}

#footer {
  width: 100%;
  /*height: 414px;*/
}
#footer object {
  display: block;
  height: 394px;
  /*display: none;
  width: 100%;
  height: 100%;*/
}

 {
  font: 1.25em/1em 'arial', sans-serif;
  background: #fff url(bg.jpg) center top no-repeat;
}

/************************ eBay **************************/
#gh-bt {
  z-index: 1000 !important;
  /* Back to top icon */
}

.page-content-loader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: white url(ajax-loader.gif) center 200px no-repeat;
}

 {
  /* Layout & Common */
  /* Sidebar */
}
 .page-content-container {
  width: 1100px;
  margin: 0 auto;
  background-color: #fff;
}
 .sidebar-block-title,  .block-title,  .custom-page h3,  .v4title h2 {
  display: block;
  padding: 10px !important;
  color: #fff;
  background-color: #47403a !important;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500 !important;
  font-family: 'Lato', sans-serif;
}
 .v4title h2 { padding: 0px !important;}
 .block-title{margin:-10px 0 10px;}
 .sidebar-block-title.fb-title,  .sidebar-block.fb-title {
  background-color: #3b5997 !important;
}
 #LeftPanel {
  width: 260px;
  vertical-align: top;
  padding-top: 0px;
  padding-left: 10px;
  color: #434343;
  /* Category block */
  /* Why Us block */
  /* Slideshow block */
}
 #LeftPanel a {
  color: #434343;
}
 #LeftPanel .sidebar-block {
  margin-bottom: 25px;
}
 #LeftPanel .sidebar-block-content {
  border: 1px solid #e8e8e8 !important;
  margin-bottom: 25px;
}
 #LeftPanel .sidebar-block-content.fb-content {
  border-color: #3b5997 !important;
}
 #LeftPanel .mb25 {
  margin-bottom: 25px;
}
 #LeftPanel .category-list-container {
  width: 100%;
}
 #LeftPanel .category-list-container a {
  color: #333333 !important;
}
 #LeftPanel .lev1 a {
  padding-left: 15px;
  background-image: url("sprite.png");
  background-position: -63px -445px;
  background-repeat: no-repeat;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
 #LeftPanel .lev1 li {
  margin: 0;
  padding: 10px 20px;
  border-bottom: 1px solid #ededed;
  font-weight: 100;
 				/*&:last-child {
					border-bottom: 0;
				} */
}
 #LeftPanel .lev1 li:hover a {
  margin-left: 5px;
}
 #LeftPanel .lev1 li span {
  font-weight: bold;
}
 #LeftPanel .lev1 ul {
  padding: 0 !important;
}
 #LeftPanel .lev1 ul.lev2 {
  padding: 0 0 0 10px !important;
}
 #LeftPanel .lev1 ul li {
  list-style-type: none !important;
  margin: 0 !important;
}
 #LeftPanel .lev1 .lev2 li {
  padding-left: 20px;
}
 #LeftPanel .lev1 .lev3 li {
  padding-left: 30px;
}
 #LeftPanel .lev1 .lev3 li {
  padding-left: 40px;
}
 #LeftPanel .why-us {
  padding-top: 20px;
  padding-bottom: 5px;
  text-transform: capitalize;
  font-family: 'Lato', sans-serif;
}
 #LeftPanel .why-us li {
  margin-bottom: 15px;
  min-height:40px;
}
 #LeftPanel .why-us li:before {
  content: '';
  float: left;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #e3336b;
  background-image: url("sprite.png");
  background-position: -47px -269px;
  background-repeat: no-repeat;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
 #LeftPanel .why-us li:hover:before {
  background-color: #e3336b;
}
 #LeftPanel .why-us h5 {
  margin-bottom: 5px;
  color: #323232;
  font-weight: bold;
}
 #LeftPanel .why-us h6 {
  color: #a9a9a9;
  font-size: .9em;
}
 #LeftPanel .block-slideshow {
  padding: 0;
  position: relative;
  background: #fff;
  border: none;
  border-top: 6px solid #47403a;
  -moz-border-radius-topleft: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
}
 #LeftPanel .block-slideshow .block-slideshow-inner {
  border: 1px solid #e8e8e8;
}
 #LeftPanel .block-slideshow .block-content {
  width: 260px;
  padding: 0 20px 25px;
  margin: 0;
}
 #LeftPanel .block-slideshow .block-slider .slides > li {
  margin: 0;
  padding: 22px 0 0;
  line-height: 1.4;
  text-align: center;
  background: none transparent;
  -webkit-backface-visibility: hidden;
}
 #LeftPanel .block-slideshow .block-slider .slides > li strong {
  display: block;
  border: 0;
  padding: 0 0 22px;
  margin: 0 0 25px;
  color: #000;
  color: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid #e8e8e8;
  font-size: 22px;
  font-weight: 400;
  font-family: "Myriad Pro", serif;
  text-transform: capitalize;
  letter-spacing: -1.2px;
  line-height: 21px;
}
 #LeftPanel .block-slideshow .block-slider .slides > li p {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  color: #000;
  color: rgba(0, 0, 0, 0.67);
}
 #LeftPanel .block-slideshow .block-slider .slides > li a {
  color: #322c29;
}
 #LeftPanel .block-slideshow .block-slider .slides > li a.button {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin: -21px 0 21px;
  height: 42px;
  background-color: #fff;
  color: #e3336b;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  border: 1px solid #e8e8e8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
 #LeftPanel .block-slideshow .block-slider .slides > li a.button span {
  line-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  font-family: Lato, sans-serif;
  text-transform: capitalize;
}
 #LeftPanel .block-slideshow .block-slider .slides > li a.button:hover {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
 #LeftPanel .block-slideshow .block-slider .slides > li img {
  max-width: 100%;
  display: block;
}
 #LeftPanel .block-slideshow .flex-direction-nav {
  display: none;
}
 #LeftPanel .block-slideshow .flex-control-nav {
  position: relative;
  width: 260px;
  height: 33px;
  overflow: hidden;
  margin: -35px -20px 15px;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}
 #LeftPanel .block-slideshow .flex-control-nav li {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin: 0 6px;
  padding: 0;
  line-height: 33px;
  background: none transparent;
}
 #LeftPanel .block-slideshow .flex-control-nav li a {
  margin: 12px 0;
  width: 8px;
  height: 8px;
  display: block;
  background: #606875;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
 #LeftPanel .block-slideshow .flex-control-nav li .flex-active {
  background-color: #e3336b;
}
 .sidebar-left-spacer {
  width: 20px;
}

.page-home  #LeftPanel {
  padding-top: 10px;
}



/*====== RESPONSIVE BREAKPOINT VARIABLES ======= */
 {
  /* font: 1em/1em 'arial', sans-serif;
  margin: 0;
  padding: 0; */
}
 .l-header {
  padding-top: 10px !important;
 /* background-color: #262638;*/
}
 .l-header .l-top-links {
  width: 100%;
  height: 26px;
  padding: 0 8px;
}
 .l-top-links .top-links {
  float: right;
  margin-right: 10px;
  padding-top: 4px;
  color:#000;
}
@media only screen and (max-width: 768px) {
   .l-top-links .top-links {
    float: none;
    width: 100%;
  }
}
 .l-top-links .top-links li {
  float: left;
  font-size:12px;
}
 .l-top-links .top-links li a{color: white;}
 .l-top-links .top-links li:not(:last-child):after {
  content: '|';
  margin: 0 5px;
  color:#fff;
}


@media only screen and (max-width: 768px) {
   .l-header .l-top-links {
    height: auto;
    text-align: center;
    padding: 10px 0;
  }
}
 .l-header .l-top-links .icon-links {
  float: left;
  width: 580px;
  padding-top: 2px;
}
@media only screen and (max-width: 768px) {
   .l-header .l-top-links .icon-links {
    float: none;
    width: 100%;
  }
}
 .l-header .l-top-links .icon-links li {
  float: left;
  width: 23px;
  height: 23px;
  margin-right: 1px;
  color:#47403a;
}
@media only screen and (max-width: 768px) {
   .l-header .l-top-links .icon-links li {
    float: none;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
  }
}
 .l-header .l-top-links .icon-links li.facebook-icon {
  width: 22px;
  background-image: url("sprite.png");
  background-position: -1px -93px;
  background-repeat: no-repeat;
}
 .l-header .l-top-links .icon-links li.twitter-icon {
  background-image: url("sprite.png");
  background-position: -1px -47px;
  background-repeat: no-repeat;
}
 .l-header .l-top-links .icon-links li.youtube-icon {
  background-image: url("sprite.png");
  background-position: -1px -116px;
  background-repeat: no-repeat;
}
 .l-header .l-top-links .icon-links li.gplus-icon {
  width: 22px;
  background-image: url("sprite.png");
  background-position: -1px -24px;
  background-repeat: no-repeat;
}
 .l-header .l-top-links .icon-links li.rss-icon {
  background-image: url("sprite.png");
  background-position: 0 -70px;
  background-repeat: no-repeat;
}
 .l-header .l-top-links .icon-links li.newsletter-icon {
  position: relative;
  width: 80px;
  overflow: visible;
  background-image: url("sprite.png");
  background-position: -1px -1px;
  background-repeat: no-repeat;
}
 .l-header .l-top-links .icon-links .newsletter-form {
  position: absolute;
  left: 85px;
  top: 0;
  display: none;
  width: 250px;
  text-indent: 0;
}
 .l-header .l-top-links .icon-links .newsletter-form input[type=text] {
  width: 200px;
  height: 22px;
  border: 0;
  background-color: #fff;
  padding: 0 10px;
}
 .l-header .l-top-links .icon-links .newsletter-form input[type=submit],  .l-header .l-top-links .icon-links .newsletter-form input[type=button],  .l-header .l-top-links .icon-links .newsletter-form button {
  width: 45px;
  height: 22px;
  border: 0;
  background-color: #ccc;
  text-transform: uppercase;
}
 .l-header .header-columns {
  padding: 38px 8px 19px;
}
 .l-header .header-columns .logo {
  float: left;
  width: 33%;
}
@media only screen and (max-width: 768px) {
   .l-header .header-columns .logo {
    float: none;
    text-align: center;
    width: 100%;
  }
}
 .l-header .header-columns .contact-cols {
  width: 66%;
  float: left;
}
@media only screen and (max-width: 768px) {
   .l-header .header-columns .contact-cols {
    float: none;
    width: 100%;
    text-align: center;
    margin: 15px auto 0;
  }
}
.l-header .header-columns .contact-cols li {
  width: 50%;
  float: left;
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
   .l-header .header-columns .contact-cols li {
    float: none;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    width: auto;
    min-width: 310px;
    text-align: left;
    margin-bottom: 5px;
  }
}
 .l-header .header-columns .contact-cols li:before {
  content: '';
  float: left;
  width: 55px;
  height: 55px;
  margin: 0 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #e3336b;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
 .l-header .header-columns .contact-cols li:hover:before {
  background-color: #e3336b;
}
 .l-header .header-columns .contact-cols li h5 {
  margin-top: 10px;
  margin-bottom: 5px;
    font-size: 14px;
}
.l-header .header-columns .contact-cols li h6 {
  font-size: 12px;
  color: white;
}
 .l-header .header-columns .contact-cols li b {
  text-transform: uppercase;
}
 .l-header .header-columns li.contact-support:before {
  background-image: url("sprite.png");
  background-position: -40px -384px;
  background-repeat: no-repeat;
}
 .l-header .header-columns li.contact-email:before {
  background-image: url("sprite.png");
  background-position: -40px -340px;
  background-repeat: no-repeat;
}
 .l-header .navigation-container {
  position: relative;
  z-index: 99;
  height: 45px;
 background-color: #2e3c45;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container {
    height: auto;
  }
}
 .l-header .navigation-container .toggle-button {
  display: none;
  padding: 17px 15px 13px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .toggle-button {
    display: block;
  }
}
 .l-header .navigation-container .toggle-button span {
  float: left;
}
 .l-header .navigation-container .toggle-button i {
  display: block;
  width: 25px;
  border-bottom: 4px solid #fff;
  margin-bottom: 4px;
}
 .l-header .navigation-container .toggle-button b {
  float: left;
  margin-top: 2px;
  margin-left: 10px;
  font-family: Oswald, sans-serif;
  font-size: .95em;
}
 .l-header .navigation-container .search-container {
  position: relative;
  float: right;
  width: 345px;
  margin-right: 10px;
  margin-top: 4.5px;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .search-container {
    float: none;
    width: 100%;
  }
}
 .l-header .navigation-container .home-link {
  float: left;
  width: 60px;
  height: 100%;
}
 .l-header .navigation-container .home-link a{
  float: left;
  width: 60px;
  height: 100%;
  background-image: url("sprite.png");
  background-position: -67px -27px;
  background-repeat: no-repeat;
}
 .l-header .navigation-container .home-link a:hover{
  background-color:#e3336b;
  background-position: -67px -27px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .home-link {
    display: none;
  }
}
 .l-header .navigation-container .navigation {
  float: left;
  height: 100%;
  /* overflow: hidden; */
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .navigation {
    display: none;
    width: 100%;
    height: auto;
    float: none;
    margin: 0 -1px;
  }
}
 .l-header .navigation-container .navigation > li {
  float: left;
  height: 100%;
  padding: 14px 9.5px;
  font-size: 1.05em;
  cursor: pointer;
  -webkit-transition: background 200ms ease;
  -moz-transition: background 200ms ease;
  -o-transition: background 200ms ease;
  transition: background 200ms ease;
}
 .l-header .navigation-container .navigation > li.has-child:after {
  content: '';
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  width: 9px;
  height: 5px;
  margin-left: 3px;
  background-image: url("sprite.png");
  background-position: -18px -628px;
  background-repeat: no-repeat;
}
 .l-header .navigation-container .navigation > li, .l-header .navigation-container .navigation > li > a {color:#fff}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .navigation > li {
    position: relative;
    width: 100%;
    text-align: left;
    float: none;
    padding: 15px 0;
    border-top: 1px solid #fff;
  }
   .l-header .navigation-container .navigation > li > span {
    margin-left: 15px;
  }
   .l-header .navigation-container .navigation > li > a {
    padding-left: 15px;
  }
   .l-header .navigation-container .navigation > li.has-child:after {
    position: absolute;
    right: 15px;
    top: 21px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
   .l-header .navigation-container .navigation > li.has-child.opened {
    background-color: #262638;
  }
   .l-header .navigation-container .navigation > li.has-child.opened:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
 .l-header .navigation-container .navigation > li:hover {
  background-color: #e3336b;
}
 .l-header .navigation-container .navigation > li:hover > a, .l-header .navigation-container .navigation > li:hover{
  color: #fff;
}
 .l-header .navigation-container .navigation > li:hover ul {
  /* display: block; */
}
 .l-header .navigation-container .navigation > li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 45px;
  width: 100%;
  /*height: 407px;*/
  background-color: #626a7d;
  background-color: rgba(71, 64, 58, 0.8);
  text-align: left;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .navigation > li > ul {
    position: relative;
    left: 0;
    top: 15px;
    background-color: #5F6874;
  }
}
 .l-header .navigation-container .navigation > li > ul > li {
  float: left;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .navigation > li > ul > li {
    float: none;
  }
}
 .l-header .search-container input[type=text] {
  width: 100%;
  height: 35px;
  padding-left: 15px;
  padding-right: 75px;
  -moz-border-radius-topright: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border: 1px solid #47403a;
}
@media only screen and (max-width: 768px) {
   .l-header .search-container input[type=text] {
    width: 100%;
  }
}
 .l-header .search-container input[type=submit],  .l-header .search-container input[type=button],  .l-header .search-container button {
  position: absolute;
  top: 0px;
  right: -1px;
  width: 60px;
  height: 35px;
  background-color: #e3336b;
  background-image: url("sprite.png");
  background-position: -33px -228px;
  background-repeat: no-repeat;
  border: 0;
  -webkit-transition: background-color 500ms ease;
  -moz-transition: background-color 500ms ease;
  -o-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
  cursor: pointer;
  -moz-border-radius-topright: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
@media only screen and (max-width: 768px) {
   .l-header .search-container input[type=submit],  .l-header .search-container input[type=button],  .l-header .search-container button {
    right: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
 .l-header .search-container input[type=submit]:hover,  .l-header .search-container input[type=button]:hover,  .l-header .search-container button:hover {
  background-color: #e3336b;
}
 .l-header .navigation-container .nav-categories > ul {
  padding: 15px 0 0 15px;
  cursor: default;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-categories > ul {
    padding: 15px 15px 0;
  }
}
 .l-header .navigation-container .nav-categories > ul > li {
  width: 255px;
  height: 200px;
  margin: 0 16px 16px 0;
  padding: 12px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-categories > ul > li {
    width: 100%;
    height: 165px;
    float: none;
  }
}
 .l-header .navigation-container .nav-categories > ul > li h4 {
  height: 28px;
  color: #fff;
  background-color: #262638;
  font-weight: bold;
 /* text-transform: capitalize;*/
  font-size:16px;
}
 .l-header .navigation-container .nav-categories > ul > li h4 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px 8px;
}
 .l-header .navigation-container .nav-categories > ul > li ul {
  text-transform: capitalize;
}
 .l-header .navigation-container .nav-categories > ul > li ul a {
  color: #000;
}
 .l-header .navigation-container .nav-categories > ul > li ul li {
  margin-left: 5px;
  margin-top: 10px;
  padding-left: 10px;
  background-image: url("sprite.png");
  background-position: -65px -325px;
  background-repeat: no-repeat;
  font-size: .85em;
}
 .l-header .navigation-container .nav-categories img {
  float: right;
  margin: 10px;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-categories img {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-brands {
    width: 100% !important;
  }
}
 .l-header .navigation-container .nav-brands ul {
  padding: 15px 0 0 15px;
  cursor: default;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-brands ul {
    text-align: center !important;
  }
}
 .l-header .navigation-container .nav-brands ul li {
  width: 136px;
  height: 170px;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-brands ul li {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    float: none !important;
  }
}
 .l-header .navigation-container .nav-brands ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
}
 .l-header .navigation-container .nav-brands ul li h4 {
  padding: 9px 13px;
  color: #fff;
  background-color: #262638;
  font-family: 'Oswald', sans-serif;
  font-size: .8em;
  text-align: left;
  text-transform: capitalize;
}
 .l-header .navigation-container .nav-brands ul li .brand-image {
  width: 116px;
  height: 115px;
  display: table-cell;
  vertical-align: middle;
}
 .l-header .navigation-container .nav-brands ul li .brand-image img {
  max-width: 90%;
  max-height: 90%;
}
 .l-header .navigation-container .nav-links {
  /* &  > ul {
  	padding-right: 15px;
  	padding-bottom: 15px;
  	&  > li {
  		width: 100%;
  		height: 100%;
  		margin: 0;
  		background: rgb(255,255,255);
  		background: rgba(255,255,255,.9);
  	}
  } */
  position: relative;
}
 .l-header .navigation-container .nav-links ul {
  width: 105% !important;
  padding: 15px 15px 0;
  border: 1px solid #ddd;
  background-color: #fff !important;
  cursor: default;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-links ul {
    width: 100% !important;
  }
}
 .l-header .navigation-container .nav-links ul li {
  float: none;
  width: 100%;
  height: 16px;
  background-image: url("sprite.png");
  background-position: -65px -325px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: .75em;
  font-weight: bold;
}
 .l-header .navigation-container .nav-links ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  color: #000;
}
 .l-header .navigation-container .nav-promotions ul {
  padding: 15px 0 0 15px;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-promotions ul {
    text-align: center !important;
  }
}
 .l-header .navigation-container .nav-promotions ul li {
  width: 202px;
  height: 290px;
  padding: 13px;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
   .l-header .navigation-container .nav-promotions ul li {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    float: none !important;
  }
}
 .l-header .navigation-container .nav-promotions ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
 .l-header .navigation-container .nav-promotions ul li .promotion-image {
  width: 176px;
  height: 180px;
  display: table-cell;
  vertical-align: middle;
}
 .l-header .navigation-container .nav-promotions ul li .promotion-image img {
  max-width: 100%;
  max-height: 100%;
}
 .l-header .navigation-container .nav-promotions ul li h4 {
  margin-bottom: 8px;
  color: #000;
  text-transform: none;
  font-size: .9em;
  font-weight: bold;
}
 .l-header .navigation-container .nav-promotions ul li .promotion-price {
  color: #000;
  font-family: 'Georgia',sans-serif;
  font-style: italic;
  font-weight: bold;
  border-top: 1px solid #e7e7e7;
}
 .l-header .navigation-container .nav-promotions ul li .add-to-cart {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin-top: 5px;
  padding: 9px 16px;
  background-color: #e3336b;
  font-family: 'Oswald',sans-serif;
  font-size: .8em;
  text-transform: capitalize;
}

/* Cross-Browser Bug Fixes */
/* IE */
.ie .search-container {
  width: 340px !important;
}



 {
  /* HOMEPAGE */
}
 .l-extra .wrapper {
  background-color: #fff;
}
 .l-extra .the-slideshow-wrapper {
  height: 591px;
  margin-bottom: 20px;
}
 .l-extra .the-slideshow-wrapper .the-slideshow {
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
 .l-extra .the-slideshow-wrapper .the-slideshow .slides {
  height: 100%;
}
 .l-extra .the-slideshow-wrapper .the-slideshow .slide {
  position: relative;
}
 .l-extra .the-slideshow-wrapper .the-slideshow .slide .slide-texts {
  position: absolute;
  top: 40px;
  left: 75px;
}
 .l-extra .the-slideshow img {
  width: 100%;
  height: 100%;
}
 .l-extra .the-slideshow h2 {
  margin-bottom: 5px;
  padding: 5px 15px 7px 10px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
  line-height: 100%;
  font-size: 2.5em;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
 .l-extra .the-slideshow p {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin-bottom: 50px;
  padding: 15px 20px 18px 10px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.2em;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
 .l-extra .the-slideshow .shop-now {
  background: #f2482e;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2482e 0%, #c52810 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2482e), color-stop(100%, #c52810));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2482e 0%, #c52810 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2482e 0%, #c52810 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2482e 0%, #c52810 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2482e 0%, #c52810 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2482e', endColorstr='#c52810',GradientType=0 );
  /* IE6-9 */
  text-transform: capitalize;
  padding: 7px 15px;
  font-size: 1.25em;
}
 .l-extra .collection-showcase {
  padding: 10px;
}
 .l-extra .collection-showcase li {
  position: relative;
  width: 530px;
  height: 210px;
  float: left;
  margin-bottom: 15px;
  text-align: center;
}
 .l-extra .collection-showcase li:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
 .l-extra .collection-showcase li.collection-blue {
  background-color: #c62e83;
  margin-right: 20px;
}
 .l-extra .collection-showcase li.collection-orange {
  background-color: #20161f;
}
 .l-extra .collection-showcase li.collection-green {
  background-color: #dbc065;
  margin-right: 20px;
}
 .l-extra .collection-showcase li.collection-red {
  background-color: #7eb9cb;
}
 .l-extra .collection-showcase li a {
  display: block;
  width: 100%;
  height: 100%;
}
 .l-extra .collection-showcase li img {
  /* width: 100%;
  height: 100%; */
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
 .l-extra .collection-showcase li .collection-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 250px;
  height: 100%;
  overflow: hidden;
}
 .l-extra .collection-showcase li .collection-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
}
 .l-extra .collection-showcase li .collection-info h3 {
   color: white;
  display: block;
  margin: 65px 0 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 100%;
}
 .l-extra .collection-showcase li .collection-info span {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
}
 .l-extra .collection-showcase li .shop-now {
  padding: 15px 20px;
  background-color: #47403a;
  font-size: 1.2em;
}
 .l-extra .brands-showcase {
  position: relative;
  margin-top: 30px;
  padding: 0 10px 35px;
  text-align: center;
  z-index: 99;
}
 .l-extra .brands-showcase h3 {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin-bottom: 25px;
  padding: 0 15px;
  background-color: #fff;
  color: #2e2e2e;
  font-size: 1.4em;
  text-transform: capitalize;
}
 .l-extra .brands-showcase h3:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: .3em;
  left: 10px;
  right: 10px;
  display: block;
  border-bottom: 3px solid #eeeeee;
}
 .l-extra .brands-showcase ul {
  width: 990px;
  margin: 0 auto;
  margin-right: 40px;
}
 .l-extra .brands-showcase li {
  display: table;
  float: left;
  width: 155px;
  height: 65px;
  margin-right: 14px;
  border: 1px solid #dfdfdf;
  background-color: #fff;
}
 .l-extra .brands-showcase li a {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
 .l-extra .brands-showcase li a img {
  max-width: 85%;
  max-height: 55px;
}
 .l-content .wrapper {
  width: 100%;
  background-color: #fff;
}
 .page-content {
  position: relative;
  vertical-align: top;
  padding-right: 10px;
  /* Custom Page */
  /* Category Page */
}
 .page-content .custom-page {
  padding-top: 00px;
  color: #414141;
}
 .page-content .custom-page h3 {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin-bottom: 25px;
  font-size: 1.1em;
  font-weight: 700 !important;
}
 .page-content .custom-page p {
  margin-bottom: 20px;
  font-size: .75em;
  font-weight: bold;
}
 .page-content .product-list-container {
  margin-top: 20px;
}
 .page-content .filters-container {
  position: relative;
}
 .page-content .right-filters {
  position: absolute;
  top: 20px;
  right: 0;
  padding-bottom: 0 !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d4d4d4;
  color: #000;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  font-weight: bold;
  font-size: .75em;
}
 .page-content .right-filters a,  .page-content .right-filters b {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  padding: 4px 8px;
  border-left: 1px solid #d4d4d4;
}
 .page-content .right-filters b {
  background: #dedede;
  /* Old browsers */
  background: -moz-linear-gradient(top, #dedede 0%, #eef0ef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dedede), color-stop(100%, #eef0ef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #dedede 0%, #eef0ef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #dedede 0%, #eef0ef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #dedede 0%, #eef0ef 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #dedede 0%, #eef0ef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#eef0ef',GradientType=0 );
  /* IE6-9 */
  border-left: 1px solid #d4d4d4;
}
 .page-content .right-filters a {
  color: #e3336b;
}
 .page-content .right-filters .first-filter {
  border-left: 0 none;
}
 .page-content .filters-label,  .page-content .filters-spacer {
  display: none;
}
 .page-content .top-options {
  margin-bottom: 10px !important;
  font-weight: bold;
  font-size: .75em;
}
 .page-content .top-options .option-values {
  padding: 4px 28px 4px 8px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d4d4d4;
  color: #e3336b;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px 0px;
  background-image: url(down-blue-arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
}
 .page-content .top-options .option-arrow {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  width: 8px;
  height: 15px;
  background-image: url("sprite.png");
  background-position: -62px -475px;
  background-repeat: no-repeat;
  margin-left: 10px;
}
 .page-content .product-inner-table {
  width: 96%;
  height: 300px;
  margin-bottom: 15px;
  font-size: .8em;
  font-weight: bold;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(50, 50, 50, 0.4) 0px 2px 15px 0px;
  -moz-box-shadow: rgba(50, 50, 50, 0.4) 0px 2px 15px 0px;
  box-shadow: rgba(50, 50, 50, 0.4) 0px 2px 15px 0px;
  color: #242424;
}
 .page-content .product-inner-table a {
  color: #242424;
}
 .page-content .product-list-grid .inner-td-1 .product-inner-table {
  margin-left: 0;
}
 .page-content .product-list-grid .inner-td-2 .product-inner-table {
  margin-left: 5px;
}
 .page-content .product-list-grid .inner-td-3 .product-inner-table {
  margin-left: 10px;
}
 .page-content .product-image-container {
  height: 180px;
  padding-top: 20px;
}
 .page-content .product-image-container .product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}
 .page-content .zoom-tool-container,  .page-content .description-container,  .page-content .subtitle,  .page-content .product-payment-matters {
  width: 90%;
  margin: 0 auto;
}
 .page-content .subtitle {
  font-weight: normal;
}
 .page-content .zoom-tool-container {
  margin-top: -40px;
  text-align: right;
}
 .page-content .zoom-tool-container .zoom-button {
  padding-left: 16px;
  background-image: url("sprite.png");
  background-position: -60px -500px;
  background-repeat: no-repeat;
  font-weight: bold;
  font-size: .9em;
}
 .page-content .zoom-bottom-spacer {
  width: 60px;
  margin: 0 auto;
  margin-top: 25px;
  border-bottom: 1px solid #cfcfcf;
}
 .page-content .product-payment-matters {
  margin-top: 15px;
}
 .page-content .product-price {
  text-align: center;
  color: #d30708;
  font-size: 1.15em;
}
 .page-content .product-old-price {
  width: 30%;
  text-align: right;
  color: #878787;
  text-decoration: line-through;
  font-size: 1.15em;
  font-weight: normal;
}
 .page-content .clr.time2 {
  display: none;
}
 .page-content .bottom-pagination-container {
  margin-top: 20px !important;
  margin-bottom: 30px !important;
  border: 0 !important;
  font-size: .8em;
}
 .page-content .bottom-pagination-container .pager {
  display: block !important;
}
 .page-content .bottom-pagination-container .prev,  .page-content .bottom-pagination-container .next {
  width: 50%;
}
 .page-content .bottom-pagination-container .prev a,  .page-content .bottom-pagination-container .next a {
  color: #212121 !important;
  font-weight: normal !important;
}
 .page-content .bottom-pagination-container .prev a:first-child,  .page-content .bottom-pagination-container .next a:last-child {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  width: 15px;
  height: 17px;
  margin-top: -3px;
}
 .page-content .bottom-pagination-container .prev a:first-child img,  .page-content .bottom-pagination-container .next a:last-child img {
  display: none;
}
 .page-content .bottom-pagination-container .prev {
  text-align: right;
}
 .page-content .bottom-pagination-container .prev a:first-child {
  background-image: url("sprite.png");
  background-position: -9px -499px;
  background-repeat: no-repeat;
}
 .page-content .bottom-pagination-container .next {
  text-align: left;
}
 .page-content .bottom-pagination-container .next a:last-child {
  background-image: url("sprite.png");
  background-position: -30px -499px;
  background-repeat: no-repeat;
}
 .page-content .bottom-pagination-container .pages {
  text-align: center;
}
 .page-content .bottom-pagination-container .pages a {
  font-weight: normal !important;
}
 .page-content .bottom-pagination-container .pages a.enabled,  .page-content .bottom-pagination-container .pages .pipe {
  color: #212121 !important;
}
 .page-content .bottom-pagination-container .pages a.disabled {
  color: #e3336b;
}
 .page-content .page-number,  .page-content .goto-form {
  display: none;
}

.page-home .top-options-bottom {
  height: 15px !important;
}

.page-custom .page-content-container {
  margin-top: 30px;
}

/* Cross-Browser Bug Fixes */
/* IE */
.ie .product-inner-table {
  border: 1px solid #b0b0b0;
}



/*====== RESPONSIVE BREAKPOINT VARIABLES ======= */
 {
  /* font: 1em/1em 'arial', sans-serif;
  margin: 0;
  padding: 0; */
}
 .l-footer {
  font-family: 'Lato', sans-serif;
  font-weight: 100;
}
 .l-footer .wrapper {
  background-color: #2e3c45;
  height: 320px;
}
@media only screen and (max-width: 768px) {
   .l-footer .wrapper {
    height: auto;
  }
}
 .l-footer .footer-cols > li {
  float: left;
  width: 250px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
   .l-footer .footer-cols > li {
    width: 100%;
    margin-bottom: 45px;
  }
}
 .l-footer .footer-cols .social-links li {
  float: left;
}
 .l-footer .footer-cols {
  padding: 25px 0 90px 20px;
  color: #f5f5f5;
}
@media only screen and (max-width: 768px) {
   .l-footer .footer-cols {
    padding: 30px 20px;
  }
}
 .l-footer .footer-cols a {
  color: #f5f5f5;
}
 .l-footer .footer-cols h3 {
  margin-bottom: 17px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000000;
  color: #fff;
  font-size: 1.1em;
  text-transform: capitalize;
}
 .l-footer .footer-cols .contact-details li {
  margin-bottom: 10px;
  font-size: .8em;
}
 .l-footer .footer-cols .contact-details li:hover:before {
  background-color: #e3336b;
}
 .l-footer .footer-cols .contact-details li:before {
  content: '';
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  background-color: #000000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background-color 500ms ease;
  -moz-transition: background-color 500ms ease;
  -o-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}
 .l-footer .footer-cols .contact-details li.phone-numbers:before {
  background-image: url("sprite.png");
  background-position: -4px -177px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .contact-details li.email-addresses:before {
  background-image: url("sprite.png");
  background-position: -4px -144px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .contact-details li.work-hours:before {
  background-image: url("sprite.png");
  background-position: -5px -212px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .info-links {
  list-style-type: square;
  margin-left: 20px;
  color: #000000;
  font-size: .9em;
}
 .l-footer .footer-cols .info-links li {
  margin-bottom: 15px;
  -webkit-transition: margin 300ms ease;
  -moz-transition: margin 300ms ease;
  -o-transition: margin 500ms ease;
  transition: margin 300ms ease;
}
 .l-footer .footer-cols .info-links li:hover {
  margin-left: 8px;
}
 .l-footer .footer-cols .social-links li {
  width: 39.5px;
  height: 39.5px;
  margin-right: 2px;
  background-color: #000000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background-color 500ms ease;
  -moz-transition: background-color 500ms ease;
  -o-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}
 .l-footer .footer-cols .social-links li:hover {
  background-color: #e3336b;
}
 .l-footer .footer-cols .social-links li.facebook-icon {
  background-image: url("sprite.png");
  background-position: -3px -250px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .social-links li.twitter-icon {
  background-image: url("sprite.png");
  background-position: -3px -290px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .social-links li.pintrest-icon {
  background-image: url("sprite.png");
  background-position: -4px -330px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .social-links li.gplus-icon {
  background-image: url("sprite.png");
  background-position: -4px -370px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .social-links li.instagram-icon {
  background-image: url("sprite.png");
  background-position: -6px -414px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .social-links li.youtube-icon {
  background-image: url("sprite.png");
  background-position: -6px -452px;
  background-repeat: no-repeat;
}
 .l-footer .footer-cols .col-about p {
  font-size: .8em;
}
 .l-footer .footer-cols .col-about p a {
  text-decoration: underline;
}
 .l-footer .footer-cols .col-about .footer-logo {
  float: left;
  width: 100px;
  height: 70px;
  margin: 0 3px 3px 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1.2em;
}
 .l-footer .footer-cols .col-about .footer-logo a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 5px;
}
 .l-footer .footer-cols .col-about .footer-logo img {
  max-width: 100%;
  *width: 100%;
}
 .l-footer .designer-banner {
  margin: 20px 0;
  text-align: center;
}


.os-background{
  background: url(http://gbelectronics4u.co.uk/Customer/simpleunique/bg.jpg) repeat-x;
  background-color: rgb(192, 207, 226);
}

.os-content{
  width: 1100px;
  margin: 0px auto;
    background: white;
}

div.v4bc {margin-bottom: 0px;}
.tb_v4bc {height: 14px;}
div.v4sem {margin-bottom: 0px;}
.r3_c {border: 1px solid #fff; border-radius: 5px;  background: white;}
.r3_t, .r3_bl {display: none;}
.r3.c.gy-br {width: 710px;}
.r3.c.gy-br a {color:#646262; }
div.v4stabl a {color:#646262; }
.fpcc span.keywordClass {color:#646262; background: transparent;}
.fpcc .countClass {color:#646262;}
span.pdmt .cur {color:#646262;}
.pgbc  {padding: 0px;  background: #fff;}
.cmpBr {border:0px; background: #fff;}
.rs-pview {padding:0px;}
.grid td.gallery {padding: 5px;}
table.gallery {height: 280px; width: 258px; background: #fff; text-align:left; color: #646262; padding: 5px; border: 0px solid #e0e0e0; border-radius: 6px; box-shadow: 0px 2px 18px -10px #000;}
table.gallery a {color:#646262;}
.grid td.left {border: 0px;}
div.itemseparator {border: 0px; margin: 0px; height: 10px; }
td#CentralArea div.dynpg {border:0px; padding: 10px 0px; }
table.gallery table.fixed {width: 100%; text-align: right; }
table.gallery td.picture div.image {border: 1px solid #e9eaec; background-color: #fff; margin: 0px auto; }
table.gallery td.picture div.image:hover {border: 1px solid #fff; box-shadow: 0px 2px 18px -10px #165c86;}
table.gallery td.picture {padding: 0px 0px; text-align: center; vertical-align: middle;}
table.gallery div.ttl {min-height: 50px;}
table.gallery div.saleDiv {padding:0px;}
span.disct {position: relative; top: -15px;}
table.gallery img.sale {top: 0px;}
span.oriprs {display:none;}
#gh-gb {display: none;}
#gh-top {width: 955px; padding-left: 5px;}
.g-b {color: #df1819; font-size: 16px; position: relative; top: -2px;}
table.fixed img {}
table.fixed span.label {}

table.gallery .mi {display:none;}
div.g-nav.subtitle  {display:none;}
td.basics {display:none;}
img.ii.iippl {display:none;}
.ttl img.before {display:none;}
div.clr.time2 {display:none;}


table.v4acp tr.v4acp_head td.v4hspacer  , table.v4acp tr.v4acp_head td.v4accent , .lcat .ttl{
  display: none;
}

table.v4midBox tr.v4acp_mid td.v4mid {
  padding: 0px;
  overflow: hidden;
  background: white;
}

div.lcat {
  width: 100%;
  font-size: small;
}

table.v4acp tr.v4acp_head td.v4title {
  padding: 5px 5px 5px 10px;
  color: #fff;
  font-weight: bold;
  background: rgb(71, 64, 58);
}

h2{
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  margin-bottom: 8px;
}

#CentralArea{
  font-family: 'Open Sans', sans-serif;
  }
  
  .os-content {
  width: 1100px;
  margin: 0px auto;
  background: white;
  margin-top: -13px;
}

a, a:link, a:visited {
  text-decoration: none;
  color: #000;
}