/**
---------------------------------------------------------------
 * Table of Contents
 * 
 * 1.0 - Reset & General
 * 2.0 - Header
 * 3.0 - Main Content
 *		3.1 - Homepage
 *		3.2 - Section Page
 *		3.3 - Item Page
 * 4.0 - Footer
 * 5.0 - Media Queries
 * 		1250 pixels
 * 		1000 pixels
 * 		788 pixels
 *		570 pixels
 *		380 pixels
 *
---------------------------------------------------------------
**/
/**
---------------------------------------------------------------
 * 1.0 - Reset & General
---------------------------------------------------------------
**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

*:focus {
  outline: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  border: 0;
  width: 100%;
}

.clear:after, .content-container:after, header .utility-bar ul.utility-links:after, header .floating-cart:after, header nav ul.main-nav > li .mega-menu:after, header nav ul.main-nav > li .mega-menu .mm-left:after, header nav ul.main-nav > li .mega-menu .view-more:after, main.home .mid-blocks-wrapper:after, main.home .home-bottom:after, main.section .section-right ul.section-items:after, main.section .section-right .pagination-bar:after, main.section .section-right .pagination-bar .pb-left:after, main.section .section-right .pagination-bar .pb-right:after, main.section ul.sl1-categories:after, main.item .item-left:after, main.item .item-right:after, main.item .item-top:after, main.item .item-top ul.item-info:after, main.item .item-top .item-left .item-thumbnails:after, main.item .item-top .item-right .pricing:after, main.item .item-top .item-right .multi-pricing .heading:after, main.item .item-middle:after, main.item .item-middle .item-left ul.tid-nav:after, main.item #persistent-cart ul.sections:after, main.item #persistent-cart ul.pc-details:after, main.item .item-data .row:after, footer .footer-top .newsletter-signup:after, footer .footer-top .social-icons:after {
  display: block;
  clear: both;
  content: "";
}

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
}

p {
  padding-bottom: 20px;
  font-size: 15px;
}

.content-container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  position: relative;
}

a {
  color: #0171bb;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
a:hover {
  color: #272727;
}

header,
nav,
main,
section,
article,
aside,
footer {
  display: block;
}

#mobile-menu,
#mobile-menu-overlay {
  display: none;
}

main.info {
  font-size: 15px;
  padding-bottom: 30px;
}
main.info ul {
  font-size: 15px;
  padding-left: 20px;
  padding-bottom: 20px;
}
main.info ul.sitemap,
main.info ul.sitemap-sub {
  padding-bottom: 0;
}

.breadcrumbs {
  font-size: 13px;
  color: #8a8b8d;
  padding: 15px 0;
}
.breadcrumbs a {
  color: #8a8b8d;
  text-decoration: none;
  padding: 0 3px;
}
.breadcrumbs a.start {
  padding-left: 0;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span.destination {
  color: #012f6d;
}

h1.page-heading {
  color: #0171bb;
  font-size: 28px;
  line-height: 28px;
  padding-bottom: 15px;
}

.owl-carousel .owl-pagination {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}
.owl-carousel .owl-pagination .owl-page {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  background-color: #808080;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.owl-carousel .owl-pagination .owl-page.active {
  background-color: #3d3d3d;
}
.owl-carousel.show-arrows:not(.hide-arrows-override) .owl-buttons {
  display: block;
}
.owl-carousel.featured-items .owl-buttons .owl-prev,
.owl-carousel.featured-items .owl-buttons .owl-next {
  color: rgba(143, 150, 155, 0.8);
}
.owl-carousel.featured-items .owl-buttons .owl-prev {
  left: 0;
}
.owl-carousel.featured-items .owl-buttons .owl-next {
  right: 0;
}
.owl-carousel.featured-items .owl-item.active:after {
  display: block;
  position: absolute;
  top: 0;
  right: -2px;
  content: '';
  height: 350px;
  width: 1px;
  background-color: #b3b3b3;
}

.owl-buttons {
  display: none;
}
.owl-buttons .owl-prev,
.owl-buttons .owl-next {
  color: #4e4e4e;
  font-size: 70px;
  line-height: 70px;
  position: absolute;
  top: 42%;
  cursor: pointer;
}
.owl-buttons .owl-prev {
  left: 10px;
}
.owl-buttons .owl-prev:before {
  font-family: FontAwesome;
  content: '\f137';
}
.owl-buttons .owl-next {
  right: 10px;
}
.owl-buttons .owl-next:before {
  font-family: FontAwesome;
  content: '\f138';
}

.item-box {
  height: 370px;
  position: relative;
  text-align: center;
  overflow:hidden;
}
.item-box .details {
  padding: 0 15px;
}
.item-box .image {
  height: 225px;
  position: relative;
}
.item-box .image a:hover {
  opacity: 0.9;
}
.item-box .image img {
  max-width: 98%;
  max-height: 98%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.item-box h2.name {
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  height: 54px;
  overflow: hidden;
  margin-bottom: 7px;
  /*display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;*/
}
.item-box h2.name:hover {
  height:auto;
}
.item-box h2.name a {
  color: #000000;
  text-decoration: none;
}
.item-box h2.name a:hover {
  color: #0171bb;
}
.item-box .price {
  height: 25px;
  color: #de0016;
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 5px;
}
.item-box .reviews {
  height: 25px;
  overflow: hidden;
}
.item-box .reviews img {
  vertical-align: middle;
}
.item-box .reviews span {
  color: #666666;
  font-size: 12px;
  padding-left: 5px;
}
.item-box .badge {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 3px 10px;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #16ba5b;
  z-index: 1;
}

/*.item-box .badge.two {
  width:50%;
}*/

a.push-btn {
  display: inline-block;
  background-color: #0171bb;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 40px;
  cursor: pointer;
}
a.push-btn:hover {
  opacity: 0.9;
}
a.push-btn span.fa {
  padding-left: 5px;
}

#ysw-back-to-top-btn {
  width: 60px;
  text-align: center;
  cursor: pointer;
  position: fixed;
  top: 50%;
  right: -80px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
#ysw-back-to-top-btn span.fa {
  display: block;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  font-size: 28px;
  line-height: 60px;
  color: #c5c5c5;
  text-shadow: 1px 0 0 #000000, -1px 0 0 #000000, 0 1px 0 #000000, 0 -1px 0 #000000, 1px 1px #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
#ysw-back-to-top-btn em {
  display: block;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 12px;
  padding-top: 5px;
}
#ysw-back-to-top-btn:hover span.fa {
  background-color: #cfcfcf;
  color: #ffffff;
}
#ysw-back-to-top-btn.show {
  right: 10px;
}

/**
---------------------------------------------------------------
 * Mobile Menu
---------------------------------------------------------------
**/
#mobile-menu-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

/**
---------------------------------------------------------------
 * 2.0 - Header
---------------------------------------------------------------
**/
header .sitewide-promo {
  height: 65px;
  text-align: center;
}
header .sitewide-promo span {
  line-height: 65px;
}
header .utility-bar {
  background-color: #0171bb;
  color: #ffffff;
  height: 30px;
}
header .utility-bar a {
  color: #ffffff;
  text-decoration: none;
}
header .utility-bar ul.utility-links {
  height: 30px;
  list-style-type: none;
}
header .utility-bar ul.utility-links > li {
  float: left;
  display: block;
  font-size: 13px;
  height: 100%;
  line-height: 30px;
  border-left: 1px solid #ffffff;
}
header .utility-bar ul.utility-links > li > a {
  display: block;
  height: 100%;
  padding: 0 10px;
}
header .utility-bar ul.utility-links > li > a:hover {
  background-color: #012f6d;
}
header .utility-bar ul.utility-links > li:first-child, header .utility-bar ul.utility-links > li:last-child {
  border-left: 0;
}
header .utility-bar ul.utility-links > li:last-child {
  float: right;
}
header .utility-bar ul.utility-links > li em {
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}
header .utility-bar ul.utility-links > li .fa {
  display: inline-block;
  font-size: 16px;
  margin-right: 5px;
  height: 100%;
  line-height: 30px;
}
header .utility-bar ul.utility-links > li:nth-child(1) {
  padding-right: 10px;
}
header .utility-bar ul.utility-links > li:nth-child(1) span {
  float: right;
  display: block;
  height: 30px;
  line-height: 30px;
}
header .utility-bar ul.utility-links > li:nth-child(1) .fa {
  font-size: 14px;
}
header .utility-bar ul.utility-links > li.customer-service {
  position: relative;
}
header .utility-bar ul.utility-links > li.customer-service.show-menu .cs-dropdown {
  display: block;
}
header .utility-bar ul.utility-links > li.customer-service.show-menu > a {
  background-color: #012f6d;
}
header .utility-bar ul.utility-links > li.customer-service .fa {
  margin-right: 0;
  margin-left: 5px;
}
header .utility-bar ul.utility-links > li.customer-service .cs-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  color: #272727;
  background-color: #ffffff;
  z-index: 10;
  border: 1px solid #0171bb;
  border-top: 0;
  padding: 10px 0;
}
header .utility-bar ul.utility-links > li.customer-service .cs-dropdown ul {
  list-style-type: none;
}
header .utility-bar ul.utility-links > li.customer-service .cs-dropdown ul li {
  font-size: 12px;
  line-height: 12px;
  padding: 7px 15px;
}
header .utility-bar ul.utility-links > li.customer-service .cs-dropdown ul li a {
  color: #272727;
  text-decoration: none;
}
header .utility-bar ul.utility-links > li.customer-service .cs-dropdown ul li a:hover {
  color: #012f6d;
  text-decoration: underline;
}
header .utility-bar ul.utility-links > li:nth-child(4) .fa {
/***
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
 **/
}
header .mid-header {
  padding-top: 10px;
  border-bottom: 5px solid #d9e0e4;
}
header .mid-header .col1 {
  float: left;
}
header .mid-header .col2 {
  float: left;
  width: 604px;
  margin: 25px 0 0 45px;
}
header .mid-header .col3 {
  float: right;
  margin-top: 29px;
}
header .mid-header .mobile-header-menu-btn,
header .mid-header .mobile-header-search-icon,
header .mid-header .mobile-header-my-account-icon,
header .mid-header .mobile-header-search {
  display: none;
}
header .header-search {
  border: 1px solid #3a3a3a;
  height: 42px;
  position: relative;
}
header .header-search input.search-input {
  width: 100%;
  height: 40px;
  border: 0;
  padding: 0 160px 0 10px;
}
header .header-search input.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
header .header-search input.search-btn:hover {
  opacity: 0.9;
}
header .floating-cart .count, header .floating-cart .cart-icon, header .floating-cart .fa-angle-down {
  float: left;
  height: 34px;
  line-height: 34px;
}
header .floating-cart .count {
  color: #db0922;
  font-size: 15px;
  padding-right: 5px;
}
header .floating-cart .cart-icon {
  width: 42px;
  /*background: url(ysw-header-cart-icon.png) center no-repeat;*/
  cursor: pointer;
      font-size: 2em;
    color: #db0922;
}
header .floating-cart .fa-angle-down {
  color: #000000;
  cursor: pointer;
  padding-left: 10px;
}
header nav {
  clear: both;
}
header nav ul.main-nav {
  list-style-type: none;
  text-align: center;
  position: relative;
  z-index: 5;
}
header nav ul.main-nav > li {
  display: inline-block;
  margin: 0 20px;
}
header nav ul.main-nav > li:first-child {
  margin-left: 0;
}
header nav ul.main-nav > li:last-child {
  margin-right: 0;
}
header nav ul.main-nav > li > a {
  display: block;
  color: #272727;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
}
header nav ul.main-nav > li > a:after {
  display: inline-block;
  color: #0171bb;
  content: '\f107';
  font-family: FontAwesome;
  font-size: 16px;
  line-height: 16px;
  padding-left: 5px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
header nav ul.main-nav > li:nth-child(n+6) > a:after {
	content:'';
}

header nav ul.main-nav > li .mega-menu {
  display: none;
  width:100%;
  background-color: #ffffff;
  border: 4px solid #0171bb;
  text-align: left;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 20;
}
header nav ul.main-nav > li .mega-menu .mm-left {
  float: left;
  padding: 20px 20px 0 20px;
}
header nav ul.main-nav > li .mega-menu .mm-right {
  float: right;
  width: 400px;
}
header nav ul.main-nav > li .mega-menu .col {
  float: left;
}

 .cyc-checkout {
    display: inline-block;
    vertical-align: top;
  }

  .cyc-checkout a {
    color: #fff;
    background: #db0922;
    padding: 10px 24px;
    padding-right: 10px;
    margin-left: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: bottom;
    font-size: 16px;
  }

  .cyc-checkout a span .fa {
    margin: 0 5px;
    font-weight: 800;
  }


header nav ul.main-nav > li .mega-menu.four-col-image {
  width:1050px;
}

header nav ul.main-nav > li .mega-menu.four-col-image .mm-left {
  width:640px;
}

header nav ul.main-nav > li .mega-menu.four-col-image .col {
  width:25%;
  padding-right:10px;
}

header nav ul.main-nav > li .mega-menu.five-col-image .mm-left {
  width:822px;
}

header nav ul.main-nav > li .mega-menu.five-col-image .col {
  width:20%;
  padding-right:10px;
}

header nav ul.main-nav > li .mega-menu.three-col-image {
  width:950px;
}

header nav ul.main-nav > li .mega-menu.three-col-image .mm-left {
  width:540px;
}

header nav ul.main-nav > li .mega-menu.three-col-image .col {
  width:33%;
  padding-right:10px;
}

header nav ul.main-nav > li .mega-menu.two-col-image {
  width:810px;
}

header nav ul.main-nav > li .mega-menu.two-col-image .mm-left {
  width:400px;
}

header nav ul.main-nav > li .mega-menu.two-col-image .col {
  width:50%;
  padding-right:10px;
}

header nav ul.main-nav > li .mega-menu.one-col-image {
  width:590px;
  left:auto;
  right:0;
}

header nav ul.main-nav > li .mega-menu.one-col-image .mm-left {
  width:170px;
}

header nav ul.main-nav > li .mega-menu.one-col-image .col {
  width:100%;
}


header nav ul.main-nav > li .mega-menu h2 .category {
  font-size: 18px;
  line-height: 18px;
  padding-bottom: 10px;
}
header nav ul.main-nav > li .mega-menu h2 .category a {
  text-transform: uppercase;
  color: #0171bb;
  font-family: "Open Sans Condensed", sans-serif;
}
header nav ul.main-nav > li .mega-menu h2 .category a:hover {
  color: #012f6d;
}

header nav ul.main-nav > li .mega-menu ul.categories {
  list-style-type: none;
  padding-bottom: 15px;
}
header nav ul.main-nav > li .mega-menu ul.categories li {
  line-height: 1em;
  padding-bottom: 7px;
}
header nav ul.main-nav > li .mega-menu ul.categories li a {
  text-decoration: none;
  color: #272727;
  font-size: 13px;
}
header nav ul.main-nav > li .mega-menu ul.categories li a:hover {
  color: #0171bb;
  text-decoration: underline;
}
header nav ul.main-nav > li .mega-menu .image a:hover {
  opacity: 0.9;
}
header nav ul.main-nav > li .mega-menu .view-more {
  padding-bottom: 15px;
}
header nav ul.main-nav > li .mega-menu .view-more a {
  display: block;
  color: #0171bb;
  font-size: 14px;
}
header nav ul.main-nav > li .mega-menu .view-more a:first-child {
  float: left;
}
header nav ul.main-nav > li .mega-menu .view-more a:last-child {
  float: right;
  padding-right: 10px;
}
header nav ul.main-nav > li .mega-menu .view-more a:hover {
  color: #012f6d;
}
.dealbutton {
    background-color:#ffffff;
    border: none;
    color: #0171bb;
    padding: 0px 90px; 
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Open Sans   Condensed", sans-serif;
    border: 2px solid #0171bb;
    float: right;
}
.dealbutton:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #0171bb;
  border-color: #0171bb;
}
.dealbutton :link {
  text-decoration: none;
  color: #012f6d;
}
.dealbutton :visited {
  text-decoration: none;
  color: #012f6d;
}
.buttoncontainer {
  margin: auto;
  display: block;
  max-width: 200px;
  padding-bottom: 10px;
  padding-right: 5px;
  padding-left: 108px;
  float: right;
}
@media screen and (max-width: 1000px) {
  .dealbutton {
    max-width: 190px;
    font-size: 15px;
    padding-left: 44px;
    padding-right: 140px;
    }
   a.dealbutton {
    padding-left: 69px !important;
    padding-right: 61px !important;
    }
}
header #floating-cart {
  display: none;
  position: absolute;
  top: 75px;
  right: 0;
  z-index: 99;
  width: 433px;
  min-width: 300px;
  border: 1px solid #000000;
  padding: 15px 15px 0 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 5px 0 rgba(153, 153, 153, 0.3);
  box-shadow: 0 0 5px 0 rgba(153, 153, 153, 0.3);
}
header #floating-cart .fc-header {
  color: #272727;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.2em;
  padding-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
