:root {
  --primary-color: #002531;
  --secondary-color: #C23A32;
  --text-color: #fff ;
  --primary-font: interstate,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --secondary-font-family: source-serif-pro,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
/*Main Header Styling*/
#mainHeader {
  position: relative;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
}
#mainHeader a:hover{
  text-decoration: none;
}
#mainHeader.shrink {
  position: fixed;
}
#mainHeader .banner{
  background-color: var(--secondary-color);
  color:var(--text-color);
  padding: 6px 0;
  line-height: 1.375rem;
  text-align: center;
  font-size: 14px;
}
#mainHeader .banner .banner-text{
  color: #fff;
  font-size: 14px;
}
.banner-text .banner-link{
  text-decoration: underline;
}
#mainHeader .banner.landing-page{
  padding: 10px 0;
}
#mainHeader .banner.landing-page .banner-text{
  font-size: 18px;
}
#mainHeader .navbar__top-tier-item{
  font-size:1rem;
  font-family:var(--primary-font);
  color:var(--text-color);
  font-weight: 500;
}
#mainHeader .logo {
  height:25px;
}
/*Nav Styling*/
#mainHeader .dropdown-nav {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #F8F8F8;
  opacity: 0;
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotate3d(1,0,0,90deg);
  transform: rotate3d(1,0,0,90deg);
  -webkit-transition: opacity .3s ease,-webkit-transform .3s ease;
  -o-transition: opacity .3s ease,-o-transform .3s ease;
  transition: opacity .3s ease,transform .3s ease;
  border-top: 2px solid #f5f3ef;
  top: 100%;
}
#mainHeader .navbar__top-tier-item:hover > .dropdown-nav{
  opacity: 1;
  transform: none;
  z-index: 10;
}
#mainHeader .nav-category-header{
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
#mainHeader .nav-category-spacer{
  border-width: 2px;
  border-color: #707070;
  margin-top: 10px;
  margin-bottom: 20px;
}
.nav-panel {
  position: absolute;
  opacity: 1;
  transform: none;
  z-index: 10;
  top: 70%;
  left: 0;
  right: 0;
  background-color: #F8F8F8;
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: opacity .3s ease,-webkit-transform .3s ease;
  -o-transition: opacity .3s ease,-o-transform .3s ease;
  transition: opacity .3s ease,transform .3s ease;
}
.nav-panel.closed{
  opacity: 0;
  -webkit-transform: rotate3d(1,0,0,90deg);
  transform: rotate3d(1,0,0,90deg);
}
.navbar__subnav__link {
  line-height: 1.5;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 14px;
}
#mainHeader .mobile-category-nav-trigger,
#mainHeader .mobile-category-nav-item{
  font-size: 16px;
  font-family: var(--primary-font);
  color: var(--primary-color);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #707070;
  display: flex;
}
#mainHeader .mobile-category-nav-trigger{
  text-transform: uppercase;
  font-weight: 700;
}
#mainHeader .mobile-category-nav-trigger:first-child{
  border-top: 1px solid #707070;
  margin-top: 2rem;
}
#mainHeader .mobile-category-nav-trigger .mobile-nav-toggle-image{
  background-image: url("images/minus-dark.svg");
  background-size: contain;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  transition: all .2s ease;
}
#mainHeader .mobile-category-nav-trigger.collapsed .mobile-nav-toggle-image{
  background-image: url("images/plus-dark.svg");
  background-size: contain;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  transition: all .2s ease;
}
#mainHeader .navbar__subnav__link--imageText {
  font-weight: 700;
  font-size: 14px;
  margin-top: 1rem;
  display: block;
  color: #002531;
}
#mainHeader .navbar__subnav__link--long-name{
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0rem;
  color: #002531;
}
#mainHeader .nav-search{
  width: 20%;
}
#mainHeader .nav-categories{
  white-space: nowrap;
  display: flex;
  margin-right: 5vw;
}
#mainHeader .nav-icons,
#mainHeader .nav-search-close{
  display: flex;
  align-items: center;
}
#mainHeader ul{
  list-style: none;
  margin-bottom: 0;
}
.shipping-banner-text-line-1{
  display: inline-flex;
}
.shipping-banner-text-line-2{
  display: inline-flex;
}

@media (max-width:992px) {
  #mainHeader .nav-categories{
    margin-left:0;
    width: 100%;
  }
  #mainHeader .banner .banner-text{
    color: #fff;
    font-size: 12px;
  }
  #mobile-navbar{
    height: 350px;
    overflow: auto;
    transition: opacity .3s ease,transform .3s ease;
  }
}

