/*
** Bootstrap over-rides
*/

@charset "UTF-8";

#saleribbon-icon { pointer-events: none; }


/* Start New Home Page Work Edit */

@media (max-width: 767px) {
    #home-new .product-item .img {
       min-height: 190px !important; 
    }
}

@media (max-width: 900px) and (min-width: 480px) {
  #home-new .product-items .product-item .cart-qty-control {
    padding: 4px 22px  !important;
  }
}

@media (max-width: 991px) {
  #home-new{
    margin-top: 5px !important;
  }
}



/* ==== Proportional scale wrapper (both sections) ==== */
#home-new{
  --baseW: 1620;      /* your design width */
  --gutter: 5px;      /* desired left/right padding */
  display: flex;
  justify-content: center;
  margin-top: 24px;
  --s: 1;
}

/* OUTER: only reserves height, no transform */

#home-new .scale-frame{
  width: 100%;
  max-width: calc(var(--baseW) * 1px + (var(--gutter) * 2));
  padding: 0 var(--gutter);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  will-change: height;
  transition: height .12s ease; /* optional */
  /* leave box-sizing as content-box (default) so max-width excludes padding */
}

/* INNER: actually scaled */
#home-new .scale-inner{
  width: calc(var(--baseW) * 1px);
  transform-origin: top left;
  display: block;
  /* NO transform here in CSS   JS will set it after computing scale */
}

/* Optional: ensure inner grids are centered within the 1620px frame */
#home-new .home-first-grid,
#home-new .home-second-grid{
  margin-inline: auto;
}

/* ==== First Section: exact pixel geometry (inside the same scale-frame) ==== */
#home-new .home-first-grid{
  /* Columns: 388 | 795 | 388  with 24px gaps */
  display:grid;
  grid-template-columns: 388px 795px 388px;
  column-gap:24px;
  align-items:start;

  /* For the wrapper to reserve the correct height, expose it: */
  /* Left/Right columns total height: 486 + 24 + 486 = 996 */
  /* Center total height: 450 + 24 + (249*2 + 24) = 996 (same) */
  /* So overall frame height is 996px */
  --frameH: 996px;
}

#home-new .home-first-grid .col-left,
#home-new .home-first-grid .col-right{
  display:grid;
  grid-template-rows: 486px 486px;
  row-gap:24px;
}

#home-new .home-first-grid .col-center{
  display:grid;
  grid-template-rows: 450px auto; /* hero + 3x2 grid */
  row-gap:24px;
}

#home-new .home-first-grid .center-grid{
  display:grid;
  grid-template-columns: repeat(3, 249px);
  grid-auto-rows: 249px;
  gap:24px;
}


/* ==== Second Section: exact pixel geometry (inside the same scale-frame) ==== */
#home-new .home-second-grid{
  /* 798 + 24 + 798 = 1620 wide */
  display: grid;
  grid-template-columns: 798px 798px; /* L | R */
  column-gap: 24px;
  align-items: start;
  margin-top: 24px; /* spacing below the first section; tweak as needed */
}

#home-new .home-second-grid .col-left,
#home-new .home-second-grid .col-right{
  display: grid;
  grid-template-rows: 450px 112px; /* top + bottom */
  row-gap: 24px;
}

/* ==== Third Section: 4×2 @ 387px tiles (no inner center-grid) ==== */
#home-new .home-third-grid{
  margin-top: 48px; /* space from previous section */
}

#home-new .home-third-grid .center-grid {
  display: grid;
  grid-template-columns: repeat(4, 387px); /* 4 columns */
  grid-auto-rows: 326px;                   /* 2 rows of 326px */
  gap: 24px;                               /* gutters */
  width: 1620px;                           /* 4*387 + 3*24 */
  margin-inline: auto;                     /* center within 1620px scale-frame */
}

/* Tiles already inherit your .tile rules; keep IMG fit the same */
#home-new .home-third-grid .tile > img{
  width: 100%;
  height: 100%;
  object-fit: cover;  /* or 'contain' if you prefer */
  display: block;
  padding: 15px;
}

#home-new .home-six-grid {
    display: grid;
    grid-template-columns: 524px 524px 524px;
    column-gap: 24px;
    align-items: start;
    margin-top: 48px;
}

#home-new .home-six-grid .col-left {
    display: grid;
    grid-template-rows: 449px;
    row-gap: 24px;
}

#home-new .home-seven-grid {
    display: grid;
    grid-template-columns: 387px 387px 387px 387px;
    grid-auto-rows: 332px;
    column-gap: 24px;
    align-items: start;
    margin-top: 48px;
}

#home-new .home-seven-grid .col-left {
    display: grid;
    grid-template-rows: 332px;
    row-gap: 24px;
}




/* ==== Fourth Section: 6×2 @ 250px tiles (no inner center-grid) ==== */
#home-new .home-four-grid{
  margin-top: 48px; /* space from previous section */
}

#home-new .home-four-grid .center-grid {
  display: grid;
  grid-template-columns: repeat(6, 250px); /* 6 columns */
  grid-auto-rows: 250px;                   /* 2 rows of 250px */
  gap: 24px;                               /* gutters */
  width: 1620px;                           /* 6*250 + 5*24 */
  margin-inline: auto;                     /* center within 1620px scale-frame */
}

/* Tiles already inherit your .tile rules; keep IMG fit the same */
#home-new .home-four-grid .tile > img{
  width: 100%;
  height: 100%;
  object-fit: cover;  /* or 'contain' if you prefer */
  display: block;
}

/* ==== Fifth Section: single 1620×450 tile (inside scale-frame) ==== */
#home-new .home-five-grid{
  margin-top: 48px; /* space from previous section */
}

#home-new .home-five-grid .col-center{
  display: block;
}

#home-new .home-five-grid .center-grid{
  display: grid;
  grid-template-columns: 1620px;   /* full frame width */
  grid-auto-rows: 450px;           /* tile height */
  gap: 24px;
  width: calc(var(--baseW) * 1px); /* --baseW is 1620 in your wrapper */
  margin-inline: auto;             /* center within the scale-frame */
}

#home-new .home-five-grid .tile{
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}

#home-new .home-five-grid .tile > img {
    height: 100% !important;
    margin-bottom: 0px !important;
    object-fit: initial !important;
}

#home-new .tile{
  display:block;
  width:100%;
  height:100%;
  border-radius:5px;
  overflow:hidden;
  background: #f7f8f8;
}

#home-new .tile > img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
#home-new .tile > .tile-name {
    height: 10%;
    margin-bottom: 5%;
    display: inline-block;
    padding: 5px 5px 0px 10px;
    color: black;
  /* visually ~16px, but never smaller than 12px or larger than 20px */
  font-size: clamp(16px, calc(18px / var(--s)), 16px);
  line-height: 1.2;
  /* allow wrapping so tiny screens don't truncate */
  white-space: normal;	
}
#home-new .tile > .tri-right {
  display:inline-block;
  width:0; height:0;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
  border-left:8px solid currentColor; /* inherits text color */
  color: black;
}

#home-new .container {
    max-width: none;
    padding: 0px 20px;
}

#home-new .product-items {
    display: grid;
    grid-template-columns: repeat(5, 300px);
    gap: 20px;
    width: auto;
    margin-inline: auto;
}

#home-new .product-items > *:nth-child(n+7) {
  display: none;
}

#home-new .product-items .product-item {
   margin-bottom: 0px;
   border: 1px solid #dfdfdf;
   width: 100%;
}

#home-new .product-items .product-item a,
#home-new .product-items .product-item .name {
  font-size: clamp(14px, calc(18px / var(--s)), 16px);
}

#home-new .product-item {
    background: white;
    padding: 5px 15px;
    border-radius: 5px;
}

#home-new .product-items .product-item .cart-qty-control {
    padding: 4px 22px;
}

#home-new .sortsize2 {
    padding-left: 0px !important;
    padding-top: 4px;
}

#home-new .products-new {
    margin-top: 48px;
}
#home-new #modNewReleases {
  background-color: #fd644f;                   /* fallback */
  background-image: linear-gradient(180deg, #fd644f 0%, #f28e27 100%);
  border-radius: 5px;
  margin: 48px 0px 0px 0px;
}


#home-new #modFeaturedProducts {
    background-color: #f7f8f8;
    border-radius: 5px;
    margin: 48px 0px 0px 0px;
    border: 1px solid #dfdfdf;
}

#home-new #modFeaturedProducts .tile-name, #home-new #modFeaturedProducts .tri-right {
    color: black;
}

#home-new #modNewReleases .tile-name, #home-new #modNewReleases .tri-right {
    color: white;
}

#home-new #modNewReleases .tile-name, #home-new #modFeaturedProducts .tile-name {
    display: inline-block;
    padding: 5px 5px 5px 0px;
    font-weight: bold;
    font-size: 18px;
}

#home-new #modNewReleases .tri-right, #home-new #modFeaturedProducts .tri-right {
  display:inline-block;
  width:0; height:0;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
  border-left:8px solid currentColor; /* inherits text color */
}

#home-new .center-grid .tile > img {
    width: 100%;
    height: 80%;
    margin-bottom: 5%;
    object-fit: scale-down;
}

#home-new .center-hero, #home-new .center-grid .tile {
    border: 1px solid #dfdfdf;
}

#home-new .home-third-grid .tile, #home-new .home-four-grid .tile {
    background: #f7f8f8;
}

#home #cat-MangroveJack {
    margin-top: 48px;
}

#home #cat-MangroveJack .container {
    padding-top: 20px;
    background: #37424a;
    border-radius: 5px;
}

#home #cat-MangroveJack .container li:nth-of-type(3) {
    background: #2a3239;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 2px #1d2023;
    border: 5px solid #fdb726;
}

#home #cat-MangroveJack .container li .full-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px;
    align-content: center;
}

@media (max-width: 479px) {
#home-new .product-items .product-item a, #home-new .product-items .product-item .name {
    font-size: 22px !important;
}
#home-new .sortsize2 {
    font-size: 22px !important;
    margin-bottom: 1px !important;
    padding-top: 3px !important;
}
#home-new .price {
    font-size: 36px !important;
    min-height: 36px !important;
}
#home-new .formatted-sale-price .currency, #home-new .formatted-sale-price .cents, #home-new .formatted-regular-price .currency, #home-new .formatted-regular-price .cents {
    font-size: 24px !important;
    padding-top: 1px !important;
}
#home .regular-price, #home-new .regular-price {
    font-size: 24px !important;
}
#home .cart-qty-control {
        padding: 3px 20px 3px 20px !important;
        font-size: 24px !important;
    }
}

/* End New Home Page Work Edit */



/* Start Home Page */

#home #home-main-mobile, #homeslider-mobile {
    display: none !important;
}

@media (max-width: 479px) {
    #home #blockgrid {
        grid-template-columns: auto auto !important;
    }
    #home #home1grid, #home #home2grid {
        grid-template-columns: auto !important;
    }
    #home #homeweeklydeals, #home #homeshippingtimes {
    margin: 2px !important;
    }
    #home33 {
        display: none !important;
    }
    #home66 {
        width: 100% !important;
        padding: 0 !important;
    }
    #promolatest {
        margin: 2px 0px 0px 0px !important;
    }
    #home.page-content .container {
        max-width: 100% !important;
        border-left: none !important;
        border-right: none !important;
    }
    #home.page-content .container .row {
        margin: 0 0 !important;
    }
    #home.page-content .category-footer {
    }
}

@media (min-width: 480px) {
    #home #block:first-of-type {
        margin-left: 0 !important;
    }
    #home #block:last-of-type {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    #homeslider {
        width: 100% !important;
    }
    .products-section {
        margin: 20px auto 20px auto;
	}
}

@media(min-width: 768px) {
    .products-section {
        margin: 30px auto 20px auto;
	}
}

@media(max-width: 991px) {
	.products-section h2 {
	}
}




@media (max-width: 639px) {
    #home .product-carousel {
        border-top: none !important;
        border-bottom: none !important;
        padding-top: 5px !important;
    }
    #home .products-section h2 {
        border-bottom: 1px solid black !important;
        width: 60% !important;
        place-self: anchor-center !important;
        text-shadow: 0 0 1px #4d4d4d;
    }
    #home #icongrid-mobile {
        grid-template-columns: auto auto auto auto !important;
        display: grid !important;
    }
#home #homeslider-mobile {
    padding: 15px 6px 0px;
}

   #home #homeslider-mobile, #home #home-main-mobile {
      display: grid !important;
    }
    #home #icongrid, #home #homeslider, #home #mainblocks, #home #mainblocks2, #home #promolatest {
      display: none !important;
    }
#home #category-mobile-1 #blockgrid {
    grid-template-columns: auto auto auto !important;
}
#home #category-mobile-2 #blockgrid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) !important;
    gap: 2px;
    align-items: stretch;
}
#home #category-mobile-3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    align-items: stretch;
    margin-top: 20px !important;
}
.tc-pagebuilder #category-mobile-3::before,
.tc-pagebuilder #category-mobile-3.clearfix::before {
  content: none !important;
  display: none !important;
}
.tc-pagebuilder #category-mobile-3::after,
.tc-pagebuilder #category-mobile-3.clearfix::after {
  content: none !important;
  display: none !important;
}
#home #category-mobile-3 #blockgrid {
    grid-template-columns: auto !important;
    row-gap: 2px;
}
#home-main-mobile #blockgrid.grid-container > * {
    min-width: 0;
}
#home-main-mobile #blockgrid.grid-container figure {
    margin: 0;
}
#home-main-mobile #blockgrid.grid-container img {
    display: block;
    width: 100%;
    height: auto;
    float: none !important;
}
#home #home-main-mobile #category-mobile-1 #block:first-of-type, #home #home-main-mobile #category-mobile-2 #block:first-of-type {
    margin-left: 0px !important;
}
#home #home-main-mobile #category-mobile-1 #block:last-of-type, #home #home-main-mobile #category-mobile-2 #block:last-of-type {
    margin-right: 0 !important;
}
#home #category-mobile-2 #block:first-of-type {
    align-self: center;
}
#home #category-mobile-2 #block:last-of-type {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
#home #category-mobile-3 #blockgrid:first-of-type #block {
    margin-left: 0px !important;
    margin-right: 2px !important;
    align-self: center;
}
#home #category-mobile-3 #blockgrid:last-of-type #block {
    margin-right: 0px !important;
    align-self: center;
}

    #homeaboutus h1 {
        font-size: 15px !important;
        padding-bottom: 5px;
        text-transform: capitalize !important;
        text-shadow: 0 0 1px #4d4d4d;
        border-bottom: 1px solid black;
    }
#homeaboutus span {
    font-size: 12px !important;
}
#homeaboutus a {
    color: red;
}
#homeaboutus .spacer {
    padding-top: 10px;
    margin-bottom: 10px;
}
#homeaboutus {
    padding: 10px;
    color: black;
    font-weight: 500;
    margin: 0;
}

#home.page-content .category-footer {
    padding: 0px 6px !important;
}
}

@media only screen and (max-width: 991px) and (min-width: 640px) {
    #homeaboutus h1 {
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {
    #homeslider {
        width: 100% !important;
    }
    #home hr {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
    .home-page-content .category-header {
        margin: 12px 0px 0px 0px !important;
    }
    #homeaboutus {
        margin-top: 8px;
    }
    #homeaboutus h1 {
        margin-bottom: 10px;
    }
    #home .products-section h2 {
        font-size: 15px !important;
        padding: 2px 5px !important;
        line-height: normal !important;
        margin: 0 !important;
    }
    #productblock-break {
    width: 60% !important;
    }
}

@media (min-width: 992px) {
    #home hr {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }
    .home-page-content .category-header {
        margin: 2px 0px 0px 0px !important;
    }
    #homeaboutus {
        margin-top: 50px;
    }
    #homeaboutus h1 {
        margin-bottom: 25px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 1340px) and (min-width: 992px) {
    #caTnaV {
        padding: 0px !important;
    }
}

@media (max-width: 1340px) {
    #home .btn-default {
    }
}

#homeaboutus {
    text-align: center;
}

#homeaboutus h1 {
    text-transform: uppercase;
    display: inline-block;
}

#home .products-section h2 {
    color: black !important;
    margin: 0;
    background: none !important;
}

#home .product-carousel .flex-direction-nav .flex-prev {
    left: 30px;
}

#home .product-carousel .flex-direction-nav .flex-next {
    right: 30px;
}

#home .product-carousel .flex-viewport {
    padding: 6px 0px;
}

#productblock-break {
    display: none;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4px;
    border-top: 2px solid black;
    width: 89%;
}

#home .product-carousel {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

#home .product-item .action .btn, #home-new .product-item .action .btn {
    padding: 5px 10px !important;
    font-weight: 500 !important;
}


#home #promolatest .column, #home #weeklyship .column, #home #mainblocks .column {
    padding: 0px !important;
}

.content.tc-pagebuilder .row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

#homeslider {
    display: grid;
    gap: 0px;
    white-space: nowrap;
    overflow-x: auto;
    grid-template-columns: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
    width: 85%;
}

#home hr {
    border-top: 0 !important;
}

#homeslider .flex-prev, #homeslider .flex-next {
    font-size: 0;
}

#homeweeklydeals, #home66 {
    margin: 2px 2px 2px 0px;
}

#homeshippingtimes, #home33 {
    margin: 2px 0px 2px 2px;
}

#homeweeklydeals, #homeshippingtimes, #home66 img, #home33 img {
    border: 1px solid #c5c5c5;
}

#home #home1grid {
    display: grid;
    gap: 0px;
    white-space: nowrap;
    overflow-x: auto;
    grid-template-columns: auto auto;
}

#home #home2grid {
    display: grid;
    gap: 0px;
    white-space: nowrap;
    overflow-x: auto;
    grid-template-columns: 84% auto;
}

.home-page-content .category-header {
    text-align: center;
}

#home #icongrid {
    display: grid;
}

#home #icongrid, #home #icongrid-mobile {
    gap: 0px;
    white-space: nowrap;
    overflow-x: auto;
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

#home #blockgrid {
    display: grid;
    gap: 0px;
    white-space: nowrap;
    overflow-x: auto;
    grid-template-columns: auto auto auto auto;
}

#home #icon {
    margin: auto;
    padding: 1px;
}

#home #block {
    margin: 2px;
    border: 1px solid #c5c5c5;
}

#home .tc-pagebuilder .column {
    padding: 0px 0px;
}

#icongrid > #icon, #icongrid-mobile > #icon, #blockgrid > #block, #home1grid > #homeweeklydeals, #home1grid > #homeshippingtimes, #home2grid > #home66, #home2grid > #home33 {
    position: relative;
    width: auto;
}

#icongrid > #icon img, #icongrid-mobile > #icon img {
    border: 1px solid #bdbdbd;
}

#icongrid > #icon img, #icongrid-mobile > #icon img, #blockgrid > #block img, #home1grid > #homeweeklydeals img, #home1grid > #homeshippingtimes img, #home2grid > #home66 img, #home2grid > #home33 img {
    display: block;
    width: 100%;
    height: auto;
}

#icongrid > #icon::after, #icongrid-mobile > #icon::after, #blockgrid > #block::after, #home1grid > #homeweeklydeals::after, #home1grid > #homeshippingtimes::after, #home2grid > #home66::after, #home2grid > #home33::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff7a; /* Semi-transparent overlay color */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Ensure clicks pass through to the link */
}

#icongrid > #icon:hover, #icongrid-mobile > #icon:hover, #blockgrid > #block:hover, #home1grid > #homeweeklydeals:hover, #home1grid > #homeshippingtimes:hover, #home2grid > #home66:hover, #home2grid > #home33:hover {
    border-color: #ebebeb !important;
}

#icongrid > #icon:hover::after, #icongrid-mobile > #icon:hover::after, #blockgrid > #block:hover::after, #home1grid > #homeweeklydeals:hover::after, #home1grid > #homeshippingtimes:hover::after, #home2grid > #home66:hover::after, #home2grid > #home33:hover::after {
    opacity: 1;
}

/* End New Home Page */


/* Start Slideshow Banners */

* {box-sizing:border-box}

/* Slideshow container */
.home-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.HomeMySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

#invoiceData .text {
  color: black !important;
  font-size: 14px !important;
  padding: 0px !important;
  position: static !important;
  text-align: start !important;
}

/* Order History text */
#orderHistoryView .text {
  color: black !important;
  padding: 0px 40px !important;
  position: inherit !important;
  bottom: auto !important;
  width: auto !important;
}
#orderHistoryView .print-btn .btn-default {
    margin-right: 40px;
    padding: 7px 40px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.home-slideshow-container .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@.keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* End Slideshow Banners */


.modal-dialog {
    position: absolute !important;
    left: 0%!important;
    right: 0%!important;
}

@media (min-width: 992px) {
    .modal-dialog {
        top: 113px!important;
    }
}
@media (max-width: 991px) {
    .modal-dialog {
        top: 207px !important;
    }
}

body {
	display: flex;
	height: 100%;
	flex-direction: column;
	min-height: 100vh;
}
.page-content {
	flex: 1 0 auto;
}
#content a, #category .page_header a, #category .category-footer a {
    color: rgb(128, 0, 0) !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
}
footer {
	flex-shrink: 0;
}
.product-items.productList .product-item .img a {
    position: initial;
}
/*.product-items.productList .product-item .img {
    border: 1px solid #ececec;
}*/
.product-items.productList .product-item .product-content {
    text-align: left;
    margin-top: 20px;
}
@media (max-width: 991px){
.product-items.productList .product-item .img {
    padding-right: 0;
    width: 32%;
}
}
body {
	font-family: 'Montserrat', sans-serif;
	background: #fff;
	color: black;
	line-height: 1.5;
	font-size: 14px;
}
body:not('.checkout-1') {
	padding-top: 258px;
}
.wrapper {
    margin: 0 auto;
    background: #fff;
    max-width:1200px;
}
.modal {
	z-index: 10500000000;
}
img {
    max-width: 100%;
}
a:focus, a:hover {
    text-decoration: underline;
    color: red;
}
.primary-bg {
    background: #242424;
    color: #fff;
}
.secondary-bg {
    background: rgba(224, 224, 224, 0.9);
    color: inherit;
}
h1 {
	font-size: 36px;
}

#leftBar {
	background: transparent;
	color: #000;
	padding-top: 15px;
	padding-bottom: 15px;
	max-width: 260px;
	margin-right: auto;
}
@media (min-width: 1200px) {
	#leftBar {
		margin-right: 40px;
	}
}

.titles {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.col-sm-2_4 {
	position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
	.col-sm-2_4 {
		float: left;
		width: 20%;
	}
}

.logo2 {
}
.logo2 img {
	margin: auto;
}
@media (min-width: 768px) {
	.logo2 img {
		margin: 0;
	}
}

/* start element display edit */
.addthis-smartlayers {
    display: none;
}
.container-oldmenu {
    display: none !important;
}
/* end element display edit */

/* start menu edit */
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .custom_mid {
        margin-top: 0px !important;
    }
    .col-md-3 {
        float: right;
    }
    .col-md-4 {
        width: auto !important;
        margin-right: 10%;
    }
    .col-md-5 {
        width: 56.66666667% !important;
        margin-right: 10%;
    }
    .top_text {
        margin-top: 12px !important;
        margin-right: 14px !important;
        margin-bottom: 12px !important;
        margin-left: 14px !important;
    }
    #mobile-menu-trigger2 {
        margin-top: 18px !important;
        border-width: 1px !important;
        float: left !important;
    }
    #cart-right {
       margin-right: auto !important;
    }
}

@media (min-width: 992px) {
    .col-md-5 {
        width: 38.666667% !important;
    }
    .col-md-4 {
        width: 36.333333% !important;
    }
    .col-md-3.col-sm-4.col-xs-6 {
        padding-left: 5px;
        padding-right: 25px;
    }
}
/* end menu edit */

/* start mega menu edit (old version) */
@media (max-height: 768px) {
    .tabbed-col-prod-widget-prod-name, .light_theme .tabbed-col-left>ul>li>a {
    font-size: 13px !important; 
    }
    .light_theme .tabbed-col-left>ul>li>a {
        padding: 4px 20px 4px 15px !important;
    }
    .tabbed-col-prod-widget-prod-right {
        padding: 2px 8px !important;
    }
    .tabbed-col-prod-widget-prod {
        margin: 0 0 5px !important;
    }
    .tabbed-col:not(:first-of-type) .tabbed-col-grid-prod img {
        margin-left: auto;
        margin-right: auto;
        width: 64%;
        object-fit: scale-down;
    }
}
@media (max-width: 991px) {
    nav.megamenu3d.light_theme {
        display: none !important;
    }
}
@media (max-width: 1340px) and (min-width: 992px) {
    .tabbedmenu, .tabbed-col-prod-widget-prod-name, .columnmenu-heading {
        font-size: 11px !important;
        font-weight: 500;
    }
}