header #floating-cart .ysw-fc-error-msg p {
  color: #FF0000;
  font-size: 0.9em;
}
header #floating-cart .ysw-fc-atc-status div {
  color: green;
  font-weight: bold;
  padding: 0 0 0 5px;
  font-size: 1em;
}
header #floating-cart .ysw-fc-atc-status img {
  padding-bottom: 10px;
  margin-left: -5px;
  cursor: default;
}
header #floating-cart .floating-cart-items .single-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
header #floating-cart .floating-cart-items {
  color: #484848;
}
header #floating-cart table.single-item {
  width: 100%;
  border-bottom: 1px solid #eeefea;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  padding: 0 0 10px 0;
  margin-bottom: 10px;
}
header #floating-cart table.single-item tr td {
  vertical-align: top;
}
header #floating-cart table.single-item tr td.item-image {
  width: 18%;
}
header #floating-cart table.single-item tr td.item-image img {
  cursor: default;
}
header #floating-cart table.single-item tr td.item-name-qty {
  width: 57%;
  padding: 0 3% 0 5%;
  color: #272727;
  line-height: 1.3em;
}
header #floating-cart table.single-item tr td.item-name-qty span.name {
  display: block;
  font-size:14px;
}
header #floating-cart table.single-item tr td.item-name-qty span.qty {
  font-size: 0.9em;
  font-style: normal;
}
header #floating-cart table.single-item tr td.item-price {
  width: 25%;
  text-align: right;
  color: #495056;
  line-height: 1.3em;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85em;
  font-weight: 600;
  padding: 3px 0 0 0;
}
header #floating-cart table.single-item tr td.item-price span.slashed-price {
  text-decoration: line-through;
}
header #floating-cart table.single-item tr td.item-price span.price {
  color: #bd141b;
}
header #floating-cart table.single-item tr td.remove {
  color: #d1d1cf;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  padding-left: 5%;
}
header #floating-cart table.single-item tr td.remove .remove-item {
  cursor: pointer;
  display: inline-block;
}
header #floating-cart table.single-item tr td.remove span.x {
  width: 13px;
  height: 13px;
  color: #ffffff;
  background-color: #cececc;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 12px;
  text-align: center;
  line-height: 12px;
  vertical-align: middle;
}
header #floating-cart table.single-item tr td.remove em {
  font-style: normal;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
}
header #floating-cart table.single-item tr td.remove em a {
  color: #D1D1CF;
}
header #floating-cart .floating-cart-pricing {
  border: 3px solid #eeefea;
  font-size: 0.85em;
  color: #484848;
  padding: 7px;
}
header #floating-cart .floating-cart-pricing:after {
  display: block;
  clear: both;
  content: "";
}
header #floating-cart .floating-cart-pricing .row {
  width: 45%;
  float: right;
  clear: right;
}
header #floating-cart .floating-cart-pricing .subtotal, header #floating-cart .floating-cart-pricing .shipping, header #floating-cart .floating-cart-pricing .total {
  display: inline-block;
  width: 48%;
}
header #floating-cart .floating-cart-pricing .price {
  display: inline-block;
  width: 48%;
  text-align: right;
}
header #floating-cart .floating-cart-pricing .total {
  color: #a3a3a3;
  font-weight: bold;
  font-size: 1.1em;
}
header #floating-cart .floating-cart-checkout {
  border-bottom: 1px solid #eeefea;
  height: 64px;
  padding: 15px 0 15px 0;
}
header #floating-cart .floating-cart-checkout:after {
  display: block;
  clear: both;
  content: "";
}
header #floating-cart .floating-cart-checkout .checkout-btn {
  float: right;
}
header #floating-cart .floating-cart-checkout .checkout-btn a {
  display: inline-block;
  width: 135px;
  height: 35px;
  background-color: #db0922;
  color: #FFF;
  font-family: Arial;
  font-size: 1em;
  line-height: 35px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
header #floating-cart .floating-cart-checkout .checkout-btn a:hover {
  opacity: 0.9;
}
header #floating-cart .floating-cart-checkout .keep-shopping {
  float: left;
  text-transform: uppercase;
  font-size: 0.8em;
  padding-top: 8px;
}
header #floating-cart .floating-cart-checkout .keep-shopping a {
  color: #9b9b9b;
  text-decoration: none;
  cursor: pointer;
}
header #floating-cart .floating-cart-checkout .keep-shopping a:hover {
  text-decoration: underline;
}