@media (max-width:768px) {
  .mobile-category-nav-dropdown{
    border-bottom: 1px solid #707070;
  }
  .navbar__subnav__link {
    font-size: 16px;
    font-weight: 400;
  }
  .shipping-banner-text-line-1{
    display: block;
  }
  .shipping-banner-text-line-2{
    display: block;
  }

}
/*Popup Cart and Shopping Cart*/
.dropcart-header,
.subtotal{
  font-size: 24px;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
}
.cart-label{
  display: block;
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 700;
}
.cart-value{
  display: block;
  font-size: 24px;
  font-family: var(--primary-font);
  font-weight: 700;
}
.cart-item {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 260px;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #002531 #dbdbdb;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 20px;
}

*::-webkit-scrollbar-track {
  background: #dbdbdb;
}

*::-webkit-scrollbar-thumb {
  background-color: #002531;
  border-radius: 100px;
  border: 20px dotted #ffffff;
  display:block;
}
.cart-item-spacer{
  border-top: 1px solid #707070;
}
.cart-description .name{
  display: block;
  font-size: 32px;
  font-family: var(--secondary-font-family);
  color: #3d3d3d;
  font-weight:700;
}
.cart-description .name-long{
  display: block;
  font-size: 16px;
  font-family: var(--primary-font);
  color: #737373;
}
.cart-description .style{
  display: block;
  font-size: 12px;
  font-family: var(--primary-font);
  color: #737373;
}
.cart-description .btn-remove-from-cart{
  display: block;
  font-size: 12px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  color: #C23A32;
}
.cartCount{
  position: absolute;
  top: -4px;
  right: -5px;
  color: #fff;
  font-size: 8px;
  background: var(--secondary-color);
  border-radius: 100px;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*Search Bar Styling*/
.search-box {
  position: relative;
}
.search-box .form-control {
  border: none;
  font-size: 14px;
  font-weight: 400;
  background: #f7f7f7;
  color: #000;
  border-radius: 30px;
  padding-left:35px;
}
.search-box .form-control:focus {
  box-shadow: none;
}
.search-box .search-box-submit {
  position: absolute;
  left: 5px;
  top: 5px;
}
.auto-complete-section {
  background-color: var(--primary-color) !important;
  padding-bottom: 2rem;
}
#topSearches, .searchSuggestions {
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
}
#topList {
}
.searchText {
  display: block;
  margin-top: 10px;
  color: var(--text-color);
  font-weight: 500;
}
#topSearches a {
  color: var(--text-color);
}
.close-autocomplete {
  position: absolute;
  right: 15px;
  top: 20px;
  cursor: pointer;
}
#sList {
  list-style-type: none;
  padding: 0;
}
#sList li {
  color: var(--text-color);
}
.auto-option {
  width: 100% !important;
  font-weight: bold !important;
}
.auto-option > b {
  font-weight: normal !important;
}
.auto-option:focus {
  cursor: pointer;
}
.auto-option:hover {
  cursor: pointer;
}
@media (max-width:992px) {
  .nav-search .search-box {
    display: none;
  }
  .nav-search.open .search-box {
    display: block;
  }
}
/*Footer Styling*/
#footer {
  padding-top:1.75rem;
  background-color:var(--primary-color);
  color:var(--text-color);
  font-weight:400;
}
#footer .form-control {
  border:none;
  background:#fff;
  color:#3E3E3E;
  height: 40px;
  border-radius: 0;
}
#footer .form-control:focus {
  background:#fff;
  color: #3E3E3E;
}
#footer .nav-link-header{
  font-family:var(--primary-font);
  font-weight:500;
  padding-top:.2rem;
}
#footer .footer-email-signup-field-header {
  font-size: 24px;
  font-weight: 700;
  font-family:var(--primary-font);
}
#footer .btn-secondary {
  font-family:var(--primary-font);
  font-weight:500;
  white-space: nowrap;
  background: #C23A32;
  height: 40px;
  padding: 0.5rem 2rem;
  margin-left: 10px;
}
#footer .btn-secondary:hover {
  opacity: .9;
}
#footer .footer-email-signup-field-gender,
#footer .genderLabel{
  font-size:12px;
  margin-top:7px;
  font-weight:500;
  color: #fff;
}
#footer .email-msg{
  font-size: 12px;
}
#footer .email-msg.error{
  color: #C23A32;
}
#footer .copyright{
  font-size: 13px;
  font-weight: 700;
}
#footer .nav-link {
  color:#fff;
  transition:.2s;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 12px;
}
#footer .nav-link.social-links {
  color:#fff;
  transition:.2s;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 12px;
  padding: 0;
  margin-right: 1.5rem;
}
#footer .nav-link-header {
  color:#fff;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
}
#footer .nav-link:hover{
  text-decoration: underline;
}
#footer .nav-link-header:hover{
  text-decoration: none;
}
#footer .nav-link b {
  font-weight:bold;
}
#footer .footer-link-toggle{
  border-top: 2px solid #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#footer .footer-link-toggle.last.collapsed{
  border-bottom: 2px solid #fff;
}
#footer #footer-LEM.collapse.show{
  border-bottom: 2px solid #fff;
}
#footer .footer-link-toggle.collapsed img.minus{
  display: none;
}
#footer .footer-link-toggle:not(.collapsed) img.plus{
  display: none;
}
#footer .nav.collapse.show{
  margin-bottom: 1rem;
}
#footer .icon{
  width: 3.25rem;
  height: auto;
}
#footer .icon.sm{
  width: 1rem;
  height: auto;
}
#footer .social .icon{
  width: 1.5rem;
  height: auto;
}
#footer-policy {
  font-size: 10px;
  font-weight: 400;
  background: #EBEBEB;
  color: #3D3D3D;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