@media (min-width: 1200px) {
.sticky-on #caTnaV .container {
    /* padding: 0px 60px !important; */
}
.sticky-on #caTnaV .megamenu3d>ul>li>a, .sticky-on #caTnaV .megamenu3d>.container>ul>li>a {
    padding: 12px 20px !important;
}
}

@media (max-width: 1199px) {
.sticky-on #caTnaV .container {
    /* padding: 0px 60px !important; */
}
.sticky-on #caTnaV .megamenu3d>ul>li>a, .sticky-on #caTnaV .megamenu3d>.container>ul>li>a {
    padding: 12px 15px !important;
}
.tabbed-cols-outer {
}
}

.tabbedmenu {
    vertical-align: top;
    position: static;
    z-index: auto;
    padding: 0 0px 0 0;
    /* text-transform: uppercase; */
    margin-left: auto;
    margin-right: auto;
    min-height: 42px;
    font-weight: 500 !important;
    align-content: center;
}

nav.megamenu3d {
    background-color: #fbfbfb;
}

.columnmenu-heading {
    min-height: 42px !important;
    max-height: 42px !important;
    overflow: hidden !important;
}
.tabbed-cols-outer {
    border-top: 1px solid #d5d5d5;
    top: 42px;
}
.tabbed-col-left>ul>li>a {
    padding: 8px 20px 8px 15px !important;
}
.tabbed-col-prod-widget-prod-name, .light_theme .tabbed-col-left>ul>li>a {
    font-weight: 500 !important;
}
.light_theme .tabbed-col-left>ul>li.active>a {
    background-color: black;
    color: #fff;
    font-weight: 500 !important;
}
.tabbed-col-prod-widget-prod {
    border: 2px solid black;
    text-align: center;
    text-transform: uppercase;
}
.tabbed-col-prod-widget-prods .tabbed-col-prod-widget-prod:first-of-type > a {
    color: #fff !important;
    background-color: black !important;
}
.tabbed-col-prod-widget-prod:hover {
    background-color: black !important;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}
.tabbed-col-prod-widget-prod>a:hover {
    opacity: 1 !important;
    color: #fff !important;
}
.tabbed-col-prod-widget-prod-img, .tabbed-col-prod-widget-prod-price {
    display: none;
}
.tabbed-col-prod-widget-prod-right {
    width: 100% !important;
}
.tabbed-col-prod-widget-heading {
    text-align: center;
    margin: 0 0 16px !important;
}
@media (min-height: 769px) {
    .tabbed-col-prod-widget-prod-right {
        padding: 6px 8px !important;
    }
    .tabbed-col-prod-widget-prod {
        margin: 0 0 9px !important;
    }
}
/* end mega menu edit (old version) */

/* start laptop formatting */

@media (max-height: 768px) {
    #menulinks-outer .navbar-nav > li > a {
        font-size: 12px !important;
        line-height: 25px !important;
        min-height: 25px !important;
    }
    #menulinks- li a {
        font-size: 12px !important;
        line-height: 25px !important;
        min-height: 25px !important;
    }
    .site-header {
        padding: 7px 0 8px 0 !important;
    }
}

/* end laptop formatting */

/* start new mega menu formatting (2025-10-21)*/

@media (max-width: 1649px) {
    #caTnaV>.container {
        padding: 0px !important;
    }
    .sticky-on #caTnaV .container nav.megamenu3d > ul {
        padding: 0px 60px;
    }
    .site-header-main .container {
        padding: 0px 10px !important;
    }
}

#caTnaV>.container {
    max-width: 1650px !important;
}

.tabbed-cols-outer > .row > ul {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.megamenu3d .light_theme #menucolumns .row .column:first-of-type {
    padding-left: 0px;
}

.megamenu3d .light_theme #menucolumns .row .column {
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
    padding: 0 10px;
    display: block;
    float: none;
    width: auto;
}

/* end new megamenu formatting */

/* start header formatting */

/* === Equal-width top-level tabs across the full megamenu width === */
@media (min-width: 992px) { /* your megamenu is hidden below 992px anyway */
  /* Turn the top UL into a flex row that spans 100% */
  nav.megamenu3d > ul {
    display: flex;
    flex-wrap: nowrap;          /* keep in one row; change to wrap if needed */
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* Each tab fills an equal slice of the bar */
  nav.megamenu3d > ul > li.tabbedmenu {
    flex: 1 1 0;               /* equal widths */
    min-width: 0;              /* prevent overflow from long labels */
    display: flex;             /* so the <a> can stretch */
    align-items: stretch;
  }

  /* Make the anchor fill the whole tab area and center its text */
  nav.megamenu3d > ul > li.tabbedmenu > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 14px 0;           /* vertical rhythm; your file also sets padding */
    line-height: 1;
    /* Optional fixed height to make all tabs perfectly uniform */
    min-height: 42px;          /* matches your menu s ~45 48px */
  }

  nav.megamenu3d > ul > li.tabbedmenu > a {
    display: inline-flex;           /* already flex; inline-flex avoids unexpected width quirks */
    align-items: center;
    justify-content: center;
    gap: 0.25em;                    /* << fixed distance between label and arrow */
    white-space: nowrap;            /* prevents arrow wrapping onto a new line */
    position: relative;             /* harmless; keeps other positioning stable */
  }

  /* Override the old absolute-right arrow; let it flow next to the text */
  .megamenu3d ul > li.treemenu > a:after,
  .megamenu3d ul > li.columnmenu > a:after,
  .megamenu3d ul > li.tabbedmenu > a:after,
  .megamenu3d ul > li.columnlistmenu > a:after {
    position: static !important;    /* cancel absolute positioning */
    right: auto !important;         /* cancel old right:5px */
    flex: 0 0 auto;                 /* don t stretch */
    line-height: 1;
    transform: translateY(0);       /* ensure perfect vertical centering */
  }
}


.megamenu3d ul>li.treemenu>a:after,
.megamenu3d ul>li.columnmenu>a:after,
.megamenu3d ul>li.tabbedmenu>a:after,
.megamenu3d ul>li.columnlistmenu>a:after {
  content: "\f107";            /* don't use the literal   */
  font-family: "fontello";     /* make sure this matches your @font-face */
  font-style: normal;
  font-weight: normal;
}


@media only screen and (max-width: 991px) and (min-width: 768px) {
.head-main-search {
    max-width: 375px !important;
}

.site-header-main {
    padding-top: 5px !important;
}

.site-header-main .ion-android-mail, .site-header-main .ion-android-person, .site-header-main .ion-android-cart {
    font-size: 20px !important;
}
.site-header-main .ion-android-menu {
    font-size: 34px !important;
}
.site-header-main .head-main-account-text, .site-header-main .main-cart-quantity, .site-header-main .head-main-cart-text {
    font-size: 10px !important;
}

.head-main-contactus, .head-main-account, .head-main-cart, .head-main-menu {
    min-width: 65px !important;
    flex: 0 0 65px !important;
}
#head-main-contactus, #head-main-account, #head-main-cart, #head-main-menu, #mobile-menu-trigger  {
    width: 65px !important;
}

.head-main-logo {
    padding: 0px !important;
    flex: 0 0 114px !important;
}
.head-main-logo .logo {
        margin-top: 0px !important;
        margin-left: 0px !important;
        width: 110px  !important;
}
.head-main-menu {
    align-content: center;
    display: block !important;
}
.site-header-main .main-cart-quantity, .site-header-mobile .main-cart-quantity {
    line-height: 2.5 !important;
}
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
    .megamenu3d > ul > li > a, .head-mobile-nav > a {
        font-size: 12px !important;
        padding: 12px 18px !important;
    }
}


@media only screen and (min-width: 992px) {
#head-main-contactus, #head-main-account, #head-main-cart, #head-main-menu, #mobile-menu-trigger  {
    width: 80px !important;
}
.head-main-contactus, .head-main-account, .head-main-cart, .head-main-menu {
    min-width: 80px !important;
}
.head-main-logo {
  padding-left: 20px !important;
}
}

@media only screen and (min-width: 1200px) {
    .tabbed-cols-outer {
        top: 42px !important;
    }
}

@media (max-width: 767px) {
.site-header-mobile .main-cart-quantity {
    top: 0 !important;
    right: 2px !important;
    font-size: 12px !important;
}

.head-mobile-logo .row {
    margin-right: 0px;
    margin-left: 0px;
}

.head-mobile-logo .logo {
    display: block;
    width: 110px !important;
}
}


.navbar-header {
    display: none !important;
}
.header-navigation {
    background: #fbfbfb;
}
.megamenu3d > ul > li > a, .head-mobile-nav > a {
    font-weight: 700 !important;
    color: #161616;
    text-transform: capitalize;
    font-size: 14px;
}


.site-header {
    /* display: none !important; */
}
.site-header-main {
    /* display: none !important; */
}

#blog .container {
    width: 100%;
    max-width: 1670px !important;
}

.site-header-main {
    height: 70px;
    margin-bottom: 0px;
    padding-top: 10px;
}
.site-header-main .container {
    height: 60px;
    max-width: 1650px !important;
    padding: 0px 24px;
}

.site-header-main .row {
  display: flex !important;
  align-items: center !important;
  position: relative; /* parent context for absolute center */
  height: 60px;
  padding: 0px !important;
  margin-right: 0px;
  margin-left: 0px;
}


.head-main-logo {
  flex: 0 0 176px;
  height: 100%;
  display: flex;
  align-items: center;
}

.head-main-logo .row {
    width: fit-content;
}

.head-main-logo .logo {
    display: block;
    height: 44px;
    width: 150px;
}

.head-main-logo .logo img {
    width: fit-content;
    height: 80px;
    margin: auto;
}

.head-main-search {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 650px;
  width: 100%;
  flex: none !important; /* don t let flexbox fight it */
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  margin-top: 0px !important;
}
.head-main-search .row {
    height: fit-content;
    display: flex;
    align-items: center;
    width: 100% !important;
}

.head-main-search #searchBox {
    position: relative;
    width: 100%;
}

.head-main-search .search-form {
    border-radius: 25px;
}

.head-main-search #searchlight {
    background: white !important;
    border-radius: 25px;
}
.head-main-search .search-form .search-submit {
    background: none !important;
    border-radius: 25px;
}
.head-main-search #searchlight .search-submit {
    background: none !important;
    border-color: none !important;
}

.head-main-search input:-internal-autofill-selected {
    border-radius: 100px;
}

.head-main-search .searchlight-balloon {
    margin-top: 5px !important;
}

.site-header-main #searchBox {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* 1) Put the header/search area in a higher stacking context than the footer */
.site-header-main,
.site-header-main #searchBox,
.site-header-main #searchBox .search-form {
  position: relative !important;
  z-index: 200 !important;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
  will-change: auto !important;
  overflow: visible !important;   /* avoid clipping */
}

/* 2) The balloon itself: stay absolute (like your working sample) but sit on top */
.site-header-main .searchlight-balloon {
  position: absolute !important;          /* match the working behavior */
  z-index: 2147483647 !important;         /* higher than any page element */
  top: 50px !important;                   /* keep your original offset */
  left: 0 !important;
}
/* 3) Let the results scroll if tall */
.site-header-main .searchlight-balloon .searchlight-results-wrapper {
  max-height: 70vh;
  overflow: auto !important;
}

/* 4) Keep the footer *below* this stack, even if it has its own contexts */
.site-footer,
.site-footer * {
  position: relative;           /* ensure z-index applies if any are set */
  z-index: 0 !important;        /* explicitly lower than the header/balloon */
  transform: none !important;   /* prevent new stacking contexts outranking header */
  filter: none !important;
  perspective: none !important;
}
.site-footer .container, .site-footer .container .col-md-6 {
    padding: 0px;
}

.site-footer .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.site-footer .row .col-sm-12 h3 {
    text-align: center;
}

.head-main-search .searchlight-results {
    margin-top: 0px !important;
}
.head-main-search .searchlight-results-wrapper {
    border-radius: 16px !important;
}

.head-main-search .searchlight-results .searchlight-not-selected:first-of-type td, .head-main-search .searchlight-results .searchlight-selected:first-of-type td {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Give the bottom corners to the last real result row */
.head-main-search .searchlight-results tr.searchlight-not-selected:has(+ tr.searchlight-spacer-row) td,
.head-main-search .searchlight-results tr.searchlight-not-selected:last-child td,        /* if no spacer row */
.head-main-search .searchlight-results tr.searchlight-not-selected:nth-last-child(2) td, /* fallback when spacer is last */
.head-main-search .searchlight-results tr.searchlight-selected:has(+ tr.searchlight-spacer-row) td,
.head-main-search .searchlight-results tr.searchlight-selected:last-child td,
.head-main-search .searchlight-results tr.searchlight-selected:nth-last-child(2) td
{
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden; /* helps the radius render cleanly */
}


.head-main-contactus,
.head-main-account,
.head-main-cart {
  flex: 0 0 70px;
  min-width: 70px;
  width: 70px !important;
  height: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  padding: 0 !important;
  position: relative;
}


#head-main-contactus,
#head-main-account,
#head-main-cart,
#head-main-menu  {
  width: auto !important;
}

.head-main-contactus { 
   margin-left: auto !important; 
}

.main-cart-quantity {
    position: absolute !important;
    top: -2px;   /* nudge above icon */
    right: 8px;   /* nudge to the right corner */
    min-width: 25px;
    height: 25px;
    background-color: #ffd814;
    border: 1px solid #e3c012;
    border-radius: 50%;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    padding: 0 !important;
    display: none;
}

.sticky-ads.abs-right .main-cart-quantity.is-visible {
    font-size: 10px;
    top: 5px !important;
    right: 5px !important;
    min-width: 22px !important;
    height: 22px !important;
}
.sticky-ads.abs-right .ion-android-cart {
    font-size: 25px;
    padding-right: 6px;
}


.head-main-contactus, .head-main-account, .head-main-cart, .head-main-menu {
    padding: 2px 0px 3px;
    height: 60px;
    display: flex;
    align-items: center;
}

#head-main-contactus, #head-main-account, #head-main-cart, #head-main-menu, #mobile-menu-trigger {
    color: black;
    display: inline-block;
}
.head-main-cart {
  position: relative !important; /* new anchor for the badge */
}
.site-header-main .ion-android-mail, .site-header-main .ion-android-person, .site-header-main .ion-android-cart {
    font-size: 25px;
}

.site-header-main .head-main-account-text, .site-header-main .main-cart-quantity, .site-header-main .head-main-cart-text {
    font-size: 12px;
}

/* end header formatting */

/* start mobile header formatting */

@media (max-width: 767px) {
.site-header {
    display: none !important;
}
.site-header-main {
    display: none !important;
}
.site-header-mobile {
    display: block !important;
    height: 60px;
    border-bottom: 1px solid #ececec;
    padding-top: 10px;
    background: white;
    z-index: 10;                           /* base; 'stuck' bumps higher */
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    will-change: transform;    
}
.head-mobile-nav {
    margin: 8px auto !important;
    top: 0 !important;
    bottom: 0 !important;
    padding-top: 0px !important;
}
.head-mobile-nav:first-of-type {
    padding-left: 10px !important;
}
.head-mobile-nav:last-of-type {
    padding-right: 10px !important;
}
.ion-android-menu, .ion-android-person, .ion-android-cart {
    padding: 10px !important;
    font-size: 25px !important;
}
.head-mobile-menu {
    position: absolute !important;
    left: 0 !important;
    width: min-content !important;
}
.head-mobile-search {
    position: absolute !important;
    left: 35px !important;
    width: min-content !important;
}
.head-mobile-search a {
    width: min-content !important;
    display: block !important;
}
.head-mobile-search > a div {
    display: none;
}
.head-mobile-search > a span {
    font-size: 22px !important;
    line-height: 2 !important;
    padding: 10px 5px !important;
}
#msearchBox .icon-search {
    font-size: 22px !important;
}
#msearchBox .form-control {
    padding: 5px !important;
}
.head-mobile-logo {
    position: absolute !important;
    left: 50% !important;
    transform: translate(-50%, 0%) !important;
    width: auto;
    margin: 6px auto !important;
}
.head-mobile-logo img {
    margin: 0px !important;
}
.head-mobile-account {
    position: absolute !important;
    right: 35px !important;
    width: min-content !important;
}
.head-mobile-cart {
    position: absolute !important;
    right: 0 !important;
    width: min-content !important;
}

.mobile-cart-quantity[data-ready="0"] {
    visibility: hidden !important;
}
.mobile-cart-quantity.is-empty { 
    display: none !important;
}

.mobile-cart-quantity {
    color: black;
    position: absolute;
    right: 8px !important;
    top: 5px !important;
    width: 18px !important;
    height: 18px !important;
    background-color: #ffd814;
    border: 1px solid #e3c012;
    font-size: 8px !important;
    border-radius: 100% !important;
    padding: 0px !important;
    font-weight: bold !important;
    align-content: center !important;
}

.floating-cart {
    display: none !important;
}

  /* Space holder under the header so layout doesn't jump when fixed */
  .header-sentinel{
    block-size: 0 !important;                         /* JS will set this to header height */
  }

  /* Actual stuck state (toggled by JS) */
  .site-header-mobile.stuck{
    position:fixed;
    inset-block-start:0;
    inset-inline:0;
    z-index:2000;
    box-shadow: var(--mheader-shadow);
    transform: translateZ(0);              /* promote for crispness on mobile */
  }
}

  @media (prefers-reduced-motion: no-preference){
    .site-header-mobile.stuck{ transform: translateY(0); }
  }
}

/* end mobile header formatting */

/* start mega menu edit (new version) */

@media (max-height: 768px) {
    .megamenu3d .light_theme #menucolumns #navtab {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .megamenu3d .light_theme #menucolumns #navtab>li a {
        padding: 7px 5px 5px 5px !important;
    }
    .megamenu3d .light_theme #menucolumns #navtab>ul>li a {
        padding: 5px 10px 5px 10px !important;
    }
    .megamenu3d .light_theme #menucolumns .row .column>li>a, .megamenu3d .light_theme #menucolumns .row .column>ul>li>a {
        font-size: 11px !important;
    }
}

    .megamenu3d .light_theme #menucolumns #navtab>li a {
        padding: 7px 5px 5px 5px !important;
    }
    .megamenu3d .light_theme #menucolumns #navtab>ul>li a {
        padding: 5px 10px 5px 10px !important;
    }

@media (min-height: 769px) {
}

.megamenu3d .light_theme #menucolumns .columns {
    -moz-column-count: 4;
    -moz-column-gap: 1em;
    -webkit-column-count: 4;
    -webkit-column-gap: 1em;
    column-count: 4;
    column-gap: 1em;
    margin: 5px;
}

.megamenu3d .light_theme #menucolumns #navtab>li {
    border-bottom: 2px solid black;
    /* margin-right: 10px; */
}

.megamenu3d .light_theme #menucolumns #navtab>li a {
    font-weight: 600 !important;
    color: black;
    display: block;
    height: auto;
    line-height: 1.5;
}

.megamenu3d .light_theme #menucolumns #navtab>ul>li a {
    font-weight: 500 !important;
    color: black;
    display: block;
}

.megamenu3d .light_theme #menucolumns .columns #navtab>li a:focus, .megamenu3d .light_theme #menucolumns .columns #navtab>li a:hover {
    text-decoration: none;
    background-color: black !important;
    color: white !important;
}

.megamenu3d .light_theme #menucolumns .columns #navtab>ul a:focus, .megamenu3d .light_theme #menucolumns .columns #navtab>ul a:hover {
    text-decoration: none;
    color: red !important;
}

.megamenu3d .light_theme #menucolumns .columns>ul div {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside:avoid;
    -moz-page-break-inside:avoid;
    page-break-inside: avoid;
    break-inside: avoid-column;
}


/* start mega menu changed to row edit */

.megamenu3d .light_theme #menucolumns .row {
    margin: 8px 8px 4px 8px;
    width: 100% !important;
}

.megamenu3d .light_theme #menucolumns .row .column:last-of-type {
    padding-right: 0px !important;
}

.megamenu3d .light_theme #menucolumns .row #navtab>li a:focus, .megamenu3d .light_theme #menucolumns .row #navtab>li a:hover {
    text-decoration: none;
    background-color: black !important;
    color: white !important;
}

.megamenu3d .light_theme #menucolumns .row #navtab>ul a:focus, .megamenu3d .light_theme #menucolumns .row #navtab>ul a:hover {
    text-decoration: none;
    color: red !important;
}

/* end mega menu changed to row edit */


/* end mega menu edit (new version) */

/* start home page block edit */
@media (min-width: 40rem) {
    .tc-pagebuilder .column.third:first-of-type {
        width: 50%;
    }

    .tc-pagebuilder .column.third:not(:first-of-type) {
        width: 25%;
    }
}
/* end home page block edit */

/* start mobile homepage edit */
@media (max-width: 479px) {
    .head-mobile-nav > a div {
        font-size: 16px;
    }
    .head-mobile-nav:last-of-type > a div {
        padding-top: 3px;
    }
    .homepage-slider {
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
    }
    .height-20 {
        height: 5px;
    }
    .home-page-content .category-header {
        padding-left: 5px;
        padding-right: 5px;
    }
    #home #homeslider-mobile .flex-direction-nav {
        display: none;
    }
    .flex-direction-nav a {
        width: 20px;
        height: 20px;
        margin: -10px 0 0;
    }
    .flex-direction-nav a:before {
        font-size: 20px;
    }
}
@media (max-width: 639px) {
    .home-page-content .content-section {
        padding-top: 0px !important;
        margin-top: 25px !important;
    }
    #home hr {
        height: 10px;
    }
    .home-page-content .category-header, .blog .page_heading, .blog .page_headers,  {
        margin-top: 10px !important;
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    .home-page-content .category-footer, #category .category-footer, #blog .content {
        font-size: 12px;
        padding: 0px 5px !important;
    }
    .home-page-content .category-footer h2, #blog .post-content h2 {
        font-size: 14px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .home-page-content .category-footer img {
        display: none;
    }
    .post-page .blogPost .post-image, .blogpost .post-image, .post-page .blogPost .post-content, .blogpost .post-content {
        margin: 0px;
    }
    .post-info {
        font-size: 12px;
        padding: 0 0 5px;
    }
    .post {
        padding-bottom: 10px;
    }
    .tc-pagebuilder .column {
        padding-left: 0px;
        padding-right: 0px;
    }
    .tc-pagebuilder h1 {
        font-size: 2rem !important;
    }
    .products-section, #modNewReleases {
        /* display: none !important; */
    }
    #homegroup1, #homegroup2 {
        display: inline-block;
        width: 48%;
        float: left;
        margin-left: 1%;
        margin-right: 1%;
    }
    #homeblock1, #homeblock2 {
        width: 98%;
        margin-left: 1%;
        margin-right: 1%;
    }
    #homegroup3 {
        display: inline-block;
        width: 23%;
        float: left;
        margin-left: 1%;
        margin-right: 1%;
    }
}
@media (max-width: 767px) {
    .logo {
        height: 30px !important;
    }
    .logo img {
        max-height: 100% !important;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .site-header {
        padding: 0px !important;
    }
    .tc-pagebuilder .row:first-of-type .column {
        margin-top: 0px !important;
    }
    #homehr1, #homehr2 {
        display: none;
    }
    #homeblock1, #homegroup1 {
        margin-top: 5px;
    }
    #homegroup2 img, #homegroup3 img {
        margin-top: 5px !important;
    }
    #homeblock1 img {
        margin-bottom: 5px !important;
    }
    .site-footer > .container > .row {
        margin-bottom: 20px;
    }
    #FRAME_LINKS .extrapages {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    #FRAME_LINKS .extrapages li {
        width: 50% ;
        float: left;
        line-height: 1.5;
        margin: 5px 0px;
        padding: 0px;
        text-align: center;
    }
}
/* end mobile homepage edit */

/* start mobile category edit */

@media (max-width: 396px) {
    .subcategories > ul > li span.name {
        font-size: 7px !important;
    }
}
@media (max-width: 479px) {
    .subcategories > ul > li span.name {
        font-size: 7px !important;
    }
    .subcategories > ul > li > a {
        padding: 2px !important;
        height: 32px !important;
        border: 1px solid black !important;
        margin: 1px !important;
    }
}