/**
---------------------------------------------------------------
 * 3.0 - Main Content
 *
 * 3.1 - Homepage
---------------------------------------------------------------
**/
main.home #home-slideshow-1 {
  width: 100%;
}
main.home #home-slideshow-1 .slide {
  width: 100%;
  height: 800px;
  margin: 0 auto;
  background-color: #C1C1C1;
}
main.home #home-slideshow-2 {
  width: 100%;
}
main.home #home-slideshow-2 .slide {
  width: 100%;
  height: 400px;
  background-color: #cccccc;
}
main.home #home-slideshow-3 .slide {
  width: 100%;
  height: 400px;
  background-color: #cccccc;
}
main.home .home-block.one {
  margin-top: 10px;
  height: 800px;
}
main.home .home-block.two, main.home .home-block.eight {
  margin-top: 10px;
  height: 400px;
}
main.home .home-block.three {
  float: left;
  width: 900px;
  height: 400px;
}
main.home .home-block.four, main.home .home-block.five {
  float: right;
  width: 320px;
  height: 195px;
}
main.home .home-block.five {
  margin-top: 10px;
}
main.home .home-block.six, main.home .home-block.seven {
  width: 610px;
  height: 300px;
}
main.home .home-block.six {
  float: left;
}
main.home .home-block.seven {
  float: right;
}
main.home .home-block.nine {
  float: left;
  width: 820px;
  height: 800px;
}
main.home .home-block.ten, main.home .home-block.eleven, main.home .home-block.twelve {
  float: right;
  width: 400px;
  height: 260px;
  margin-bottom: 10px;
}
main.home .home-block.twelve {
  margin-bottom: 0;
}
main.home .mid-blocks-wrapper {
  margin-top: 10px;
}
main.home .home-featured-items {
  padding-top: 30px;
}
main.home .home-featured-items h2.heading {
  color: #8f969b;
  text-transform: uppercase;
  font-size: 30px;
  position: relative;
  margin-bottom: 20px;
}
main.home .home-featured-items h2.heading span {
  z-index: 1;
  background-color: #ffffff;
  position: relative;
  padding-right: 10px;
}
main.home .home-featured-items h2.heading span a {
  color: #8f969b;
  text-decoration: none;
}
main.home .home-featured-items h2.heading span a:hover {
  color: #000000;
}
main.home .home-featured-items h2.heading:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  height: 2px;
  width: 100%;
  background-color: #8f969b;
}
main.home .home-bottom {
  padding: 70px 0 20px 0;
}
main.home .home-bottom .hb-left {
  width: 545px;
  float: left;
}
main.home .home-bottom .hb-right {
  width: 615px;
  float: right;
  font-size: 16px;
}
main.home .home-bottom .hb-right p {
  font-size: 16px;
}
main.home .home-bottom .hb-right h1 {
  color: #0171bb;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 28px;
  padding-bottom: 20px;
}
main.home .home-bottom .home-email-signup {
  background-color: #012f6d;
  padding: 30px;
}
main.home .home-bottom .home-email-signup .heading {
  background: url(ysw-home-email-envelope.png) center bottom no-repeat;
  padding-bottom: 100px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
main.home .home-bottom .home-email-signup .heading .cta {
  display: block;
  font-weight: bold;
  font-size: 38px;
  line-height: 38px;
  text-transform: uppercase;
  padding-bottom: 12px;
}
main.home .home-bottom .home-email-signup .heading .cta-2 {
  display: block;
  font-style: italic;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 15px;
}
main.home .home-bottom .home-email-signup input.email-txt {
  width: 100%;
  border: 0;
  height: 50px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}
main.home .home-bottom .home-email-signup input.email-btn {
  width: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
main.home .home-bottom .home-email-signup input.email-btn:hover {
  opacity: 0.95;
}

/**
---------------------------------------------------------------
 * 3.2 - Section Page
---------------------------------------------------------------
**/
main.section .section-left {
  width: 245px;
  float: left;
}
main.section .section-left a.back-btn {
  display: none;
}
main.section .section-left .filter-container {
  border: 1px solid #0171bb;
  margin-bottom: 20px;
}
main.section .section-left .filter-container .main-heading {
  background-color: #0171bb;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 0;
}
main.section .section-left .filter-container .filter-block {
  padding: 10px;
}
main.section .section-left .filter-container .filter-block a.filter-heading {
  display: block;
  font-weight: bold;
  color: #232323;
  text-decoration: none;
  line-height: 20px;
  padding-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
main.section .section-left .filter-container .filter-block a.filter-heading:before {
  float: right;
  content: '+';
  color: #0171bb;
  font-size: 20px;
}
main.section .section-left .filter-container .filter-block a.filter-heading:hover {
  color: #0171bb;
}
main.section .section-left .filter-container .filter-block .filter-content {
  display: none;
  min-height: 100px;
}
main.section .section-left .filter-container .filter-block.show a.filter-heading {
  color: #0171bb;
}
main.section .section-left .filter-container .filter-block.show a.filter-heading:before {
  content: '-';
  color: #8d9194;
}
main.section .section-left .filter-container .filter-block.show .filter-content {
  display: block;
}
main.section .section-left .brands-container {
  border: 1px solid #c7c7c7;
  text-align: center;
  margin-bottom: 20px;
}
main.section .section-left .brands-container a {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
}
main.section .section-left .brands-container a:hover {
  opacity: 0.9;
}
main.section .section-left .brands-container a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 95%;
  max-height: 95%;
}
main.section .section-left .extra-section-block {
  background-color: #EFEFEF;
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
}
main.section .section-left .popular-categories {
  padding-bottom: 20px;
}
main.section .section-left .popular-categories .heading {
  color: #0171bb;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 5px;
}
main.section .section-left .popular-categories ul.categories {
  list-style-type: none;
  padding: 0 0 0 20px;
  height: 200px;
  overflow: hidden;
}
main.section .section-left .popular-categories ul.categories li {
  padding-bottom: 3px;
}
main.section .section-left .popular-categories ul.categories li a {
  color: #212121;
  text-decoration: none;
  font-size: 15px;
}
main.section .section-left .popular-categories ul.categories li a:hover {
  color: #0171bb;
  text-decoration: underline;
}
main.section .section-left .popular-categories .more-categories {
  padding: 10px 0 0 20px;
}
main.section .section-left .popular-categories .more-categories a {
  display: inline-block;
  color: #848c8e;
  cursor: pointer;
  font-weight: bold;
  font-style: italic;
}
main.section .section-left .popular-categories .more-categories a span:before {
  content: 'More';
}
main.section .section-left .popular-categories .more-categories a:before {
  font-family: FontAwesome;
  content: '\f0d7';
  float: right;
  padding-left: 5px;
  padding-top: 3px;
}
main.section .section-left .popular-categories.show-all ul.categories {
  height: auto;
}
main.section .section-left .popular-categories.show-all .more-categories span:before {
  content: 'Less';
}
main.section .section-left .popular-categories.show-all .more-categories a:before {
  content: '\f0d8';
}
main.section .section-right {
  width: 975px;
  float: right;
  padding-top: 5px;
}
main.section .section-right .filter-btn-mobile {
  display: none;
}
main.section .section-right .section-items-container {
  padding: 20px 0;
}
main.section .section-right ul.section-items {
  list-style-type: none;
  text-align: center;
}
main.section .section-right ul.section-items li {
  float: left;
  width: 25%;
  border-right: 1px solid #b3b3b3;
}
main.section .section-right .pagination-bar {
  border-top: 1px solid #0171bb;
  border-bottom: 1px solid #0171bb;
  padding: 7px 20px;
  font-size: 15px;
}
main.section .section-right .pagination-bar.bottom {
  margin-bottom: 20px;
}
main.section .section-right .pagination-bar .pb-left {
  float: left;
}
main.section .section-right .pagination-bar .pb-right {
  float: right;
}
main.section .section-right .pagination-bar .pb-right span {
  display: block;
  float: left;
  padding: 0 8px;
}
main.section .section-right .pagination-bar .pb-right span:first-child {
  padding-left: 0;
}
main.section .section-right .pagination-bar .pb-right span:last-child {
  padding-right: 0;
}
main.section .section-right .pagination-bar .sort-by {
  float: left;
}
main.section .section-right .pagination-bar .sort-by label {
  font-weight: bold;
  padding-right: 5px;
}
main.section .section-right .pagination-bar .sort-by select {
  border: 1px solid #959698;
  padding: 2px;
  min-width: 115px;
}
main.section .section-right .pagination-bar .item-range {
  float: left;
  padding-left: 30px;
}
main.section .section-right .pagination-bar .item-range span {
  font-weight: bold;
}
main.section .section-right .pagination-bar .page-nav {
  color: #012f6d;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}
main.section .section-right .pagination-bar .page-nav:hover {
  text-decoration: none;
}
main.section .section-right .pagination-bar .page-nav.show-all {
  color: #0171bb;
}
main.section .section-right .section-description-top {
  font-size:15px;
  padding-bottom:15px;
}
main.section .section-right .section-description {
  font-size: 15px;
  padding-bottom: 20px;
}
main.section .section-banner {
  padding: 20px 0;
}
main.section .section-banner .image {
  text-align: center;
  padding-bottom: 10px;
}
main.section .section-banner .description {
  font-size: 15px;
}
main.section .category-boxes {
  padding: 20px 0 40px 0;
}
main.section ul.sl1-categories {
  list-style-type: none;
}
main.section ul.sl1-categories li {
  width: 292px;
  height: 300px;
  float: left;
  border: 1px solid #dce0e1;
  margin: 0 20px 20px 0;
}
main.section ul.sl1-categories li .image {
  height: 200px;
  position: relative;
}
main.section ul.sl1-categories li .image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 90%;
  max-width: 90%;
}
main.section ul.sl1-categories li .image a:hover {
  opacity: 0.9;
}
main.section ul.sl1-categories li h2 {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  padding: 0 10px;
  height: 68px;
  overflow: hidden;
}
main.section ul.sl1-categories li h2 a {
  color: #272727;
  text-decoration: none;
}
main.section ul.sl1-categories li h2 a:hover {
  color: #0171bb;
}

/**
---------------------------------------------------------------
 * 3.3 - Item Page
---------------------------------------------------------------
**/

main.item .item-top .item-left {
  width:900px;
  float: left;
}
main.item .item-top .item-right {
  width:300px;
  float: right;
}
main.item .item-top .item-left .image-area-container {
  margin-left:125px;
}
main.item .item-left {
  width: 900px;
  float: left;
}
main.item .item-right {
  width: 300px;
  float: right;
}
main.item .main-item-promo.mobile {
  display: none;
}
main.item .item-top {
  margin-bottom: 40px;
}
main.item .item-top ul.item-info {
  list-style-type: none;
  font-size: 14px;
  padding-bottom: 20px;
}
main.item .item-top ul.item-info li {
  /* float: left;
  padding-left: 20px; */
  display: inline-block;
  padding-left:10px;
  vertical-align: middle;
}
main.item .item-top ul.item-info li:first-child {
  padding-left: 0;
}
main.item .item-top ul.item-info li span {
  font-weight: bold;
}
main.item .item-top ul.item-info li a {
  color: #000000;
  font-weight: bold;
}
main.item .item-top ul.item-info li a:hover {
  color: #012f6d;
}
main.item .item-top .item-left .main-item-image-wrapper {
  height: 602px;
  background-color: #ffffff;
  position: relative;
  border:1px solid #d9e0e4;
}
main.item .item-top .item-left .main-item-image-wrapper.show-arrows .owl-buttons {
  display: block;
}
main.item .item-top .item-left .main-item-image-wrapper.single-image .owl-buttons {
  display:none !important;
}
main.item .item-top .item-left .main-item-image-wrapper .image {
  height: 600px;
}
main.item .item-top .item-left .main-item-image-wrapper .image a {
  display: block;
  height: 100%;
  position: relative;
}
main.item .item-top .item-left .main-item-image-wrapper .image a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
main.item .item-top .item-left .item-zoom-cta {
  text-align: center;
  font-size: 15px;
  padding: 10px 0 30px 0;
  cursor: pointer;
}
main.item .item-top .item-left .item-zoom-cta span {
  padding-right: 5px;
}
main.item .item-top .item-left .item-thumbnails {
  padding-bottom: 20px;
}
main.item .item-top .item-left .item-thumbnails .item-images:after {
  display:block;
  content:'';
  clear:both;
}
main.item .item-top .item-left .item-thumbnails .item-images .item-thumb {
  float:left;
  width: 90px;
  height: 75px;
  position: relative;
  margin:0 5px;
  border: 1px solid #d9e0e4;
}
main.item .item-top .item-left .item-thumbnails .item-images .item-thumb img {
  max-height:100%;
}
main.item .item-top .item-left .item-thumbnails .item-video-thumb {
  float: left;
  width: 90px;
  height: 75px;
  margin-left: 5px;
}
main.item .item-top .item-right .pricing {
  padding-bottom: 5px;
}
main.item .item-top .item-right .pricing .sale-price {
  font-size: 50px;
  font-weight: bold;
  line-height: 1em;
  color: #de0016;
  padding-bottom: 5px;
}
main.item .item-top .item-right .pricing .savings {
  color: #de0016;
  float: left;
}
main.item .item-top .item-right .pricing .reg-price {
  float: left;
  color: #818284;
  padding-left: 5px;
}
main.item .item-top .item-right .pricing .reg-price span {
  text-decoration: line-through;
}
main.item .item-top .item-right .stock-status {
  color: #13b25e;
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 15px;
}
main.item .item-top .item-right .stock-status.out-of-stock{
  color:#000;
}
main.item .item-top .item-right .stock-status span {
  padding-right: 5px;
}
main.item .item-top .item-right .options-container {
  padding-bottom: 20px;
}

main.item #persistent-cart .options-container {
    display: inline-block;
    width: 45%;
    vertical-align: bottom;
    margin-right: 5%;
}

main.item .item-top .item-right .options-container .option label,
main.item #persistent-cart .options-container .option label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 3px;
}
main.item .item-top .item-right .options-container .option select,
main.item #persistent-cart .options-container .option select {
  border: 2px solid #91969a;
  width: 100%;
  height: 30px;
  padding: 0 0 0 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