#footer-policy a{
  color: #3D3D3D;
}
#footer .footer-climate-icon{
  width: 60px;
}
@media (max-width: 1399px) and (min-width: 992px) {
  #footer .footer-left{
    padding-left: 1.5rem;
  }
  #footer .footer-right{
    padding-right: 1.5rem;
  }
}
/*For Gender Checkboxes*/
.genderSelect .genderCheckbox{
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.genderSelect .genderCheckbox input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.genderSelect .checkmark{
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: none;
  border-radius: 50px;
  border: 1px solid #fff;
}
.genderSelect .genderCheckbox:hover input ~ .checkmark{
  background-color: transparent;
  border: 1px solid #fff;
}
.genderSelect .genderCheckbox input:checked ~ .checkmark {
  background-color: transparent;
  border: 1px solid #fff;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.genderSelect .genderCheckbox input:checked ~ .checkmark:after {
  display: block;
}
.genderSelect .genderCheckbox .checkmark:after {
  position: absolute;
  left: 2px;
  top:2px;
  height: 14px;
  width: 14px;
  content: "";
  border-radius: 50px;
  background: #fff;
}
/*Top Drop Styling*/
#navbar .navbar__subnav__link:hover,
#navbar .navbar__subnav__link a:hover{
  opacity: .9;
  color: var(--primary-color);
}
#topDrop {
  position:relative;
  width:100%;
  height:100%;
  z-index:99999;
  right:0;
  top:0;
  background-color: #f5f3ef;
}
#dropNavigation{
  padding-bottom: 5rem;
}
#mainHeader .nav-categories ul li:first-child{
  padding-left: 0 !important;
}
#mainHeader .navbar__top-tier-item{
  padding-left:3vw;
  padding-right:3vw;
  font-size:.9375rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
a.topCategoryLink {
  color: #fff;
}
@media (max-width: 1599px) and (min-width: 768px) {
  #mainHeader .navbar__top-tier-item{
    font-size: .95rem;
  }
}
@media (max-width:992px) {
  #navMobileBTN{
    width: 69%;
  }
}