@media (max-width: 479px) {
    #categoryimg {
        padding-bottom: 10px !important;
        margin-left: 0px;
        margin-right: 0px;
    }
    #category .category-header {
        margin-top: 0px !important;
        font-size: 13px;
        display: none;
    }
    #category .category-header h2 {
        font-size: 16px !important;
    }
    #category .page_header, .my-account .page_header, .error-page .page_header {
        margin-bottom: 0px  !important;
    }
    .my-account .content-area {
        padding-left: 0px;
        padding-right: 0px;
    }
    #loginAccount .loginField, #resetpass .resetField #registration0 .loginField {
        font-size: 12px;
    }
    #category .page_heading, #category .page_headers, .blog .page_heading, .blog .page_headers, .search-groups .page_heading, .search-groups .page_header, .search-results .page_heading, .my-account .page_heading, .my-account .page_headers, .registration .page_heading, .registration .page_headers, .error-page .page_heading, .error-page .page_headers, .contact-us .page_heading, .contact-us .page_headers, #viewcart .page_heading, #viewcart .page_headers  {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        font-size: 13px !important;
    }

    #specialamountname {
        width: 30% !important;
        padding-right: 0px !important;
        float: left !important;
        display: inline-block !important;
        margin: auto !important;
    }
    #specialamount {
        width: 70% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: left !important;
        display: inline-block !important;
        height: 40px !important;
        margin-bottom: 25px !important;
    }
    #giftcertificate_block {
        margin: 0 !important;
        padding: 0 !important;
    }
    #giftcertificate_block .form-group {
        margin: 0 !important;
    }
    #giftcertificate_block .form-group label:first-of-type {
        line-height: 3 !important;
    }

    .search-results .page_header, .search-results #searchHeader {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 11px !important;
    }

    #category .breadcrumnb, .blog .breadcrumnb, .search-groups .breadcrumnb, .search-results .breadcrumnb, .my-account .breadcrumnb, .registration .breadcrumnb, .error-page .breadcrumnb, #viewcart .breadcrumnb {
        margin: 0px !important;
    }
    #category .breadcrumnb ol li, .blog .breadcrumnb ol li, .search-groups .breadcrumnb ol li, .search-results .breadcrumnb ol li, .my-account .breadcrumnb ol li, .registration .breadcrumnb ol li, .error-page .breadcrumnb ol li, .contact-us .breadcrumnb ol li, #viewcart .breadcrumnb ol li {
        font-size: 10px !important;
    }
    #category .breadcrumnb ol li:after, .blog .breadcrumnb ol li:after, .search-groups .breadcrumnb ol li:after, .search-results .breadcrumnb ol li:after, .my-account .breadcrumnb ol li:after, .registration .breadcrumnb ol li:after, .error-page .breadcrumnb ol li:after, .contact-us .breadcrumnb ol li:after, #viewcart .breadcrumnb ol li:after {
        margin: 0 2px !important;
    }


    .category-page .header-navigation, .blog .header-navigation, .search-groups .header-navigation, .search-results .header-navigation, .my-account .header-navigation, .registration .header-navigation, .error-page .header-navigation, .contact-us .header-navigation, .view-cart .header-navigation {
        margin-bottom: 5px !important;
    }
    .listing-page .header-navigation {
        margin-bottom: 5px;
    }
    .listing-page .addl-images {
        margin-bottom: 15px;
    }
    .subcategories > ul > li span.name {
        padding: 0 2px !important;
    }
    .paging strong, .paging a, #frmsortby .titles, #category .category-toolbar .sort-by span, #category .category-toolbar .sort-by select, #searchGroup .sort-by, #searchGroup .sort-by span, #searchGroup .search-actions .titles, .search-results .sort-by, .search-results .sort-by span, .search-results .search-actions .titles  {
        font-size: 11px !important;
    }
    #listing h4.page_heading {
        font-size: 18px;
    }
    #listing .pricingBlock .yourprice, #listing .pricingBlock .saleprice {
        font-size: 1.3em !important;
    }
    #listing .pricingBlock {
        margin-bottom: 0px;
        width: 70%;
        display: inline-block;
    }
    #listing .formatted-sale-price {
        line-height: 1 !important;
        padding-left: 0px !important;
    }
    #listing .formatted-sale-price span {
        line-height: 1 !important;
        padding-left: 0px !important;
    }

    #listing .reviews-count a, #listing .create-review-link {
        font-size: 10px !important;
        display: inline-block;
    }
    #listing .product-reviews {
        display: inline-block;
        width: 30% !important;
        float: right !important;
    }
    #listing .reviews-stars {
        font-size: 18px !important;
        margin-bottom: 5px !important;
        margin-top: 2px !important;

    }
    #listing .product_availability {
        font-size: 16px !important;
    }
    #listing .sub-section {
        margin-top: 25px;
        padding: 0px 5px;
    }

    #listing .addToCartBlock.sub-section {
        margin-top: 10px !important;
    }
    #listing .form-group {
        margin-bottom: 0px !important;
    }
    #listing .dropdown-format>label {
        margin-right: 10px !important;
    }
    #listing .item ul {
        padding-inline-start: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .subcategories > ul > li span.name {
        font-size: 13px !important;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .subcategories > ul > li span.name {
        font-size: 11px !important;
    }
    #listing .sub-section:last-of-type {
        margin: 0px !important;
    }
    .cart-items>li.cart-item>span.item-qty {
        padding-top: 0px !important;
    }
#viewcart .page_heading, #viewcart .page_headers {
        margin-bottom: 10px;
        font-size: 15px;
    }
}


@media (min-width: 480px) and (max-width: 1199px) {
    #categoryimg {
        padding-bottom: 0 !important;
    }
    #category .category-header {
        margin: 0 !important;
    }
    #category .page_heading, #category .page_headers, .blog .page_heading, .blog .page_headers, .search-groups .page_heading, .search-groups .page_header, .search-results .page_heading, .my-account .page_heading, .my-account .page_headers, .registration .page_heading, .registration .page_headers, .error-page .page_heading, .error-page .page_headers, .contact-us .page_heading, .contact-us .page_headers {
        margin-bottom: 10px;
        font-size: 15px;
    }
    #category .page_header {
        margin: 0 0 10px;
    }
}

@media (max-width: 767px) {
    #category .category-toolbar {
        margin-bottom: 0px;
    }
    #category .category-toolbar .col-sm-6, #searchGroup .search-actions .row .col-sm-6 {
        display: inline-block;
    }
    #category .category-toolbar .col-sm-6:first-of-type, #searchGroup .search-actions .row .col-sm-6:first-of-type, .search-results .search-actions .row .col-sm-6:first-of-type {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 33px;
        float: right;
        text-align: right;
        padding-left: 0px;
        padding-right: 10px;
    }
    #category .category-toolbar .col-sm-6:last-of-type, #searchGroup .search-actions .row .col-sm-6:last-of-type, .search-results .search-actions .row .col-sm-6:last-of-type {
        width: 50%;
        float: left;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0px;
        padding-right: 10px;
    }
    #category .category-toolbar .col-sm-6:last-of-type .sort-by span {
        width: 100%;
    }
    #category .category-toolbar .titles, #searchGroup .search-actions .row .col-sm-6 .titles, .search-results .search-actions .row .col-sm-6 .titles {
        margin: 8px 0 7px !important;
    }
    #category .category-actions, #searchGroup .category-actions, .search-results .category-actions {
        margin: 0px;
        padding: 0;
    }
    #category .category-actions .paging, #searchGroup .category-actions .paging, .search-results .category-actions .paging {
    }
    #category .category-actions .paging a {
       margin-bottom: 0px !important;
    }
    #category .subcategories_block {
        margin-bottom: 10px !important;
    }
    #qcart-modal {
        padding-left: 0px !important;
    }
    #qcart-modal .close {
        right: 5px !important;
        color: #404242 !important;
        display: inline-block;
        opacity: 1 !important;
        font-size: 40px;
    }
    #viewCartQuick {
        padding: 20px 5px !important;
    }
    #viewCartQuick .row {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    #viewCartQuick .page_header {
        margin-bottom: 5px;
        padding: 20px 0px;
    }
    #viewCartQuick .page_header h4 {
        margin-top: 10px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    #viewCartQuick .qcart-items .col-sm-4 {
        padding-left: 0px;
        padding-right: 0px;
    }
    #viewCartQuick .quickCartCheckout>h1 {
        font-size: 18px;
        font-weight: bold;
        margin-top: 10px;
        text-transform: uppercase;
    }
    #viewCartQuick .quickCartCheckout>p {
        border-bottom: 1px solid #ececec;
        padding-bottom: 15px;
    }
    #viewCartQuick .quickCartCheckout>.quick-subtotal {
        padding-bottom: 10px;
        border-bottom: 1px solid #ececec;
        width: 100%;
        text-align: right;
    }
    #viewCartQuick .quickCartCheckout>h1, #viewCartQuick .quickCartCheckout>p, #viewCartQuick .quickCartCheckout>.quick-subtotal {
        padding-left: 5px;
    }
    #viewCartQuick .qcart-youmayaslolike h4 {
        padding: 20px 10px;
    }
    #viewCartQuick .page_header h4, #viewCartQuick .qcart-youmayaslolike h4 {
        font-size: 18px !important;
    }
    #viewCartQuick .product-items {
        margin-left: 0px;
        margin-right: 0px;
    }

    #viewCartQuick .qcart-items {
        display: block !important;
    }

    #viewCartQuick .hidden-xs {
        padding-left: 0px;
        padding-right: 0px;
    }

    #viewCartQuick span.item-thumb {
        display: none;
    }
    #viewCartQuick .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    #viewCartQuick .cart-items {
        padding: 0px;
    }
    #viewCartQuick .cart-items>li {
        margin: 0px;
    }
    #viewCartQuick .cart-items>li.items-header {
        font-size: 11px;
    }
    #viewCartQuick .cart-items>li>span {
        display: block;
        line-height: 1.5;
        padding: 0 5px;
        float: left;
    }
    #viewCartQuick .cart-items>li>span.item-name {
        width: 50% !important;
        padding-left: 0px;
        padding-right: 0px;
    }
    #viewCartQuick .cart-items>li>span.item-qty {
        width: 10% !important;
        text-align: right !important;
        padding: 0px;
    }
    #viewCartQuick .cart-items>.cart-item>.item-price:before, #viewCartQuick .cart-items>.cart-item>.item-total:before {
        display: none !important;
    }
    #viewCartQuick .cart-items>li>span.item-price, #viewCartQuick .cart-items>li>span.item-total {
        width: 20% !important;
        padding: 0px;
        text-align: right !important;
        text-transform: uppercase !important;
    }
    #viewCartQuick .cart-item span a, #viewCartQuick .cart-item span {
        font-size: 11px;
    }
    #viewCartQuick .cart-items>li.cart-item>span.item-price, #viewCartQuick .cart-items>li.cart-item>span.item-qty, #viewCartQuick .cart-items>li.cart-item>span.item-total {
        padding-top: 0px !important;
        color: darkslategrey !important;
    }
}

@media (max-width: 374px) {
    .product-item .action .btn {
        padding: 7px 4px !important;
        font-size: 11px !important;
    }
}
@media only screen and (max-width: 659px) and (min-width: 480px) {
}
@media only screen and (max-width: 767px) and (min-width: 375px) {
    .product-items.product-items-4 .product-item {
        padding: 7px 5px !important;
        margin-bottom: 10px !important;
    }
}
@media only screen and (max-width: 374px) {
    .product-items.product-items-4 .product-item {
        padding: 7px 5px !important;
        margin-bottom: 5px !important;
    }
}

@media (max-width: 991px) {
    #maincat {
        margin: 0px;
    }
    #maincat > a {
        color: black !important;
        vertical-align: middle !important;
        display: inline-block !important;
        margin-right: auto !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
        padding-left: 0px !important;
        width: 100% !important;
        text-align: left !important;
        line-height: 3 !important;
    }
    #maincat > a[aria-expanded="true"] {
        background-color: black !important;
        color: #fff !important;
    }
    #maincat > a:hover, .collapse.in li a:hover, .collapsing li a:hover, #mobile-menulinks a:hover {
        color: #fff !important;
        background-color: black !important;
        -webkit-transition: 0.15s;
        transition: 0.15s;
    }
    #mobile-menulinks li {
        margin: 0px !important;
    }
    #maincat ul li {
        margin: 0px;
        border-top: 1px solid #ececec !important;
    }
    #maincat:first-of-type, #mobile-menulinks #menulinks li:nth-of-type(2) {
        border-top: 1px solid #ececec !important;
    }
    #mobile-menulinks a {
        font-weight: bold;
        color: black !important;
        vertical-align: middle !important;
        display: inline-block !important;
        margin-right: auto !important;
        width: 100% !important;
        text-align: left !important;
        line-height: 3 !important;
    }
    #maincat > a strong:after {
        content: "\25be";
        font-family: fontello;
        position: absolute;
        right: 15px;
    }
    #maincat, #mobile-menulinks #menulinks li {
        border-bottom: 1px solid #ececec;
    }
    .collapse.in li a {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        line-height: 2 !important;
    }
    .collapsing li a {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        line-height: 2 !important;
    }
    .mobile-menu-inner {
        padding: 10px 0px !important;
    }
    #maincat > a > strong, .mobile-menu-widget h3, .mobile-menu-widget ul li a, .mobile-menu-close {
        padding-left: 10px !important;
    }
}
/* end mobile category edit */

/* start mobile product listing edit */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
    background-color: #000 !important;
    color: #fff !important;
}
@media only screen and (max-width: 479px) {
    .product-items.product-items-4 .product-item {
        width: 50%;
    }
    #listing .product-items {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
}
@media (max-width: 767px) {
    #searchGroup .search-actions .product-items {
        padding-top: 0px !important;
    }
    #saleribbon-icon {
        font-size: 12px !important;
        width: 60px !important;
        padding: 2px 5px !important;
    }
}
/* end mobile product listing edit */

/* start mobile weekly deals product listing edit */
#category #weekly-deal-product-items .product-items .product-item {
    width: 23%;
    margin-left: 1%;
    margin-right: 1%;
    border: 1px solid lightgrey !important;
}
#category #weekly-deal-product-items .product-items .product-item .action {
    margin: 16px auto auto !important;
}
@media only screen and (max-width: 659px) {
    #category #weekly-deal-product-items .product-items .product-item {
        width: 48% !important;
    }
}
@media only screen and (max-width: 767px) {
    #category #weekly-deal-product-items .product-items .product-item {
        height: 350px !important;
    }
}
@media only screen and (min-width: 768px) {
    #category #weekly-deal-product-items .product-items .product-item {
        height: 343px !important;
    }
}

@media only screen and (max-width: 991px) and (min-width: 660px) {
    #category #weekly-deal-product-items .product-items .product-item {
        width: 31.33333% !important;
    }
}
/* end mobile weekly deals product listing edit */

/* start mobile product page edit */
@media only screen and (max-width: 479px) {
    #listing h1.page_headers, #listing h1.page_heading, #listing .h1, #listing .h2, #listing .h3, #listing h1, #listing h2, #listing h3 {
        font-size: 15px !important;
    }

    #listing .opt-label {
        margin: 0 0 2px !important;
    }
    #listing .opt-label>label {
        font-size: 13px !important;
    }
    #listing .opt-regular {
        margin: 0px !important;
    }
    #listing .options-inner {
        margin-top: 10px !important;
    }

    .sub-section:last-of-type {
        margin-top: 0px !important;
    }

    #listing .form-group label:first-of-type {
        width: auto;
        padding-right: 80px;
        line-height: 33px;
        float: left;
        position: absolute;
    }
    #listing .qty-input {
        width: auto;
        float: left;
        position: absolute;
        left: 80px;
        margin-top: 6px;
    }
    #listing .btn.btn-addcart {
        width: 130px;
        float: left;
        font-size: 14px !important;
        font-weight: 500 !important;
        margin-top: 3px;
        padding: 8px 16px 8px 16px !important;
        margin-left: 155px;
    }
    #listing .addToCartBlock .qtybox-addcart label:not(.qty-input) {
        margin-top: 6px !important;
    }

    .qty-input input[type=text] {
        width: 70px !important;
        padding: 0 28px 0 0px !important;
    }
    .r-tabs .r-tabs-panel {
        padding: 10px;
    }
    #listing .item, .reviewsBlock, .reviews-snapshot-header p {
        font-size: 12px;
    }
    #listing hr {
        margin-top: 10px !important;
        margin-bottom: 15px !important;
    }
    .product-details .page_heading, .product-details .page_headers {
        margin-top: 15px !important;
        margin-bottom: 5px !important;
    }
    #listing .h1, #listing .h2, #listing .h3, #listing h1, #listing h2, #listing h3 {
        margin-top: 10px;
    }
    #listing .accessoriesBlock .page_heading {
        margin: 0px !important;
    }
    #listing .rTabs {
        margin-bottom: 15px !important;
    }
    .relatedBlock {
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
        padding-top: 25px;
    }

    .mailinglist-input.form-control {
        padding-top: 0px !important;
    }
    .mailinglist-submit {
        height: 34px !important;
        padding: 5px !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    #listing h1.page_headers, #listing h1.page_heading {
        font-size: 24px !important;
    }
}


@media (max-width: 991px) {
    .special-actions {
        margin-bottom: 15px !important;
    }
}
/* end mobile product page edit */

/* start mobile shopping cart edit */
@media (max-width: 479px) {
    .cart-items {
        padding: 0px;
    }
    .cart-items>li>span {
        padding: 0 5px;
    }
    .cart-items .item-name-right .item-actions {
        text-align-last: right;
        display: block;
    }


    .cart-items .quant-input {
        width: 65px !important;
    }
    .cart-items .quant-input input[type="text"] {
        height: 30px !important;
        font-size: 12px !important;
        padding: 0 18px 0 5px !important;
        width: 65px !important;
    }
    .cart-items .qty-input input[type=text], .qty-nav {
        height: 30px !important;
        width: 20px !important;
    }
    .cart-items .qty-nav>button {
        height: 14px !important;
        line-height: 14px !important;
    }


    .cart-items>.cart-item>.item-price {
        width: 32% !important;
    }
    .cart-items>.cart-item>.item-qty {
        width: 25% !important;
        padding-top: 2px !important;
    }
    .cart-items>.cart-item>.item-total {
        width: 43% !important;
        padding-left: 0px;
    }

    .cart-items .item-name-right .item-fullname, .cart-items .item-name-right .item-actions {
        font-size: 11px !important;
    }
    .cart-items .item-name-right .item-fullname a {
        font-weight: 500 !important;
    }

#divShippingMethod .page_heading .pull-right a {
    font-size: 12px !important;
    line-height: 14px !important;
    padding-bottom: 2px;
}
#divPaymentMethods>div {
    margin-top: 0px !important;
}
#divPaymentMethods>div h4 label {
    font-size: 14px !important;
    padding: 5px !important;
}
#divPayment .checkout-with-text {
    margin-top: 15px !important;
}
#spanCheckout .btn-link {
    padding-left: 0px !important;
}
}
@media (max-width: 767px) {
    #viewcart .page_header {
        border-bottom: 1px solid #ececec !important;
    }
    #viewcart .page_heading {
        margin-bottom: 15px !important;
    }
    .cart-items .item-thumb {
        float: left !important;
        margin-right: 2% !important;
        height: auto !important;
        width: 8% !important;
    }
    .cart-items .item-name-right {
        width: 90% !important;
        float: right !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }

    .cart-items>li>.item-name {
        width: 100% !important;
        float: left;
    }
    .cart-items>.cart-item>.item-price {
        margin-right: 0px !important;
        margin-left: auto !important;
        text-align: right !important;
    }
    .cart-items>.cart-item>.item-price:before {
        content: "Price:";
        font-weight: bold;
        margin-right: 5px;
        color: black;
    }
    .cart-items>.cart-item>.item-qty {
        margin-right: 0px !important;
        margin-left: auto !important;
    }
    .cart-items .item-name-right .item-fullname {
    width: 78% !important;
    float: left !important;
}
    .cart-items>.cart-item>.item-total {
        margin-left: auto !important;
        margin-right: 0px !important;
        text-align: right !important;
        float: right !important;
    }
    .cart-items>.cart-item>.item-total:before {
        content: "Total:";
        font-weight: bold;
        color: black;
        margin-right: 5px;
    }
    .cart-items .item-name-right .item-actions {
        text-align-last: right !important;
        display: block !important;
        margin-top: 2px !important;
        width: 22% !important;
        float: right !important;
}

.cart-details .summary-totals {
    font-size: 14px !important;
}

    .cart-items>li.cart-item>span.item-price, .cart-items>li.cart-item>span.item-total {
        padding-top: 8px !important;
        padding-left: 0px !important;
        font-size: 12px !important;
    }

    .cart-items>li.cart-item>span.item-price {
        padding-right: 0px !important;
    }

.cart-items>li.cart-item>span.item-total {
    padding-right: 10px !important;
}

    .cart-items>li.cart-item>span.item-price, .cart-items>li.cart-item>span.item-qty, .cart-items>li.cart-item>span.item-total {
        display: inline-table;
    }
}
@media (max-width: 767px) and (min-width: 480px) {
    .cart-items .item-name-right .item-fullname {
        font-size: 12px !important;
    }
    .cart-items>.cart-item>.item-price {
        width: 20% !important;
    }
    .cart-items>.cart-item>.item-qty {
        width: 20% !important;
    }
    .cart-items>.cart-item>.item-total {
        width: 20% !important;
    }
    .cart-items>.cart-item>.item-price {
        margin-right: 0px !important;
        margin-left: auto !important;
        text-align: right !important;
    }

    .cart-items .quant-input {
        width: 65px !important;
    }
    .cart-items .quant-input input[type="text"] {
        height: 30px !important;
        font-size: 12px !important;
        padding: 0 18px 0 5px !important;
        width: 65px !important;
    }
    .cart-items .qty-input input[type=text], .qty-nav {
        height: 30px !important;
        width: 20px !important;
    }
    .cart-items .qty-nav>button {
        height: 14px !important;
        line-height: 14px !important;
    }
}
@media (max-width: 991px) {
    #viewcart .page_header {
        margin: 0 !important;
    }
}
@media (min-width: 992px) {
    .col-md-8 {
        width: 100% !important;
    }
}
.mobile-sticky-checkout {
    display: none;
}

.coupon-msg {
    margin: 0 0 0px;
}

#checkout-right #submit-button {
    margin-top: 25px;
    width: 100%;
}
#checkout-right .pull-right {
    width: 100%;
}
#spanCheckout .pull-right {
    display: none;
}

@media (max-width: 479px) {
    #checkoutSinglePage .pull-right #submit-button {
        width: 100% !important;
    }
    #checkoutSinglePage .creditcardtext_Field .h3, #checkoutSinglePage .creditcardtext_Field h3 {
    font-size: 18px !important;
    }
#checkoutSinglePage .pull-right .module-expand, #checkoutSinglePage .pull-right .cart-balance-item {
    margin: 6px 0px !important;
}
#checkoutSinglePage #shipResult font, #checkoutSinglePage #obk-qc-warning font {
    font-size: 10px !important;
}
    #checkoutSinglePage .creditcardtext_Field .h3, #checkoutSinglePage .creditcardtext_Field h3 {
        font-size: 16px !important;
        margin: 0px 0px 5px !important;
    }
    #checkoutSinglePage .creditcardtext_Field hr {
    margin: 15px 0px !important;
}
#checkoutSinglePage .creditcardtext_Field div, #checkoutSinglePage #divCheckoutComments .chkComments {
    font-size: 11px !important;
}
#checkoutSinglePage #divCheckoutComments .chkComments .form-control {
    height: auto !important;
}
    #chkShoppingCart .col-sm-2:first-of-type {
        padding-left: 0px !important;
        padding-right: 20px !important;
    }

.module-expand:before {
    font-size: 12px !important;
}
.module-expand:after {
    font-size: 16px;
    margin-left: 6px;
}
#divApplyCoupon {
    padding: 4px 0px !important;
    margin-bottom: 4px !important;
}
.form-control {
    font-size: 12px !important;
    height: 34px !important;
    padding: 5px 5px 0px !important;
}
#divApplyCoupon .form-control {
    padding: 5px 5px 5px !important;
}
#chkShoppingCartCollapse .total_giftcerts {
    width: 40% !important;
}
#chkShoppingCartCollapse .total_cart-giftcerts {
    width: 60% !important;
}
#chkShoppingCartCollapse .cart-tally .coupon-apply {
    width: 36% !important;
    margin-left: 2% !important;
    margin-right: 2% !important;
}
#card-number, #expiration-date, #cvv {
    font-size: 12px !important;
    height: 34px !important;
    padding: 0px 5px 0px !important;
}
.total_cart-shipping, .total_items, .total_cart-taxes {
    width: 64% !important;
}
.total_subtotal, .total_shipping, .total_taxes {
    width: 36% !important;
}
.cart-grandtotal {
    padding: 4px 0 !important;
}
.has-labelholder:before {
    top: 0px !important;
    left: 4px !important;
    font-size: 9px !important;
}
#checkoutSinglePage #shipping_info .checkbox-format.checkbox-format-checkout {
    font-size: 9px;
    padding-left: 20px;
    padding-right: 0px;
}
#checkoutSinglePage .createNewAccount .checkbox-format.checkbox-format-checkout {
    font-size: 9px;
    padding-right: 0px;
}