main.item .item-top .item-right .shipping-message {
  color: #13b25e;
  text-align: center;
  padding-top: 10px;
}
main.item .item-top .item-right .min-qty-msg {
  font-size: 14px;
  text-align: center;
  padding-top: 10px;
}
main.item .item-top .item-right .shipping-message a {
  color: #13b25e;
}
main.item .item-top .item-right .shipping-message span {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
main.item .item-top .item-right .shipping-message .standard-shipping {
  color: #0171BB;
  font-style: italic;
  font-weight: bold;
}
main.item .item-top .item-right .multi-pricing {
  padding-top: 20px;
}
main.item .item-top .item-right .multi-pricing .heading {
  padding-bottom: 5px;
}
main.item .item-top .item-right .multi-pricing .heading .col {
  font-weight: normal;
}
main.item .item-top .item-right .multi-pricing .pricing-data {
  border: 1px solid #909497;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table {
  width: 100%;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr:nth-child(even) {
  background-color: #dbe0e6;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr td {
  padding: 10px 0;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr td.label {
  border-bottom: 1px solid #909497;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr td:not(.label):first-child {
  font-weight: bold;
  border-left: 1px solid #909497;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr td:not(.label):last-child {
  border-right: 1px solid #909497;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr td:first-child {
  width: 45%;
  text-align: right;
  padding-right: 10%;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr td:last-child {
  width: 55%;
}
main.item .item-top .item-right .multi-pricing #qty-pricing table tr:last-child td {
  border-bottom: 1px solid #909497;
}
main.item .item-top .item-right .side-blocks {
  padding-top: 30px;
}

main.item .item-top .item-right .side-blocks ul{
  padding:0 0 20px 20px;
}

main.item .item-top .item-right .side-blocks .block {
  width: 100%;
  margin-bottom: 20px;
}
main.item .item-top .item-right .side-blocks .block img {
  border: 1px solid #d9e0e4;
}
main.item .item-middle {
  margin-bottom: 40px;
}
main.item .item-middle .item-left ul.tid-nav {
  list-style-type: none;
  border-bottom: 1px solid #929395;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
main.item .item-middle .item-left ul.tid-nav li {
  float: left;
  padding-left: 50px;
}
main.item .item-middle .item-left ul.tid-nav li a {
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  color: #858a8e;
}
main.item .item-middle .item-left ul.tid-nav li a:hover {
  color: #0171bb;
}
main.item .item-middle .item-left ul.tid-nav li:first-child {
  padding-left: 0;
}
main.item .item-middle .item-left ul.tid-nav li:first-child a {
  color: #0171bb;
}
main.item .item-middle .item-right .bright-buys {
  border: 1px solid #b3b3b3;
}
main.item .item-middle .item-right .bright-buys .heading {
  color: #ffffff;
  background-color: #b3b3b3;
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  padding: 5px 0;
}
main.item .item-middle .item-right .bright-buys ul.items {
  list-style-type: none;
}
main.item .item-middle .item-right .bright-buys ul.items li {
  padding: 10px 20px 0 20px;
}
main.item .item-middle .item-right .bright-buys ul.items li:last-child .item-box {
  border-bottom: 0;
}
main.item .item-middle .item-right .bright-buys ul.items li .item-box {
  border-bottom: 1px solid #b3b3b3;
}
main.item .item-bottom {
  padding-bottom: 20px;
}
main.item .add-to-cart {
  width: 100%;
  height: 50px;
  position: relative;
}

main.item #persistent-cart .options .add-to-cart {
  width: 49%;
  height: 30px;
  display: inline-block;
  vertical-align: bottom;
}

main.item .add-to-cart input.qty-input {
  float: left;
  width: 20%;
  height: 100%;
  border: 2px solid #de0016;
  color: #000000;
  font-size: 20px;
  text-align: center;
}
main.item .add-to-cart input.add-to-cart-btn,
main.item #persistent-cart .add-to-cart .add-to-cart-btn {
  float: left;
  background-color: #de0016;
  border: 0;
  width: 80%;
  height: 100%;
  color: #ffffff;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#persistent-top{
    display: block !important;
    width: 100% !important;
    font-size: 18px !important;
    line-height: 50px !important;
    text-align: center !important;
    text-decoration: none !important;
}

main.item #persistent-cart .options .add-to-cart .add-to-cart-btn{
  font-size:20px;
}

main.item .add-to-cart input.add-to-cart-btn:hover {
  opacity: 0.9;
}
main.item h1.item-name {
  color: #0171bb;
  font-size: 22px;
  line-height: 22px;
  padding-bottom: 10px;
}
main.item #persistent-cart {
  width: 100%;
  max-height: 175px;
  background-color: #ffffff;
  position: fixed;
  top: -185px;
  left: 0;
  z-index: 5;
  overflow: hidden;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  box-shadow: 2px 2px 2px #888;
  -webkit-box-shadow: 2px 2px 2px #888;
  -moz-box-shadow: 2px 2px 2px #888;
  -ms-box-shadow: 2px 2px 2px #888;
  -o-box-shadow: 2px 2px 2px #888;
}
main.item #persistent-cart.show {
  top: 0;
}
main.item #persistent-cart h1.item-name {
  padding-top: 10px;
}
main.item #persistent-cart .pc-left {
  float: left;
  width: 925px;
}
main.item #persistent-cart .pc-right {
  width: 250px;
  float: right;
  padding-top: 13px;
}

main.item #persistent-cart .pc-left.options {
  width: 755px;
}
main.item #persistent-cart .pc-right.options {
  width: 455px;
  text-align: justify;
}
main.item #persistent-cart .pc-bottom {
  clear: both;
  background-color: #0171bb;
  color: #ffffff;
  padding: 5px 0;
}
main.item #persistent-cart ul.sections {
  list-style-type: none;
}
main.item #persistent-cart ul.sections li {
  float: left;
  padding-left: 10px;
  border-left: 1px solid #ffffff;
  margin-left: 10px;
}
main.item #persistent-cart ul.sections li:first-child {
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
}
main.item #persistent-cart ul.sections li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
main.item #persistent-cart ul.sections li a:hover {
  text-decoration: underline;
}
main.item #persistent-cart ul.pc-details {
  list-style-type: none;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 13px;
}
main.item #persistent-cart ul.pc-details li {
  float: left;
}
main.item #persistent-cart ul.pc-details li:nth-child(1) {
  color: #de0016;
  font-weight: bold;
}
main.item #persistent-cart ul.pc-details li:nth-child(2) {
  color: #000000;
  padding-left: 10px;
}
main.item #persistent-cart ul.pc-details li:nth-child(2) span {
  text-transform: uppercase;
  font-weight: bold;
}
main.item #persistent-cart ul.pc-details li:nth-child(3) {
  color: #13b25e;
  font-weight: bold;
  padding-left: 10px;
  border-left: 1px solid #000000;
  margin-left: 10px;
}
main.item #persistent-cart ul.pc-details li.out-of-stock{
  color:#000;
}

main.item .discontinued{
  border:solid 1px #000;
  color:#000;
  text-align: center;
  width:100%;
  padding:5px 10px;
  text-transform: uppercase;
}

main.item .discontinued-click{
  color:#de0016;
  font-size: 13px;
  text-align: center;
}

main.item .item-data {
  font-size: 15px;
}
main.item .item-data .row {
  background-color: #ffffff;
  padding: 10px 0;
}
main.item .item-data .row:nth-child(even) {
  background-color: #dbe0e6;
}
main.item .item-data .col {
  font-weight: bold;
}
main.item .item-data .col:first-child {
  float: left;
  width: 30%;
  text-align: right;
}
main.item .item-data .col:last-child {
  float: left;
  width: 70%;
  padding-left: 15%;
}
main.item .item-data .col span {
  font-weight: normal;
}
main.item .toggled-container .heading {
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  color: #0171bb;
  padding-bottom: 10px;
}
main.item .toggled-container .toggled-content {
  padding-bottom: 30px;
  font-size: 15px;
}
main.item .toggled-container .toggled-content ul {
  font-size: 15px;
  padding-left: 20px;
}
main.item .toggled-container#tid-description .heading {
  display: none;
}
main.item .toggled-container#tid-specs .item-data {
  border: 1px solid #353535;
}
main.item .toggled-container#tid-specs .item-data .col:first-child {
  width: 20%;
}
main.item .toggled-container#tid-specs .item-data .col:last-child {
  width: 80%;
  padding-left: 5%;
  font-weight: normal;
}
main.item .toggled-container#tid-specs table.specTable {
  width: 100%;
  border: 1px solid #353535;
  border-spacing: 0;
  font-size: 15px;
}
main.item .toggled-container#tid-specs table.specTable tr:nth-child(even) {
  background-color: #dbe0e6;
}
main.item .toggled-container#tid-specs table.specTable tr td {
  padding: 10px 0;
}
main.item .toggled-container#tid-specs table.specTable tr td.bHead {
  width: 30%;
  padding-left: 2%;
  padding-right: 5%;
  font-weight: bold;
  text-align: right;
}
main.item .toggled-container#tid-specs table.specTable tr th.bHead {
  text-align: left;
  padding: 10px 0;
}
main.item .toggled-container#item-upsell-1 .owl-item.active:after, 
main.item .toggled-container#item-upsell-5 .owl-item.active:after {
  height: 390px;
}
main.item .toggled-container#item-upsell-1 .item-box, 
main.item .toggled-container#item-upsell-5 .item-box {
  height: 390px;
}
main.item .toggled-container .item-box .add-to-cart {
  height: 30px;
  margin-top: 10px;
}
main.item .toggled-container .item-box .add-to-cart input.qty-input {
  font-size: 16px;
}
main.item .toggled-container .item-box .add-to-cart input.add-to-cart-btn {
  font-size: 16px;
}
main.item .toggled-container .item-box .add-to-cart a.generic-btn {
  display: block;
  background-color: #DE0016;
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-size: 16px;
  line-height: 30px;
  cursor: pointer;
  text-decoration: none;
}

/**
---------------------------------------------------------------
 * 4.0 - Footer
---------------------------------------------------------------
**/
footer .footer-top {
  height: 70px;
  background-color: #012f6d;
}
footer .footer-top .newsletter-signup {
  /*float: left;
  padding-top: 14px; */
  width: 723px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-top: 5px;
}
footer .footer-top .newsletter-signup .heading-one {
  float: left;
  background: url(ysw-footer-newsletter-graphic-1.png) no-repeat;
  content: '';
  width: 129px;
  height: 33px;
  margin-right: 20px;
  margin-top: 5px;
}
.cycheading-one-a{
   font-family: "Open Sans", sans-serif;
   font-size: 12px;
   color: #FFFFFF;	
   text-align:right;
}
.cycheading-one-b{
  font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #FFFFFF;
	font-weight:bold;
	text-align:right;
}
.cycheading-one-c{
  font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #FFFFFF;
	font-weight:bold;
	text-align:right;	
}