@media (max-width:768px) {
  #dropNavigation .navbar__top-tier-item{
    padding: 0;
  }
  .social .nav-link {
    margin-right: .5rem;
  }
}
/*Misc Across Site*/
.icon {
  width:auto;
  height:20px;
  margin:0 3px;
  max-width: none;
}
.icon.lg {
  width:130px;
  height:30px
}
.badge {
  font-size:10px;
  position:absolute;
  top:-6px;
  left:53px
}
@media (min-width: 992px) {
  .collapse.dont-collapse-md {
    display: block;
    height: auto !important;
    visibility: visible;
  }
}
#focalContainer,#focalContainer #focalFloatCallback,#focalContainer .focalFloat,#focalContainer #focalFloatInviteToChat {
  z-index:999
}
body.mask-open{
  overflow-y: hidden;
}
#mask {
  background-color: hsla(0,0%,7%,.36);
  left: 0;
  right: 0;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 20;
  opacity: 1;
  width: 100%;
  backdrop-filter: blur(4px);
}
@media (max-width:600px) {
  .container.apPop {
    width:100%;
    padding:0;
    margin:0
  }
}
@media (max-width:400px) {
  #apPop .close {
    width:40px;
    top:5px;
    right:5px
  }
  .navbar .icon {
    width: 5.5vw;
    height: auto;
    margin: 0 1vw
  }
  #apPop .close {
    width:40px;
    top:5px;
    right:5px
  }
}
/*mobile criteo, criteo2, linksh links layout*/
@media (max-width:425px){
  #mainHeader .banner.landing-page .banner-text .banner-links-mobile{
    display: block;
    padding: 0 16vw;
    font-size: 4vw;
  }
  .shipping-banner-text-line-1{
    display: block;
  }
  .shipping-banner-text-line-2{
    display: block;
  }
}
/*Afterpay*/
#apPop {
  display:none;
  position:fixed;
  z-index:999999;
  top:50px;
  color:#2e2d2d
}
.apLaunch {
  cursor:pointer;
  text-decoration:underline
}
.container.apPop {
  max-width:800px;
  display:block
}
#apPop iframe {
  max-width:100%;
  width:800px;
  min-height:601px;
  background-color:#fff
}
#apPop .close {
  position:absolute;
  top:10px;
  right:10px;
  cursor:pointer
}
#apMask {
  background-color:#000;
  display:none;
  left:0;
  position:fixed;
  top:0;
  z-index:99999
}
.apPrice {
  display:none
}
.payLogo {
  height: 20px;
}
.button.payLogo {
  height: 23px;
}
afterpay-placement {
  margin: 0;
}
.focusable :focus {
  outline: none !important;
}
/*Breadcrumbs*/
.breadcrumb,
.breadcrumb a{
  color: #575757;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}
.breadcrumb a:hover{
  text-decoration: none;
  color: #575757;
}
/*Brightedge Override*/
.be-related-link{
  font-size: 12px;
}

/*For Disclosure Modal*/

#disclosure .modal-content {
  background-color: #002531 !important;
  border-radius: 10px 10px 0 0 !important;
}
#disclosure .modal-header {
  border-bottom: 0px;
}
#disclosure .modal-title {
  font-size: 11px;
  color: #fff;
  font-family: interstate,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  text-align: center;
}
#disclosure a {
  color: #fff;
  text-decoration: underline;
}
#disclosure .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: none;
  opacity: 100%;
}
#disclosure .close:hover {
  color: #fff;
  text-decoration: none;
}
#disclosure .modal-header .close {
  padding: 5px 9px 5px !important ;
  margin: -1rem -1rem -1rem auto !important;
}

.modal-backdrop {
  display: none !important;
}

@media (min-width:991px) {
  #disclosure .modal-dialog {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
    height:auto !important;
  }
  #disclosure .modal-title span {
    font-size: 9px;
  }
}

@media (max-width:992px) {
  #disclosure .modal-dialog {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin-right: 6vw;
    margin-left: 6vw;
    height: auto !important;
  }
  #disclosure .modal-title span {
    font-size: 8px;
    line-height:1.25;
    display:block;
  }
}
@media (min-width: 576px) {
  #disclosure .modal-dialog {
    max-width: 800px;
  }
}
.dropdown-nav-products img{
  width: 250px;
  height: 175px;
  object-fit: cover;
  object-position: 0 95%;
}
#dropCheckout {
  color: #3D3D3D;
}

.price-old {
  text-decoration: line-through;
}
.price-clearance {
  color: #C23A32;
}

/*Shipping Deadlines Banner // 12-16-2024 > 12-18-2024*/

#shipping-deadlines .banner-text {
  font-family:var(--primary-font);
  text-transform:uppercase;
  font-weight:600;
}
#shipping-deadlines u {
  color:#fff;
}
@media (min-width:1399px) {
  #shipping-deadlines .banner-text {
    font-size:12px!important;
  }
}
@media (max-width:1399px) and (min-width:992px) {
  #shipping-deadlines .banner-text {
    font-size:11px!important;
  }
}
@media (max-width:992px) {
  #shipping-deadlines .banner-text {
    font-size:13px!important;
  }
}


.chemical {
  color: #F07622 !important;
  font-weight: bold;
  padding-top: 5px;
  padding-bottom: 5px;
}
.chemical span {
  color: #000000;
  font-weight: normal;
  font-family: var(--primary-font);
  font-size: 10px;
}
.chemical img {
  width: 10px;
  margin-top: -1px;
}