#checkoutSinglePage #shipping_info .checkbox-format input[type="checkbox"], #checkoutSinglePage #shipping_info .checkbox-format input[type="checkbox"] {
    left: 4px;
}
#chkShoppingCartCollapse .total_div, #checkoutSinglePage .total_div {
    line-height: 24px !important;
}
#checkoutSinglePage #divShipDisc .header {
    padding: 2px 0px 10px !important;
}
#checkoutSinglePage .shipping_info-box, #checkoutSinglePage #notsameAsShipping_box {
    padding: 5px 0px 0px !important;
    width: 100%;
}

#checkoutSinglePage .shipping_info-box .chkField, #checkoutSinglePage #notsameAsShipping_box .chkField {
    padding: 0px 5px;
}
#divCanPostStrike {
    font-size: 13px !important;
    padding: 0px 0px !important;
}
#checkoutSinglePage .page_heading, #divFreeShip, #FreeShipHeader {
    font-size: 13px !important;
}
}

#chkShoppingCartCollapse .total_div, #checkoutSinglePage .total_div {
    line-height: 24px !important;
}

#checkoutSinglePage .password-fields .page_heading {
    margin-top: -23px !important;
}
#checkoutSinglePage .password-fields .required-indicator {
}


@media (max-width: 991px) {
    #checkout-logo {
        z-index: 1;
        background-color: #f7f7f7;
        border-bottom: 1px solid #cfcfcf;
        margin: 0px !important;
        padding: 6px 0px 2px !important;
    }
}

@media (max-width: 767px) {
    #checkoutSinglePage .page_heading {
        font-size: 14px !important;
    }
    #checkout-logo {
        padding: 10px 0px !important;
    }
    #checkout-logo .logo img {
        max-height: 100% !important;
    }
    #checkout-logo .logo>a {
        height: 50px !important;
    }
    .logo {
        text-align: center;
        height: 90px;
    }
    .logo img {
        position: absolute;
        right: 0;
        left: 0;
    }
    .site-header .col-md-3.col-sm-4.col-xs-6 {
        margin: 5px auto 12px !important;
    }
    .head-mobile-nav {
        margin: 20px auto;
    }
    .head-mobile-nav > a div {
    }
    .head-mobile-nav > a span {
    }

    #shipping_info .shipping_info-box {
        width: 100%;
    }
#checkoutSinglePage .head-main-logo {
    width: 100%;
    height: 60px !important;
    padding: 0px !important;
    display: block;
    background: #f7f7f7;
}
#checkoutSinglePage .head-main-logo .row {
    height: auto;
    padding: 10px 0px 6px;
    place-self: center;
}
#checkoutSinglePage .head-main-logo .row .logo, #checkoutSinglePage .head-main-logo .row .logo a, #checkoutSinglePage .head-main-logo .row .logo img {
    height: 44px !important;
}
   #checkoutSinglePage .showcart-md {
        margin-top: 60px;
    }
   #checkoutSinglePage .cart-toggle {
    border-top: 1px solid #f7f7f7;
}
}

@media (max-width: 991px) {
    #checkoutSinglePage .pull-right {
        float: none !important;
    }
    #checkoutSinglePage #submit-button {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    #checkoutSinglePage #total_div {
        padding-top: 0px !important;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    #checkoutSinglePage #checkout-right {
        width: 100% !important;
        margin: 0 0 10px 0 !important;
    }
}
/* end mobile shopping cart edit */

/* start order soon edit */
#countdown-timer {
    margin-left: 10px;
    border-left: 2px solid black;
}

@media (min-width: 480px) and (max-width: 639px) {
#order-now-banner {
    padding: 2px !important;
    font-size: 13px !important;
}
#countdown-timer {
    font-size: 13px !important;
    width: 60px !important;
    margin-left: 5px !important;
    padding-left: 5px;
}
}

@media (max-width: 479px) {
#order-now-banner {
    padding: 2px !important;
    font-size: 8px !important;
}
#countdown-timer {
    font-size: 8px !important;
    width: 40px !important;
    margin-left: 4px !important;
    padding-left: 2px;
    border-left: 1px solid black !important;
}
}
/* end order soon edit */

/* start delivery estimate edit */


@media only screen and (max-width: 479px) {
#delivery-title {
    margin-left: 2% !important;
    width: 73% !important;
    margin-right: 5% !important;
    font-size: 12px !important;
    }
#Shipping-Truck-Icon-v1 {
    width: 15% !important;
    margin-left: 5% !important;
}
.delivery-estimate > div:first-of-type {
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
}

#delivery-result #carrier-name {
    font-size: 10px !important;
}
#delivery-result #delivery-date {
    font-size: 10px !important;
    padding-top: 0px !important;
}
#delivery-result tbody td {
    padding: 3px 0px !important;
}

.delivery-estimate {
    width: 216px !important;
    padding: 0px 0px 0px 0px !important;
}
.delivery-estimate label {
    font-size: 10px !important;
    width: 68px !important;
}
    .delivery-estimate #postal-code {
        font-size: 10px !important;
        width: 152px !important;
        margin: 0 2px !important;
    }

   .delivery-estimate #calculate-delivery {
        font-size: 10px !important;
        width: 50px !important;
        margin-right: 2px !important;
    }
    #delivery-result {
        font-size: 10px !important;
        margin-left: 2% !important;
        margin-right: 2% !important;
        padding: 2px 5px 2px !important;
    }
#delivery-warning {
    font-size: 8px !important;
    padding-bottom: 5px !important;
}
#oshipmaindays {
    font-size: 8px !important;
}
#oshipmethods {
    font-size: 8px !important;
    margin-top: 2px !important;
    padding: 2px !important;
}
#oshipfree {
    font-size: 7px !important;
    padding-top: 2px !important;
}
#postal-input-section {
    padding-bottom: 2px;
}
#postal-input-section span {
    font-size: 8px !important;
}
}

@media (min-width:626px) and (max-width: 991px) {
.delivery-estimate {
    float: left !important;
    width: 49% !important;
    margin-top: 15px !important;
    margin-right: 1% !important;
}
.addToCartBlock {
    float: left !important;
    width: 100% !important;
    margin-left: 0px !important;
}
#listing .addToCartBlock .qtybox-addcart label:not(.qty-input) {
    padding-right: 5px;
}
.quantityBlock {
    float: left !important;
    width: 49% !important;
    margin-left: 1% !important;
}

.addToCartBlock {
    margin-top: 10px !important;
}
}



.delivery-estimate > div:first-of-type {
    width: 84%;
    margin-left: 8%;
    margin-right: 8%;
    margin-bottom: 0px !important;
}

.delivery-estimate {
    width: 335px;
    border: 2px solid #f1f1f1;
    padding: 0px 0px 5px 0px;
    line-height: 2;
}
.delivery-estimate label {
    width: 92px;
    line-height: 3;
    padding-left: 5px;
}
.delivery-estimate #postal-code {
    width: 65%;
    border: 1px solid #ccc;
    font-weight: 500;
    text-align: center;
    margin-left: 1%;
}
.delivery-estimate #calculate-delivery {
    width: 32%;
    margin-left: 0px;
    background-color: black;
    border: 1px solid black;
    font-weight: bold;
    color: white;
}

#delivery-warning {
    color: black;
    font-size: 12px;
    line-height: 1;
    border-bottom: 1px solid gainsboro;
    margin: 0px 10px;
    padding-bottom: 10px;
    font-weight: 500;
}
#delivery-result div {
    text-align: center;
}
#delivery-result span {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: normal;
}
#oshipmethods {
    font-size: 10px;
    margin-top: 5px;
    padding: 5px;
    background-color: #f5f5f5;
    width: 100%;
}
#oshipmethod {
    width: 50%;
    display: inline-block;
}

#oshipfree {
    font-size: 10px;
    padding-top: 5px;
    font-weight: bold;
}

#oshipmaindays {
    font-size: 12px;
}
#delivery-result thead {
    line-height: 2.5;
    background-color: black;
    color: white;
    display: none;
}

#delivery-result #carrier-name {
    font-weight: 600;
    width: 100%;
    text-align-last: left;
    display: inline-block;
    font-size: 16px;
}

#delivery-result #delivery-date {
    width: 100%;
    padding-left: 5px !important;
    padding-top: 2px;
}

#delivery-result tbody td {
    text-align-last: left;
    font-weight: 500;
    display: inline-block;
    padding: 10px 0px;
}

#delivery-result tbody tr {
    border-bottom: 2px solid #ededed;
}

#delivery-result table {
    margin: 0px 10px;
}

#postal-input-section {
    padding-top: 5px;
}

#postal-input-section span {
    font-weight: 500;
    text-align: center;
    display: block;
    font-size: 12px;
}

#Shipping-Truck-Icon-v1 {
    width: 15%;
    float: left;
    height: fit-content;
    margin-left: 6%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    vertical-align: middle;
    max-height: 100%;
    max-width: 100%;
}

#delivery-title {
    display: inline-block;
    margin-left: 2%;
    width: 77%;
    margin-right: 0%;
}

#carrier-name-delivery {
    width: 55%;
    float: right;
    margin-left: 5%;
}

/* end delivery estimate edit */


/* start shopping cart edit */

#checkoutSinglePage .page_heading {
    font-size: 16px;
}
#checkoutSinglePage .creditcard_check h3 {
    font-size: 18px;
}

#checkoutSinglePage .header {
    margin-bottom: 0px;
}

#checkoutSinglePage .page_heading, #checkoutSinglePage .page_headers {
    margin-bottom: 0px;
    padding-bottom: 4px !important;
    text-transform: none !important;
}

#checkoutSinglePage .btn-default.btn-inverse, .btn-primary, #loginAccount .btn {
    font-weight: 500 !important;
    font-family: system-ui !important;
    line-height: 40px !important;
    padding: 0px 12px !important;
}

#checkoutSinglePage .shipping_info-box {
    padding: 15px 0px 10px;
    width: 100%;
}

#checkoutSinglePage .sameAsShipping_box {
    border-bottom: 1px solid #e1e1e1;
    padding: 8px 10px 4px !important;
    background-color: white;
}

#checkoutSinglePage #billing_info .row {
    margin: 0px;
    border: 1px solid #ccc;
    background-color: #fbfbfb;
}

#checkoutSinglePage #notsameAsShipping_box, #shipping_info .shipping_info-box {
    padding: 15px 0px 10px;
}
#checkoutSinglePage .head-main-logo .row {
    margin: 0px;
}

#divCanPostStrike {
    width: 100%;
    text-align: center;
    padding: 8px 0px;
    background-color: #f2efff;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 16px;
    display: none !important;
    font-weight: 600;
    color: black;
}
#divFreeShip {
    width: 100%;
    text-align: center;
    padding: 8px 0px;
    background-color: #f2efff;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 16px;
}

#obk-qc-warning {
    width: 100%;
    text-align: center;
    padding: 8px 0px;
    background-color: #ff4747;
    border: 1px solid #ccc;
    font-size: 16px;
    font-weight: 600;
}
#obk-qc-warning font {
    color: white;
    font-size: 14px;
}

#FreeShipHeader {
    font-size: 16px;
}

#viewcart .displayGiftCertificates {
    margin: 10px 0 10px;
    border-bottom: 1px solid #ececec;
}
#viewcart .section-header {
    border-bottom: 1px solid #ececec;
}

#viewcart .coupons-area, #viewcart .shipQuoteInt, #viewcart .left-subtotal, #viewcart .subtotal-details {
    display: none;
}
#viewcart #cart-right {
    float: right;
    padding-top: 15px;
    width: 100%;
}
#viewcart #cart-right .carttotal-label {
    width: auto;
    padding-right: 5px;
}

#viewcart #cart-right .carttotal-qty {
    width: auto;
    font-weight: 500;
    font-size: 16px;
    padding: 0;
}
#viewcart #cart-right .carttotal-price {
    width: auto;
    float: right;
}

#viewcart .total-saved {
    font-size: 16px;
    text-transform: uppercase;
}
#viewcart .carttotal-label {
    font-weight: bold;
}
#viewcart .carttotal-saved {
    font-weight: bold;
    width: auto;
    float: right;
    color: red;
}

#total_div .total-saved {
    margin: 0 !important;
    line-height: 24px !important;
}

#total_div .total-saved .carttotal-saved {
    width: auto;
    float: right;
}

@media only screen and (max-width: 479px) {
    #viewcart #cart-right .carttotal-label, #viewcart #cart-right .carttotal-price, #viewcart #cart-right .carttotal-qty {
        font-size: 14px !important;
    }
    #viewcart #cart-right .cart-box {
        padding: 10px !important;
    }
    #viewcart #cart-right .order-summary {
        padding-bottom: 10px !important;
    }
    #viewcart #cart-right .order-summary H4 {
        font-size: 13px !important;
    }
    #viewcart .carttotal-saved {
        font-size: 14px !important;
    }
    #checkout-left .account_login {
        font-size: 11px;
    }

    #viewcart .displayGiftCertificates .row .col-sm-4 {
        font-size: 10px !important;
        float: left;
    }
    #viewcart .displayGiftCertificates .row .col-sm-4 #gc_remove {
        font-size: 10px !important;
        padding: 7px 10px !important;
    }
    #viewcart .displayGiftCertificates .col-sm-4 {
        width: 40%;
        padding: 0px 5px;
    }
    #viewcart .displayGiftCertificates .row .col-sm-4:first-of-type {
        width: 30% !important;
        padding-left: 15px !important;
        padding-right: 5px !important;
    }
    #viewcart .displayGiftCertificates .col-sm-4:last-of-type {
        width: 30% !important;
        padding-left: 5px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 767px) {
#viewcart .displayGiftCertificates {
    padding-bottom: 5px;
}
#viewcart .section-header {
    margin: 0 0 5px;
}
#viewcart .displayGiftCertificates .cert-remove {
        text-align: right !important;
        margin-top: 0px !important;
    }
#viewcart .displayGiftCertificates .cert-remove {
    margin-top: 0px !important;
}
    #viewcart .page_heading {
        margin-bottom: 0px !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    #viewcart .displayGiftCertificates .col-sm-4 {
        width: 40%;
        float: left;
    }
    #viewcart .displayGiftCertificates .row .col-sm-4:first-of-type {
        width: 30% !important;
    }
    #viewcart .displayGiftCertificates .col-sm-4:last-of-type {
        width: 30% !important;
    }
    #divCanPostStrike {
        font-size: 14px !important;
    }
    #checkoutSinglePage .page_heading, #divFreeShip, #FreeShipHeader {
        font-size: 14px !important;
    }
}

@media (min-width: 768px) {
#checkoutSinglePage .head-main-logo {
    width: 100%;
    padding: 20px 0px 10px !important;
}
}

@media (min-width: 768px) and (max-width: 991px) {
#viewcart .displayGiftCertificates {
    padding-bottom: 5px;
}
#viewcart .section-header {
    margin: 0 0 5px;
    }
}

@media (min-width: 992px) {
#viewcart .displayGiftCertificates {
    padding-bottom: 10px;
}
#viewcart .section-header {
    margin: 0 0 10px;
    }

@media (max-width: 991px) {
    #pull-right-mobile {
        width: 100%;
        display: block;
        place-self: center;
        padding: 15px 0px 30px;
        border-top: 1px solid #eeeeee;
        margin-top: 10px;
    }
    #pull-right-mobile #submit-button {
        width: 100%;
    }
}

#checkoutSinglePage #checkout-logo {
    width: 10%;
    margin-right: 48.33333333%;
}
#checkoutSinglePage #checkout-logo .logo {
    height: 50px;
}
#checkout-left {
    width: 60% !important;
    z-index: 0;
}
#checkout-right {
    position: fixed !important;
    right: 0 !important;
    height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 40% !important;
    z-index: 1;
}

#chkShoppingCart {
    margin: 0px 0 5px;
    max-height: 412px !important;
    overflow-x: hidden !important;

}

#chkShoppingCart .cart-items {
    padding: 5px 0px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 7px;
    margin-left: 0px;
    margin-right: 0px;
}

#chkShoppingCartCollapse .applyCoupon {
    padding-top: 5px;
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.chkShoppingCart .product-quantity span {
}

#chkShoppingCartCollapse .cart-tally {
    padding-bottom: 10px;
}

#chkShoppingCartCollapse .clearfix .col-xs-6:first-of-type {
    width: 65%;
}
#chkShoppingCartCollapse .clearfix .col-xs-6:last-of-type {
    width: 35%;
}

#divDiscountDetails .total_promotion, #divDiscountDetails .text-right {
    background-color: #efefef;
    font-size: 14px;
    border-bottom: 2px solid #e3e3e3;
    margin-bottom: 10px;
    padding: 5px 5px 2px 5px;
    font-weight: bold;
}
#divDiscountDetails .total_promotion {
    width: 40% !important;
}
#divDiscountDetails .text-right {
    width: 60% !important;
}
#divDiscountDetails {
    margin: 0px 15px;
}


.checkout-1 .site-footer {
    z-index: 0;
}

.checkout-1 .site-footer .col-md-6:first-of-type {
    width: 25%;
    padding-top: 13px;
}
.checkout-1 .site-footer .col-md-6:last-of-type {
    margin-right: 40%;
    width: 35%;
}
}

#chkShoppingCartCollapse .cart-tally .col-sm-9:first-of-type {
    width: 100% !important;
}

#chkShoppingCartCollapse .cart-tally .col-sm-9 {
    width: 60%;
    float: left;
}

#chkShoppingCartCollapse .cart-tally .coupon-apply {
    float: right !important;
    margin-top: 0px;
    width: 30%;
    margin-left: 5%;
    margin-right: 5%;
}

#chkShoppingCartCollapse .scrollbox {
    visibility: visible;
}

#divGiftCertDetails .giftcerts-name {
    width: 50%;
    padding-left: 10px;
}
#divGiftCertDetails .giftcerts-amount, #divGiftCertDetails .giftcerts-balance {
    width: 25%;
    text-align: right;
}


[id^=divPaymentOption] {
    padding: 5px 15px !important;
}

.cc-details .ccgField {
    margin-bottom: 5px !important;
}


.chkField, .chk-questions-section, .insurance-section {
    margin-bottom: 5px !important;
}
.checkout-section {
    margin: 20px 0 0 !important;
}
.account_login1 {
    margin: 0px 0 0 !important;
}

.checkout-options {
    display: none !important;
}

#checkoutSinglePage #divPayment {
    margin-top: 25px !important;
}
.checkout-1 .modal-dialog .loginFormToggler {
    color: rgb(128, 0, 0)!important;
}

@media (max-width: 424px) {
    #chkShoppingCart .product-name a, #chkShoppingCart .base-price, #chkShoppingCart .checkout-1 {
        font-size: 10px !important;
    }
}

@media (min-width: 425px) and (max-width: 991px) {
    #chkShoppingCart .product-name a, #chkShoppingCart .base-price {
        font-size: 12px !important;
    }
}

@media (max-width: 991px) {
#chkShoppingCart {
    margin: 0px 0 5px !important;
}
#chkShoppingCart .cart-items {
        padding: 2px 0px !important;
        margin-bottom: 4px !important;
        margin-left: 0px;
        margin-right: 0px;
}
#chkShoppingCart .form-control {
    height: 34px !important;
}
.checkout-1 {
    font-size: 12px !important;
}
#chkShoppingCart .applyCoupon {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin-bottom: 5px !important;
}
#chkShoppingCart .cart-grandtotal {
    padding: 5px 0 !important;
}

#checkoutSinglePage .col-sm-3 .coupon-apply {
    margin-top: 5px !important;
}
#checkoutSinglePage .coupon-field {
    margin: 0 0 0px !important;
}
#checkoutSinglePage .cart-tally {
    padding-bottom: 10px !important;
    margin-bottom: 0px !important;
}
#checkoutSinglePage .remaining-balance .total_due_amount {
    font-size: 18px !important;
}
    #checkoutSinglePage .shippingOption .col-sm-8 {
        width: 75% !important;
        float: left !important;
        padding-right: 5px !important;
    }
    #checkoutSinglePage .shippingOption .col-sm-4 {
        width: 25% !important;
        float: right !important;
    }
.shippingOption input[type=checkbox], .shippingOption input[type=radio] {
    margin-top: 2px !important;
}
#shipping_info input[type=checkbox], #shipping_info input[type=radio] {
    margin-top: -1px !important;
}

#checkoutSinglePage .shippingOption {
    padding: 10px 5px !important;
}
#checkoutSinglePage #divShipDisc .header {
    font-size: 11px !important;
}
#checkoutSinglePage #divPayment {
    margin-top: 25px !important;
}
#checkoutSinglePage .form-group label {
line-height: 1.5 !important;
}
#checkoutSinglePage #checkout-right .pull-right {
    padding-bottom: 20px;
}
#divDiscountDetails .total_promotion, #divDiscountDetails .text-right {
    font-size: 12px !important;
}
}

@media (min-width: 480px) {
#checkoutSinglePage #divShipDisc .header {
    padding: 5px 0px 0px !important;
}
}

/* end shopping cart edit */

/* start order history download edit */
@media (min-width: 770px) {
    #orderHistoryDownload .hidden-xs div, #orderHistoryDownload .productDownload .total-summary .no-padding {
        width: 33% !important;
        display: inline-block;
    }
}
#download-expiration {
    display: inline-block;
    width: 100%;
    margin-top: 0px !important;
}

/* end order history download edit */

/* start resources edit */
@media (min-width: 768px) {
    .col-sm-9 {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-lg-9 {
        width: 100%;
    }
}
/* end resources edit */

/* start product image scaling fix */
.flex-viewport .product-item .img-responsive {
    width: 165px !important;
    height: 165px !important;
    object-fit: scale-down !important;
}
.category-products .product-item .img-responsive, #search .product-item .img-responsive {
    width: 165px !important;
    height: 165px !important;
    object-fit: scale-down !important;
}
#quickView aside div form#add div div div#main-image a#listing_main_image_link > .mz-figure img {
    min-height: 280px !important;
}
#listing .main-image {
    width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* end product image scaling fix */

/* start product tab edit */
.r-tabs .r-tabs-panel.r-tabs-state-active {
    display: inline-block !important;
    min-width: 100%;
}
.r-tabs-panel {
    font-size: 15px;
    font-weight: 500;
}

/* end product tab edit */

/* start product video edit */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25% !important; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-body.mb-0.p-0 .embed-responsive #VideoGallery {
    height: 105% !important;
}
#addl-images .video_flexslider .flex-viewport .slides {
    padding: 0px !important;
}
#addl-images .video_flexslider .flex-viewport .slides li {
    padding: 0px 5px !important;
}
#addl-images .video_flexslider .flex-viewport .slides li a {
    padding-top: 58% !important;
}
#addl-images .video_flexslider .flex-viewport .slides li a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: auto !important;
}
/* end product video edit */

/* start product table */
@media only screen and (max-width: 767px) {
    #addspecification > tbody > tr td {
        font-size: 10px;
    }
}
@media only screen and (max-width: 767px) {
    #addspecification {
        border-style: double;
    }
    #addspecification #addspectr1 {
        width: 50%;
        display: grid;
        float: left;
        border: 0;
    }
    #addspecification #addspectr2 {
        width: 50%;
        display: grid;
        float: right;
        border: 0;
    }
    #addspecification #addspectr1 span {
        display: inline-block;
        height: 38px !important;
        align-content: center;
    }
    #addspecification #addspectr2 td {
        height: 40px !important;
        align-content: center;
    }
    #addspecification #addspectr1, #addspecification #addspectr2 {
        text-align: center;
        line-height: normal !important;
    }
}
@media only screen and (min-width: 768px) {
    #addspecification #addspectr1 {
        text-align: center;
        line-height: 3;
        border-top: 2px solid darkgrey;
        border-bottom: 1px solid darkgrey;
        border-left: 2px solid darkgrey;
        border-right: 2px solid darkgrey;
    }
    #addspecification #addspectr2 {
        text-align: center;
        line-height: 2;
        border-bottom: 2px solid darkgrey;
        border-left: 2px solid darkgrey;
        border-right: 2px solid darkgrey;
    }
    #addspecification #addspectr2 td {
        padding: 2px;
    }
}
@media only screen {
    #addspecification {
        table-layout: fixed;
        width: 100%;
        text-align: center;
        line-height: 3;
    }
    #addspecification #addspectr1, #addspecification #addspectr3 {
        word-break: break-word;
        background-color: #d3d3d35e;
    }
    #addspecification #addspectr2 {
        word-break: break-word;
        background-color: #fff;
    }
    #addspectr3, #addspectr4, #addspectr5 {
        border-left: 2px solid darkgrey;
        border-right: 2px solid darkgrey;
    }
    #addspectr3 {
        border-top: 2px solid darkgrey;
        border-bottom: 1px solid darkgrey;
    }
    #addspectr4 {
        /* border-bottom: 2px solid darkgrey; */
    }
    #addspectr5 {
        border-top: 1px solid darkgrey;
        border-bottom: 2px solid darkgrey;
    }
}
/* end product table */