footer .footer-top .newsletter-signup .heading-two {
  background: url(ysw-footer-newsletter-graphic-2.png) no-repeat;
  content: '';
  width: 118px;
  height: 47px;
  margin-left: 25px;
  margin-top: 4px;
}
footer .footer-top .newsletter-signup .inner-container {
  width: 430px;
  position: relative;
  margin-left: 25px;
  margin-top:9px;
}
footer .footer-top .newsletter-signup input.footer-newsletter-input {
  width: 100%;
  height: 42px;
  padding: 0 150px 0 10px;
  border: 0;
}
footer .footer-top .newsletter-signup input.footer-newsletter-btn {
  width: 137px;
  height: 42px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.cycsignupbtn {
  width: 137px;
  height: 42px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  color: #fff;
    background: #F45D10;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	    border: 0px;
}
footer .footer-top .newsletter-signup input.footer-newsletter-btn:hover {
  opacity: 0.9;
}
footer .footer-top .social-icons {
  text-align: right;
  float: right;
  padding-top: 8px;
}
footer .footer-top .social-icons a {
  display: inline-block;
  margin: 0 20px;
}
footer .footer-top .social-icons a:hover {
  opacity: 0.7;
}
footer .footer-top .social-icons a:first-child {
  margin-left: 0;
}
footer .footer-top .social-icons a:last-child {
  margin-right: 0;
}
footer .footer-mid {
  background-color: #0171bb;
  padding: 40px 0;
}
footer .footer-mid .col {
  float: left;
}
footer .footer-mid .col.one {
  width: 22%;
}
footer .footer-mid .col.two {
  width: 23%;
}
footer .footer-mid .col.three {
  width: 25%;
}
footer .footer-mid .col.three .heading {
  text-align: center;
}
footer .footer-mid .col.three .wholesale-graphic {
  padding-top: 20px;
  text-align: center;
}
.cycfooterwhlscont{
  width:220px;
  margin-left:auto;
  margin-right:auto; 	
}
.cycfooterwhls-text{
    width: 100px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #FFFFFF;	
	float: left;
}
.cycfooterwhls-icon{
    margin-left: 10px;
    float: left;
    margin-top: 6px;
}
.cycfatruck{
   font-size: 1.5em !important;
   color: #FFFFFF;	
}
.cycfooterwhlslinkcont{
  text-align:center;
  margin-top: 20px;	
}

.cycfooterwhlslink{
    font: normal 11px "Open Sans";
    text-decoration: none;
    background-color: #0971BA;
    color: #FFFFFF;
    padding: 2px 6px 2px 6px;
    border: 1px solid #CCCCCC;
    font-size: 0.9em;
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.cycfooterwhlslink:hover{
  background-color: #012f6d;
  color: #FFFFFF;
}
.cyccontactphone-container{
  display: flex;	
}
.cycphoneicon{
	margin-left: 50px;
}
.cycphonetext{
  font: normal 12px "Open Sans";
  color: #FFFFFF;
  margin-left: 4px;	
  margin-top: 3px;
}
.cycphonenumber{
  margin-top: 0px;
  margin-left: 4px;	
}
.cycphonenumber A{
   font: bold 12px "Open Sans";
   color: #FFFFFF;
   text-decoration:none;
}
.cycfa-phone{
  font-size:14px !important;
  color:#FFFFFF;
}
.cycsocial{
  display:flex;
  margin-left:50px;	
}
.cycsocial DIV{
  margin-right:10px;	
}
.cycfa-facebook-f{
  font-size:31px !important;
  color:#FFFFFF;	
}
.cycfa-instagram{
  font-size:31px !important;
  color:#FFFFFF;	
}
.cycfa-twitter{
  font-size:31px !important;
  color:#FFFFFF;	
}
.cycfa-youtube{
  font-size:31px !important;
  color:#FFFFFF;	
}
footer .footer-mid .col.four {
  width: 30%;
  text-align: center;
}
footer .footer-mid .col.four .heading {
  text-align: left;
  padding-left:50px;
}
footer .footer-mid .col.four .reseller-ratings-scroller {
  display: inline-block;
  text-align: left;
  padding-top: 10px;
}
footer .footer-mid .col .heading {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 7px;
}
footer .footer-mid .col ul.footer-links {
  list-style-type: none;
}
footer .footer-mid .col ul.footer-links li {
  font-size: 17px;
  padding-bottom: 5px;
}
footer .footer-mid .col ul.footer-links li a {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-mid .col ul.footer-links li a:hover {
  text-decoration: underline;
}
footer .footer-mid ul.mobile-links {
  display: none;
}
footer .footer-bottom {
  background-color: #ffffff;
  padding: 30px 0;
}
footer .footer-bottom ul.badges {
  list-style-type: none;
  text-align: center;
  padding-bottom: 20px;
}
footer .footer-bottom ul.badges li {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
footer .footer-bottom .copyright {
  text-align: center;
  font-size: 15px;
  color: #2c2c2c;
}

/**

---------------------------------------------------------------
 * 5.0 - Media Queries
 *
 * 1250 pixels
---------------------------------------------------------------
**/
@media screen and (max-width: 1250px) {
  /**
  ---------------------------------------------------------------
   * Global
  ---------------------------------------------------------------
  **/
  .content-container {
    max-width: 980px;
  }

  /**
  ---------------------------------------------------------------
   * Header
  ---------------------------------------------------------------
  **/
  header .mid-header .col2 {
    width: 405px;
    margin-top: 30px;
  }
  header .header-search {
    height: 37px;
  }
  header .header-search input.search-btn {
    width: 130px;
    height: 35px;
  }
  header .header-search input.search-input {
    height: 35px;
  }
  header nav ul.main-nav > li {
    margin: 0 5px;
  }

  header nav ul.main-nav > li .mega-menu .view-more a:first-child, header nav ul.main-nav > li .mega-menu .view-more a:last-child {
    float: none;
  }


  header nav ul.main-nav > li .mega-menu.four-col-image {
    width:100%;
  }

  header nav ul.main-nav > li .mega-menu.four-col-image .mm-left {
    width:560px;
  }


  header nav ul.main-nav > li .mega-menu.five-col-image .mm-left {
    width: 672px;
  }

  header nav ul.main-nav > li .mega-menu.five-col-image .mm-right {
    width: 300px;
  }

  header nav ul.main-nav > li .mega-menu.three-col-image {
    width:100%;
  }

  header nav ul.main-nav > li .mega-menu.three-col-image .mm-right {
    width:400px;
  }


  header nav ul.main-nav > li.show .mega-menu {
    display: block;
  }
  header nav ul.main-nav > li.show > a {
    background-color: #0171bb;
    color: #ffffff;
  }
  header nav ul.main-nav > li.show > a:after {
    color: #ffffff;
  }



  /**
  ---------------------------------------------------------------
   * Footer
  ---------------------------------------------------------------
  **/
  footer .footer-top .newsletter-signup .inner-container {
    width: 350px;
  }
  footer .footer-top .newsletter-signup{
	  width: 650px;
  }
  footer .footer-top .social-icons a {
    margin: 0 5px;
  }
  footer .footer-mid .col .heading {
    font-size: 18px;
  }
  
  .cycfooterwhlscont{
	width:180px;  
  }
  .cycfooterwhlslink{
	 font-size: 0.6em;
     padding-left: 14px;
     padding-right: 14px;
  }
  
  main {
    /**
    ---------------------------------------------------------------
     * Section
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Home
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Item
    ---------------------------------------------------------------
    **/
  }
  main.section .section-right {
    width: 720px;
  }
  main.section .section-right ul.section-items li {
    width: 33%;
  }
  main.section .section-right .pagination-bar {
    padding-left: 0;
    padding-right: 0;
  }
  main.section .section-right .pagination-bar .item-range {
    padding-left: 10px;
  }
  main.section .section-right .pagination-bar .pb-right span {
    padding: 0 5px;
  }
  main.section ul.sl1-categories li {
    width: 230px;
  }
  main.home #home-slideshow-1 .slide {
    height: 637px;
  }
  main.home #home-slideshow-2 .slide {
    height: 319px;
  }
  main.home #home-slideshow-3 .slide {
    height: 318px;
  }
  main.home .home-block.one {
    height: 637px;
  }
  main.home .home-block.two, main.home .home-block.eight {
    height: 319px;
  }
  main.home .home-block.three {
    width: 716px;
    height: 318px;
  }
  main.home .home-block.four, main.home .home-block.five {
    width: 254px;
    height: 155px;
  }
  main.home .home-block.six, main.home .home-block.seven {
    width: 485px;
    height: 239px;
  }
  main.home .home-block.nine {
    width: 653px;
    height: 637px;
  }
  main.home .home-block.ten, main.home .home-block.eleven, main.home .home-block.twelve {
    width: 318px;
    height: 205px;
  }
  main.home .home-bottom .hb-left {
    width: 390px;
  }
  main.home .home-bottom .hb-right {
    width: 545px;
  }
  main.item .item-top .item-left {
    width: 645px;
  }
  main.item .item-top .item-right {
    /*width: 300px;*/
  }
  main.item .item-top .item-left .image-area-container {
    margin-left:0;
  }
  main.item .item-left {
    width: 645px;
  }
  main.item .item-top .item-left .main-item-image-wrapper {
    height: 432px;
  }
  main.item .item-top .item-left .main-item-image-wrapper .image {
    height: 430px;
  }
  main.item .item-middle .item-left ul.tid-nav li {
    padding-left: 40px;
  }
  main.item .item-middle .item-left ul.tid-nav li a {
    font-size: 22px;
    line-height: 22px;
  }
  main.item .toggled-container .heading {
    font-size: 22px;
    line-height: 22px;
  }
  main.item .toggled-container#tid-specs .item-data .col:first-child {
    width: 30%;
  }
  main.item .toggled-container#tid-specs .item-data .col:last-child {
    width: 70%;
  }
  main.item .toggled-container#tid-specs table.specTable tr td.bHead {
    width: 40%;
  }
  main.item #persistent-cart .pc-left {
    width: 650px;
  }
  main.item #persistent-cart .pc-left.options {
    width: 600px;
  }
  main.item #persistent-cart .pc-right.options {
    width: 360px;
  }
  main.item #persistent-cart h1.item-name {
    font-size: 20px;
    line-height: 20px;
  }
}
/**
---------------------------------------------------------------
 * 1000 pixels
---------------------------------------------------------------
**/
@media screen and (max-width: 1000px) {
  /**
  ---------------------------------------------------------------
   * Global
  ---------------------------------------------------------------
  **/
  .content-container {
    max-width: 768px;
  }

  .ysw-mobile-filtering #mobile-menu-overlay {
    display: block;
    background: rgba(0, 0, 0, 0.6);
    z-index: 4;
  }
  .ysw-mobile-filtering main.section .section-left {
    left: 0;
  }

  .owl-carousel .owl-buttons {
    display: block;
  }
  .owl-carousel .owl-pagination .owl-page {
    margin: 0 5px;
  }
  .owl-carousel.hide-arrows-override .owl-buttons {
    display: none;
  }

  .owl-buttons {
    display: block;
  }
  .owl-buttons .owl-prev,
  .owl-buttons .owl-next {
    font-size: 50px;
    line-height: 50px;
  }

  #ysw-back-to-top-btn {
    display: none;
  }

  /**
  ---------------------------------------------------------------
   * Header
  ---------------------------------------------------------------
  **/
  header #floating-cart {
    top: 65px;
  }
  header .utility-bar ul.utility-links > li {
    font-size: 11px;
  }
  header .utility-bar ul.utility-links > li > a {
    padding: 0 6px;
  }
  header .mid-header .col1 {
    width: 200px;
  }
  header .mid-header .col2 {
    width: 400px;
    margin: 22px 0 0 40px;
  }
  .cyc-checkout{
	display:none;  
  }
  header .mid-header .col3 {
    margin-top: 20px;
  }
  header .header-search {
    height: 31px;
  }
  header .header-search input.search-btn {
    width: 105px;
    height: 29px;
  }
  header .header-search input.search-input {
    height: 29px;
    padding-right: 115px;
  }
  header nav ul.main-nav > li {
    margin: 0;
  }
  header nav ul.main-nav > li > a {
    font-size: 16px;
  }
  header nav ul.main-nav > li > a:after {
    font-size: 12px;
    line-height: 12px;
  }


  header nav ul.main-nav > li .mega-menu.four-col-image .mm-left {
    width:100%;
  }

  header nav ul.main-nav > li .mega-menu.four-col-image .mm-right {
    display:none;
  }

  header nav ul.main-nav > li .mega-menu.five-col-image .mm-left {
    float:none;
    width:100%;
  }

  header nav ul.main-nav > li .mega-menu.five-col-image .mm-right {
    display: none;
  }

  header nav ul.main-nav > li .mega-menu.three-col-image .mm-left {
    width:500px;
  }

  header nav ul.main-nav > li .mega-menu.three-col-image .mm-right {
    width:260px;
  }

  header nav ul.main-nav > li .mega-menu.two-col-image {
    width:100%;
  }

  header nav ul.main-nav > li .mega-menu.two-col-image .mm-left {
      width:350px;
  }

  footer .footer-mid .col.four .heading {
  text-align: left;
  padding-left:30px;
  }
  .cycsocial{
    display:flex;
    margin-left:30px;	
  }
  /**
  ---------------------------------------------------------------
   * Footer
  ---------------------------------------------------------------
  **/
  footer .footer-top {
    height: 45px;
  }
  footer .footer-top .newsletter-signup {
    padding-top: 7px;
	 width: 530px;
  }
   .cycsignupbtn{
	width: 107px;
    height: 30px;
	font-size: 14px; 
  }
  .cycheading-one-a{
	line-height: 11px; 
	
  }
  
  .cycheading-one-b{
	display:inline;  
  }
  .cycheading-one-c{
	display:inline;  
  }

  footer .footer-top .newsletter-signup .inner-container {
    width: 255px;
	margin-left: 10px;
	margin-top:0px;
  }
  footer .footer-top .newsletter-signup .heading-one {
    width: 98px;
    height: 25px;
    margin-top: 2px;
    background-size: 100%;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
  }
  footer .footer-top .newsletter-signup input.footer-newsletter-input {
    height: 30px;
    padding-right: 110px;
  }
  footer .footer-top .newsletter-signup input.footer-newsletter-btn {
    width: 98px;
    height: 30px;
    background-size: 100%;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
  }
  footer .footer-top .newsletter-signup .heading-two {
    width: 63px;
    height: 25px;
    margin-top: 3px;
    background-size: 100%;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
	margin-left:10px;
  }
  footer .footer-top .social-icons {
    padding-top: 0;
  }
  footer .footer-top .social-icons a {
    width: 40px;
  }
  footer .footer-mid .col .heading {
    font-size: 14px;
  }
  footer .footer-mid .col ul.footer-links li {
    font-size: 14px;
    padding-right: 5px;
  }

  .cycfooterwhlscont{
	width: 140px;
  }
  .cycfooterwhlslink{
	font-size: 0.5em;
    padding-left: 8px;
    padding-right: 8px;
  }
  .cycphoneicon {
    margin-left: 30px;
	display: inline;
  }
  .cycphonetext{
	 display: inline 
  }
  .cyccontactphone-container{
	display:block; 
	text-align: left; 
  }
  .cycphonenumber{
	 margin-left: 50px; 
  }
  
  main {
    /**
    ---------------------------------------------------------------
     * Section
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Home
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Item
    ---------------------------------------------------------------
    **/
  }
  main.section.level2 > .content-container {
    position: static;
  }
  main.section .section-left {
    position: absolute;
    left: -300px;
    top: 0;
    background-color: #FFF;
    z-index: 5;
    width: 265px;
    padding: 10px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
  }
  main.section .section-left a.back-btn {
    display: block;
    font-size: 16px;
    font-style: italic;
    text-align: right;
    padding: 20px 0 15px 0;
    text-decoration: none;
    cursor: pointer;
    color: #383838;
  }
  main.section .section-left a.back-btn span.fa {
    padding-left: 5px;
  }
  main.section .section-right {
    width: 100%;
    padding-top: 0;
  }
  main.section .section-right .filter-btn-mobile {
    display: block;
    padding-bottom: 20px;
    padding-top: 5px;
  }
  main.section ul.sl1-categories li {
    width: 242px;
  }
  main.home #home-slideshow-1 .slide {
    height: 499px;
  }
  main.home #home-slideshow-2 .slide {
    height: 250px;
  }
  main.home #home-slideshow-3 .slide {
    height: 249px;
  }
  main.home .home-block.one {
    height: 499px;
  }
  main.home .home-block.two, main.home .home-block.eight {
    height: 250px;
  }
  main.home .home-block.three {
    width: 560px;
    height: 249px;
  }
  main.home .home-block.four, main.home .home-block.five {
    width: 197px;
    height: 120px;
  }
  main.home .home-block.six, main.home .home-block.seven {
    width: 379px;
    height: 186px;
  }
  main.home .home-block.nine {
    float: none;
    width: 100%;
    height: 749px;
  }
  main.home .home-block.ten, main.home .home-block.eleven, main.home .home-block.twelve {
    float: left;
    width: 249px;
    height: 162px;
    margin: 10px 5px 0 5px;
  }
  main.home .home-block.ten {
    margin-left: 0;
  }
  main.home .home-block.twelve {
    margin-right: 0;
  }
  main.home .home-bottom .hb-left {
    width: 300px;
  }
  main.home .home-bottom .hb-right {
    width: 425px;
  }
  main.home .home-bottom .hb-right h1 {
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 15px;
  }
  main.home .home-bottom .hb-right p {
    font-size: 14px;
    padding-bottom: 15px;
  }
  main.home .home-bottom .home-email-signup .heading {
    background-size: 50%;
    -webkit-background-size: 50%;
    -moz-background-size: 50%;
    -o-background-size: 50%;
    padding-bottom: 60px;
  }
  main.home .home-bottom .home-email-signup .heading .cta {
    font-size: 20px;
    line-height: 20px;
  }
  main.home .home-bottom .home-email-signup .heading .cta-2 {
    font-size: 14px;
    line-height: 14px;
  }
  main.home .home-bottom .home-email-signup input.email-txt {
    height: 32px;
    font-size: 14px;
  }
  main.item .item-top .item-left {
    float: none;
    width: 100%;
  }
  main.item .item-top .item-right {
    float: none;
    width: 100%;
  }
  main.item .item-left {
    float: none;
    width: 100%;
  }
  main.item .item-right {
    float: none;
    width: 100%;
  }
  main.item .item-top .item-left .main-item-image-wrapper {
    height: 514px;
  }
  main.item .item-top .item-left .main-item-image-wrapper .image {
    height: 512px;
  }
  main.item .item-top .item-right .item-details {
    float: none;
    width: 350px;
    padding-top: 20px;
    margin:0 auto;
  }
  main.item .item-top .item-right .side-blocks {
    float: left;
    width: 340px;
    padding-top: 20px;
  }
  main.item .item-top .item-right .side-blocks .block {
    /*height: 204px;*/
  }
  main.item .item-middle .item-right .bright-buys {
    display: none;
  }
  main.item .toggled-content .item-box .add-to-cart input.qty-input {
    font-size: 14px;
  }
  main.item .toggled-content .item-box .add-to-cart input.add-to-cart-btn {
    font-size: 14px;
  }
  main.item .toggled-content .item-box .add-to-cart a.generic-btn {
    font-size: 14px;
  }
  main.item #persistent-cart,
  main.item #persistent-cart.show {
    display: none;
  }
}
/**
---------------------------------------------------------------
 * 788 pixels
---------------------------------------------------------------
**/
@media screen and (max-width: 788px) {
  /**
  ---------------------------------------------------------------
   * Global
  ---------------------------------------------------------------
  **/
  .cyc-bullet-container{
	display:none;  
  }
  .content-container {
    max-width: 550px;
  }
    
    .item-box h2.name{
        height:75px;
    }
	
	footer .footer-top .newsletter-signup{
		display:block;
	}
    .cycsignupbtn{
	  height:42px;	
	}
	.cycheading-one-a{
	      line-height: 20px;
		  text-align:left;	
	}
	.cycheading-one-b{
	  display:none;	
	}
	.cycheading-one-c{
	  display:none;	
	}
	.cycheading-one{
	  width:90%;
	  margin: 0 auto;	
	}
    main.item .toggled-container#item-upsell-1 .item-box, main.item .toggled-container#item-upsell-5 .item-box{
        height:405px;
    }

  /**
  ---------------------------------------------------------------
   * Header
  ---------------------------------------------------------------
  **/
  header nav {
    display: none;
  }
  header .utility-bar {
    display: none;
  }
  header .sitewide-promo {
    /*display: none;*/
  }
  header .mid-header {
    padding: 10px 0;
  }
  header .mid-header .col1 {
    width: auto;
  }
  header .mid-header .col2 {
    display: none;
  }
  header .mid-header .col3 {
    margin-top: 0;
  }
  header .mid-header .mobile-header-menu-btn {
    display: block;
    float: left;
    width: 40px;
    height: 35px;
    line-height: 35px;
    background-color: #0171bb;
    font-size: 22px;
    text-align: center;
    color: #ffffff;
    margin: 12px 60px 0 0;
    cursor: pointer;
  }
  header .mid-header .mobile-header-search-icon {
    display: block;
    float: left;
    color: #0171bb;
    height: 35px;
    line-height: 35px;
    font-size: 30px;
    margin: 12px 60px 0 0;
    cursor: pointer;
  }
  header .mid-header .logo {
    float: left;
    width: 160px;
    height: 59px;
    margin-right: 60px;
  }
  header .mid-header .mobile-header-my-account-icon {
    display: block;
    float: left;
    color: #0171bb;
    height: 35px;
    line-height: 35px;
    font-size: 30px;
    margin: 12px 0 0 0;
  }
  header .mid-header .mobile-header-search {
    clear: both;
    padding-top: 10px;
  }
  header .mid-header .mobile-header-search.show {
    display: block;
  }
  header .mid-header .mobile-header-search .outer-container {
    background-color: #0171bb;
    padding: 15px;
  }
  header .floating-cart {
    margin: 12px 0 0 0;
  }
  header .floating-cart .count {
    display: none !important;
  }
  header .floating-cart .fa-angle-down {
    display: none;
  }

  /**
  ---------------------------------------------------------------
   * Mobile Menu
  ---------------------------------------------------------------
  **/
  .nav-active #mobile-menu {
    left: 0;
  }
  .nav-active #mobile-menu-overlay {
    display: block;
  }

  #mobile-menu {
    display: block;
    padding: 15px 20px 0 0;
    width: 265px;
    position: absolute;
    left: -345px;
    top: 0;
    background-color: #2c2c2c;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    z-index: 4;
  }
  #mobile-menu .back-to-shopping {
    color: #FFF;
    font-size: 12px;
    font-style: italic;
    text-align:right;
    margin-bottom: 10px;
    cursor: pointer;
  }
  #mobile-menu .back-to-shopping .arrows {
    display: inline-block;
    padding: 0px 10px;
    background-color: #0171BB;
    border-radius: 5px;
    margin-left: 10px;
  }
  #mobile-menu ul.menu-level-1 {
    list-style-type: none;
  }
  #mobile-menu ul.menu-level-1 > li > a {
    display: block;
    background-color: #0171bb;
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #FFF;
    overflow: hidden;
  }
  #mobile-menu ul.menu-level-1 > li > a:before {
    display: block;
    content: '\f105';
    font-family: FontAwesome;
    float: right;
    padding-left: 10px;
  }
  #mobile-menu ul.menu-level-1 > li.show > a:before {
    content: '\f107';
  }
  #mobile-menu ul.menu-level-1 > li .menu-level-2-container {
    display: none;
  }
  #mobile-menu ul.menu-level-1 > li ul.menu-level-2 {
    list-style-type: none;
    padding: 15px 40px 40px 15px;
  }
  #mobile-menu ul.menu-level-1 > li ul.menu-level-2 li a {
    display: block;
    color: #d9e0e4;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-family: "Open Sans Condensed", sans-serif;
    padding: 15px 10px 15px 10px;
    border-bottom: 1px solid #8f969b;
  }
  #mobile-menu ul.info-links {
    list-style-type: none;
    color: #ffffff;
    padding: 40px 20px 0 20px;
  }
  #mobile-menu ul.info-links li {
    padding-bottom: 40px;
  }
  #mobile-menu ul.info-links li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    padding-left: 32px;
  }
  #mobile-menu ul.info-links li a:before {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-family: FontAwesome;
    font-size: 25px;
  }
  #mobile-menu ul.info-links li span {
    display: block;
  }
  #mobile-menu ul.info-links li span.heading {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }
  #mobile-menu ul.info-links li span.sub-heading {
    font-size: 13px;
  }
  #mobile-menu ul.info-links li:nth-child(1) a:before {
    content: '\f095';
  }
  #mobile-menu ul.info-links li:nth-child(2) {
    /*a:before {
    	content:'\f075';
    }*/
  }
  #mobile-menu ul.info-links li:nth-child(2) a {
    padding-left: 0;
  }
  #mobile-menu ul.info-links li:nth-child(3) a:before {
    content: '\f007';
  }

  /**
  ---------------------------------------------------------------
   * Footer
  ---------------------------------------------------------------
  **/
  footer .footer-top {
    height: auto;
    padding: 10px 0 5px 0;
  }
  footer .footer-top .newsletter-signup {
    float: none;
    padding: 0 0 10px 0;
	width:100%;
  }
  footer .footer-top .newsletter-signup .heading-one {
    float: none;
    background: url(ysw-footer-newsletter-graphic-1-mobile.png) center no-repeat;
    width: 100%;
    height: 41px;
    margin: 0 0 10px 0;
  }
  footer .footer-top .newsletter-signup .inner-container {
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  footer .footer-top .newsletter-signup .heading-two {
    display: none;
  }
  footer .footer-top .newsletter-signup input.footer-newsletter-input {
    height: 42px;
    padding-right: 150px;
  }
  footer .footer-top .newsletter-signup input.footer-newsletter-btn {
    width: 137px;
    height: 42px;
  }
  footer .footer-top .social-icons {
    width: 100%;
    text-align: center;
  }
  footer .footer-top .social-icons a {
    width: auto;
  }
  footer .footer-mid {
    padding: 25px 0;
  }
  footer .footer-mid > .content-container > .col {
    display: none;
  }
  footer .footer-mid ul.mobile-links {
    list-style-type: none;
    display: block;
    width: 80%;
    margin: 0 auto;
    border: 1px solid #ffffff;
  }
  footer .footer-mid ul.mobile-links > li > a {
    display: block;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    padding: 15px 10px;
  }
  footer .footer-mid ul.mobile-links > li > a:before {
    display: block;
    content: '\f105';
    font-family: FontAwesome;
    float: right;
    padding-left: 10px;
  }
  footer .footer-mid ul.mobile-links > li:last-child > a {
    border-bottom: 0;
  }
  footer .footer-bottom .copyright {
    font-size: 12px;
  }

  main {
    /**
    ---------------------------------------------------------------
     * Section
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Home
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Item
    ---------------------------------------------------------------
    **/
  }
  main.section .section-right .pagination-bar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  main.section .section-right .pagination-bar .pb-left {
    padding-bottom: 15px;
  }
  main.section .section-right .pagination-bar .pb-right {
    float: left;
  }
  main.section .section-right ul.section-items li {
    width: 50%;
  }
  main.section ul.sl1-categories li {
    width: 265px;
  }
  main.home > .content-container {
    padding-bottom: 20px;
  }
  main.home #home-slideshow-1 .slide {
    height: 357px;
  }
  main.home #home-slideshow-2 .slide {
    height: 179px;
  }
  main.home #home-slideshow-3 .slide {
    height: 245px;
  }
  main.home .home-block.one {
    height: 357px;
  }
  main.home .home-block.two, main.home .home-block.eight {
    height: 179px;
  }
  main.home .home-block.three {
    width: 100%;
    height: 245px;
  }
  main.home .home-block.four, main.home .home-block.five {
    width: 270px;
    height: 165px;
    margin-top: 10px;
  }
  main.home .home-block.four {
    float: left;
  }
  main.home .home-block.six, main.home .home-block.seven {
    width: 550px;
    height: 270px;
  }
  main.home .home-block.seven {
    margin-top: 10px;
  }
  main.home .home-block.nine {
    height: 536px;
  }
  main.home .home-block.ten, main.home .home-block.eleven, main.home .home-block.twelve {
    float: none;
    width: 100%;
    max-width: 400px;
    height: 260px;
    margin: 10px auto 0 auto;
  }
  main.home .home-block.ten {
    margin-left: auto;
  }
  main.home .home-block.twelve {
    margin-right: auto;
  }
  main.home .home-bottom {
    display: none;
  }
  main.home .home-featured-items h2.heading {
    font-size: 24px;
  }
  main.item .item-top .item-left .main-item-image-wrapper {
    height: 369px;
  }
  main.item .item-top .item-left .main-item-image-wrapper .image {
    height: 367px;
  }
  main.item .item-top .item-left .item-zoom-cta {
    display: none;
  }
  main.item .item-top .item-left .item-thumbnails {
    display: none;
  }
  main.item .item-top ul.item-info {
    padding-bottom: 10px;
  }
  main.item .item-top ul.item-info li {
    float: none;
    padding-left: 0;
    display: none;
  }
  main.item .item-top ul.item-info li:nth-child(1), main.item .item-top ul.item-info li:nth-child(2) {
    display: block;
  }
  main.item .item-top .item-right .side-blocks {
    display: block;
  }
    
    main.item .item-top .item-right .side-blocks .block{
        display:none;
    }
    
    main.item .item-top .item-right .side-blocks .block:first-child{
        display:block;
    }
  main.item .item-top .item-right .item-details {
    width: 400px;
    float: left;
    padding-bottom: 20px;
  }
  main.item .main-item-promo {
    display: none;
  }
  main.item .main-item-promo.mobile {
    display: block;
  }

  #inv-oos {
    float:left;
  }

  #ouibounce-modal {
    display:none !important;
  }

}
/**
---------------------------------------------------------------
 * 570 pixels
---------------------------------------------------------------
**/
@media screen and (max-width: 570px) {
  /**
  ---------------------------------------------------------------
   * Global
  ---------------------------------------------------------------
  **/
  .content-container {
    max-width: 360px;
  }
  .cycsignupbtn {
    height: 35px;
  }
  h1.page-heading {
    font-size: 22px;
  }

  .item-box .reviews span {
    display: none;
  }

  .owl-carousel .owl-pagination {
    padding-top: 5px;
  }
  .owl-carousel .owl-pagination .owl-page {
    width: 10px;
    height: 10px;
  }

  .owl-buttons .owl-prev,
  .owl-buttons .owl-next {
    top: 40%;
    font-size: 36px;
    line-height: 36px;
  }

  /**
  ---------------------------------------------------------------
   * Header
  ---------------------------------------------------------------
  **/
  header .floating-cart .count{ 
    display: block !important;
    padding-right: 0px;
    font-size:12px;
  }
  header .floating-cart .count span{ 
   display:none;
  }
  header #floating-cart {
    width: 100%;
  }
  header .mid-header .mobile-header-menu-btn {
    margin-right: 20px;
  }
  header .mid-header .mobile-header-search-icon {
    margin-right: 20px;
  }
  header .mid-header .logo {
    width: 140px;
    height: 52px;
    margin-right: 10px;
  }

  header .sitewide-promo {
    height: auto;
    padding: 10px 0;
  }

  header .sitewide-promo span {
    line-height: normal;
    display: block;
  }

  /**
  ---------------------------------------------------------------
   * Footer
  ---------------------------------------------------------------
  **/
  footer .footer-top .newsletter-signup input.footer-newsletter-input {
    height: 35px;
    padding-right: 125px;
  }
  footer .footer-top .newsletter-signup input.footer-newsletter-btn {
    width: 114px;
    height: 35px;
  }
  footer .footer-mid ul.mobile-links > li > a {
    font-size: 16px;
  }

  main {
    /**
    ---------------------------------------------------------------
     * Section
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Home
    ---------------------------------------------------------------
    **/
    /**
    ---------------------------------------------------------------
     * Item
    ---------------------------------------------------------------
    **/
  }
  main.section .section-right .pagination-bar .item-range {
    clear: left;
    padding-left: 0;
    padding-top: 15px;
  }
  main.section ul.sl1-categories li {
    width: 48%;
    margin-right: 4%;
  }
  main.section ul.sl1-categories li h2 {
    font-size: 14px;
    line-height: 20px;
    height: 80px;
  }
  main.home #home-slideshow-1 .slide {
    height: 234px;
  }
  main.home #home-slideshow-2 .slide,
  main.home #home-slideshow-4 .slide {
    height: 117px;
  }
  main.home #home-slideshow-3 .slide {
    height: 160px;
  }
  main.home #home-slideshow-5 .slide {
    height: 351px;
  }
  main.home .home-block.one {
    height: 234px;
  }
  main.home .home-block.two, main.home .home-block.eight {
    height: 117px;
  }
  main.home .home-block.three {
    height: 160px;
  }
  main.home .home-block.four, main.home .home-block.five {
    width: 49%;
    height: 107px;
  }
  main.home .home-block.six, main.home .home-block.seven {
    width: 100%;
    height: 177px;
  }
  main.home .home-block.six {
    margin-top: 10px;
  }
  main.home .home-block.nine {
    height: 351px;
  }
  main.home .home-block.ten, main.home .home-block.eleven, main.home .home-block.twelve {
    height: 234px;
  }
  main.home .home-featured-items h2.heading {
    font-size: 18px;
  }
  main.item .item-top {
    margin-bottom: 20px;
  }
  main.item .item-top .item-left .main-item-image-wrapper {
    height: 242px;
  }
  main.item .item-top .item-left .main-item-image-wrapper .image {
    height: 240px;
  }
  main.item .item-top .item-right .item-details {
    width: 100%;
    padding-top: 10px;
  }
  main.item .item-middle {
    margin-bottom: 0;
  }
  main.item .item-middle ul.tid-nav {
    display: none;
  }
  main.item .toggled-container#tid-description .heading {
    display: block;
  }
  main.item .toggled-container#tid-specs .item-data .col:first-child {
    width: 40%;
  }
  main.item .toggled-container#tid-specs .item-data .col:last-child {
    width: 60%;
  }
  main.item .toggled-container#tid-specs table.specTable {
    font-size: 14px;
  }
  main.item .toggled-container .heading {
    text-align: center;
    border-bottom: 1px solid #d9e0e4;
    font-size: 20px;
    line-height: 20px;
    padding: 12px 0;
    cursor: pointer;
  }
  main.item .toggled-container .toggled-content {
    display: none;
    padding: 20px 0;
  }
  main.item #item-upsell-5.toggled-container .toggled-content {
    display:block;
  }
  main.item .toggled-container.show .toggled-content {
    display: block;
  }

  main.item #item-upsell-1.toggled-container .toggled-content {
    display:block;
  }
}
/**
---------------------------------------------------------------
 * 380 pixels
---------------------------------------------------------------
**/
@media screen and (max-width: 380px) {
  /**
  ---------------------------------------------------------------
   * Global
  ---------------------------------------------------------------
  **/
  header,
  nav,
  main,
  footer {
    min-width: 300px;
  }

  .content-container {
    min-width: 300px;
    /*padding-right: 10px;
    padding-left: 10px;*/
  }

  /**
  ---------------------------------------------------------------
   * Header
  ---------------------------------------------------------------
  **/
  header .mid-header .col1 {
    width: 79%;
  }
  header .mid-header .col3 {
    width: 21%;
  }
  header .mid-header .mobile-header-menu-btn {
    width: 15%;
    margin-right: 5%;
  }
  header .mid-header .mobile-header-search-icon {
    width: 10%;
    margin-right: 5%;
  }
  header .mid-header .logo {
    width: 45%;
    margin-right: 5%;
  }
  header .mid-header .mobile-header-my-account-icon {
    width: 10%;
    margin-right: 2%;
  }

  #mobile-menu {
    width: 230px;
    left: -310px;
  }

  main {
    /**
    ---------------------------------------------------------------
     * Home
    ---------------------------------------------------------------
    **/
  }
  main.home #home-slideshow-1 .slide img.single-image-rotator {
    height: 234px;
  }
  main.home #home-slideshow-2 .slide img.single-image-rotator,
  main.home #home-slideshow-4 .slide img.single-image-rotator {
    height: 117px;
  }
  main.home #home-slideshow-3 .slide img.single-image-rotator {
    height: 160px;
  }
  main.home #home-slideshow-5 .slide img.single-image-rotator {
    height: 351px;
  }
}
/**
---------------------------------------------------------------
 * Other Media Queries
---------------------------------------------------------------
**/
@media screen and (min-width: 1251px) {
  main.section .section-right ul.section-items li:nth-child(4n+4) {
    border-right: 0;
  }
  main.section .section-right ul.section-items li:nth-child(n+5) {
    border-top: 1px solid #b3b3b3;
  }
}
@media screen and (min-width: 789px) and (max-width: 1000px) {
  main.section ul.sl1-categories li:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media screen and (min-width: 789px) and (max-width: 1250px) {
  main.section .section-right ul.section-items li:nth-child(3n+3) {
    border-right: 0;
  }
  main.section .section-right ul.section-items li:nth-child(n+4) {
    border-top: 1px solid #b3b3b3;
  }
}
@media screen and (max-width: 788px) {
  main.section ul.sl1-categories li:nth-child(2n+2) {
    margin-right: 0;
  }

  main.section .section-right ul.section-items li:nth-child(2n+2) {
    border-right: 0;
  }
  main.section .section-right ul.section-items li:nth-child(n+3) {
    border-top: 1px solid #b3b3b3;
  }
}
@media screen and (min-width: 1001px) {
  main.section ul.sl1-categories li:nth-child(4n+4) {
    margin-right: 0;
  }

  header nav ul.main-nav > li.mm-hover .mega-menu {
    display: block;
  }
  header nav ul.main-nav > li.mm-hover > a {
    background-color: #0171bb;
    color: #ffffff;
  }
  header nav ul.main-nav > li.mm-hover > a:after {
    color: #ffffff;
  }
}

#ouibounce-modal {
  font-size:10px;
}

#ouibounce-modal p {
  padding-bottom:0;
}

div#ouibounce-modal * {
  box-sizing:content-box;
}

#ouibounce-modal .modal-shutoff {
  margin:0 !important;
}

/*
#ouibounce-modal .modal-body {
  padding: 0 20px 35px !important;
}

#ouibounce-modal .modal-body #row_20428 {
  padding-left:45px;
}

#ouibounce-modal .modal-body #column_26390 {
  width:399px !important;
}

#ouibounce-modal .modal-body #column_26391 {
  margin-top:0 !important;
}*/

/**
---------------------------------------------------------------
 * Centrifuge
---------------------------------------------------------------
**/

.clear-both {
	clear: both;
}

#inv-oos {
	font-size: 11px;
	margin-top: 25px;
	color: #2C2C2C;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}

#inv-oos #inv-text {
  padding-bottom:5px;
}

#inv-oos #inv-oos-input {
	position:relative;
}

#inv-oos #inv-oos-input-submit {
  position:relative;
}

#inv-oos #inv-email-address {
	width: 100%;
	height: 30px;
	border: 1px solid #91969A;
  padding: 0 5px;
}

#inv-oos #inv-oos-submit {
	position:absolute;
  right:0;
  top:0;
}

#inv-oos #inv-submit {
	border: 0;
  height:30px;
  text-transform:uppercase;
  padding:0 10px;
	color: #ffffff;
	background-color: #de0016;
  cursor:pointer;
}