/* start content page edit */
#abouth2 {
    text-align: center;
    margin-bottom: 25px;
}
#aboutcat {
    text-align: left;
    font-weight: 600 !important;
    font-family: inherit;
    letter-spacing: 0px;
}
#aboutus p, .videoWrapper {
    margin-top: 2px;
    margin-bottom: 20px;
}
/* end content page edit */

/* start category quickview formatting */
.category-products .product-item .img, #search .product-item .img, #searchGroup .product-item .img {
    margin-bottom: 0px;
}
.radio-format>input[type="radio"]:checked+label.radio-option {
    background-color: black;
    color: #fff;
}
.radio-format {
    margin-left: auto;
    margin-right: auto;
    display: block;
    min-width: 100%;
}
.radio-format>.radio-option {
    line-height: 1;
    background-color: #fff;
    color: black;
    border: 2px solid black !important;
    cursor: pointer;
    margin: 0;
    position: relative;
    min-width: 100%;
}
.radio-format>.radio-option>span {
    display: block;
    text-align: center;
}
#quickView .page_heading {
    font-size: 18px !important;
    margin-bottom: 0px;
    border-bottom: 1px solid lightgrey;
    padding-bottom: 4px;
    text-align: center;
}
#quickView .product-item .name {
    height: fit-content;
    width: 100% !important;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
}
#quickView #prodDetails {
    display: block;
    position: relative;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}
#quickView .col-sm-12.PricingBlock {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}
#quickView #divOptionsBlock {
    padding-top: 5px;
    margin-bottom: 10px;

}
#quickView .qv .options-inner {
    margin-top: 15px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}
#quickView .add-cart-block a {
    color: rgb(128, 0, 0) !important;
    font-weight: 600 !important;
}
/* end category quickview formatting */

/* start kettle chart formatting */
@media (max-width: 1199px) {
    #KettleChart {
        display: none !important;
    }
    #KettleChartMobile {
        display: block !important;
    }
}
@media (min-width: 1200px) {
    #KettleChartMobile {
        display: none !important;
    }
}
/* end kettle chart formatting */

/* start recipe category formatting */
@media (max-width: 767px) {
    .product-item.product-item-thumbstyle  .action, #detailsrecipe {
        /* display: none !important; */
        font-size: 13px !important;
    }
    .product-item.product-item-thumbstyle {
        height: fit-content !important;
        width: 50% !important;
    }
    .product-item.product-item-thumbstyle #details {
        font-size: 13px !important;
    }
}
@media (min-width: 567px) and (max-width: 1199px) {
    .product-item.product-item-thumbstyle .name {
        height: 42px !important;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .product-item.product-item-thumbstyle {
        width: 100% !important;
    }
}
@media (max-width: 1199px) {
    .category-toolbar a#list-view {
        display: none !important;
    }
    .product-item.product-item-thumbstyle {
        margin-bottom: 42px !important;
    }
    .product-item.product-item-thumbstyle .img {
        margin-top: 25px !important;
    }
}
@media (min-width: 40rem) {
    .product-item.product-item-thumbstyle .img {
        min-height: 190px !important;
        min-width: 190px !important;
        border: 0 !important;
    }
}
.product-item.product-item-thumbstyle #details {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 130px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

#category-recipe .action {
    margin-top: 10px !important;
}

#category-recipe .product-items .product-item {
    margin-bottom: 60px !important;
}

/* end recipe category formatting */

/* start contact us page formatting */
@media (max-width: 770px) {
    #contactus .form_data .row {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
#cust_name, #cust_email, #cust_subject, #cust_department {
    width: 100% !important;
    padding: 5px 0px !important;
}
#contactus #fs-frm {
    padding: 0px !important;
}
}

.form_data form label {
    margin-top: 5px;
}

.form_data form input[type="submit"] {
    border: 1px solid #000;
    text-align: center;
    text-transform: uppercase;
    background-color: white;
    float: right;
    line-height: 2;
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px;
    padding: 2px 10px;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
#contactus .error-img {
    font-size: 18px;
}
#contactus #fs-frm {
    padding: 0px 15px;
}
#cust_name, #cust_email {
    width: 50%;
}
#cust_subject {
    width: 60%;
}
#cust_department {
    width: 40%;
}
#cust_name, #cust_subject {
    float: left;
    padding: 5px 10px 5px 0px;
}
#cust_email, #cust_department {
    float: right;
    padding: 5px 0px 5px 10px;
}
/* end contact us page formatting */

/* start site help page formatting */
.sitehelpmenucontainer #helpcat > a {
    color: black !important;
    font-size: 18px;
}
.sitehelpmenucontainer #helpcat > ul h3 {
    text-transform: uppercase;
    text-align: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 5px 0px;
    font-weight: 500;
}
/* end site help page formatting */

/* start category */
#category .page_header {
    margin: 0 0 10px;
}
#category .category-actions .paging a, #category .bottom_breadcrumb .paging a, #searchGroup .category-actions .paging a, #searchGroup .bottom_breadcrumb .paging a, .paging strong, .paging a {
    color: black !important;
}
#category .category-actions .paging {
    width: 90%;
    float: right;
    text-align: end;
    padding-bottom: 15px;
    margin-top: auto !important;
    margin-bottom: auto !important;
}

#category .paging .category-viewall {
    display: none;
}

#category .subcategories>ul {
    margin: 0px !important;
}

#category .col-md-9.cat-items-grid {
    padding: 0px !important;
}

#category .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

#search-bar, #searchGroup .search-actions .row {
    padding: 0 15px;
}



.subcategories {
    border-bottom: 0px solid #ececec;
    padding: 0 0 0px;
}
section.subcategories_block {
	margin-bottom: 30px;
}
@media(min-width: 768px) {
    #TCcategory .subcategories>ul:nth-of-type(3) {
         /* margin-top: 10px; */
         /* padding-top: 10px; */
         /* border-top: 2px solid black; */
    }
}
@media(max-width: 767px) {
    .subcategories>ul {
        margin: 0 -10px !important;
    }
    .subcategories > ul > li {
        width: 25% !important;
        float: left;
        max-width: inherit;
        margin: 0 auto 0;
    }
}
@media screen and  (min-width: 768px) and (max-width: 991px) {
    .subcategories > ul >li {
    }
    .subcategories > ul > li > a {
    }
}
.subcategories > ul >li {
    text-align: center;
    padding: 0 !important;
}
.subcategories > ul > li > a {
    color: black;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    height: 42px;
    text-align: center;
    border: 2px solid black;
    margin: 3px;
    width: -webkit-fill-available;
    align-content: center;
    font-size: 0px;
    border-radius: 3px;
}
.subcategories > ul > li > a:hover, .form_data form input[type="submit"]:hover {
    color: #fff !important;
    background-color: black;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}
.subcategories > ul > li > a:hover img {
}
.subcategories > ul > li span.name, .subcategories > ul > li span.desc {
    display: block;
    text-align: center;
}
.subcategories > ul > li span.name {
    margin: 0;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;

}
.subcategories > ul > li .desc {
    text-align: center;
    /* margin: 0 0 12px 0; */
    /* padding: 0 10px; */
}
.subcategories > ul > li span.category-img {
    height: 160px;
	border: 0px solid #dadada;
    padding: 3px;
}
.subcategories > ul > li span.category-img > img {
    max-width: 100%;
    max-height: 100%;
}

#categoryimg {
    padding-bottom: 40px;
}

#category .product-items .product-item .action .btn, #search .product-item .action .btn {
    font-weight: 500 !important;
}

#category .product-items .product-item {
	text-align: left;
}
#category .breadcrumnb, #category .category-products .titles, .breadcrumnb {
}

#featureBlock {
    border-bottom: 1px solid #ececec;
    margin-bottom: 10px;
}

#featureBlock .titles {
    font-size: 18px;
    text-align: center;
    background-color: #353535;
    color: white;
    line-height: 1.75;
    box-shadow: 0px 5px 5px 3px #6c6c6c;
    border: 1px solid #eeeeee;
    outline: 4px solid black;
}

#quickView .addl-images ul.slides li a#showRealMedia .icon-play {
    height: 100% !important;
}

#quickView .addl-images ul.slides li a#showRealMedia .icon-play:before {
    margin: 0px !important;
}


@media (min-width: 1024px) {
#category .product-items .product-item, #search .product-items .product-item {
	height: 370px !important;
}
#best-value-item {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
}
#best-value-item .product-content, #best-value-item .img {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
}
}
@media (max-width: 1023px) and (min-width: 768px) {
#category .product-items .product-item, #search .product-items .product-item {
	height: 370px !important;
}
#best-value-item {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.33333333% - 20px);
}
#best-value-item .product-content, #best-value-item .img {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
}
}
@media (max-width: 767px) and (min-width: 701px) {
#category .product-items .product-item, #search .product-items .product-item {
	height: 290px !important;
}
}

@media (max-width: 700px) and (min-width: 480px) {
#category .product-items .product-item, #search .product-items .product-item {
	height: 285px !important;
}
}

@media (max-width: 767px) and (min-width: 480px) {
#best-value-item {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.33333333% - 20px);
}
#best-value-item .product-content, #best-value-item .img {
        width: calc(100%);
        margin-left: 0px;
        margin-right: 0px;
}
.category-actions {
    border-bottom: 0px !important;
}
}
@media (max-width: 479px) {
#category .product-items .product-item, #search .product-items .product-item {
	height: 274px !important;
}
#category .product-item .name, #search .product-item .name {
    height: 60px !important;
}
#category .product-item .btn, #search .product-item .btn {
    font-size: 12px !important;
}
#category .product-items .product-item .action .btn, #search .product-items .product-item .action .btn {
        padding: 5px 0px !important;
    }

#category .product-items .product-item .action, #search .product-items .product-item .action {
    margin: 4px auto 3px auto !important;
}

#best-value-item {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
#best-value-item .product-content, #best-value-item .img {
        width: calc(100%);
        margin-left: 0px;
        margin-right: 0px;
}
.category-actions {
    border-bottom: 0px !important;
}
}
/* end category */

/* start shipping times chart edit */
#shiptimeheader th:not(:first-of-type) {
    width: 0%;
}
#TableDiagram {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/* end shipping times chart edit */

/* start checkout edit */
body:not(.has-stickymenu) .cart-box.fixed-cart-box .cart-box-sticky {
    top: 55px !important;
}
@media (min-width: 1200px) {
    body:not(.has-stickymenu) .cart-box.fixed-cart-box .cart-box-sticky {
        max-width: 406px !important;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    body:not(.has-stickymenu) .cart-box.fixed-cart-box .cart-box-sticky {
        max-width: 326px !important;
    }
}
#cart-right .ppCheckout {
    max-width: 100% !important;
}
#divShippingMethod .icon-btn-refresh {
    line-height: normal;
}
#divPaymentMethods {
    padding-bottom: 20px;
}
#divPaymentMethods .ppCheckout {
    max-width: 100% !important;
}
#divPaymentMethods>div {
    margin-bottom: 10px !important;
}

.checkout-with-text {
    left: 0;
    line-height: normal;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    font-weight: bold;
    margin: 2px 0px 10px 0px;
    text-align: center;
}

/* end checkout edit */

/* start product option edit */
.dropdown-format>label, .dropdownimage-format>label {
    width: 95%;
}
#option-header-h4 {
    display: none;
}
.opt-label {
    margin: 0 0 5px;
}
.opt-regular {
    margin: 15px 0 0;
}
.options-inner {
    max-height: 545px;
    overflow: scroll;
    margin-top: 15px;
border-top: 1px solid lightgrey;
    border-bottom: 1px solid lightgrey;
    padding-top: 10px;
}
/* #divOptionsBlock {
    border-top: 1px solid lightgrey;
    border-bottom: 1px solid lightgrey;
} */
div::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}
div::-webkit-scrollbar-track {
  background: #fff;        /* color of the tracking area */
}
div::-webkit-scrollbar-thumb {
  background-color: #353535;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #fff;  /* creates padding around scroll thumb */
}
/* end product option edit */

/* start listing */
.sub-section {
}
#listing h1.header-specials{
}
#listing h1.page_headers, #listing h1.page_heading{
  margin-top: 15px;
  font-size: 26px;
}
.qtyTable-btn {
}

#listing .header > .page_heading {
}
#listing .header > .page_heading:after {
}
#listing .descriptionBlock .header > .page_heading, #listing .FeaturesBlock .header > .page_heading {
}
.productFeaturesBlock ul {
}
#listing .item ul {
    padding-inline-start: 25px;
}
#availabilityStatus {
    display: none;
}
.availabilityInfo {
    font-size:14px;
    padding-left: 10px;
    margin-top: 20px;
}
.product_availability {
}
.pricingBlock .yourprice, .pricingBlock .saleprice {
}
.pricingBlock span {
}
.addToCartBlock .qtybox-addcart label:not(.qty-input) {
    margin-top: 5px;
}
.addToCartBlock .qtybox-addcart label.qty-input {
}
.main-image {
}


/* start listing additional image fix */

.page-content .addl-images a[data-zoom-id] img, .mz-thumb img {
    height: 100% !important;
    border-bottom: 0px !important;
    padding: 1px 0px !important;
}

/* end listing additional image fix */

.addl-images ul.slides li a#showRealMedia {
    background-color: black;
}
.addl-images ul.slides li a#showRealMedia i {
    color: #ececec;
    width: 100%;
    display: block;
    height: fit-content;
}
.icon-play:before {
    vertical-align: middle;
    display: inline-block;
}
.addl-images ul.slides li a#showRealMedia i:after {
    content: "VIDEOS";
    display: inline-block;
    width: 100%;
    height: fit-content;
    font-style: normal;
    vertical-align: middle;
    line-height: 1;
}

@media (min-width: 1200px) {
    .icon-play:before {
        margin-top: 20%;
    }
    .addl-images ul.slides li a#showRealMedia i:after {
        font-size: 16px;
        margin-top: 15%;
        margin-bottom: 20%;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .icon-play:before {
        margin-top: 25%;
    }
    .addl-images ul.slides li a#showRealMedia i:after {
        font-size: 14px;
        margin-top: auto;
        margin-bottom: 15%;
    }
}
@media (max-width: 991px) and (min-width: 601px) {
    .icon-play:before {
        margin-top: 20%;
        font-size: 45px;
    }
    .addl-images ul.slides li a#showRealMedia i:after {
        font-size: 20px;
        margin-top: 10%;
        margin-bottom: 22%;
    }
}
@media (max-width: 600px) and (min-width: 400px) {
    .icon-play:before {
        margin-top: 20%;
        font-size: 25px;
    }
    .addl-images ul.slides li a#showRealMedia i:after {
        font-size: 14px;
        margin-top: auto;
        margin-bottom: 22%;
    }
}
@media (max-width: 399px) {
    .icon-play:before {
        margin-top: 45%;
        font-size: 18px;
    }
    .addl-images ul.slides li a#showRealMedia i:after {
        font-size: 8px;
        margin-top: auto;
        margin-bottom: 45%;
    }
}

.addl-images {
}
.addl-images ul.slides {
}
.addl-images ul.slides li {
}
.addl-images ul.slides li a {
}
@media (min-width: 768px) {
	.addl-images {
	}
	.addl-images ul.slides li {
	}
}
@media (min-width: 1200px) {
	.addl-images {
	}
	.addl-images ul.slides li {
	}
}

#listing .btn.btn-addcart {
    padding: 8px 24px 8px 24px;
}
#listing .btn.btn-addcart:hover {
}
#listing .btn.active, .btn:active {
    -webkit-box-shadow: inset 0 -3px 5px rgba(0, 0, 0, .125) !important;
    box-shadow: inset 0px -3px 5px rgba(0, 0, 0, .125) !important;
}

@media (min-width: 480px) {
#listing .btn.btn-addcart {
    font-size: 16px !important;
    font-weight: 500 !important;
}
}

.opt-label {
}
.opt-label > label {
}

.special-actions {
}
.special-action {
}
.special-action .btn {
}
.special-action .btn i {
}
.product-id {
}
.product-reviews {
    display: inline-block;
    width: 100%;
    margin: 10px 0 15px;
}
.product-reviews a {
}
div.qaLink {
}
div.qaLink a {
}
.user_reviews .review-shortDesc {
}
.user_reviews .review-info {
}

.rTabs {
}
.r-tabs .r-tabs-nav .r-tabs-anchor{
}
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor{





}
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
}
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
}

.quantityBlock .quantity-table {
	margin: 0 0 15px 0;
}

.quantityBlock .qtyTable-btn {
    display: block;
}

.quantityBlock {
    margin-top: 24px;
    width: 335px;
}

.quantityBlock, .addToCartBlock {
    margin-top: 10px;
}

.quantityBlock .header > .page_heading {
    font-size: 16px;
    background-color: #f1f1f1;
    padding: 4px;
    text-transform: none;
}

#qtyTable {
    border: none;
}

#qtyTable .table>thead>tr>th {
    padding: 5px 0px;
}

#qtyTable .table>tbody>tr>td {
    padding: 5px 0px;
}

#qtyTable .table>thead>tr>th:first-of-type {
    padding-left: 5px;
}

#qtyTable .table>tbody>tr>td:first-of-type {
    padding-left: 10px;
}

.quantityBlock .icon-angle-down:before {
    content: none !important;
}

.quantityBlock .icon-angle-down:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f107';
    font-family: 'fontello';
}

@media only screen and (max-width: 479px) {
    .quantityBlock {
        width: 216px !important;
        padding: 0px !important;
    }
.quantityBlock .header > .page_heading {
    font-size: 12px !important;
    margin: 0px !important;
}
.quantityBlock .quantity-table {
    font-size: 10px !important;
}
#qtyTable .table>thead>tr>th, #qtyTable .table>tbody>tr>td {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
}

.likebutton {
	margin-top: 15px;
}

@media only screen and (max-width: 567px) {
    .btn.btn-addcart i {
		display: inline-block;
	}
	.product-item .img .quickview {
		display: none;
	}
}

#listing .short-description, #listing .product-id, #listing .extrafieldsBlock {
}

#listing .extrafieldsBlock {
    display: none;
}

#listing .addToCartBlock {
    margin-top: 20px;
}

#listing .addToCartBlock .qtybox-addcart .hybrid-qty {
    margin-left: 5px;
    margin-right: 15px;
    font-size: 16px;
    height: 42px !important;
    width: 80px;
}

#listing .addToCartBlock .qtybox-addcart .hybrid-qty #qty-select-0 {
    position: absolute;
    width: -webkit-fill-available;
    vertical-align: middle;
    top: 0;
    left: 0;
    padding: 5px 0px;
    font-size: 16px;
    height: 42px;
    text-align: center;
    min-width: fit-content;
    font-weight: 500;
}

#listing .addToCartBlock .qtybox-addcart .hybrid-qty #qty-input-0 {
    padding: 5px !important;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    height: 42px;
}

@media (max-width: 479px) {
   #listing .addToCartBlock .form-control {
        font-size: 16px !important;
        height: 40px !important;
        padding: 5px 0px !important;
    }
    #listing .qty-input {
        margin-top: 3px !important;
    }
}


@media (min-width: 992px) {
#listing .container #add .product-cols {
    margin-left: 0px;
    margin-right: 0px;
}

    #listing .container #add .product-cols .col-md-6:last-of-type {
        background: #fdfdfd;
        border: 2px solid #ececec;
        margin-top: 20px;
        padding-bottom: 20px;
    }

#listing .container #add .product-cols .qtybox-addcart.form-group {
    margin-bottom: 0px !important;
}

#listing .container #add .product-cols .sub-section:last-of-type {
    display: none;
}
}

/* end listing */

.wide-container {
  padding: 40px 0 10px 0;
  background: #fff;
}
@media (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 100%;
    max-width: 980px;
  }
  #caTnaV>.container {
    max-width: none;
}
}
@media (max-width: 1200px) {
#caTnaV>.container {
    /* padding: 0px !important; */
}
}
@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1200px;
  }
  .wide-container {
	  padding: 40px 0 10px 0;
	  max-width: 1260px;
	  background: #fff;
  }
}
@media (max-width: 1299px) {
    #caTnaV>.container {
        /* max-width: 1100px !important; */
    }


}

@media (min-width: 1300px) {
#caTnaV>.container {
        /* max-width: 1400px !important; */
}
}



.form-control {
    color: #5d5d5d;
    /* font-family: 'Open Sans', sans-serif; */
    font-size: 13px;
    height: 38px;
    padding: 7px 12px;
}
.form-control.search-text {
     border-color: #ececec;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#specialamount {
    display: inline-block;
    color: #5d5d5d;
    /* font-family: 'Open Sans', sans-serif; */
    font-size: 13px;
    height: 38px;
    padding: 7px 12px;
    margin-left: 2px;
    margin-right: 10px;
    width: 75px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#specialamountname {
    width: 16.66666667%;
}

.btn {
    font-size: 14px;
    border-width: 2px;
    padding: 7px 12px;
    font-weight: 600;
    border-radius: 0px;
}





.btn-xl {
    padding: 20px 45px;
}
.btn-xs {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 20px;
}
.btn-default {
    border-color: #ffd814;
    border-radius: 25px;
    background-color: #ffd814;
    color: black;
}

#message .btn {
    border-color: red !important;
    border-radius: 25px;
    background-color: red !important;
    color: white;
}
#message .btn:hover {
    border-color: #d80505 !important;
    border-radius: 25px;
    background-color: #d80505 !important;
    color: white;
}
#message .btn-default.active, #message .btn-default:active {
    background-color:#d80505 !important;
    border-color: #d80505 !important;
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    #mobile-menu-trigger2 {
        border-color: black !important;
        border-radius: 0px !important;
        background-color: white !important;
        color: black !important;
    }
}

/* 
.btn-default:hover,
.btn-default:focus, 
.addcart #Add:hover,
.addcart #Add:focus,
#submit-button:hover,
#submit-button:focus {
    border-color: #efcb14;
    background-color: #efcb14;
    color: black;
}
 */

#cart-box .cart-box-sticky .checkout-btns .btn-checkout,
#listing .btn.btn-addcart {
    border-color: #ffd814;
    border-radius: 25px;
    background-color: #ffd814;
    color: black;
}

.btn-default:hover,
.btn-default:focus, 
.btn-default.focus,
#cart-box .cart-box-sticky .checkout-btns .btn-checkout:hover,
#listing .btn.btn-addcart:hover,
.cart-items>li.cart-item>span.item-qty .update-qty:hover {
    border-color: #efcb14;
    background-color:#efcb14;
    color: black;
    opacity: 1;
    text-decoration: initial;
}

.btn-default.active, .btn-default:active, .open>.dropdown-toggle.btn-default {
    background-color: #efcb14 !important;
   color: black !important;
}

#divApplyCoupon .btn-default {
    border-color: #777777 !important;
    background-color: white !important;
    border-width: 1px !important;
    font-weight: 500 !important;
}

#divApplyCoupon .btn-default.active, #divApplyCoupon .btn-default:active {
    background-color: #f7f7f7 !important;
    border-color: black !important;
    color: black !important;
}



/* Initially, hide the coupon field */
#divApplyCoupon .coupon-field {
    display: none; /* Hidden by default */
}

/* Styling for the coupon header */
#divApplyCoupon .coupon-header {
    cursor: pointer; /* Indicates that the header is clickable */
    padding: 10px;
    background-color: #f8f8f8; /* Light background for the header */
    border: 1px solid #ddd; /* Light border */
}

#divApplyCoupon .coupon-header .page_heading {
    float: left;
    width: 70%;
}





/* ===== Cart Row (standalone) ===== */
#chkShoppingCart .cart-row{
  display:flex;
  align-items:center;
  gap:2px;
  flex-wrap:nowrap;
  width:100%;
}

/* neutralize legacy floats on children of the row */
#chkShoppingCart .cart-row > *{ float:none !important; }

#chkShoppingCart .cart-items > .main {
    display: block;
}

/* Left group: image (40px) + qty (42px) */
#chkShoppingCart .cart-row #left-static{
  display:flex;
  align-items:center;
  gap:6px;         /* internal gap between image & qty */
  flex:0 0 auto;
}
#chkShoppingCart .cart-row .col-sm-1{ width:40px; padding:0; }
#chkShoppingCart .cart-row .col-sm-2{ width:42px; padding:0; }