#inv-oos #inv-msg {
	color: red;
}


#violator {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 5px 0 !important;
  background: #fff url("https://lib.store.yahoo.net/lib/theshorelinemarket/violator-bg.jpeg");
  background-repeat: no-repeat;
  background-position: top center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  text-align: center !important;
}
#violator .details {
  margin: auto !important;
  text-align: center !important;
  display: none;
}
#violator .details table {
  text-align: center !important;
  margin: auto !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 15px;
}
#violator .details table td {
  padding: 5px 10px;
}
#violator .handle a {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
#violator .handle img {
  display: inline-block;
  margin: 0 10px;
  padding: 0px !important;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}
.rotate {
  -webkit-transform: rotate(180deg) !important;
  -ms-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}
.handle {
  text-align: center;
  margin: 5px;
  padding: 0px !important;
}
.expand {
  height: 200px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}
@media (max-width: 600px) {
   #violator {
              display: none;
             }
}        

.conts-tag-area{
    border: solid 2px #EAEAEA;
    color: #94948D;
    padding: 2px 10px;
    width: 90%;
    display: inline-block;
    text-align: center;
    margin: 10px auto;
    font-size: 14px;
}

.item-box {
    height: 390px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cyc-section-itembox{
    height: 420px;
    position: relative;
    text-align: center;
    overflow: hidden;	
}

.item-box.fallback {
  height:160px;
}

.item-box.fallback .details {
      padding: 10px 15px 0;
}

@media screen and (max-width:789px){
    .item-box{
        height:410px;

    } 
	.cyc-section-itembox {
        height: 420px;
     }
    
    .conts-tag-area{
                font-size:12px;
        width:100%;
    }
	


}

main.item .item-top .item-left .item-thumbnails .item-images .item-thumb{
    margin-bottom:10px;
}


.low-price-text {
 color:#de0016;
 font-weight:bold;
}
.conts-tag-area{
 color:#000000;
 font-weight:bold;
 font-size:12px;
 border:solid 2px #EAEAEA;
 
}
/**
---------------------------------------------------------------
 * Practical Data Reviews
---------------------------------------------------------------
**/

.prItemRatingLinks br{
  display: none;
}

.prItemRatingLinks a {
  font-size: 14px !important;
  display: inline-block;
  font-weight: normal !important;
}

.prItemRatingLinks a:first-child{
  padding-right: 10px;
}

.prItemRatingLinks a b{
  font-weight: normal;
}

/* /theshorelinemarket/owl.carousel.min.css */

.owl-carousel .owl-wrapper:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel{display:none;position:relative;width:100%;-ms-touch-action:pan-y}.owl-carousel .owl-wrapper{display:none;position:relative;-webkit-transform:translate3d(0,0,0)}.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:transparent}.grabbing{cursor:url(grabbing.png) 8 8,move}.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)}