/* Center: can grow/shrink, but never beyond available width */
#chkShoppingCart .cart-row .col-sm-8{
  flex:1 1 auto;
  min-width:0;                       /* allow shrinking */
  overflow:hidden;                   /* clip long titles */
  padding-left: 4px;
}
#chkShoppingCart .cart-row .product-name{ min-width:0; max-width:100%; }
#chkShoppingCart .cart-row .product-name > span,
#chkShoppingCart .cart-row .product-name a{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:normal;
  color:inherit;
  text-decoration:none;
}

/* Right: price hard-pinned to the edge */
#chkShoppingCart .cart-row .col-sm-3{
  margin-left:auto;                  /* push column to far right */
  display:flex;                      /* align .product-info inside */
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
  min-width:90px;
  padding-right:0;
  text-align:right;
  width: auto;
  padding-left: 0px;
}
#chkShoppingCart .cart-row .col-sm-3 .product-info{
  white-space:nowrap;                /* keep $ on one line */
}

/* Vertical centering helper */
#chkShoppingCart .cart-row .vcenter{
  display:flex;
  align-items:center;
}

/* Quantity pill (unchanged) */
#chkShoppingCart .cart-row .product-quantity span{
  display:inline-grid;
  place-content:center;
  width:42px; height:42px;
  border:1px solid #d9d9d9;
  border-radius:50%;
  background:#fff;
  font:700 14px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Base price under the title */
#chkShoppingCart .cart-row .base-price{
  font-size:12px;
  opacity:.7;
  margin-top:2px;
}

/* Mobile tweak */
@media (max-width:600px){
  #chkShoppingCart .cart-row{ gap:4px; }
  #chkShoppingCart .cart-row .col-sm-3{ min-width:65px; }
  /* If you want wrapping on small screens, allow it: */
  /* #chkShoppingCart .cart-row .product-name a{ white-space:normal; } */
#chkShoppingCart .cart-row .product-quantity span {
    font-size: 11px;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
}
.chkShoppingCart .product-image img {
    max-height: 32px;
}
#chkShoppingCart .cart-row .col-sm-1 {
    width: 32px;
}
#chkShoppingCart .cart-row .col-sm-2 {
    width: 32px;
}
#chkShoppingCart .cart-row #left-static {
    gap: 4px;
}

}





/* Arrow styling */
#divApplyCoupon .coupon-header .arrow {
    font-size: 18px; /* Size of the arrow */
    float: right; /* Place arrow to the right */
    transition: transform 0.3s; /* Smooth rotation transition */
    float: right;
    line-height: 1.3;
    margin-right: 25%;
    width: 5%;
}


/* When the dropdown is expanded, rotate the arrow */
#divApplyCoupon .coupon-header.expanded .arrow {
    transform: rotate(180deg); /* Rotate the arrow when expanded */
}

@media (max-width: 991px) {
/* Media query for smaller screens */
    #divApplyCoupon {
        width: 100%;
    }

    #divApplyCoupon .coupon-header .page_heading {
        width: max-content;
    }
    #divApplyCoupon .coupon-header .arrow {
    font-size: 14px !important;
        margin-right: auto;
        width: auto;
        float: left;
    }
}


.btn-default.btn-inverse, .btn-primary {
    border-color: #ffd814;
    border-radius: 25px;
    background-color: #ffd814;
    color: black;
    font-size: 16px;
    font-weight: 600;
}
.btn-default.btn-inverse:hover,
.btn-primary:hover {
    border-color: #efcb14;
    background-color: #efcb14;
    color: black;
    opacity: 1;
}
.btn-primary.active, .btn-primary:active, .open>.dropdown-toggle.btn-primary {
    color: black !important;
    background-color: #efcb14 !important;
    background-image: none;
    border-color: #efcb14 !important;
}
.btn-primary.focus, .btn-primary:focus {
    color: black !important;
    background-color: #efcb14 !important;
    border-color: #efcb14 !important;
}
.header-navigation {
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.header-navigation {
		margin-bottom: 30px;
	}
}
body.home-page .header-navigation {
	margin-bottom: 0px;
}

.navbar-wrapper {
    background: #fff;
    margin-bottom: 0px;
    position: relative;
    z-index: 12;
}
.navbar-wrapper.navbar-menu {
	background: #fff; /* Old browsers */
	margin-bottom: 15px;
}
.navbar.navbar-inverse {
	min-height: 45px;
    margin-bottom: 0;
    padding:0px 0;
    border: none;
    border-top: 0px solid #5d5d5d;
    background-color: transparent;
}
.navbar .navbar-nav {
	display: block;
    float: left;
    vertical-align: top;
}
.navbar .navbar-collapse {
    text-align: left;
}
.navbar-nav > li {
	display: block;
	float: left;
}
#menulinks- {
	float: none;
	text-align: right;
}
#menulinks- li {
	float: none;
	display: inline-block;
}
#menulinks- li:first-child:after {
	content: '/';
	display: inline-block;
}
#menulinks- li a {
    display: inline-block;
    color: #51524e;
    font-weight: 400;
    letter-spacing: 0em;
    text-transform: none;
    font-size: 14px;
    line-height: 34px;
    min-height: 34px;
    padding: 0 10px;
}

#menulinks-outer .navbar-nav {
	/* float:right; */
}
#menulinks-outer .navbar-nav > li > a {
    color: #51524e;
    font-weight: 400;
    letter-spacing: 0em;
    text-transform: none;
    font-size: 14px;
    line-height: 34px;
    min-height: 34px;
    padding: 0 10px;
}
#menulinks-outer .navbar-nav > li:hover > a, #menulinks-outer .navbar-nav > li > a:hover, #menulinks-outer .navbar-nav > li > a:focus {
    color: #000000;
    background-color: transparent;
}
#menulinks-outer .navbar-nav > li > a i.menu-icon {
	font-size: 22px;
}

#caTnaV {
    border-top: 1px solid #fbfbfb;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 0px;
    background: #fbfbfb;
    padding: 0px;
}
#categories-outer {
	margin: 0px -30px;
}
#categories-outer .navbar-nav {
	text-align: center;
}
#categories-outer .navbar-nav > li {
	float: none;
	display: inline-block;
}
#categories.navbar-nav {
	margin: 0 -15px;
	float: none;
	width: auto;
	position: relative;

}
#categories.navbar-nav > li {
	vertical-align: top;
	position: static;
	z-index: auto;
	padding: 0 0px 0 0;
}
#categories.navbar-nav > li:before {
	content: '|';
    display: none;
    float: right;
    line-height: 44px;
    position: relative;
    left: 8px;
    font-size: 20px;
    font-weight: 700;
}
#categories.navbar-nav > li:last-child:before {
	display: none;
}
	

#categories.navbar-nav > li > a {
	font-size: 14px;
	font-weight: 400;
	padding: 0 18px 0 18px;
	line-height: 52px;
	color: #fff;
	text-transform: uppercase;
}
#categories.navbar-nav > li.dropdown > a {
	padding: 0 28px 0 18px;
}
@media (max-width: 1199px) {
	#categories.navbar-nav > li > a {
		font-size: 13px;
	}
}
#mobile-categories #categories.navbar-nav > li > a {
	min-height: inherit;
	line-height: normal;
	color: #5d5d5d;
	font-size: 14px;
	padding: 0;
}
#mobile-categories #categories.navbar-nav > li > a:before {
	display: none;
}
	#mobile-categories #categories.navbar-nav {
		margin: 0;
	}
	#mobile-categories #categories.navbar-nav > li:before {
		display: none;
	}
	#categories.navbar-nav > li > a:after {
	}
	#categories.navbar-nav > li:hover > a, #categories.navbar-nav > li > a:focus {
		background: #000;
		color: #fff;
	}
	#categories.navbar-nav > li:hover > a:before {
		content: '';
		position: absolute;
		bottom: 5px;
		width: 80%;
		left: 10%;
		border-bottom: 0px solid #5e5444;
	}

.navbar-nav > li > .dropdown-menu {
	position: absolute;
	top: 100%;
	left: auto;
	right: auto;
	background: #fff;
	border: 0px solid #404242;
	padding: 0px 0px;
	width: 100%;
	max-width: 280px;
	/* min-height: 200px; */
	overflow: hidden;
	display: none;
	color: #fff;
}

.navbar-nav > li > .dropdown-menu.menu_sm {
	max-width: 600px;
}
.navbar-nav > li:first-child > .dropdown-menu {
}
.navbar-nav > li:nth-child(5) > .dropdown-menu {
}
.navbar-nav > li:last-child > .dropdown-menu {
	/* left: auto; */
	/* right: 0; */
}
.navbar-nav > li > .dropdown-menu.mega {
}
@media (max-width: 1199px) {
	.navbar-nav > li > .dropdown-menu {
	}
	.navbar-nav > li:last-child > .dropdown-menu {
	}
}

#categories-outer .dropdown-menu > li {
	padding: 1px;
	border-top: 1px solid #e9e9e9;
}
#categories-outer .dropdown-menu > li > a {
    padding: 12px 12px;
    font-size: 13px;
    color: #333;
    background: transparent;
    font-weight: 500;
    text-transform: uppercase;
}
#categories-outer .dropdown-menu > li:hover > a {
	color: #000000;
	background: transparent;
}

.dropdown-menu > li:hover > a, .dropdown-menu > li:focus > a {
}
.navbar-nav > li.dropdown > a:after {
    content: "\f107";
    font-family: "fontello";
    font-size: 18px;
    line-height: 52px;
    margin: 0 2px;
    float: right;
    position: absolute;
    right: 2px;
    top: 0;
}
.navbar-header {
	float: none;
	font-size: 14px;
	font-weight: 400;
	color: #51524e;
	padding: 0px 0 0px 0;
	background: #eee; /* Old browsers */
	border-bottom: 1px solid #e9e9e9;
	text-transform: uppercase;
}
.navbar-header .navbar-toggle {
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	height: 40px;
	border-color: transparent;
	margin: 0px 5px 0px 5px;
	padding: 10px 10px;
	font-size: 12px;
	line-height: 20px;
	color: #333;
}
.navbar-header .navbar-toggle span {
	color: #333;
	font-size: 18px;
	vertical-align: bottom;
}
.navbar-header .navbar-toggle:hover {
	color: #fff;
	background: #333;
}
@media (max-width: 991px) {
  .navbar-header {
  }
  .navbar-left,.navbar-right {
      float: none !important;
  }
  .navbar-header .navbar-toggle {
      display: block;
      height: 42px;
      border-color: transparent;
      margin: 7px 5px 7px 5px;
      padding: 13px 5px;
      font-size: 15px;
      line-height: 14px;
      color: #333;
  }
  .navbar-header .navbar-toggle:hover, .navbar-header .navbar-toggle:focus {
      background-color: #000000;
	  text-decoration: none;
  }
  .navbar-header .navbar-toggle:hover span, .navbar-header .navbar-toggle:focus span {
		color: #000000;
  }
  .navbar-header .navbar-toggle .icon-bar {
      background-color: #333;
  }
.navbar-header .navbar-toggle:hover .icon-bar, .navbar-header .navbar-toggle:focus .icon-bar {
      background-color: #000000;
  }

  .navbar-collapse.collapse {
      display: none!important;
  }
  .navbar-nav {
      float: none!important;
  }
  .navbar-nav>li {
      float: none;
	  display: block;

	  text-align: left;
  }
  .collapse.in{
      display:block !important;
  }
  .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
		margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    #menulinks-outer .navbar-nav .open .dropdown-menu > li > a {
        color: #fff;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
    }
    .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
}

.breadcrumnb ol li {
	font-size: 12px;
	font-weight: 400;
}
.breadcrumnb ol li > a, .breadcrumnb ol li > span {
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1.5;
}
.breadcrumnb ol li:after {
	content: '|';
	color: #000;
}
/*
** Template code
*/

/* start singlepage checkout formatting */

#checkout-logo {
    margin: 10px 0px;
}
#checkout-logo .logo {
}

#checkoutSinglePage .btn-link, 
#checkoutSinglePage .col-xs-6.text-right a, 
#checkoutSinglePage .cart-items a, 
#checkoutSinglePage .page_heading span a,
#myaccount .logout-btn button.btn-link,
#myaccount .saved-cart_actions .button .btn.btn-link, 
.page_header .button a {
    color: rgb(128, 0, 0);
}

#checkoutSinglePage .creditcard_check a {
    color: rgb(128, 0, 0);
    font-weight: 600;
}

#checkout-left .btn {
    border-width: 0;
    vertical-align: baseline;
}

.savedOrders .saved-cart_actions .button.pull-right:first-of-type a:hover, 
.savedOrders .saved-cart_actions .button.pull-right:first-of-type a:focus {
    /* background-color: black !important; */
    /* color: white !important; */
}

#checkoutSinglePage .account_login .btn-link {
font-weight: 600;
}

/* end singlepage checkout formatting */

/* sticky header styles */
.sticky-header.shrink .site-header {
	padding: 10px 0;
	background: #fff;
}
.sticky-header.shrink .logo {
	height: 64px;
}
.sticky-header.shrink .site-header .useraccount{
	float: right;
}
@media(min-width: 992px) {
	.sticky-header.shrink .site-header .useraccount .utils span {
		display: none;
	}
}
.sticky-header.shrink .site-header .searchBox {
	margin: 10px 0 10px auto;
    float: left;
    clear: none;
}

#sticky-toggle {
	display: none;
}
.sticky-on #sticky-toggle {
	display: block;
}
#sticky-toggle a {
	padding: 0 !important;	
}

.sticky-ads {
	display: none;
	margin: auto;
	position: absolute;
	top: -5px;
	bottom: 0;
	left: 0;
	text-align: center;
	font-size: 22px;
	color: #333;
	width: 60px;
	line-height: 52px;
}
.sticky-ads:hover {
	color: #000000;
}
.sticky-on .sticky-ads {
	display: block;
}
.sticky-ads.abs-left img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	max-height: 50px;
	margin: auto;
}
.sticky-ads.abs-right {
	left: auto;
	right: 0;
}
.sticky-ads.abs-right2 {
	/* left: auto; */
	/* right: 60px; */
}

/* start menu bar search and cart edit */
@media (min-width: 40rem) {
    .sticky-ads.abs-right:hover, .sticky-ads.abs-right2:hover {
        background-color: black;
        color: #fff;
    }
    /* Ensure .main-cart-quantity keeps its normal color even when parent is hovered */
    .sticky-ads.abs-right:hover .main-cart-quantity,
    .sticky-ads.abs-right2:hover .main-cart-quantity {
      color: black !important;
    }
    .sticky-ads.abs-right, .sticky-ads.abs-right2 {
        color: #161616;
    }
}
@media (min-width: 1201px) {
    table.searchlight-results {
        width: 416px !important;
        font-size: 14px !important;
    }
    span.searchlight-result-text {
        display: inline-block;
        width: 408px !important;
    }
    div.searchlight-results-wrapper {
        border: 1px solid #c7c7c7 !important;
    }
}
/* end menu bar search and cart edit */

.logo {
    height: 110px;
    margin: 0px 0;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media screen and  (min-width: 768px) and (max-width: 991px) {
    .logo {
        margin-top: 12px !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
    #checkoutSinglePage #checkout-logo .logo {
        height: 50px !important;
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}
@media(min-width: 992px) {
    .logo {
	    height: 110px;
	    margin: 0;
	   }
}
@media(min-width: 1200px) {
    .logo {
    }
}
.logo img {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0px;
    margin: auto;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
	z-index: 13;
}
@media(max-width: 991px) {
}
.logo a:hover img {
    opacity: 1;
}

.custom_mid {
	margin-top: 10px;
}
@media(min-width: 992px) {
	.custom_mid {
		margin-top: 20px;
	}
}

.useraccount {
	margin: 10px 0;
}
#mobile-menu-trigger2 {
	margin: 6px 0;
}
.utils {
    margin: 0px 0 0px 15px;
    padding: 0;

    list-style: none;
    text-align: right;
    float: right;
}
    .utils li {
        display: inline-block;
        text-align:right;
        line-height: 40px;
        padding: 0 7px;
		font-size: 18px;
		font-weight: 400;
		color: #5d5d5d;
    }

    .utils a {
    }

    .utils a:hover {
    }
    .utils a:hover i {
	}
	.utils i {
		color: #404242;
		font-size: 28px;
	}
.top_links {
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 7px 5px;
	margin: 0 5px;
	position: relative;
}
.top_links span {
	/* color: #333; */
	font-size: 18px;
}
.top_links:hover {
	color: #c7c3c3;
	text-decoration: none;
}
.top_links:hover span {
	/* color: #00713A; */
}
.top_links i {
	color: #fff;
	background: #000000;
	position: absolute;
	display: inline-block;
	z-index: 0;
	padding: 0;
	top: -15px;

	left: 15px;
	width: 27px;
	height: 27px;
	line-height: 26px;
	font-size: 14px;
	font-style: normal;
	line-height: 29px;
	font-weight: 400;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}
.slogan {
	line-height: 30px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	text-align: right;
	float: none;
	padding: 10px 0 10px 0;
	text-transform: uppercase;
	text-align: center;
}
.slogan a {
	display: inline-block;
	/* text-decoration: none; */
	color: #333;
	/* text-align: center; */
	/* font-weight: 400; */
	/* font-size: 12px; */
	margin-left: 5px;
}
.slogan a:hover {
	color: #000;
}
@media(min-width: 768px) {
	.slogan a {
		margin-left: 5px;
		/* font-size: 12px; */
	}
}
@media(min-width: 992px) {
	.slogan {
		float: none;
		text-align: right;
	}
}
.slogan .icon-basket {
	position: relative;
}
.slogan i {
	font-size: 13px;
}
.slogan i:not(.icon-menu):before {
}
.top_text {
	float: right;
	color: #3c3c3c;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
	margin: 12px 10px;
}
.free_ship_text {
	text-align:right;
	text-transform: none;
}
.site-header {
    padding: 10px 0;
    background: #fff;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid #ececec;
    border-top: 5px solid #fff;
}
@media(min-width: 768px) {
	.site-header {
		padding: 10px 0 10px 0;
		border-bottom: 0px solid #ececec;
		border-top: 0px solid #444;
		/* background: #fff; */
	}
}

@media only screen and (max-width: 991px) {
    #caTnaV {
        border-top: 0px solid #ececec !important;
        border-bottom: 1px solid #e3e3e3 !important;
    }
}

@media(min-width: 992px) {
	.site-header {
	}
}
.site-header .container {
	position: relative;
}
@media(max-width: 767px) {
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999999;
}

.site-header .searchBox {
    float: left;
    width: 100%;
    max-width: 420px;
    min-width: 250px;
    padding: 0;
    margin: 8px 0px 0px auto;
    background: none;
    border: 0px solid #ededed;
    position: relative;
}
@media(min-width: 992px) {
	.site-header .searchBox {
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.site-header .searchBox {
            width: 80%;
        }
}
.sticky-on .logo {
    /* height: 100px; */
    /* margin: 15px 0; */
}
.sticky-on .slogan a{
	display: inline-block;
}
.sticky-on .slogan {
	margin: 20px 0 20px 0;
}
.sticky-on .site-header {
	background-color: #fff;
	border-top: 5px solid #fff;
}
.sticky-on .site-header .searchBox {
	display: block;
    margin: 0px 0 0px auto;
    border: 1px solid #404242;
    /* max-width: 300px; */
    max-width: 405px;
}
.sticky-on .site-header {
	display: block;
}
.sticky-on #caTnaV {
	display: none;
}
@media(min-width: 768px) {
	.sticky-on .site-header {
		display: block;
		padding: 5px 0;
	}
}
@media(min-width: 992px) {
	.sticky-on .navbar-header, .sticky-on .site-header {
		display: none;
	}
	.sticky-on #caTnaV {
		display: block;
	}
}
.searchBox {
    padding: 0px 0;
	position: relative;
}
.search-form {
    position: relative;
    border: 1px solid #c7c7c7;
}

.search-form .search-text {
    padding: 9px 42px 9px 12px;
    height: 50px;
    border: none;
    background: #fff;
    color: #5d5d5d;
    text-transform: none;
    font-weight: 400;
    font-size: 15px;
}
.search-form .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    text-align: center;
    font-size: 18px;
    border: none;
    padding: 0;
    background: #fff;
    color: #000;
}

table.searchlight-results {
    margin-top: -1px;
}
table.searchlight-results td {
    padding-right: 6px !important;
}
tr.searchlight-spacer-row {
    display: none;
}

.search-price {
    margin-left: 5px !important;
    margin-right: 10px !important;
    margin-top: 2px !important;
}
table.searchlight-results .searchlight-result-icon {
    margin-right: 8px !important;
    margin-left: 2px !important;
}

@media (max-width: 1200px) {
    table.searchlight-results {
	width: 374px !important;
        font-size: 12px !important;
    }
    span.searchlight-result-text {
        display: inline-block;
        width: 366px !important;
    }
    div.searchlight-results-wrapper {
        border: 1px solid #c7c7c7 !important;
    }
}

.minicart {
    min-width: 165px;
    height: 60px;
    float: right;
    padding: 15px 0 15px 10px;
    border-left: 1px solid #ececec;
}
.minicart-inner {
    display: block;
    color: #5d5d5d;
    text-transform: uppercase;
    cursor: pointer;
}
.minicart-inner:hover {
    color: #5d5d5d;
    opacity: 0.8;
}
.minicart .cart-icon {
    display: block;
    width: auto;
    height: 30px;

    line-height: 30px;
    font-size: 30px;
    float: left;
    margin-right: 5px;

}
.minicart .cart-details {
    display: block;
    float: left;
}

span.cart-title {
    font-size: 12px;
    line-height: 15px;
    display: block;
	font-weight: bold;
}
span.cart-count {
    color: #676767;
    font-size: 10px;
    display: block;
    line-height: 15px;
	font-weight: 400;
}

.site-footer {
	border-top: 1px solid #f4f4f4;
	background: #353535;
	padding: 20px 0px 0px;
}
.site-footer .copyright a {
	color: #337ab7 !important;
}

@media (min-width: 768px) {
    .site-footer {
		padding: 20px 0px 0px;
	}
}
.footer-txt {
}
.footer-txt > span {
}
.footer-txt > div, .footer-txt > p {
}
@media (min-width: 768px) {
	.footer-txt > div, .footer-txt > p {
	}
}
.footer-txt > div {
}

/* start footer social link edit */

.social-icons .icon-youtube:hover,
.social-icons .icon-youtube:focus {
    color: red !important;
}

.social-icons .icon-twitter:hover,
.social-icons .icon-twitter:focus {
    color: rgb(29, 161, 242) !important;
}

.social-icons .icon-facebook:hover,
.social-icons .icon-facebook:focus {
    color: rgb(59, 89, 152) !important;
}

@media (max-width: 767px) {
    .site-footer .social-icons li a {
        font-size: 28px !important;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .site-footer .col-md-4 {
        margin-right: 2.25% !important;
        margin-left: !important;
        margin-bottom: 5px !important;
        float: right;
    }
}
@media (min-width: 992px) {
    .site-footer .col-md-4 {
        margin-left: !important;
        margin-bottom: 5px !important;
        float: right;
    }
    .site-footer .col-md-4 li {
        float: right;
        margin-right: 10px !important;
    }
}
/* end footer social link edit */

ul.extrapages {
	text-align: left;
}
ul.extrapages li.label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 5px;
	color: #333;
	text-transform: uppercase;
}
ul.extrapages li {
	display: block;
	line-height: 1.75em;
	margin: 0 0 8px 0px;
}
ul.extrapages li a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
}
	ul.extrapages li a:hover {
		background: none;
	}
    ul.extrapages li a i{
        /* font-size: 10px; */
        vertical-align: middle;
        /* color: #cb0826; */
    }

.global-footer {
	text-align: center;
}
.copyright {
	border-top: 1px solid #ccc;
	margin-top: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	background: none;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height:1.5em;
}
@media(min-width: 768px) {
    .copyright {
		text-align: left;
		}
}
.copyright_txt {
	padding-top: 6px;
	text-transform: none;
}

.newsletter {
	background: #000000;
	color: #fff;
	padding: 25px;
	text-align: left;
}
.mailist-box {
    width: 100%;
    float: none;
    text-align: left;
    margin-bottom: 15px;
}
.mailist-box form{
    margin:auto;
}
.mailist-box h3 {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0px;
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
	text-align: left;
	margin: 0 !important;
	padding: 0 0 10px 0;
}
@media (min-width: 992px) {
	.mailist-box h3 {
		/* text-align: left; */
	}
}
@media (min-width: 1200px) {
	.mailist-box h3 {
		font-size: 14px;
	}
}
.mailinglist-form {
    margin: auto;
    max-width: 400px;
    border: 0px solid #ccc;
}
.mailinglist-input.form-control {
    background-color: #fff;
    border-color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    max-width: 80%;
    height: 40px;
    color: #333;
    float: left;
}
.mailinglist-input.form-control::placeholder {
	color: #3b3b3b;
}
.mailinglist-submit {
    border: 0px solid #91d2c0;
    float: right;
    width: 18%;
    height: 40px;
    font-weight: 400;
    border-color: #464646 !important;
    background-color: #fff !important;
    font-size: 0px;
    color: #464646 !important;
    border-radius: 0;
}
.mailinglist-submit i{
    font-size: 18px;
}
@media (min-width: 768px) {
    .mailinglist-submit {
        font-size: 0px;
    }
    .mailinglist-submit i{
        display: block;
    }
}
.btn-default.mailinglist-submit:hover, 
.btn-default.mailinglist-submit:focus {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
.mailinglist-response {
    display: none;
}
.maillist-options {
	display: block;
	margin: 0px 0 0;
	text-align: center;
	color: #636363;
}
.subscribe {
    float: none;
    display: inline-block;
    margin: 12px 15px 0 0;
    line-height: 13px;
}
@media (min-width: 768px) {
	.maillist-options {
		text-align: center;
	}
    .subscribe {
    }
}
@media (max-width: 991px) {
	.maillist-options, .mailist-box h3 {
		text-align: center;
	}
	.site-footer .row .col-sm-12 {
		float: left;
		width: 100%;
	}
	.site-footer #footerpayments {
		width: 100%;
	}
	.site-footer .row .col-sm-12 .visible-xs.extrapages-shower {
    display: inline-block !important;
    width: 100% !important;
    margin-bottom: 10px;
	}
	.site-footer > .container > .row .col-md-offset-2.col-md-4 {
    margin-top: 10px;
	}	
}

@media (min-width: 992px) {
	.col-md-offset-2 {
		margin-left: 13.66666667%;
	}
	.site-footer #footerpayments {
		width: 50%;
	}
}

.subscribe input[type="radio"] {
    margin: 0;
    vertical-align: middle;
}
.subscribe label {
    margin: 0;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    margin-left: 3px;

    color: #fff;
    cursor: pointer;
    text-transform: none;
}

.crmRequests.col-lg-12 {
    display: none;
}


.seals {
	margin-bottom: 20px;
}

ul.payment-icons {
	margin: 0px 0 0 0;
	padding: 0 12px;
	text-align: center;
	color: #fff;
}
@media(min-width: 768px) {
    ul.payment-icons {
        text-align: right;
    }
}
ul.payment-icons li {
    font-size: 21px;
    line-height: 32px;
    vertical-align: middle;
    padding: 0 2px;
}
@media(min-width: 992px) {
    ul.payment-icons li {
        font-size: 28px;
    }
    ul.payment-icons li.payment-icons-securetrust {
    padding: 0 5px 0 0 !important;
    }
}

ul.payment-icons li.payment-icons-securetrust {
    display: inline-block;
    padding: 0 5px 0 0;
    margin: 10px 0 5px;
}

ul.payment-icons li.payment-icons-label {
    padding: 0 5px;
}

ul.social-icons li.social-icons-label {
    padding: 0 5px;
    margin: 0 0 5px;
}

ul.payment-icons li.payment-icons-label,
ul.social-icons li.social-icons-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    vertical-align: sub;
    text-transform: uppercase;
}

.social-icons {
    width: auto;
    float: none;
    margin: 8px 0 8px 0;
    padding: 0 !important;
    text-align: center;
    color: #fff;
}
.social-icons li {
	margin: 2px 4px 0px !important;
	padding: 0;
}
.social-icons li a {
    color: #fff;
    background-color: transparent;
    /* width: 30px; */
    height: 30px;
    line-height: 30px;
    border-radius: 0;
    display: block;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    border: none;
    padding: 0 !important;
    text-decoration: none;
}
.social-icons li a span {
    /* font-size: 16px; */
}
@media(min-width: 992px) {
	.social-icons {
		margin: 0px 0px 0px 0px;
	}
	.social-icons li {
		vertical-align: sub;
	}
	.social-icons li a {
	}
}
.social-icons li a:hover {
    opacity: 1;
    border-color: #2a2a2a;
    color: #2a2a2a;
}



.reviews-stars {
	font-size: 16px;
	margin-bottom: 2px;
}

.reviews-stars:before {
    font-family: "fontello";
    content: "\e804 \e804 \e804 \e804 \e804";
    color: #e3e3e3;
}
.rating:hover .rating-star:hover,
.rating:hover .rating-star:hover ~ .rating-star,
.rating-input:checked ~ .rating-star,
.reviews-stars {
    color: #ff4700;
}

/* Product Brand Link */

#category .product-item .name, #search .product-item .name {
    margin-top: -5px;
}

#category .sortsize2, #search .sortsize2, #home-new .sortsize2 {
    display: block !important;
    width: auto;
    margin-left: 6px;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 4px;
    padding-left: 1px;
    float: left;
    line-height: .75;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #e3e1e1;
}

/* start of brand styling */

#listing .product-details .sortsize2 {
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    float: left;
    line-height: normal;
    font-weight: bold;
    font-size: 16px;
}

#listing .product-details .sort-size-2 {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#listing .product-details .sort-size-2 a{
    display: block;
    color: inherit;
    text-decoration: none;
}

/* end of brand styling */

#listing .accessoriesBlock .sortsize2 {
    display: block !important;
    width: auto;
    margin-top: 0px;
    margin-bottom: 4px;
    margin-left: 6px;
    margin-right: auto;
    float: left;
    line-height: .75;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #e3e1e1;
}
#listing .accessoriesBlock .sort-size-2 a {
    color: black;
}

@media (min-width: 480px) and (max-width: 991px) {
    #listing .product-details .sortsize2 {
        margin-top: 5px !important;
    }
    #listing .accessoriesBlock .sortsize2 {
        margin-bottom: 0px !important;
        margin-left: 5px !important;
        font-size: 14px !important;
    }
#category .sortsize2 a, #search .sortsize2 a, #home .sortsize2 a {
        font-size: 14px !important;
    }
    #category .sortsize2, #search .sortsize2 {
        margin-left: 4px !important;
        font-size: 12px !important;
        margin-bottom: 3px !important;
        margin-top: 4px !important;
}

#home .sortsize2 {
        margin-left: 4px !important;
        margin-bottom: 4px !important;
margin-top: 1px !important;
}
}

@media (max-width: 479px) {
    #category .sortsize2 a, #search .sortsize2 a, #home .sortsize2 a {
        font-size: 11px !important;
    }
    #listing .product-details .sortsize2 {
        width: 100% !important;
        margin-top: 0px !important;
        margin-bottom: 25px !important;
}
    #listing .product-details .sortsize2 a {
        font-size: 14px !important;
    }
    #listing .accessoriesBlock .sortsize2 {
        margin-left: 5px !important;
        margin-bottom: 0px !important;
        font-size: 12px !important;
    }
    .sortsize2 {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-left: 0px;
        line-height: normal;
        border-bottom: none;
    }
    #category .sortsize2, #search .sortsize2 {
        margin-left: 4px !important;
        font-size: 12px !important;
        margin-bottom: 2px !important;
        margin-top: 3px !important;
}
    #category .product-item .name, #search.product-item .name {
        margin-top: 0px !important;
    }
}

/* Product Styling */
.product-items {
}
.product-items .product-item-container{
	border: 1px solid #d9d9d9;
	padding: 25px;
}
.product-items .product-item {
    text-align: left;
    margin-bottom: 40px;
}

@media (max-width: 374px) {
    #category .product-items .product-item, #search .product-items .product-item {
        padding: 0 2px !important;
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    #category .product-items .product-item .name, #search .product-items .product-item .name {
        line-height: 16px !important;
        margin-top: 0px !important;
    }
	#category .product-items .product-item .name a, #search .product-items .product-item .name a {
        font-size: 12px !important;
    }
}

@media (max-width: 479px) {
    #category .product-items .product-item .name, #search .product-items .product-item .name {
        line-height: 14px !important;
    }
    #category .product-items .product-item .name a, #search .product-items .product-item .name a {
        font-size: 11px !important;
    }

    #listing .product-items .product-item .name {
        line-height: 12px !important;
    }
}

.product-carousel.flexslider .product-items .product-item {
    margin-bottom: 0 !important;
}
.product-item .name {
    position: relative;
    height: 65px;
    width: 95% !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.product-item .name a {
    text-transform: none;
    color: #272727;
    font-weight: 500;
    font-size: 15px;
}
.product-items.productList .product-item .product-content .name {
    width: 100% !important;
}
.product-item del.regular-price {
    text-decoration: line-through;
    color: gray;
}
.sale-price {
    color: black;
}
#saleribbon-icon {
    background: #cb3737;
}

#best-value-element, #popular-element {
    font-weight: bold;
    margin: 0px;
    position: absolute;
    left: 5px;
    top: 0px;
    color: white;
    z-index: 1;
    text-align: center;
    margin-top: -5px !important;
    clip-path: polygon(0 0, 100% 0%, 100% 25%, 50% 45%, 0 25%);
    padding-bottom: 70px;
    line-height: 1;
    background: linear-gradient(rgb(74 74 74) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 100%);
}

#popular-item > #saleribbon-icon, #best-value-item > #saleribbon-icon {
    display: none !important;
}

#category .product-items.productList #best-value-item, #category .product-items.productList #popular-item {
    height: 192px !important;
    margin-bottom: 25px !important;
    margin-top: 19px !important;
    padding: 0px !important;
}

#category .product-items.productList #best-value-item img, #category .product-items.productList #popular-item img {
    border: 1px solid #e7e7e7;
}

#category .product-items.productList #best-value-item .img, #category .product-items.productList #popular-item .img {
    background-color: inherit !important;
}


/* Start Filter Container */

@media only screen and (max-width: 767px) {
 #toggle-filter-button {
    top: 224px !important;
  }
#filter-container::before {
    padding: 4px 4px 3px !important;
}
}

@media (max-width: 489px) {
#category .category-actions .paging {
        display: inline-block;
        align-items: center;
        width: 85%;
        padding-bottom: 0px;
        font-size: 10px;
    }

    #category .category-actions .paging strong, #category .category-actions .paging a {
        padding: 0 3px !important;
        min-width: 10px;
        line-height: 10px;
        font-size: 10px !important;
    }

#category .category-actions.clearfix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px !important;
    margin-top: 10px !important;
}
    #filter-container label {
        font-size: 10px !important;
    }
    #filter-container h3 {
        font-size: 12px !important;
        margin: 0px 0px 0px !important;
    }
    #category .product-items {
        min-height: 325px !important;
    }
 #toggle-filter-button {
    padding: 10px 6px !important;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: bold;
}
#filter-container {
    min-height: auto;
    left: -2px !important;
    top: 258px !important;
}
}

@media (min-width:490px) and (max-width: 767px) {
#category .category-actions .paging {
    display: flex;
    align-items: center;
    width: max-content;
    padding-bottom: 0px;
    font-size: 12px;
}
#category .category-actions .paging strong, #category .category-actions .paging a {
padding: 0 2px !important;
}

#category .category-actions.clearfix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px !important;
    margin-top: 10px !important;
}
#category .product-items {
    min-height: 344px !important;
}
 #toggle-filter-button {
    padding: 10px 6px !important;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: bold;
}
#filter-container {
    min-height: auto;
    left: -2px !important;
    top: 258px !important;
}
}


@media (min-width: 1620px) {
.floating-cart {
    z-index: 8 !important;
}
}

@media (min-width: 768px) and (max-width: 1619px) {
#filter-container {
    min-height: auto;
    left: -2px !important;
    top: 278px !important;
}
#category .category-actions .paging {
    display: flex;
    align-items: center;
    width: max-content;
    padding-bottom: 0px;
}
#category .category-actions.clearfix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}
 #toggle-filter-button {
    padding: 10px 6px !important;
    font-weight: bold;
    letter-spacing: 2px;
}
#filter-container {
    min-height: auto;
    left: -2px !important;
    top: 280px !important;
}
 #toggle-filter-button {
    top: 240px !important;
  }
  #toggle-filter-button:hover {
    width: 100px !important;
  }
}


@media (max-width: 1619px) {
 #toggle-filter-button {
    background: #292828 !important;
    color: #fff;
    border: 0;
    border-radius: 0 15px 15px 0 !important;
    left: 0px !important;
    position: fixed !important;
    z-index: 9 !important;
    text-align: center;
    width: 66px;
    transition: width 200ms ease-in-out;
  }
  #toggle-filter-button.is-open { 
    border-radius: 0 15px 0 0 !important;
    width: 198px !important;
  }
}

#toggle-filter-button.hide-state {
    background-color: rgb(250, 250, 250) !important;
    color: black !important;
    border: 1px solid rgb(235, 235, 235) !important;
    border-bottom: none !important;
    margin-top: -1px !important;
}

#category .product-items {
    min-height: 395px;
}

#filter-container {
z-index: 2;
min-height: 200px;
}
#filter-container h3 {
    font-size: 13px;
    margin: 0px;
    font-weight: 600;
    font-family: system-ui;
    padding: 8px 0px 7px 5px;
    background-color: #f7f7f7;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}
#filter-container .filter-body {
    padding: 0px 6px;
}
#filter-container .filter-section:first-of-type h3 {
}
#filter-container label {
    font-size: 12px;
    margin: 0px;
    font-weight: 600;
    font-family: system-ui;
    line-height: 1.45;
}

#filter-container label input[type="checkbox"] {
    margin-top: 0px !important;
}

/* End Filter Container */

/* Start Best Value */

@media (min-width: 1200px) {
    #best-value-element, #popular-element {
        width: 110px;
        padding-left: 6px;
        padding-right: 6px;
        padding-top: 5px;
        font-size: 14px;
    }
    #category .product-items.productList #best-value-element, #category .product-items.productList #popular-element {
        width: 9% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        padding-top: 2px !important;
    }
}
@media (max-width: 1199px) and (min-width: 768px) {
    #best-value-element, #popular-element {
        width: 95px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 4px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    #best-value-element, #popular-element {
        width: 60px;
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 4px;
        font-size: 8px;
    }
}

#best-value-item {
    border: 1px solid #e9e9e9;
    background: linear-gradient(rgb(255, 255, 255) 0%, rgb(253, 253, 253) 55%, rgb(248 248 248) 100%);
}

/* End Best Value */



del.original-price {
    font-weight: 400;
}
span.freeshipping {
    /* color: #000; */
    /* font-weight: 600; */
    /* font-size: 16px; */
}
.product-item .status span:before {
    content: "-";
}
.product-item .status, .product-item .addtowishlist {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    display: none;
}
.product-item .desc {
	position: relative;
	font-size: 16px;
	min-height: 22px;
}
.product-item .price {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin: 4px auto 4px;
    width: 95% !important;
}

/* start product page price edit */
#listing .price {
    font-size: 14px; /* Base font size for the main price */
    display: block; /* Ensure the price div is visible */
    min-height: 38px; /* Set a fixed minimum height for price elements */
    visibility: visible; /* Ensure visibility by default */
    align-items: flex-start; /* Aligns smaller elements at the top */
}

#listing .accessoriesBlock .main-price {
    font-size: 24px;
    min-height: 24px;
    visibility: visible;
    align-items: flex-start;
    font-weight: 600 !important;
    line-height: 1;
}

#listing .accessoriesBlock .currency, #listing .accessoriesBlock .cents, #listing .accessoriesBlock .currency, #listing .accessoriesBlock .cents {
    font-size: 17px;
    vertical-align: top;
    display: block;
    margin-top: 1px;
    line-height: 1;
    padding-left: 1px;
}

#listing .accessoriesBlock .upsellname {
    display: none;
}

#listing .accessoriesBlock .product-item del.regular-price {
    color: gainsboro;
    font-size: 12px;
    vertical-align: top;
    padding-left: 2px;
}

#listing .accessoriesBlock .sale-price {
    float: left;
}

#listing .accessoriesBlock .btn {
    font-weight: 500;
}

/* Style for the dynamically added formatted price */
#listing .formatted-price {
    display: flex; /* Ensure formatted price displays inline */
    align-items: flex-start; /* Aligns elements to the top */
}


/* Style for the currency symbol and cents in the formatted price */
#listing .formatted-price .currency, 
#listing .formatted-price .cents {
    vertical-align: top; /* Align these elements to the top */
}

/* Style for both the original and formatted price within the pricing block */
#listing .pricingBlock .yourprice, 
#listing .formatted-price {
    font-weight: 500; /* Set the font weight */
}

/* Style for hiding placeholders */
#listing .placeholder {
    visibility: hidden; /* Hide the placeholder initially */
}

/* Style for the main price when it has the regular-price class (strikethrough) */
#listing .formatted-price.regular-price .main-price {
    text-decoration: line-through; /* Apply a line-through for regular prices */
}

/* Style for the formatted price with the regular-price class */
#listing .formatted-price.regular-price {
    color: lightgrey; /* Light grey color for regular prices */
}

@media (min-width: 480px) {
    /* Styling for currency and cents */
    #listing .formatted-price .currency, 
    #listing .formatted-price .cents {
        font-size: 16px;
        margin-top: 5px;
    }

    /* Adjust padding for span elements within the pricing block */
    #listing .pricingBlock span {
        padding-left: 0px;
    }

    /* Font size for your price and formatted price */
    #listing .formatted-price {
        font-size: 3em;
    }
    #listing .original-price {
        font-weight: 500 !important;
        font-size: 16px;
        color: #3f3f3f;
        vertical-align: top;
        display: inline-flex;
        padding-top: 5px;
        padding-left: 10px;
        width: 100%;
        margin-right: auto;
    }

    /* Styling for regular prices */
    #listing .formatted-price.regular-price {
        margin-top: 2px;
        padding-left: 5px !important;
        font-size: 2em !important;
    }

    /* Styling for currency and cents within regular price */
    #listing .formatted-price.regular-price .currency, 
    #listing .formatted-price.regular-price .cents {
        margin-top: 3px !important;
        padding-left: 1px !important;
        padding-right: 1px !important;
    }
}

@media (max-width: 479px) {
    /* Styling for availability info */
    #listing .availabilityInfo {
        font-size: .9em !important;
    }

    /* Product reviews adjustments */
    .product-reviews {
        line-height: 1;
        margin: 0px 0 0px !important;
    }

    /* Styling for options inner section */
    #listing .options-inner {
        display: inline-block;
        width: 100%;
        border-top: 1px solid lightgrey;
        border-bottom: 1px solid lightgrey;
    }

    /* Margin adjustments for reviews */
    #listing .reviews {
        margin-right: 0px !important;
    }
    #listing .original-price {
        font-weight: 500 !important;
        font-size: 16px;
        color: #3f3f3f;
        vertical-align: top;
        display: inline-flex;
        padding-top: 5px;
        padding-left: 10px;
        width: 100%;
    }
    #listing .qty-nav>button {
        line-height: 16px;
    }
}

@media (min-width: 375px) and (max-width: 479px) {
    /* Styling for currency and cents */
    #listing .formatted-price .currency, 
    #listing .formatted-price .cents {
        margin-top: 4px;
        font-size: 15px;
    }

    /* Font size for your price and formatted price */
    #listing .pricingBlock .yourprice, 
    #listing .formatted-price {
        font-size: 2em;
    }

    /* Styling for regular prices */
    #listing .formatted-price.regular-price {
        margin-top: 2px;
        padding-left: 2px !important;
        font-size: 1.25em !important;
    }

    /* Styling for currency and cents within regular price */
    #listing .formatted-price.regular-price .currency, 
    #listing .formatted-price.regular-price .cents {
        margin-top: 1px !important;
        padding-left: 4px !important;
        padding-right: 1px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 374px) {
    /* Styling for currency and cents */
    #listing .formatted-price .currency, 
    #listing .formatted-price .cents {
        margin-top: 4px;
        font-size: 16px;
    }

    /* Font size for your price and formatted price */
    #listing .pricingBlock .yourprice, 
    #listing .formatted-price {
        font-size: 2em;
    }

    /* Styling for regular prices */
    #listing .formatted-price.regular-price {
        margin-top: 2px;
        padding-left: 2px !important;
        font-size: 1.25em !important;
    }

    /* Styling for currency and cents within regular price */
    #listing .formatted-price.regular-price .currency, 
    #listing .formatted-price.regular-price .cents {
        margin-top: 1px !important;
        padding-left: 4px !important;
        padding-right: 1px !important;
        font-size: 14px !important;
    }
}

    /* Styling for regular prices */
#listing .pricingBlock .main-price {
    font-size: 42px;
    font-weight: 500;
}
#listing .pricingBlock .currency, #listing .pricingBlock .cents {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 500;
}
#listing .pricingBlock .formatted-sale-price {
    float: left;
}
#listing .qty-nav>button {
    background-color: unset;
}

#listing .formatted-sale-discount {
    color: white;
    float: left;
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 16px;
    z-index: 1;
    text-align: center;
    background: #cb3737;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
    margin-left: 8px;
    user-select: none;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    overflow: hidden;
}

@media (min-width: 480px) {
#listing .formatted-sale-discount {
    padding: 8px 4px 18px !important;
}
}

@media (max-width: 479px) {
#listing .formatted-sale-discount {
    padding: 8px 4px 18px !important;
}
#listing .container {
    padding-left: 8px;
    padding-right: 8px;
}
}

/* end product page price edit */


/* start search/category price edit */
.product-item .name {
    margin-bottom: 0px !important;
}

/* Category/Search/Home Price Styles */
#category .price, #search .price, #home .price, #home-new .price {
    font-size: 24px; /* Base font size for the main price */
    min-height: 24px; /* Set a fixed minimum height for price elements */
    visibility: visible; /* Ensure visibility by default */
    align-items: flex-start; /* Aligns smaller elements at the top */
    font-weight: 600 !important;
    line-height: 1;
}

/* Style for currency symbol and cents in home */
#home-new .formatted-sale-price .currency, 
#home-new .formatted-sale-price .cents,
#home-new .formatted-regular-price .currency,
#home-new .formatted-regular-price .cents {
    font-size: 17px;
    vertical-align: top;
    display: block;
    line-height: 1.1;
    padding-left: 1px;
}

/* Style for the sale price in home */
#home .formatted-sale-price, #home-new .formatted-sale-price {
    color: black;
    width: min-content;
    text-align: left;
    justify-content: start;
    vertical-align: top;
    float: left;
}

/* Style for regular price (strikethrough) in home */
#home .regular-price, #home-new .regular-price {
    color: lightgrey; /* Light grey color for regular prices */
    text-decoration: line-through; /* Apply a line-through */
    float: left;
    font-size: .75em;
    width: min-content;
    text-align: left;
    display: inline-flex;
    padding-left: 3px;
}

/* Style for list view in home */
#home .productList .formatted-sale-price, #home .productList .regular-price, #home-new .productList .formatted-sale-price, #home-new .productList .regular-price {
    justify-content: start !important;
    width: min-content !important;
    text-align: left !important;
    float: left !important;
}

/* Style for currency symbol and cents in Category */
#category .formatted-sale-price .currency, 
#category .formatted-sale-price .cents,
#category .formatted-regular-price .currency,
#category .formatted-regular-price .cents {
    font-size: 17px;
    vertical-align: top;
    display: block;
    margin-top: 1px;
    line-height: 1;
    padding-left: 1px;
}

/* Style for the sale price in Category */
#category .formatted-sale-price {
    color: black;
    width: min-content;
    text-align: left;
    justify-content: start;
    vertical-align: top;
    float: left;
}

/* Style for regular price (strikethrough) in Category */
#category .regular-price {
    color: #a9a9a9; /* Light grey color for regular prices */
    text-decoration: line-through; /* Apply a line-through */
    float: left;
    font-size: .75em;
    width: min-content;
    text-align: left;
    display: inline-flex;
    padding-left: 3px;
}

/* Style for list view in Category */
#category .productList .formatted-sale-price, #category .productList .regular-price {
    justify-content: start !important;
    width: min-content !important;
    text-align: left !important;
    float: left !important;
}

/* Style for add/delete in Category */
.cart-qty-control {
    min-width: 100px;
    border-radius: 25px;
    border: 2px solid #efcb14;
    padding: 3px 16px;
    background-color: #ffd814;
}

@media (max-width: 900px) and (min-width: 480px) {
    .cart-qty-control {
        padding: 3px 13px !important;
    }
}

@media (max-width: 479px) {
    .cart-qty-control {
        padding: 1px 13px 2px 12px !important;
    }
}