/* /theshorelinemarket/eci-hc-hp-anchor-links.min.css */

/**
header .mid-header{border-bottom:0}
**/
.eci-target-nav{border-top:5px solid #d9e0e4;position:relative}
.eci-target-nav:before{position:absolute;content:"";background:#fff;width:100%;height:3px}.eci-target-nav{background:#012f6d;display:block;visibility:visible}
.eci-target-nav .eci-nav-list{display:table;list-style:none;margin:0 auto;padding:0;text-align:center;width:100%}
.eci-target-nav .eci-nav-list li{display:table-cell;vertical-align:middle}
.eci-target-nav .eci-nav-list li a{color:#fff;display:block;font-size:21px;font-weight:700;padding:30px 22px;position:relative;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.eci-target-nav .eci-nav-list li:focus a,.eci-target-nav .eci-nav-list li:hover a{background:#d9e0e4;color:#012f6d}
.eci-target-nav .eci-nav-list li a:after{content:"";background:url(https://lib.store.yahoo.net/lib/theshorelinemarket/eci-spacer.jpg) center no-repeat;position:absolute;width:1px;height:62px;top:12px;left:inherit;right:-1px}
.eci-target-nav .eci-nav-list li:last-child a:after{display:none}
@media only screen and (min-width:1025px){
  #grad1.eci-grad1{background:#0171bb}
  #grad1.eci-grad1 a{text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
}
@media only screen and (max-width:1024px){
   .eci-target-nav{display:none;visibility:hidden}
}


/** theshorelinemarket/eci-hc-top-nav-drop-down.css **/

@media only screen and (min-width : 1200px) {

header nav ul.main-nav > li .mega-menu.two-col-image {
    width: 580px;
}
header nav ul.main-nav > li .mega-menu.two-col-image .mm-left {
    width: 100%;
}
header nav ul.main-nav > li .mega-menu .mm-right {
    display: inline-block;
    float: none;
    width: 100%;
}
header nav ul.main-nav > li .mega-menu.two-col-image .col {
    padding-right: 10px;
    width: 33%;
}
.mm-right .image img {
    width: 100%;
}
/*.buttoncontainer {*/
    /*display: none !important;*/
/*}*/
.eci-shop-all {
    background: none repeat scroll 0 0 #0171BB;
    color: #FFFFFF;
    float: right;
    font-weight: bold;
    padding: 10px 0 10px 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 250px;
    bottom: -42px;
}
.eci-shop-all > span {
    margin-left: 7px;
}
header nav ul.main-nav > li .mega-menu.four-col-image {
    width: 650px;
}
header nav ul.main-nav > li .mega-menu .image a:hover {
    opacity: 1;
}
.mega-menu.five-col-image {
    width: 838px !important;
}
header nav ul.main-nav > li .mega-menu.five-col-image .mm-left {
    width: 818px;
}
header nav ul.main-nav > li .mega-menu.three-col-image {
    width: 752px;
}
header nav ul.main-nav > li .mega-menu.three-col-image .mm-left {
    width: 744px;
}
header nav ul.main-nav > li .mega-menu.three-col-image .mm-left {
    width: 522px;
}
header nav ul.main-nav > li .mega-menu.three-col-image {
    left: 14%;
    width: 575px;
}
.mega-menu.three-col-image.eci-gear {
    left: 32% !important;
    width: 530px !important;
}
header nav ul.main-nav > li .mega-menu .mm-left {
    float: left;
    padding: 0 20px;
}
/* Added */

header nav ul.main-nav > li .mega-menu.two-col-image {
    width: 565px;
}

.mega-menu.five-col-image {
    width: 830px !important;
}
.mm-right .image img {
    max-width: 100%;
}

header nav ul.main-nav > li .mega-menu.three-col-image {
    left: 30%;
    width: 535px;
}

/* Added */
.two-col-image .buttoncontainer {
    border: 2px solid #fff;
    max-width: 100% !important;
    padding: 0 !important;
    position: absolute;
    right: 2px;
    top: 7px;
    width: 125px !important;
}
.two-col-image .dealbutton {
    padding: 8px 12px !important;
}
.four-col-image .buttoncontainer {
    border: 2px solid #fff;
    max-width: 100% !important;
    padding: 0 !important;
    position: absolute;
    right: 5px;
    top: 4px;
    width: 236px !important;
}
.four-col-image .flashlightbutton {
    padding: 18px 20px !important;
}
.five-col-image .batterybutton {
    /*padding: 18px 12px !important;*/
    padding: 20px 12px !important;
}
.five-col-image .buttoncontainer {
    border: 2px solid #fff;
    max-width: 100% !important;
    padding: 0 !important;
    position: absolute;
    right: 8px;
    top: 9px;
    width: 241px !important;
}
.eci-charger .buttoncontainer {
    border: 2px solid #fff;
    max-width: 100% !important;
    padding: 0 !important;
    position: absolute;
    right: 3px;
    top: 5px;
    width: 219px !important;
}
.eci-charger .chargerbutton {
    padding: 10px 12px !important;
}
.eci-gear .buttoncontainer {
    border: 2px solid #fff;
    max-width: 100% !important;
    padding: 0 !important;
    position: absolute;
    right: 9px;
    top: 12px;
    width: 167px !important;
}
.eci-gear .gearbutton {
    padding: 18px 25px !important;
}
}

/** Home Page Changes  File /lib/theshorelinemarket/exclusive-hp-mobile-menu.css?t=1560431446&**/

.eci-mobilemenu-wrapper {
    height: 488px !important;
}

.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 li a {
    font-size: 20px !important;
    line-height: 20px !important;
}

  @media screen and (max-width: 360px){.eci-mobilemenu-wrapper{ margin-left: -10px;
    width: 106.5%;} }
.eci-mobilemenu-wrapper{ display:none;}
.eci-mobilemenu-wrapper .eci-mobile-menu .back-to-shopping, .eci-mobile-menu .info-links{ display:none;} 

  .eci-mobilemenu-wrapper .nav-active .eci-mobile-menu-overlay{ display:none !important;}

  @media screen and (max-width: 768px){
	  .eci-mobilemenu-wrapper{ display:block; margin-top:5px; position: relative; height: 475px;}
.eci-mobilemenu-wrapper .eci-mobile-menu {
	   min-width: 190px;
		width:100% !important;
}
}
.eci-mobilemenu-wrapper .eci-mobile-menu{
    display: block;
    padding: 0;
    width: 265px;
    left: 0px;
    /*top: 360px;*/
    background-color: #2c2c2c;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    z-index: 4;
position: absolute;
  }

.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 {
    list-style-type: none;
  }
.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li > a {
    display: block;
    background-color: #0171bb;
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #FFF;
    overflow: hidden;
  }
.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li > a:before {
    display: block;
    content: '\f105';
    font-family: FontAwesome;
    float: right;
    padding-left: 10px;
  }
.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li.show > a:before {
    content: '\f107';
  }
.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li .menu-level-2-container {
    display: none;
  }
.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li ul.menu-level-2 {
    list-style-type: none;
    padding: 15px 40px 40px 15px;
  }
  .eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li ul.menu-level-2 li a {
    display: block;
    color: #d9e0e4;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-family: "Open Sans Condensed", sans-serif;
    padding: 15px 10px 15px 10px;
    border-bottom: 1px solid #8f969b;
  }
.eci-mobilemenu-wrapper .eci-mobile-menu ul.menu-level-1 > li > a{background-color: #1174b8 !important;   padding: 20px 25px 20px 20px ;}


/** FILE: /lib/theshorelinemarket/eci-hc-dsk-pp-thumbnail.css **/


@media (min-width: 1025px) and (max-width: 7600px) {
    .eci-item-thumbnails .flex-viewport{ 
      height: 530px !important;
    }
    .eci-item-thumbnails {
      width: 120px;
      display: inline-block;
      text-align: center;
      vertical-align: top;
      position: relative;
      padding-top: 35px;
      padding-bottom:35px;
    }
    .eci-item-image-zoom-wrap {
      display: inline-block;
      width: 771px;
      vertical-align: top;
    }
    main.item .item-top .item-left .eci-item-thumbnails.item-thumbnails .item-images .item-thumb {
      margin-bottom: 0;
    }
    /* New css */
    .eci-item-thumbnails ul li {
      list-style: none;
    }
    .eci-item-thumbnails ul li a.flex-prev {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      text-indent: -9999px;
      background: url('https://sep.yimg.com/ty/cdn/theshorelinemarket/eci-prev.jpg') no-repeat;
      width: 64px;
      height: 18px;
      margin-left: 19px;
      margin-right: 19px;
    }
    .eci-item-thumbnails ul li a.flex-next {
      position: absolute;
      bottom: -15px;
      left: 0;
      right: 0;
      text-indent: -9999px;
      background: url('https://sep.yimg.com/ty/cdn/theshorelinemarket/eci-next.jpg') no-repeat;
      width: 64px;
      height: 18px;
      margin-left: 19px;
      margin-right: 19px;
    }
    /* no eci selector */
    main.item .item-top .item-left .eci-item-image-zoom-wrap .main-item-image-wrapper {
      height: 590px;
    }
    main.item .item-top .item-left .eci-item-image-zoom-wrap .main-item-image-wrapper .image {
      height: 570px;
    }
    /* no eci selector */    
    main.item .item-top .item-left .eci-item-thumbnails .item-images .item-thumb{
      border:0;
      height: 89px;
    }
    
    main.item .item-top .item-left .eci-item-thumbnails .item-images .item-thumb a {
      border: 1px solid #d9e0e4;
      display: block;
      margin-bottom: 10px;
    }
    
    main.item .item-top .item-left .eci-item-thumbnails .item-images .eciActive a {
      border-color: #000
    }
    
    /*main.item .item-top .item-left .eci-item-image-zoom-wrap .main-item-image-wrapper .owl-carousel .image a img{*/
    main.item .item-top .item-left .main-item-image-wrapper .owl-carousel .image a img{
      position:inherit;
      height: inherit;
      max-height:inherit;
    }
    /* no eci selector */
    .eci-item-thumbnails .flex-disabled{
      pointer-events: none;
    }
    main.item .item-top .item-left .item-zoom-cta {
      width: 50%;
      margin-left: auto;
      margin-right: auto;
    }
    /* no eci selector */
    .eci-item-thumbnails ul li a.flex-prev.flex-disabled {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      text-indent: -9999px;
      background: url('https://sep.yimg.com/ty/cdn/theshorelinemarket/eci-prev-dim.jpg') no-repeat;
      width: 64px;
      height: 18px;
      margin-left: 19px;
      margin-right: 19px;
    }
    
    .eci-item-thumbnails ul li a.flex-next.flex-disabled {
      position: absolute;
      bottom: -15px;
      left: 0;
      right: 0;
      text-indent: -9999px;
      background: url('https://sep.yimg.com/ty/cdn/theshorelinemarket/eci-next-dim.jpg') no-repeat;
      width: 64px;
      height: 18px;
      margin-left: 19px;
      margin-right: 19px;
    }
    /* additional at hc */
    main.item .item-top .item-left .eci-item-image-zoom-wrap .main-item-image-wrapper .image {
      height: 480px;
      text-align: center;
      margin-top: 55px;
    }
    /* additional at hc */
  }
  
  /* additional at hc */
  @media (min-width: 768px) and (max-width: 1024px) {
    .eci-item-thumbnails{
      display: none;
    }
  }
  /* additional at hc */

  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    main.item .item-top .item-left .eci-item-thumbnails .item-images .item-thumb {
      height: 88px;
    }
  }
  
  /*zoom in fixes*/
  @media (min-width: 1025px) and (max-width: 1250px) {
.eci-item-image-zoom-wrap {
width: 520px;
}
  }