/* Media queries for responsive design in Category */
@media (min-width: 480px) and (max-width: 700px) {
    #category .price, #search .price {
        font-size: 17px !important;
        min-height: 17px !important;
    }
    #category .formatted-sale-price .currency, 
    #category .formatted-sale-price .cents, 
    #category .formatted-regular-price .currency, 
    #category .formatted-regular-price .cents, 
    #search .formatted-sale-price .currency, 
    #search .formatted-sale-price .cents, 
    #search .formatted-regular-price .currency, 
    #search .formatted-regular-price .cents {
        font-size: 12px !important;
    }

    #home .formatted-sale-price .currency, 
    #home .formatted-sale-price .cents,
    #home .formatted-regular-price .currency, 
    #home .formatted-regular-price .cents {
        font-size: 18px;
        padding-top: 1px !important;
    }
    #category .regular-price {
        font-size: 12px !important;
    }
}

@media (max-width: 700px) {
    #category .regular-price {
        padding-top: 1px !important;
    }
}
@media (max-width: 767px) {
    #home .flex-viewport .product-item .img-responsive {
    padding-top: 5px !important;
}
}
@media (min-width: 375px) and (max-width: 479px) {
    #category .price, #search .price {
        font-size: 22px !important;
        min-height: 22px !important;
    }
    #category .formatted-sale-price .currency, #category .formatted-sale-price .cents, #category .formatted-regular-price .currency, #category .formatted-regular-price .cents, #search .formatted-sale-price .currency, #search .formatted-sale-price .cents, #search .formatted-regular-price .currency, #search .formatted-regular-price .cents {
        font-size: 13px !important;
    }
    #category .regular-price {
        font-size: 13px !important;
    }
}

@media (max-width: 374px) {
    #category .price, #search .price {
        font-size: 20px !important;
        min-height: 20px !important;
    }
    #category .formatted-sale-price .currency, #category .formatted-sale-price .cents, #category .formatted-regular-price .currency, #category .formatted-regular-price .cents, #search .formatted-sale-price .currency, #search .formatted-sale-price .cents, #search .formatted-regular-price .currency, #search .formatted-regular-price .cents {
        font-size: 12px !important;
    }
    #category .regular-price {
        font-size: 12px !important;
    }
}

/* Search Price Styles */
/* Style for currency symbol and cents in Search */
#search .formatted-sale-price .currency, 
#search .formatted-sale-price .cents,
#search .formatted-regular-price .currency,
#search .formatted-regular-price .cents {
    font-size: 17px;
    vertical-align: top;
    display: block;
    margin-top: 1px;
    line-height: 1;
    padding-left: 1px;
}

/* Style for the sale price in Search */
#search .formatted-sale-price {
    color: black;
    width: min-content;
    text-align: left;
    justify-content: start;
    vertical-align: top;
    float: left;
}

/* Style for regular price (strikethrough) in Search */
#search .regular-price {
    color: lightgrey;
    text-decoration: line-through;
    float: left;
    font-size: .75em;
    width: min-content;
    text-align: left;
    display: inline-flex;
    padding-left: 3px;
}
/* end search/category price edit */


.product-items.productList .product-item .product-content .price {
    font-size: 18px;
    font-weight: 600;
}
.product-item .on-sale-badge {
	display: none;
    border-radius: 100%;
    line-height: 34px;
    padding: 12px 0;
    height: 60px;
    width: 60px;
    text-align: center;
    top: -270px;
    right: 5px;
    font-size: 15px;
    background: #cb0826;
	color: #fff;
	
	-ms-transform: rotate(-10deg); /* IE 9 */
    -webkit-transform: rotate(-10deg); /* Safari */
    transform: rotate(-10deg);
}
.product-item .img {
    min-height: 190px;
    position: relative;
    border: 0px solid #ececec;
    background-color: #fff;
}
.product-item .img a {
    display: block;
}
.product-item .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
	transition: opacity .4s;
	-webkit-backface-visibility: hidden;
	max-height: 100%;
	max-width: 100%;
}

.product-item .action {
	position: relative;
	margin: 7px auto 3px auto;
	display: block;
	width: 95% !important;
}
.product-item .action .btn {
    min-width: 100px;
}

@media (min-width: 768px) {
.product-item .action .btn {
    padding: 5px 10px !important;
    }
}

@media (max-width: 767px) {
    .product-item .img {
        min-height: 100px !important;
    }
    .product-items .product-item {
        margin-bottom: 0px !important;
    }
}

@media (max-width: 900px) and (min-width: 375px) {
.product-items .product-item .action .btn {
        padding: 5px !important;
    }
}

.product-item .reviews {
    display: block;
    position: relative;
    width: 95% !important;
    margin-bottom: 5px !important;
    margin-left: auto;
    margin-right: auto;
}
.product-item .reviews span.reviews-count {
	display: none;
}
#imagecaptiont {
	display: none;
}

.QTY-nav {
	border: 1px solid #ccc;
	height: 36px;
	display: block;
	width: 115px;
	margin: 4px auto;
}
.QTY-nav button {
	float: left;
	width: 30%;
	background: #404242;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	line-height: 100%;
	height: 100%;
	padding: 5px;
}
.QTY-nav input {
	float: left;
	width: 40%;
	color: #474747;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	height: 100%;
}
.head-mobile-nav {
    margin: 23px auto;
}
.head-mobile-nav > a {
    color: black;
    font-size: 18px;
    line-height: 1;
}
.head-mobile-nav > a span {
    font-size: 22px;
}

.page-content {
	padding-top: 0;
}
/*
** Homepage
*/
#home .page_headers {
	font-size: 30px;
	line-height: 1.35;
	margin-bottom: 30px;
}
.homepage_content {
	padding: 35px 0;
	background: #e5eaf0;


}
.homepage_text {
	margin-top: 25px;
	text-align: center;
}
.homepage_text h2 {
}
@media(min-width: 768px) {
	.homepage_text {
		margin-top: 75px;
		text-align: left;
	}
	.homepage_text h2, #home .page_headers {
		font-size: 36px;
		margin-bottom: 30px;
	}
}
@media(min-width: 992px) {
	.homepage_text {
		margin-top: 80px;
		text-align: left;
	}
	.homepage_text h2, #home .page_headers {
		font-size: 52px;
		margin-bottom: 50px;
	}
}
@media(min-width: 1200px) {
	.homepage_text {
		margin-top: 150px;
		text-align: left;
	}
	.homepage_text h2, #home .page_headers {
		font-size: 52px;
		margin-bottom: 75px;
	}
}

#home.page-content {padding: 0;}
#home .product-items .product-item-container {
	border: none;
	padding: 0;
}

#home.page-content .upsellname {
    display: none;
}

.homeCarousel.flexslider {
	margin-bottom: 0px;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
}
@media(min-width: 768px) {
	.homeCarousel.flexslider {
		position: relative;
	}
}
#carousel-sellers {
	width: 94%;
	margin: 0 3%;
}
.products-section {
    background-color: transparent;
    padding: 0px 0 0px 0;
}

.content.tc-pagebuilder h2 {
	color: #353535;
        text-transform: uppercase;
	letter-spacing: 0px;
        line-height: 32px;
        padding: 8px 10px;
        border-top: 1px solid #353535;
        border-bottom: 1px solid #353535;
}
.products-section h2 {
	font-family: 'Montserrat', sans-serif;
	display: block;
	background: #fff;
	text-align: center;
	color: #353535;
	font-size: 25px;
	letter-spacing: 0px;
	line-height: normal;
	font-weight: 500;
	text-transform: uppercase;
	padding: 8px 10px;
	margin: 0 0 5px;
	position: relative;
}
.products-section h2 span {
}
.products-section h2 span:after {
	content:'';
	display: none;
	background: none;
	height: 0px;
	width: 75%;
	margin: auto;
}
.home-page-content .category-footer {
    padding: 0px 0 0px;
}
.home-page-content .category-footer h3 {
}
.home-page-content .category-footer p {
	font-size: 16px;
    margin: 0 0 20px;
    /* text-align: justify; */
    font-weight: 400;
}
.home-page-content .category-footer a:hover img {
    opacity: 0.7;
}
.home-page-content .category-header {
    margin: 25px 0;
	text-align: center;
}
.home-page-content .category-header h3 {
    text-align: center;
    color: #404242;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 10px;
    position: relative;
    border: none;
}
    .home-page-content .category-header h3 span{
    }
.home-page-content .category-header p {
    font-size: 16px;
    font-weight:400;
}
.home-page-content .category-header img {
    margin: 0 auto;
}

#category .category-toolbar .col-sm-6:last-of-type .sort-by span, #searchGroup .search-actions .col-sm-6:last-of-type .sort-by span, #search-bar .col-sm-6:last-of-type .sort-by span, .paging span {
    font-weight: bold;
}

.category-toolbar a#list-view {
    display: none;
}

.promo-banners {
	margin: 20px auto 20px auto;
	text-align: center;
}

.promo-banners .col {
}

.promo-img {
	display: block;
	text-align: center;
	text-decoration: none !important;
	margin-bottom: 25px;
}
.promo-img img {
	margin: auto auto 0px auto;
	width: 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;

	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.promo-img:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.promo-img .btn {
	width: 100%;
	padding: 25px;
	font-size: 21px;
	font-weight: 400;
	text-transform: none;
}

@media (max-width: 767px) {
	.promo-banners .row {
		/* margin: auto; */
	}
	.promo-img img {
		/* max-width: 320px; */
		width: 100%;
		margin-bottom: 0px;
		height: auto !important;
	}
}

.homeCarousel.flexslider .slides img {
	width: 100%;

}

.flexslider .slides img {
	margin: auto;
}

.product-items .product-item.slick-slide {
	float: left !important;
}

#hp-slides > li {
    background-position: 50% center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: contain;
}
.hp-slider-text-outer {
    display: table;
    height: 450px;
    margin: auto;
}
@media(min-width: 992px) {
	.hp-slider-text-outer {
		height: 610px;
	}
}
.hp-slider-text {
    display: table-cell;
    vertical-align: top;
    text-align: center;
    padding-top: 165px;
}
.hp-slider-text h3 {
    font-size: 60px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
}
.hp-slider-text h3 > span {
    color: #b61319;
    display: block;
    font-weight: 300;
    line-height: 1.25;
    font-size: 38px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: none;
    padding: 15px 0 0 0;
}
.hp-slider-text h3 > small {
    color: #000;
    display: block;
    font-weight: 500;
    font-size: 32px;
}
@media(min-width: 768px) {
	.hp-slider-text h3 {
		font-family: 'Old Standard TT', serif;
		font-size: 80px;
		margin: 0;
		font-weight: 700;
		text-transform: none;
		line-height: 1;
		letter-spacing: -.5px;
	}
	.hp-slider-text h3 > span {
		color: #b61319;
		display: block;
		font-weight: 300;
		font-size: 60px;
		font-family: 'Montserrat', sans-serif;
		text-shadow: none;
	}
	.hp-slider-text h3 > small {
		color: #000;
		display: block;
		font-weight: 500;
		font-size: 32px;
	}
}

.hp-slider-text p {
    font-family: 'Old Standard TT', serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0px auto;
    line-height: 80px;
    letter-spacing: -.5px;
}
.hp-slider-img {
    height: 650px;
    position: relative;
}
.hp-slider-img img {
    max-height: 650px;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.hp-slider-cta a {
    min-width: 200px;
    background: transparent;
    border: 2px solid #FFF;
    padding: 12px;
    color: #fff;
    font-size: 16px;
}
/* end home */

.extrapages-shower a {
    display: block;
    text-align: center;
    background-color: #353535;
    color: white;
    padding: 10px 18px;
    text-decoration: none !important;
    margin-bottom: 5px;
    border-bottom: 2px solid #2b2b2b;
}

.extrapages-shower a:after {
    content: "\f106";
    font-family: "fontello";
    float: right;
}
.extrapages-shower a.collapsed:after {
    content: "\f107";
}
@media(max-width: 991px) {
    #menulinks-outer .navbar-nav > li > a {
        font-size: 14px;
        min-height: 0;
    }
    .navbar-nav > li.dropdown > a:after {
        float: right;
    }
    .mailist-box {
        float: none;
        width: 100%;
        max-width: 100%;
    }
    .footer-social {
        text-align: center;
        padding-bottom: 10px;
    }
}
@media and (max-width: 767px) {

    .products-section h2, .home-page-content .category-header h3 {
        font-size: 24px;
		margin-bottom: 15px;
    }
    .products-section h2 span, .home-page-content .category-header h3 span{
    }
    .searchBox {
        padding: 20px 0 0;
    }
    .search-form-col {
        clear: both;
    }
    .flex-direction-nav a:before {
        font-size: 24px;
    }
    .flex-direction-nav a {
        width: 24px;
        height: 24px;
        line-height: 24px;
        margin: -12px 0 0;
    }
    .mailinglist-input.form-control {
    }
    .social-icons {
        margin: 25px auto 15px auto;

        text-align: center;
        width: 100%;
    }
    .social-icons li a {
        /* width: 32px; */
        /* height: 32px; */
        /* line-height: 50px; */
        font-size: 16px;
    }
    .footer-social ul li {
        padding: 0 4px;
    }
    .extrapages {
        display: none;
    }
    .home-page-content .category-header {
        padding: 15px 0;
    }
    .mailist-box {
        margin: 0px auto;
        padding: 0px 0px;
    }
    .extrapages-shower a {
        display: block;
    }
    ul.extrapages {
        margin: 0;
        padding: 5px 0 15px 0;
        text-align: center;
    }
    ul.extrapages li {
        display: block;
    }
    ul.extrapages li a {
        font-size: 14px;
    }
}
@media(max-width: 567px) {
    .product-items.product-items-1 .product-item,
    .product-items.product-items-2 .product-item,
    .product-items.product-items-3 .product-item,
    .product-items.product-items-4 .product-item,
    .product-items.product-items-5 .product-item,
    .product-items.product-items-6 .product-item {
        max-width: 270px;
    }
}

.menu-open {
    overflow: hidden;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10500000000;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background-color: rgba(0,0,0,0.5);
}
.menu-open .mobile-menu {
    overflow-x: hidden;
    overflow-y: auto;
}
.mobile-menu-inner {
    background-color: #fff;
    padding: 30px 20px;
    width: 250px;
    margin-left: 0;
    margin-right: auto;
    min-height: 100vh;
    position: relative;

    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(-250px,0);
    -ms-transform: translate(-250px,0);
    -o-transform: translate(-250px,0);
    transform: translate(-250px,0);
}
.menu-open .mobile-menu-inner {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}

.mobile-menu-close {
    padding-right: 10px;
    padding-bottom: 30px;
}
.mobile-menu-close a {
    color: #404242;
    display: inline-block;
    line-height: 1;
    font-size: 24px;
    text-decoration: none;
    float: left;
}
.mobile-menu-close a:after {
    content: '\e805';
    font-family: "fontello";
}
.mobile-menu-widget {
    margin: 30px 0;
}
.mobile-menu-widget h3 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 2.5;
}
.mobile-menu-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mobile-menu-widget ul li {
    margin: 0 0 10px;
}
.mobile-menu-widget ul li > span {
	display: none;

}
.mobile-menu-widget ul li a {
    padding: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent !important;
    display: block;
    color: black;
    text-decoration: none !important;
}
.mobile-menu-widget ul li a:hover {
    color: #333;
}
.mobile-menu-widget ul ul {

    /* display: none; */
}

.mobile-menu-widget ul li a:after {
    display: none;
}

.mailinglist-response {
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 12px;
    background-color: #2d2d2d;
    color: #ccc;
}
.mailinglist-error span {
    color: #8a6d3b;
}
.mailinglist-subscribed span,
.mailinglist-unsubscribed span {
    color: #3c763d;
}
.mailinglist-response,
.mailinglist-response div {
}
@media(min-width: 768px) {
	.floating-cart {
		top: 50%;
	}
}
@media(max-width: 767px) {
.floating-cart {
    padding: 10px 0px !important;
    width: 75px !important;
    top: 86% !important;
}
.floating-cart span.cart-icon {
    font-size: 24px !important;
}
.floating-cart [class^="icon-"]:before, .floating-cart [class*=" icon-"]:before {
    margin-left: 0px !important;
}
.floating-cart span.cart-details {
    font-size: 10px !important;
}
.scrollToTop {
    font-size: 28px !important;
    width: 60px !important;
}
}

.floating-cart {
    position: fixed;
    top: 75%;
    left: 0;
    z-index: 6;
    background-color: #292828;
    color: #fff;
    border-radius: 0 20px 20px 0;
    padding: 15px 0px;
    text-align: center;
    width: 80px;
    display: none !important;
}

.floating-cart a,
.floating-cart a:hover {
    color: #fff;
    text-decoration: none;
}
.floating-cart span.cart-icon {
    display: block;
    font-size: 30px;
    line-height: 1;
}
.floating-cart span.cart-details {
    font-size: 12px;
    text-transform: none;
    display: block;
    margin: 5px 0 0;
}

.paging {
    float: right;
}

/* 
.paging strong, 
.paging a {
	color: #6f6f6f;
}
 */

.paging strong,
.paging a:hover {
    color: #6f6f6f;
    background-color: #e5e5e5;
    text-decoration: none;
}

/* Common page styles */
.page_header {
	margin: 0 0 20px;
}
.page_headers {
    font-size: 30px;
}
.page_heading {
    font-size: 32px;
}
.page_heading, .page_headers {
    margin: 0;
    line-height: normal;
    font-weight: 600;
    border-bottom: 0px solid #e5e5e5;
    position: relative;
    color: inherit;
}
.page_heading:after {
	border-bottom: 1px solid #404242;
	display: none;
}
.page_heading span, .page_headers span {
}
.header-specials {
    display: block;
    text-align: left;
    color: #2b2b2b;
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 1.35;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 35px;
    position: relative;
    border: none;
}
.header-specials:before {
}
.header-specials span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 0px 0 0px;
	background: transparent;
}
.breadcrumnb, .category-header, .category-footer {
    margin: 0px 0px 5px 0px !important;
}


.fullwidth-slider img{
    width: 100%;
}

.category-header h2, .category-header .h2, .category-footer h2, .category-footer .h2 {
    line-height: 1.3 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

.category-toolbar {
    margin-bottom: 10px;
}

.category-actions {
    margin: 10px 0 25px;
}

.scrollToTop{
    position: fixed;
    bottom: 0%;
    right: 5px;
    display: none !important;
    z-index: 999;
    text-align: center;
    color: #fff !important;
    background-color: #292828;
    border-radius: 20px 20px 0 0;
    width: 70px;
    font-size: 36px;
}
.scrollToTop:hover{
	text-decoration:none;
	background-color: #1c1c1c;
	-webkit-transition: opacity 1000ms ease-in-out;
	-moz-transition: opacity 1000ms ease-in-out;
	-o-transition: opacity 1000ms ease-in-out;
	-ms-transition: opacity 1000ms ease-in-out;
	transition: opacity 1000ms ease-in-out;
}
    .scrollToTop span {
        display: none;
    }


iframe {
    display: block;
}


/* sidebar */
.sidebar-widget {
	background: transparent;
	/* border-bottom: 3px solid #fff; */
	padding: 0 10px;
	margin-bottom: 20px;
}
    .sidebar-widget ul {
        margin: 0px 0;
        padding: 0;
        list-style: none;
        float: none;
        text-align: left;
    }
        .sidebar-widget ul li{
            float: none;
            font-size: 15px;
            font-weight: 300;
            line-height: 24px;
            text-transform: none;
            text-align: left;
            padding: 0 0 0 0px;
            border: none;
        }
            .sidebar-widget ul li:hover > a{
            }
            .sidebar-widget ul#categories > li:hover > a:after{
                content: "\f105";
                -webkit-transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                transition: all 500ms ease;
            }
            .sidebar-widget ul li a{
                /* padding: 5px 5px; */
                color: #000;
            }
            .sidebar-widget ul li:hover > a{
                color: #404242;
            }

    .sidebar-widget .dropdown-menu {
        position: absolute;
        top:0;
        left: calc(100% - 10px);
		background: #fff;
    }
    @media(max-width: 991px) {
        .sidebar-widget .dropdown-menu {
            display: none !important;
        }
    }
    .sidebar-widget .product-item .img {
        min-height: 80px;
    }


	.widget-header {
		background: #000000;
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		text-align: left;
		text-transform: uppercase;
		border: none;
		padding: 12px 10px;
		margin: 0 -10px;
	}
	.widget-header:after {
		display: none;
	}
	.widget-body {
		padding: 10px 0px;
	}
	.widget-body .product-item {
		border-bottom: 0px solid #444;
		padding-bottom: 10px;
		margin-bottom: 20px;
		text-align: left;
	}
	#modTopSellers .widget-body .product-item {
		text-align: center;
	}
	.widget-body .product-item .name {
		height: auto !important;
		margin-bottom: 5px;
	}
	.widget-body .product-item .name a {
    color: #272727;
    font-weight: 500;
    font-size: 15px;
	}
	.widget-body .product-item .price {
		font-weight: 400;
		font-size: 16px;
		color: #000;
		margin: 5px auto;
	}
	.widget-body ul.list-unstyled {
		margin-top: -10px;
		text-align: left;
	}
	.widget-body ul a {
		color: #000;
	}
.sidebar-widget .topsellers-item:not(:last-child), .sidebar-widget .new-release-item:not(:last-child) {
	border-bottom: 1px solid #e0e0e0;
}

/*quickview */
body#quickView aside div form#add div div div#main-image a#listing_main_image_link > .mz-figure, body#quickView aside div form#add div div div#main-image a#listing_main_image_link > .mz-figure > img {
	max-width: 100% !important;
}
/***********/

/*viewcart */

@media (min-width: 768px) {
    #viewCartQuick .cart-items>li>span.item-name {
        width: 58% !important;
    }
    #viewCartQuick .cart-items>li>span.item-price {
        width: 14% !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    #viewCartQuick .cart-items>li>span.item-qty {
        width: 12% !important;
        padding-left: 15px !important;
        text-align: center;
    }
    #viewCartQuick .cart-items>li>span.item-total {
        width: 16% !important;
        text-align: right !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        text-transform: uppercase !important;
    }
    .cart-items>.items-header>span.item-qty {
        padding-left: 32px;
    }
}
.cart-items > li > span.item-name span.item-thumb img {
	max-height:100%;
	margin: auto;
}
.cart-items>li.cart-item>span.item-qty {
    padding-top: 4px;
}
.cart-items>li.cart-item>span.item-qty .update-qty {
    font-size: 13px;
    display: none;
    padding: 5px 12px 5px 12px;
    margin-top: 5px;
    border-color: #ffd814;
    border-radius: 5px;
    background-color: #ffd814;
    color: black;
    text-transform: uppercase;
    width: min-content;
}
.cart-items .quant-input {
    margin-bottom: 0px !important;
}

body.view-cart span.item-action .view-options {
	display: none;
}

body.view-cart span.itemoptions {
	display: block !important;
}
/***********/
.chkShoppingCart .product-image {
	text-align: center;
}

.qv .qty .qty-input {
	height: 38px;
}
.qv .addcart {
	margin: 0 0 0 10px;
}

/**** Hide Left ****/
body.view-cart #leftBar, body.my-account #leftBar {
	display: none;
}
body.view-cart .middle-grid, body.my-account .middle-grid {
	width: 100%;
}


/****************/

/****   404  ****/
/****************/

/****************/
/***End of 404***/
/****************/

/*****************/
/***  Contact  ***/
/*****************/


/*****************/
/***Contact End***/
/*****************/

/********************/

/***ThankYou Start***/
/********************/
/********************/
/***ThankYou End*****/
/********************/

/*flyout cart */

/***********/


.stuck{
	top:0;
	position:fixed;
	left:0;

	right:0;
	margin:0 auto;
	z-index: 9999;
	transition: background-color .3s, opacity .3s;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.45);
}
.stuck.stuck2{
	z-index: 98;
}
.sticky-jump .stuck{
	-webkit-animation:stuckMoveDown .6s;
	animation:stuckMoveDown .6s;
}
.sticky-fade .stuck{
	-webkit-animation:stuckFadeIn .6s;
	animation:stuckFadeIn .6s
}
.sticky-shrink .stuck .header-main{
	transition:height .8s
}
@-webkit-keyframes stuckMoveDown{
	0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}

	100%{-webkit-transform:translateY(0);transform:translateY(0)}
}
@keyframes stuckMoveDown{
	0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}
	100%{-webkit-transform:translateY(0);transform:translateY(0)}

}
@-webkit-keyframes stuckFadeIn{
	0%{opacity:0}
	100%{opacity:1}
}
@keyframes stuckFadeIn{
	0%{opacity:0}
	100%{opacity:1}
}