:root{
  --color-foreground: 66, 66, 66;
  --color-primary: 56, 163, 208;
  --color-button: 56, 163, 208;
  --color-button-text: 245, 245, 247;
  --color-secondary: 243, 136, 32;
  --color-button-hover: 25, 75, 141;
  --light-blue: 220, 231, 238;
  --light-blue-white: 238, 243, 246;
  --white-gray: 245, 245, 247;
  --light-black: 66, 66, 66;
  --header-background: 249, 251, 252;
  --header-foreground: 0, 0, 0;
  --text-primary: 56, 163, 208;
  --color-button-green: 58, 192, 205;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-BlackIt.woff2') format('woff2'),
        url('../fonts/ProximaNova-BlackIt.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Black.woff2') format('woff2'),
        url('../fonts/ProximaNova-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
        url('../fonts/ProximaNova-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-BoldIt.woff2') format('woff2'),
        url('../fonts/ProximaNova-BoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
        url('../fonts/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Black.woff2') format('woff2'),
        url('../fonts/ProximaNova-Black.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}*/

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-ExtraBold.woff2') format('woff2'),
        url('../fonts/ProximaNova-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Light.woff2') format('woff2'),
        url('../fonts/ProximaNova-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Semibold.woff2') format('woff2'),
        url('../fonts/ProximaNova-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


.btn{
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
}
.btn.btn-primary{
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}
.btn.btn-primary:hover{
  background: rgba(var(--color-secondary), 1);
  border-color: rgba(var(--color-secondary), 1);
}
.btn.btn-info{
  background: rgb(var(--color-secondary));
  border: 1px solid rgb(var(--color-secondary));
  color: rgb(var(--color-button-text));
}
.btn.btn-info:hover{
  background: rgb(var(--color-button-hover));
  border: 1px solid rgb(var(--color-button-hover));
  color: rgb(var(--color-button-text));
}
.btn.btn-outline-primary{
  background: rgb(var(--color-button-text));
  border-color: rgb(var(--color-button));
  color: rgb(var(--color-button));
}
.btn.btn-outline-primary:hover{
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}

.action.primary, .action-primary{
  font-family: 'Proxima Nova';
  font-weight: normal;
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  line-height: 20px;
  font-size: 1.6rem;
  transition: 0.4s;
  padding: 8px 16px;
  border-radius: .4rem;
}
.action.primary:hover, .action-primary:hover{
  background: rgba(var(--color-button-hover), 1);
  border-color: rgba(var(--color-button-hover), 1);
}
a:visited, .alink:visited{
  color: initial;
}

body{
  font-size: 1.6rem;
  color: rgb(var(--color-foreground));
  font-family: 'Proxima Nova';
}
select, input[type="text"], input[type="password"], input[type="url"], input[type="tel"], input[type="search"], input[type="number"], input[type*="date"], input[type="email"]{
  font-family: 'Proxima Nova';
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
  border-radius: .4rem;
  padding: .6rem 1.5rem;
  height: auto;
  line-height: 2.6rem;

}

.container{
  max-width: 1560px;
}
.bg-light-blue{
  background: rgb(var(--light-blue-white));
}

.page-header{
  background: rgb(var(--header-background));
  color: rgb(var(--header-foreground));
  position: sticky;
  top: 0;
  z-index: 10;
}
.page-header .header.content{
  padding: 10px 15px;
  max-width: 1560px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.page-header .logo{
  margin: 0 6rem -3rem 0;
}
.page-header .logo img{
  max-height: 102px;
  width: auto;
}
.page-header .logo svg{
  height: 102px;
  width: auto;
}

.page-header a.link-wishlist{
  margin-left: 6rem;
}
.page-header .minicart-wrapper .action.showcart:before{
  content: none;
}
.page-header .minicart-wrapper{
  margin-left: 2rem;
}
.minicart-wrapper .action.showcart img{
  width: 22px;
}
.minicart-wrapper .action.close:focus{
  outline: none;
  box-shadow: none;
}

.page-header .authorization-link{
  margin-left: 2rem;
}
.page-header .authorization-link a{
  font-weight: 600;
  text-decoration: none;
  color: currentColor;
}
.page-header .authorization-link a:hover{
  color: rgb(var(--text-primary));
}

.searchsuite-autocomplete {
    left: 5px;
    width: 100%;
}
.page-header form, .page-header .block-search{
  display: flex;
  margin: 0 auto;
  flex: 1 1 auto;
  max-width: 600px;
  position: relative;
}
.page-header .block-search .action.wk-ai-image-search{
  top: 1rem;
}
.page-header .block-search .block-content{
  width: 100%;
}
.page-header .block-search .action.search:before{
  line-height: 2.4rem;
  color: #fff;
}
.page-header .block-search .action.image-search{
  right: 8rem;
  top: .7rem;
}
div#upload-box{
  padding: 0;
}
#upload-box label#browse-label{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  place-content: center;
  border: none;
  margin: 0;
  transform: none;
}
.page-header form .field.category select{
  border: none;
  background: transparent url(../images/category-icon.svg) no-repeat left center;
  background-size: 14px 12px;
  padding: 1rem 1rem 1rem 3rem;
  font-weight: 700;
  appearance: none;
  height: auto;
}
.page-header form .field.search input{
  border: 1px solid rgb(var(--header-foreground));
  padding: .6rem 1.5rem;
  line-height: 2.6rem;
  height: auto;
  width: 100%;
  border-radius: 4rem;
}
.page-header form .field.search{
  flex: 1 1 0;
}
.page-header form .actions button.action.search{
  position: absolute;
  top: .2rem;
  right: .2rem;
  background: rgba(var(--color-secondary));
  color: #fff;
  border-radius: 3rem;
  line-height: 2.4rem;
  padding: .6rem 2.5rem;
  border: none;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
}
.page-header form .actions button.action.search:hover{
  background: rgba(var(--color-button-hover));
}
.page-header form .actions button.action.search svg{
  margin-top: -3px;
}


.search.results dl.block a{
  color: rgb(var(--color-foreground));
  transition: 0.4s;
}
.search.results dl.block{
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.search.results dl.block dt.title{
  width: 100%;
}
.search.results dl.block dd.item{
  border: 1px solid currentColor;
  padding: .5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.search.results dl.block dd.item:hover{
  background-color: rgb(var(--color-primary));
  color: #fff;
}
.search.results dl.block dd.item a:hover{
  text-decoration: none;
  color: #fff;
}
.search.results dl.block dd.item a:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.search.results dl.block dd.item .count{
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: rgb(var(--color-primary));
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-left: .2rem;
  text-align: center;
  transition: 0.4s;
}
.search.results dl.block dd.item:hover .count{
  color: rgb(var(--color-primary));
  background: #fff;
}

div.wk-image-search{
  background: rgb(var(--light-blue));
  padding: 10px;
  display: flex;
  column-gap: 10px;
  min-height: 0;
}
div#searched-image{
  width: 100px;
  flex: 0 0 100px;
  margin: 0;
}
#related-suggestions{
  flex: 1 1 auto;
}
div#related-suggestions h5{
  margin-left: 0;
}
#related-suggestions span.wk-search-terms{
  color: rgb(var(--color-foreground));
  margin: 0 2px 2px 0;
}
#related-suggestions span.wk-search-terms:hover{
  color: rgb(var(--color-secondary));
}

.nav-sections{
  background: rgb(var(--header-background));
  color: rgb(var(--header-foreground));
  text-align: center;
  position: sticky;
  top: 92px;
  z-index: 9;
  margin-bottom: 0;
}
.navigation, .page-main{
  max-width: 1560px;
  padding-left: 15px;
  padding-right: 15px;
}
.breadcrumbs{
  max-width: 100%;
  padding: 0 1.5rem;
  margin: 2rem 0;
}
.navigation, .breadcrumbs, .page-header .header.panel, .header.content, .footer.content, .page-wrapper > .widget, .page-wrapper > .page-bottom, .block.category.event, .top-container{
  

}
.navigation{
  background: none;
}
.nav-sections .navigation > ul{
  padding-left: 20rem;
  padding-right: 20rem;
}
.navigation ul{
  padding: 0;
}
.navigation > ul > li.ui-menu-item{
  display: inline-block;
  margin: 0;
}
.navigation .ui-menu-item select{
  font-weight: 600;
  background: none !important;
  padding: 0 2.1rem;
  border: none;
  box-shadow: none;
}
.navigation .level0 .submenu{
  text-align: left;
} 
.navigation .level0 .submenu > li:hover > a, .navigation .level0 .submenu .submenu > li:hover > a{
  background: rgb(var(--color-secondary));
  color: rgb(var(--color-button-text));
}
.navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus {
  background: rgb(var(--color-secondary));
  color: rgb(var(--color-button-text));
}

/* Hover menu */
.navigation .level0{
  margin: 0 0.5rem;
  position: static;
}
.navigation .level0.parent > .level-top > .ui-menu-icon{
  display: none;
}

.navigation > ul > li.ui-menu-item > a,
.navigation .level0 > .level-top{
  color: rgb(var(--header-foreground));
  padding: 0 2.1rem;
  line-height: 4rem;
  border-radius: 3rem;
  margin-bottom: .4rem;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.navigation > ul > li.ui-menu-item > a:hover{
  text-decoration: none;
}
.navigation > ul > li.ui-menu-item > strong{
  font-weight: 600;
}
.navigation .level0 > .level-top:hover, .navigation ul > li.ui-menu-item > a:hover{
  background: rgba(235, 235, 235, 1);
}
.navigation .level0:hover:after{
  content: none;
}
.navigation .level0.parent:hover > .submenu{
  overflow-x: hidden !important;
  overflow-y: auto !important; 
}
.navigation .level0.parent > .submenu:before{
  content: 'Category';
  font-weight: 700;
  font-size: 1.6rem;
  position: static;
  padding: 8px 20px;
  height: auto;
  max-width: 260px;
}



.navigation .level0.active > .level-top, .navigation .level0.has-active > .level-top{
  border-bottom: none;
  background: rgba(235, 235, 235, 1);
}

.navigation .level0 .submenu{
  text-align: left;
  min-width: 0;
  width: 100%;
}
.navigation .level0 .submenu a{
  border-radius: 6px;
}
.navigation .level0 > .submenu{
  top: 100% !important;
  width: 100%;
  max-height: 70vh;
  overflow-x: hidden !important;
  overflow-y: auto !important; 
  left: 0 !important;
  padding: 3rem;
  height: auto !important;
  min-height: 0 !important;
/*  display: block !important;*/
}
.navigation .level0 > .submenu > li{
  max-width: 260px;
  position: static;
}
.navigation .level0 > .submenu > li a{
  position: relative;
}
.navigation .level0 .submenu .active > a{
  border: none;
}
.navigation .level0 > .submenu > li > .submenu{
  left: 300px !important;
  max-width: 260px;
  box-shadow: none;
  border: none;
  padding: 3rem 0;
}
.navigation .level0 > .submenu > li > .submenu:before{
  content: 'Subcategory';
  font-weight: 700;
  font-size: 1.6rem;
  position: static;
  padding: 8px 20px;
  max-width: 260px;
  height: auto;
}
.navigation .level0 > .submenu > li > .submenu > li{
  position: static;
}

.navigation .level0 > .submenu > li > .submenu > li > .submenu{
  width: 720px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: none;
  border: none;
  left: 300px !important;
  padding: 3rem 0;
}
.navigation .level0 > .submenu > li > .submenu > li > .submenu:before{
  content: 'Sub Subcategory';
  font-weight: 700;
  font-size: 1.6rem;
  position: static;
  padding: 8px 20px;
  width: 100%;
  grid-column: span 2;
  height: auto;
}

.custom-category-mega { display:none; position:fixed; left:0; right:0; top:129px; z-index:1000; }
.mega-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.15); display:none; top:129px; }
.mega-panel { margin:0 auto; background:#fff; border:1px solid #e6e6e6; padding:20px; max-width:1530px; box-shadow:0 6px 20px rgba(0,0,0,0.08); position:relative; z-index:1; }
.mega-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.mega-search input { width:560px; padding:10px 14px; border-radius:6px; border:1px solid #e0e0e0; }
.mega-close { background:transparent; border:none; font-size:20px; cursor:pointer; }
 
.mega-body { display:flex; gap:16px; }
.custom-category-mega .col { flex: 0 0 calc(20% - 16px * 3/4); max-width: calc(20% - 16px * 3/4); background:rgba(var(--color-button), 0.1); max-height:420px; overflow:auto; }
.custom-category-mega .col.col-4{flex: 0 0 calc(40% - 16px * 3/4); max-width: calc(40% - 16px * 3/4);}
.custom-category-mega .col-title { font-size:14px; color:rgb(var(--color-button)); padding:10px 14px; font-weight:500; text-transform:uppercase; }
.custom-category-mega .list { margin:0; padding:0; list-style:none; }
.custom-category-mega .list .item { padding: 0; cursor:pointer; margin-bottom:3px; }
.custom-category-mega .list .item a { text-decoration:none; color:#000; padding:2px 14px; display:inline-flex; align-items:center; justify-content:space-between; width:100%; }
.custom-category-mega .list .item a .more{
  font-size: 30px;
  line-height: 1;
}
.custom-category-mega .list .item.active:not(.level-4), .custom-category-mega .list:not(.level-4) .item:hover { background:rgb(var(--color-secondary)); color: #fff; border-radius:6px; }
.custom-category-mega .list .item.active:not(.level-4) a, .custom-category-mega .list:not(.level-4) .item:hover a{
  color: #fff;
}
.custom-category-mega .col:last-child { background:transparent; }
.custom-category-mega .level-4{column-count: 2;}
.custom-category-mega .level-4 .item a { color:#666; }
.custom-category-mega .list .item.active.level-4 a, .custom-category-mega .list.level-4 .item:hover a{
  color: rgb(var(--color-secondary));
  text-decoration: underline;
}

/*new design*/

.minicart-wrapper .action.showcart .counter.qty{
  background: rgb(var(--color-button));
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  padding: 0;
  border-radius: 2rem;
  font-size: 1.3rem;
  margin: 0px 0 0 -10px;
}
.minicart-items .product-item .product .product-item-photo{
  width: 80px;
}
.minicart-items .item-qty{
  line-height: 2rem;
}
.block-minicart .block-content > .actions > .primary .action.primary{
  padding: 7px 10px;
  font-size: 1.6rem;
}
.block-minicart a.action.viewcart{
  display: inline-block;
  padding: 8px 16px;
  border-radius: .4rem;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
  background: rgb(var(--color-secondary));
  border: 1px solid rgb(var(--color-secondary));
  color: rgb(var(--color-button-text));
  width: 100%;
  margin: 0;
}
.block-minicart a.action.viewcart:hover{
  text-decoration: none;
  background: rgb(var(--color-button-hover));
  border-color: rgb(var(--color-button-hover));
}


.top-container{
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  margin-top: 1rem;
}
.top-container .block-static-block.widget{
  margin: 0 auto 10px;
  max-width: 1530px;
  background: rgb(var(--light-blue));
  padding: 0 35px;
  border-radius: 6px;
}
.feature-item{
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  line-height: 2rem;
  column-gap: 1rem;
}
.feature-item picture{
  flex: auto;
  max-width: 44px;
} 


.mp-banner-slider .owl-nav [class*='owl-']{
  margin: 0;
}
.mp-banner-slider .owl-nav{
  margin: 0;
  font-size: 0;
}
.mp-banner-slider .owl-nav .owl-prev span{
  background-image: url(../images/left.svg);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  font-size: 0;
  left: -25px;
}
.mp-banner-slider .owl-nav .owl-next span{
  background-image: url(../images/right.svg);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  font-size: 0;
  right: -25px;
}


.quick-order-banner{
  font-weight: 600;
  margin-top: 20px;
  font-size: 2.4rem;
}
.quick-order-banner a{
  text-decoration: none;
}
.quick-order-box{
  background-color: rgba(var(--color-secondary), .1);
  padding: 20px 20px 30px;
  border-radius: 20px;
}
.quick-order-banner img{
  width: 50%;
  mix-blend-mode: multiply;
}
.quick-order-banner .text-primary{
  font-size: 4rem;
  font-weight: 700;
  vertical-align: middle;
}
.quick-order-banner p{
  margin: 0;
  line-height: 1.35;
} 
.quick-order-banner span{
  vertical-align: middle;
}
.text-primary{
  color: rgb(var(--text-primary)) !important; 
}
.quick-order-banner .btn{
  margin-top: 2rem;
}
.title-wrapper-with-link{
  align-items: center;
  margin-bottom: 2.5rem;
}
h2{
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}
.heading-bg{
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) -3.46%, #E3F1F8 48.58%, rgba(255, 255, 255, 0) 100%);
  line-height: 1.8;
}
.subheading{
  font-size: 1.8rem;
}


.top-category{
  padding: 4rem 0;
}
.category-slider{
  text-align: center;
}
.category-slider .item{
  padding: 0 1.2rem;
}
.category-slider h4{
  color: #000;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0;
  transition: 0.4s;
}
.category-slider .category-img{
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  margin-bottom: 1.6rem;
}
.category-slider .category-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  transition: 0.4s;
}
.category-slider a:hover{
  text-decoration: none;
}
.category-slider a:hover .category-img img{
  transform: scale(1.1);
}
.category-slider a:hover h4{
  color: rgb(var(--text-primary));
}

.brand-section .bg-light-blue{
  padding: 4rem;
}
.brand-logos{
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.2rem;
  row-gap: 1.5rem;
}
.brand-logos .brand-logo{
  width: calc(16.66% - 1.2rem * 5/6);
  transition: 0.4s;
  top: 0;
  position: relative;
}
.brand-logos .brand-logo:hover{
  top: -5px;
}
.brand-logos .brand-logo .brand-logo-box{
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 5px;
  vertical-align: bottom;
  padding-top: 57.58%;
}
.brand-logos .brand-logo .brand-logo-box img{
  object-fit: scale-down;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  padding: 1.2rem;
}

.featured-categories{
  padding: 2rem 0 4rem;
}
.category-grid{
  display: grid;
  grid-template-columns: 31.75% 31.75% auto;
  column-gap: 1.2rem;
  row-gap: 1.6rem;
}
.category-grid .category-card{
  position: relative;
}
.category-grid .category-card:nth-child(1){
  grid-row: span 2;
}
.category-grid .category-card:nth-child(2){
  grid-row: span 2;
}
.category-grid .category-card a{
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.category-grid .category-card .category-image{
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  vertical-align: bottom;
  margin: 0;
}
.category-grid .category-card .category-image img{
  object-fit: cover;
  object-position: center;
  width: 100%;
  transition: 0.4s;
}
.category-grid .category-card .category-image:hover img{
  opacity: 0.75;
}


.block.block-products-list{
  max-width: 1530px;
  margin: 0 auto;
  background: rgb(var(--light-blue-white));
  padding: 3.2rem 4rem;
}
.block.block-products-list + script + .block.block-products-list{
  padding-top: 1rem;
}
.block.block-products-list .block-title{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.block.block-products-list .block-title h2{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.8;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) -3.46%, #FFFFFF 48.58%, rgba(255, 255, 255, 0) 100%);
}
.block.block-products-list .block-title:after{
  content: '';
  height: 2px;
  flex: 1 1 0;
  background: linear-gradient(90deg, #3A5E91 0%, rgba(255, 255, 255, 0) 100%);
  margin-left: 3rem;
  order: 2;
}
.block.block-products-list .block-title a{
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  order: 3;
  transform: 0.4s;
}
.block.block-products-list .block-title a:hover{
  text-decoration: none;
  background: rgba(var(--color-secondary), 1);
  border-color: rgba(var(--color-secondary), 1);
}
.block.block-products-list .products-grid{
  margin: 0 -.7rem;
}


.block.block-products-list .products-grid .product-items .product-item{
  width: 100%;
}

.products-grid .product-items .product-item{
  padding: 0 7px;
}
.products-grid .product-item-info:hover, .products-grid .product-item-info.active{
  box-shadow: none;
  margin: 0;
  border: none;
  padding: 0;
  background: none;
}
.product-item .product-item-photo{
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  margin-bottom: 0;
}
.product-item .product-item-photo .product-image-container{
  background: #fff;
  width: 100%;
  aspect-ratio: 9/10 !important;
  vertical-align: middle;
}
.products-grid .product-item-info > .discount-label{
  display: none;
}

.product-item-info .img-wishlist{
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}
.product-item-info .img-wishlist .action.towishlist{
  position: absolute;
  top: .8rem;
  right: -4rem;
  background: rgba(233, 233, 233, 1);
  width: 3rem;
  height: 3rem;
  z-index: 1;
  border-radius: 3rem;
  line-height: 3rem;
  text-align: center;
  transition: 0.4s;
}
.product-item-info .img-wishlist .action.towishlist:before{
  margin-right: 0;
  content: '\f08a';
  font-family: fontawesome; 
}
.product-item-info .img-wishlist .action.towishlist span{
  display: none;
}
.product-item-info:hover .img-wishlist .action.towishlist{
  right: 0.4rem;
}

.product-item-info a.bss-quickview{
  border-radius: 3rem;
  padding: .8rem 1.5rem !important;
  line-height: 1.6rem;
  max-width: fit-content;
  background: rgb(var(--color-button));
  transform: translateY(120px);
  transition: 0.4s;
  display: block !important;
  left: 3rem !important;
  right: auto;
}
.product-item-info a.bss-quickview:hover{
  background: rgba(var(--color-button-hover), 1);
}
.product-item .product-item-info:hover .img-wishlist .bss-quickview{
  bottom: 1rem !important;
  left: 3rem  !important;
  transform: translateY(0);
}

.product-item-info .img-wishlist .product-item-inner{
  position: absolute;
  bottom: 1rem;
  left: auto;
  right: 3rem;
  width: fit-content;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
  background: none;
  border: none;
  transform: translateY(120px);
  transition: 0.4s;
  clip: auto !important;
  width: auto !important;
  height: auto !important;
}
.product-item-info:hover .img-wishlist .product-item-inner{
  transform: translateY(0);
}
.product-item-info .img-wishlist .product-item-inner .product-item-actions{
  margin: 0;
}
.product-item-actions .actions-primary{
  width: 100%;
}
.product-item .tocart{
  width: 100%;
  border-radius: 3rem;
  line-height: 16px;
  padding: 0.7rem 1.5rem;
}
.product-item .tocart{
  background: rgba(247, 135, 27, 1);
  border-color: rgba(247, 135, 27, 1);
}



.product-item .product-item-name{
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.product-item .product-item-name a{
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-weight: 600;
 
}
.product-item .product-reviews-summary{
  display: none;
}
.product-item .description{
  font-size: 1.5rem;
  font-weight: normal;
  color: rgb(var(--color-foreground));
  margin: 0 0 1rem;
}
.product-item .price-box{
  display: inline-block;
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 3rem;
}
.product-item .price-label{
  display: none;
}
.product-item .normal-price .price-label{
  display: block !important;
}
.product-item .price-box [data-price-type="finalPrice"]{
  color: rgb(var(--text-primary));
  font-size: 1.6rem;
  font-weight: 600;
}
.product-item .price-box [data-price-type="oldPrice"]{
  font-size: 1.4rem;
  font-weight: normal;
  color: rgba(80, 80, 80, 1);
  text-decoration: line-through;
  float: left;
  margin-right: 5px;
}

.product-item .discount-label{
  float: right;
  color: rgba(17, 175, 91, 1);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.16) 0%, rgba(40, 174, 103, 0.16) 50%, rgba(255, 255, 255, 0.16) 100%);
  font-size: 14px;
}


.post-list-container{
  max-width: 1530px;
  margin: 0 auto;
  background: rgb(var(--light-blue-white));
  padding: 3.2rem 4rem;
}
.widget-title{
  font-size: 3.5rem;
  font-weight: 600;
}
.widget-title{
  text-align: center;
}
.widget-title a{
  color: #000;
}

.middle-banner{
  margin-top: 30px;
}
.middle-banner img{
  width: 100%;
}

.today-surprise .title-wrapper-with-link{
  text-align: center;
  margin: 30px 0;
}
.today-surprise .col-12{
  position: relative;
}
.today-surprise img{
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.today-surprise a{
  position: absolute;
  bottom: 20px;
  left: 25px;
  z-index: 1;
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  transition: 0.4s;
}
.today-surprise a:hover{
  text-decoration: none;
  background: rgba(var(--color-secondary), 1);
  border-color: rgb(var(--color-secondary));
}


.suggest-section{
  padding: 3.6rem 1.5rem 1.6rem;
  font-size: 2.4rem;
}
.suggest-section h2{
  line-height: 1.8;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) -3.46%, #E3F1F8 48.58%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  margin: 0;
}
.suggest-section .btn{
  margin-top: 1.2rem;
}


.about-medidentalpro{
  background: rgb(var(--light-blue-white));
  padding: 5.5rem 4.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
.about-medidentalpro h2{
  margin-bottom: 1.2rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) -3.46%, #FFFFFF 48.58%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  line-height: 1.8;
}
.about-medidentalpro .btn{
  margin-top: 2rem;
}

.about-medidentalpro .about-imgs{
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
}
.about-medidentalpro .about-imgs img{
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
  transform: scale(1.1);
}
.about-medidentalpro .about-imgs img:hover{
  transform: scale(1);
}
.about-medidentalpro .img-1, .about-medidentalpro .img-2{
  overflow: hidden;
}
.about-medidentalpro .img-1{
  width: calc(52% - 25px * 1/2);
  margin-bottom: 65px;
}
.about-medidentalpro .img-2{
  width: calc(48% - 25px * 1/2);
  align-self: flex-end;
}
.about-medidentalpro .img-2 img{
  aspect-ratio: 14/16;
}
.home-about-content{
  padding-left: 35px;
}

.customer-reviews{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.customer-reviews .carousel{
  margin-top: 2rem;
}
.review-card{
  border-radius: 3rem;
  padding: 3rem;
  background: rgb(var(--header-background));
}
.review-card .review-star{
  color: rgba(238, 173, 70, 1);
  font-size: 2rem;
  margin-bottom: 1rem;
} 
.review-card .review-meta{
  column-gap: 5px;
  font-size: 1.4rem;
}
.review-card .review-meta small{
  font-size: 1.4rem;
}

.post-list-container .post-list-item{
  width: 33.33%;
  margin: 0 !important;
  padding: 0 15px;
}
.post-list-container .post-list-item .post-item-wraper{
  position: relative;
  padding: 0 !important;
  border: none;
}
.post-list-container .post-list-item .post-item-wraper:hover{
  box-shadow: none;
}
.post-list-container .post-list-item .post-image a{
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.post-list-container .post-list-item .post-image a:hover{
  text-decoration: none;
}
.post-list-container .post-list-item .post-image a img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: 0.4s;
  transform: scale(1.05);
}
.post-list-container .post-list-item .post-info-wraper{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 2rem 2rem 0 0;
  display: flex;
  flex-direction: column;
}
.post-list-container .post-list-item .post-image:hover a img{
  transform: scale(1.0);
}
.post-list-container .post-list-item .mp-post-title{
  font-weight: normal;
  font-size: 20px !important;
}
.post-list-container .post-list-item .mp-post-title .post-link-title{
  color: currentColor;
  text-decoration: none;
}
.post-list-container .post-list-item .mp-post-info{
  font-size: 1.4rem;
  margin-bottom: 1rem;
  order: -1;
}
.post-list-container .post-list-item .mp-read-more{
  color: currentColor;
}
.post-list-container .post-list-item :is(.post-short-description, .mp-post-meta-info){
  display: none;
}

.medidentalpro-info{
  padding: 32px 0;
}
.medidentalpro-info h4{
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.medidentalpro-info p{
  margin: 0 0 1.5rem;
}

.page-footer{
  padding-bottom: 0;
}

.newsletter-block{
  background: #C7E5F0;
  color: #000;
  padding: 46px 0;
  font-weight: 600;
  font-size: 18px;
}
.newsletter-block form label{
  margin-bottom: 25px;
}
.field.newsletter .control{
  position: relative;
  max-width: 490px;
  margin: 0 auto;
}
.field.newsletter .control input{
  border: none;
  background: #fff;
  padding: .6rem 2rem;
  line-height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 3rem;
  height: auto;
}
.field.newsletter .control button{
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: rgb(var(--color-button-hover));
  color: #fff;
  padding: .6rem 2rem;
  line-height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 3rem;
  transition: 0.4s;
}
.field.newsletter .control button:hover{
  background: rgb(var(--color-secondary));
}


.footer-wrapper{
  background: rgb(var(--light-blue-white));
  color: rgb(var(--color-foreground));
  padding: 4rem 0 2rem;
}
.footer-wrapper .about-info{
  font-size: 15px;
}

.footer-block-heading{
  color: #000;
  font-size: 1.6rem;
}
.footer-wrapper a{
  color: currentColor;
  transition: 0.4s;
}
.footer-wrapper a:hover{
  color: rgb(var(--text-primary));
  text-decoration: none;
}
.footer-wrapper .about-info img{
  max-width: 200px;
  margin-bottom: 15px;
}
.footer-wrapper .about-info p{
  max-width: 430px;
}

.social-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 4px;
}
.social-links li{
  margin: 0;
}
.social-links li a{
  display: inline-block;
  vertical-align: middle;
}
.social-links li img{
  transition: 0.4s;
}
.social-links li a:hover img{
  opacity: .8;
}

.contact-info{
  font-size: 15px;
}
.contact-info .contact-info-row, .contact-info > p:not(.footer-block-heading){
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-info .contact-info-row img, .contact-info > p:not(.footer-block-heading) img{
  margin-right: 7px;
}
.contact-info .contact-info-row p{
  margin: 0;
}
.contact-info > p:not(.footer-block-heading) img{
  margin-right: 10px;
}

.payment-icons{
  margin-top: 30px;
}
.payment-icons img{
  width: 60px;
  margin: 0 5px 5px 0;
}

.footer-bottom{
  background: rgb(var(--light-blue-white));
  color: rgb(var(--color-foreground));
  padding: 0 0 2rem;
  font-size: 13px;
}
.footer-bottom p{
  margin-bottom: 0;
}
.footer-bottom .row{
  row-gap: 10px;
}

.whatsapp-button-container {
  position: fixed;
  bottom: 1.25em;
  right: 1.25em;
  margin: 0;
  z-index: 999999;
  cursor: pointer;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  background-color: #25d366;
  border-radius: 2.5em;
  text-decoration: none;
  font-weight: bold;
  color: #FFFFFF;
}
a.whatsapp-button:hover{
  text-decoration: none;
  color: #fff;
}
.whatsapp-button img {
  height: 2em;
  width: auto;
  margin-right: 0.3125em;
}

.close-button {
  position: absolute;
  top: -0.625em;
  right: -0.625em;
  display: block;
  background-color: red;
  color: white;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  text-align: center;
  line-height: 1.25em;
  font-weight: bold;
  cursor: pointer;
}

.breadcrumbs .items{
  font-size: 1.6rem;
  font-weight: normal;
  color: rgb(var(--text-primary));
  white-space: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumbs .items a{
  color: rgb(0, 0, 0);
}
.breadcrumbs .items a:hover{
  text-decoration: none;
  color: rgb(var(--text-primary));
}
.breadcrumbs .item:not(:last-child):after{
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(-45deg);
  margin-top: .8rem;
  color: rgb(0, 0, 0);
}

.page-main > .page-title-wrapper .page-title{
  font-size: 3.6rem;
  font-weight: 600;
  margin: 0 0 1.2rem;
  color: rgb(0, 0, 0);
  text-transform: capitalize;
}
.page-main > .page-title-wrapper .page-title:only-child{
  margin: 0;
}

.catalog-category-view .page-title-wrapper{
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  border-radius: .6rem;
  margin-bottom: 2rem;
}

.catalog-category-view .page-title-wrapper .page-title:only-child{
  margin-bottom: 0;
}
.catalog-category-view .page-title-wrapper .category-description{
  margin-bottom: 0;
}

.category-section .sub-cat .col{
  flex: 11.11%;
  text-align: center;
  max-width: 11.11%;
}
.category-section .sub-cat h4{
  color: #000;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0;
  transition: 0.4s;
}
.category-section .sub-cat .category-img{
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  margin-bottom: 1.6rem;
}
.category-section .sub-cat .category-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  transition: 0.4s;
}
.category-section .sub-cat a:hover{
  text-decoration: none;
}
.category-section .sub-cat a:hover .category-img img{
  transform: scale(1.1);
}
.category-section .sub-cat a:hover h4{
  color: rgb(var(--text-primary));
} 

.products.wrapper.grid.products-grid{
  background: rgb(var(--light-blue-white));
  padding: 3.4rem 3.4rem;
  margin: 0;
}
.products.wrapper.grid.products-grid .product-items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.7rem;
}
.products.wrapper.grid.products-grid .product-items .product-item{
  width: 20%;
  margin-left: 0;
}
.page-products .product-item-info{
  width: 100%;
}
.page-products .product-item-info .product-item-photo .discount-label{
  display: none;
}
.column.main .product-items{
  letter-spacing: normal;
  margin: 0;
}
.rating-summary .rating-result > span:before{
  color: rgba(238, 173, 70, 1);
}
.page-layout-1column .products ~ .toolbar-products{
  background: rgb(var(--light-blue-white));
  margin: 0;
  padding-bottom: 6rem;
}
.products.wrapper ~ .toolbar .pages{
  width: 100%;
}
.products.wrapper ~ .toolbar .pages .page, .products.wrapper ~ .toolbar .pages .action{
  border: 1px solid rgba(223, 227, 232, 1);
  width: 3.2rem;
  height: 3.2rem;
  color: rgba(33, 43, 54, 1);
  font-weight: 700;
  background: #fff;
  font-size: 1.4rem;
  letter-spacing: normal;
  border-radius: .4rem;
}
.products.wrapper ~ .toolbar .pages strong.page{
  border-color: rgb(var(--text-primary));
  color: rgb(var(--text-primary));
}
.products.wrapper ~ .toolbar .pages .action.next{
  margin-left: 0;
}
.products.wrapper ~ .toolbar .pages .action:hover{
  border-color: rgb(var(--text-primary));
  background: #fff;
  color: rgb(var(--text-primary));
}
.products.wrapper ~ .toolbar .pages .action.previous:hover:before, .products.wrapper ~ .toolbar .pages .action.next:hover:before{
  color: rgb(var(--text-primary));
}
.products.wrapper ~ .toolbar .pages .item:last-child{
  margin-right: 0;
}

.page-layout-1column .toolbar-products.top-toolbar{
  position: static;
  margin: 0;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-layout-1column .toolbar-products.top-toolbar:before,
.page-layout-1column .toolbar-products.top-toolbar:after{
  content: none;
}

.product-item .swatch-attribute .swatch-option{
  height: auto;
  background: #fff;
  border: 1px solid #eee;
  padding: 2px 7px;
  margin: 0 2px 2px 0;
  font-weight: normal;
}


.toolbar-sorter.sorter{
  padding: .2rem 2rem;
  border: 1px solid #000;
  border-radius: 3rem;
}
.toolbar-sorter.sorter .sorter-action{
  top: 0;
}
.toolbar-sorter.sorter label{
  margin: 0 1rem 0 0;
  font-weight: 600;
  color: rgba(142, 142, 142, 1);
  font-size: 1.5rem;
}
.toolbar-sorter.sorter select{
  background-color: transparent;
  border: none;
  margin: 0;
  box-shadow: none;
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
}
.toolbar-sorter.sorter select{
  background-position: right center;
}

.page-layout-1column .filter-current {
  display: inline-block;
  width: 100%;
  padding: 2rem;
}
.page-layout-1column .filter-current .block-subtitle{
  display: inline-block;
  font-weight: 600;
  vertical-align: middle;
  margin: 0 0 1rem;
  width: 100%;
}
.page-layout-1column .filter-current .items{
  display: inline-block;
  width: 100%;
  padding: 0;
}
.page-layout-1column .filter-current .items .item{
  padding: .5rem 2.5rem .5rem 1rem;
  background: rgb(var(--light-blue-white));
  border: 1px solid #000;
  font-size: 1.5rem;
  border-radius: 3rem;
  margin-right: 1rem;
}
.page-layout-1column .filter-current .action.remove{
  left: auto;
  right: 1rem;
  top: .5rem;
}
.page-layout-1column .filter-actions{
  display: inline-block;
  width: 100%;
  padding: 0 2rem;
}
a.action.clear.filter-clear{
  padding: .5rem 2.5rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: 1px solid rgb(var(--color-button));
  font-size: 1.5rem;
  border-radius: 3rem;
  transition: 0.4s;
}
a.action.clear.filter-clear:hover{
  text-decoration: none;
  color: rgb(var(--color-button));
  background: rgb(var(--color-button-text));
}

.filter.block{
  margin: 0;
  border: none !important;
}
#all-filters-btn{
  border: 1px solid #000;
  background: rgb(var(--light-blue-white));
  color: #000;
  padding: 10px 20px;
  border-radius: 3rem;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 2.2rem;
}
#all-filters-btn strong{
  font-weight: 600;
}
#all-filters-btn-close{
  display: none;
}
.filterOpened #all-filters-btn-close{
  display: block;
}
.filterOpened #all-filters-btn-close:before {
  content: '';
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
}
.filterOpened #all-filters-btn-close:after{
  content: '\e616';
  font-family: 'luma-icons';
  border-radius: 5.2rem;
  width: 5.2rem;
  height: 5.2rem;
  line-height: 5.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 3.5rem;
  left: 370px;
  padding: 0;
  margin: 0;
  z-index: 12;
}

div#layered-filter-block .filter-content{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 350px;
  background: #fff;
  z-index: 13;
  transform: translateX(-600px);
  transition: 0.4s;
  display: block !important;
  margin: 0;
  padding: 2rem 0;
}
.filterOpened div#layered-filter-block .filter-content{
  transform: translateX(0);  
}
.page-layout-1column .filter-options-item{
  margin-right: 0;
  width: 100%;
  padding: 1rem 2rem;
}
.swatch-option-tooltip{
  display: none !important;
}
.filter-options-title{
  color: #000;
}
.page-layout-1column .filter-options-content{
  position: relative;
  width: 100%;
  left: 0;
  top: auto;
  box-shadow: none;
  border: none;
}
.page-layout-1column .filter-options-item.active:after, .page-layout-1column .filter-options-item.active:before{
  content: none;
}
.filter-options-content .swatch-attribute-options{
  margin: 0;
}
.filter-options-content .swatch-attribute-options a{
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.filter-options-content .swatch-attribute-options .swatch-option.text{
  width: 100%;
  margin: 0;
  background: none;
  border: none;
  height: auto;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-align: left;
  padding: 5px;
  line-height: 24px;
}
.page-layout-1column .filter-options-content .item:hover{
  background: none;
  border: none;
}
.filter-options-content .swatch-attribute-options .swatch-option.text:focus{
  box-shadow: none;
}
.filter-options-content a:hover{
  background: none;
  color: rgb(var(--text-primary));
}
.filter-options-content .swatch-option:not(.disabled):hover{
  outline: none;
}

/*Product Page*/
.product-info-main{
  color: #000;
}
.product-info-main .page-title-wrapper h1{
  font-size: 2.4rem;
  font-weight: 600;
}
.product-share{
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 2rem;
}
.product-share span{
  font-weight: 600;
}
.product-share a{
  background: rgb(var(--color-primary));
  color: #fff;
  padding: .2rem .5rem;
  border-radius: .4rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 2px 2px 0;
}
.product-share a:hover{
  text-decoration: none;
}
.product-share a.facebook{
  background: #337fff;
}
.product-share a.whatapp{
  background: #25d366;
}


.custom-accordion{
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.product-info-main .accordion-item{
  margin-bottom: .6rem;
  background: rgb(var(--light-blue-white));
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-radius: .6rem;
}
.product-info-main .accordion-item .accordion-header{
  padding: .5rem 1rem;
  line-height: 2.8rem;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  vertical-align: middle;
  column-gap: 1rem;
  user-select: none;
}
.product-info-main .accordion-item .accordion-header:after{
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-top: 8px;
  transition: 0.4s;
}
.product-info-main .accordion-item .accordion-header.active:after{
  transform: rotate(-135deg);
}
.product-info-main .accordion-item .accordion-body{
  padding: .5rem 1rem 1.6rem;
  line-height: 1.35;
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
}
.zipchecker-product, .catalog-product-view .product-add-form{
  float: right;
  width: 100%;
}
.product-third-section{
  float: right;
  color: #000;
  margin-top: 15px;
  width: 100%;
}
.product-third-section .more-qty{
  background: rgb(var(--light-blue-white));
  padding: 2rem;
  border-radius: .5rem;
  text-align: center;
  margin-bottom: 2.8rem;
}
.product-third-section .more-qty a{
  display: inline-block;
  border: 1px solid rgb(var(--color-button));
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  padding: .7rem 1.6rem;
  line-height: 2.4rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: 0.4s;
}
.product-third-section .more-qty a:hover{
  text-decoration: none;
  background: rgb(var(--color-secondary));
  border-color: rgb(var(--color-secondary));
}
.call-action-icons{
  text-align: center;
  font-size: 1.5rem;
}
.call-action-icons > div{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
}
.call-action-icons .call-icon img{
  width: 45px;
  height: 45px;
  object-fit: scale-down;
}
.call-action-icons p:last-child{
  margin: 0;
}
.payment-btn:hover{
  border-color: rgb(var(--color-primary)) !important;
}

.fotorama__arr--prev .fotorama__arr__arr, .fotorama__arr--next .fotorama__arr__arr{
  width: 4rem;
  height: 4rem;
  background: rgba(232, 232, 232, 1);
  border-radius: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fotorama__arr--prev .fotorama__arr__arr:after{
  content: '';
  width: 14px;
  height: 14px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  margin-left: 5px;
}
.fotorama__arr--next .fotorama__arr__arr:after{
  content: '';
  width: 14px;
  height: 14px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  margin-right: 5px;
}
.fotorama__nav--thumbs .fotorama__nav__frame{
  height: auto !important;
  padding: 0 !important;
  margin-right: 3px;
}
.fotorama__thumb{
  padding-top: 100%;
  background: #fff;
}
.fotorama__nav-wrap .fotorama_vertical_ratio .fotorama__img{
  padding: 3px;
  height: 100%;
  object-fit: scale-down;
  border: 2px solid #ddd !important;  
}
.fotorama__nav-wrap .fotorama__active .fotorama_vertical_ratio .fotorama__img{
  border-color: rgba(var(--color-secondary)) !important;
}
.fotorama__thumb-border{
  height: 100% !important;
  margin-top: 0 !important;
  border-color: rgba(var(--color-secondary));
  display: none !important;
}

.product.media .gallery-placeholder{
  width: 100%;
}
.product.media .gallery-placeholder .fotorama__stage{
  border: 1px solid #000;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 1.8rem;
}

.product-reviews-summary{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(145, 158, 171, 1);
}
.product-reviews-summary .reviews-actions{
  margin: 0;
}
.product-reviews-summary .reviews-actions a{
  display: inline-block;
  border: 1px solid rgba(246, 130, 32, 1);
  color: rgba(246, 130, 32, 1);
  padding: .7rem 1rem;
  line-height: 2.4rem;
  border-radius: .2rem;
  transition: .4s;
}
.product-reviews-summary .reviews-actions a:hover{
  text-decoration: none;
  background: rgba(246, 130, 32, 1);
  color: #fff;
}
.product-info-main .rating-summary{
  margin-right: 0;
}
.product-info-main .rating-summary .rating-result:before{
  content: none;
}
.product-info-main .rating-summary .rating-result{
  background: rgba(255, 208, 107, 1);
  color: #000;
  padding: .5rem;
  border-radius: .5rem;
  line-height: 2rem;
  width: auto;
  font-weight: normal;
}
.product-info-main .rating-summary .rating-result strong{
  vertical-align: middle;
  font-weight: normal;
}
.product-info-main .rating-summary .rating-result img{
  vertical-align: middle;
  margin-left: .6rem;
}

.product-info-main .product-info-stock-sku{
  padding-left: 0;
  width: 100%;
  text-align: left;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(145, 158, 171, 1);
}
.product-info-main .stock.available, .product-info-main .stock.unavailable{
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
}
.product-info-main .stock.available img, .product-info-main .stock.unavailable img{
  vertical-align: middle;
  margin-right: .5rem;
}
.product-info-main .stock.available span, .product-info-main .stock.unavailable span{
  vertical-align: middle;
}
.product-info-main .brand strong{
  font-weight: 600;
}

.catalog-product-view .box-tocart{
  margin-bottom: 0;
}
.catalog-product-view .box-tocart .fieldset{
  margin-bottom: 1.5rem;
}
.catalog-product-view .box-tocart .fieldset:last-child{
  margin-bottom: 0;
}
.catalog-product-view .box-tocart .actions{
  display: flex;
  width: 100%;
  vertical-align: bottom;
  flex-wrap: wrap;
  column-gap: .6rem;
  row-gap: 1rem;
  align-items: flex-start;
}
.catalog-product-view .box-tocart .actions > * {
  flex: 0 0 calc(50% - .6rem * 1/2);
  margin: 0;
  max-width: calc(50% - .6rem * 1/2);
  order: 3;
}
.catalog-product-view .box-tocart .actions .action{
  width: 100%;
  background: rgba(56, 162, 208, 1);
  margin: 0;
  padding: .7rem 1rem;
  line-height: 2.6rem;
  border: none;
  font-size: 1.6rem;
  border-radius: .5rem;
  transition: .4s;
}
.catalog-product-view .box-tocart .actions .action:hover{
  background: rgb(var(--color-secondary));
}
.catalog-product-view .box-tocart .actions .action.tocart{
  order: 1;
  background: rgb(var(--color-secondary));
}
.catalog-product-view .box-tocart .actions .action.tocart:hover{
  background: rgb(var(--color-button-hover));
}
.catalog-product-view .box-tocart .actions .mageprince-buynow{
  order: 2;
}

.product-options-bottom .price-box, .product-info-price .price-box{
  color: #000;
}
.product-options-bottom .price-box .price-container .price, .product-info-price .price-box .price-container .price{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
:where(.product-info-price, .product-options-bottom) .price-box .price-label{
  display: none !important;
}

:where(.product-info-price, .product-options-bottom)  .price-box .price-container{
  font-size: 1.8rem;
  line-height: 2.2rem;
}
.product-info-main .product-info-price .price-box {
    display: inline-flex;
    align-items: center;
    width: 100%;
    column-gap: .5rem;
    padding-bottom: 0;
}
.product-info-main .product-info-price .price-box .price-container > span{
  margin: 0;
}
:where(.product-info-price, .product-options-bottom) .price-box [data-price-type="finalPrice"]{
  font-size: 1.8rem;
  font-weight: 700;
}
:where(.product-info-price, .product-options-bottom) .price-box [data-price-type="oldPrice"]{
  font-weight: normal;
  color: rgba(142, 142, 142, 1);
  text-decoration: line-through;
}
:where(.product-info-price, .product-options-bottom) .price-box [data-price-type="oldPrice"] .price{
  font-weight: normal !important;
  font-family: 'Proxima Nova' !important;
}
:where(.product-info-price, .product-options-bottom) .price-box .discount-label:before{
  content: '(';
}
:where(.product-info-price, .product-options-bottom) .price-box .discount-label:after{
  content: ')';
}

.product-info-main .product-info-price{
  border-bottom: none;
  margin-bottom: 1rem;
}
.product-attachments{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 1rem;
  row-gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-attachments .downloadable-attachment a{
  padding: 5px;
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-primary));
  border-radius: 5px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
.downloadable-attachment.pdf a:before{
  width: 1.8rem;
  height: 2.2rem;
  background-size: 100%;
  background-position: center;
  background-image: url(../images/download.png);
}


.control.qty-wrapper{
  position: relative;
  max-width: 12rem;
  margin-bottom: 2rem;
}
.control.qty-wrapper .input-text{
  border: 1px solid rgba(0, 0, 0, 0.46);
  height: 3.4rem;
  border-radius: .5rem;
  text-align: center;
  width: 100%;
  padding: 0 3.6rem;
}
.control.qty-wrapper .qty-btn{
  position: absolute;
  top: 0;
  height: 3.4rem;
  width: 3.4rem;
  border: none;
  background: none;
  padding: 0;
  font-size: 1.8rem;
}
.control.qty-wrapper .qty-btn:focus{
  box-shadow: none;
  outline: none;
}
.control.qty-wrapper .qty-btn.minus{
  left: 0;
}
.control.qty-wrapper .qty-btn.plus{
  right: 0;
}

.zipchecker-product{
  margin-top: 0;
  margin-bottom: 2rem;
}
.zipchecker-product strong{
  font-weight: 600;
  font-size: 1.8rem;
  display: inline-block;
  width: 41%;
  margin-bottom: 1.8rem;
  line-height: 2.2rem;
  color: #000;
}

.zipchecker-product .form-product-zipcode .zipcode-box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(145, 158, 171, 1);
  margin: 0;
}
.zipchecker-product .form-product-zipcode .zipcode-box .zipcode-inner{
  max-width: calc(100% - 9rem);
  margin-right: .7rem;
}
.zipchecker-product .form-product-zipcode .zipcode-box .zipcode-inner .control .input-text{
  border: 1px solid rgba(56, 162, 208, 1);
  background: rgba(238, 243, 246, 1);
  padding: .7rem 1rem;
  line-height: 2.4rem;
  height: auto;
  border-radius: .5rem;
}
.zipchecker-product .form-product-zipcode .zipcode-box .zipcode-check-btn{
  position: relative;
}
.zipchecker-product .form-product-zipcode .zipcode-box .zipcode-check-btn .action.primary{
  font-weight: normal;
  font-size: 1.6rem;
  border: 1px solid rgba(56, 162, 208, 1);
  background: #fff;
  color: #000;
  border-radius: .5rem;
  line-height: 2.2rem;
}
.zipchecker-product .form-product-zipcode .zipcode-box .zipcode-check-btn .action.primary:focus{
  box-shadow: none;
  outline: none;
}
.zipchecker-product .form-product-zipcode .zipcode-box :is(.message, #estimated-delivery){
  width: 100%;
  margin-top: .5rem;
  margin-bottom: 0;
}
.zipchecker-product .form-product-zipcode .zipcode-box .message{
  padding: 1rem;
}
.zipchecker-product .form-product-zipcode .zipcode-box .message:empty{
  display: none;
}
.zipchecker-product .form-product-zipcode .zipcode-box #estimated-delivery{
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}

.product-offer-box h3{
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0 0 1rem;
}
.product-offer-box .offers-table{
  background: rgba(238, 243, 246, 1);
  box-shadow: 0 0 3px rgba(56, 162, 208, 1);
  border-radius: 7px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  overflow: hidden;
}
.product-offer-box .offers-table th{
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
}
.product-offer-box .offers-table th, .product-offer-box .offers-table td{
  padding: .5rem 1rem;
  text-align: center;
/*  border: 1px solid rgba(56, 162, 208, 1);*/
}
.product-offer-box .offers-table thead tr:first-child th:first-child{
  border-top-left-radius: 7px;
} 
.product-offer-box .offers-table tbody td{
  border-top: 1px solid rgba(56, 162, 208, 1);
}
.product-offer-box .offers-table :is(td, th):first-child{
  border-right: 1px solid rgba(56, 162, 208, 1);
}

.catalog-product-view .product-add-form .swatch-opt{
  margin-top: 0;
}
.catalog-product-view .product-add-form .swatch-opt .swatch-attribute-label{
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
}
.catalog-product-view .product-add-form .swatch-opt .swatch-attribute-options .swatch-option.text{
  color: #000;
  background: rgba(238, 243, 246, 1);
  height: auto;
  line-height: 2.4rem;
  padding: .5rem 1.6rem;
  border: 1px solid rgba(56, 162, 208, 1);
  border-radius: .5rem;
  font-size: 1.6rem;
  font-weight: normal;
  box-shadow: none;
}
.catalog-product-view .product-add-form .swatch-opt .swatch-attribute-options .swatch-option.selected{
  outline: none;
  background: rgba(56, 162, 208, 1);
  color: #fff;
}
.swatch-option:not(.disabled):hover{
  outline: none;
}

.page-main-details .product-section-title{
  display: flex;
  align-items: center;
  color: #000;
  border-bottom: none;
}
.page-main-details .product-section-title:after{
  content: '';
  height: 2px;
  flex: 1 1 0;
  background: linear-gradient(90deg, #3A5E91 0%, rgba(255, 255, 255, 0) 100%);
  margin-left: 3rem;
  order: 2;
}
.block.review-list .review-items .review-item{
  border-radius: 16px;
  background: rgb(var(--light-blue-white));
  padding: 2.4rem;
  border-bottom: none;
  margin-bottom: 15px;
}
.block.review-list .review-items .review-item .review-title{
  margin-bottom: 15px;
}

.review-form{
  max-width: 800px;
  margin-bottom: 30px;
}
fieldset.fieldset.review-fieldset{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.review-form fieldset.fieldset.additional_info{
  margin-bottom: 20px;
  display: none;
}
.fieldset .review-field-ratings > .label{
  width: 100%;
}
#input-message-box{
  width: 100%;
}
fieldset.fieldset.review-fieldset .field{
  width: 100%;
}
fieldset.fieldset.review-fieldset .field.review-field-nickname{
  width: calc(50% - 30px * 1/2);
}
fieldset.fieldset.review-fieldset .field.review-field-summary{
  width: calc(50% - 30px * 1/2);
  margin-left: auto;
}
fieldset.fieldset.review-fieldset .field input[type="text"], fieldset.fieldset.review-fieldset .field input[type="number"]{
  background: rgba(245, 245, 247, 1);
  border: 1px solid rgba(0, 0, 0, 0.38);
  padding: .6rem 1.5rem;
  line-height: 2.6rem;
  height: auto;
  border-radius: .4rem;
}
fieldset.fieldset.review-fieldset .field  :is(textarea){
  background: rgba(245, 245, 247, 1);
  border: 1px solid rgba(0, 0, 0, 0.38);
  padding: .6rem 1.5rem;
  line-height: 2.6rem;
  border-radius: .4rem;
  resize: none;
  height: 80px;
}
.fieldset .review-legend.legend{
  margin-bottom: 15px;
}
.fieldset > .legend{
  font-weight: normal;
}
.fieldset .review-legend.legend strong{
  display: inline;
  margin-left: 5px;
}

.review-field-rating .control{
  margin-top: 0;
  margin-bottom: 32px;
}
.review-control-vote label:before{
  color: rgba(238, 173, 70, 1);
}
.field.choice.review-field-rating {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.review-field-rating .label{
  width: 10rem;
  margin: 0;
  display: none;
}
.review-control-vote label{
  margin-bottom: 0;
}
.review-control-vote label:before, .review-control-vote:before{
  font-size: 2.4rem;
}
.review-control-vote .rating-5{
  margin-bottom: 0;
}

.review-form .actions-toolbar{
  margin-top: 0;
}
.review-form .action.submit.primary{
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;  
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  box-shadow: none;
}
.review-form .action.submit.primary:hover{
  background: rgba(var(--color-button-hover), 1);
  color: #fff;
}



.block.related, .recently-viewed-products{
  background: rgb(var(--light-blue-white));
  padding-top: 3.4rem;
}

:where(.block.related, .recently-viewed-products) .block-title.title{
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 3.4rem;
}
:where(.block.related, .recently-viewed-products) .block-title.title strong{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.8;
  color: #000;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) -3.46%, #FFFFFF 48.58%, rgba(255, 255, 255, 0) 100%);
}
:where(.block.related, .recently-viewed-products) .block-title.title:after {
    content: '';
    height: 2px;
    flex: 1 1 0;
    background: linear-gradient(90deg, #3A5E91 0%, rgba(255, 255, 255, 0) 100%);
    margin-left: 3rem;
    order: 2;
}
:where(.block.related, .recently-viewed-products) .products.wrapper.grid.products-grid{
  padding-top: 2.5rem;
}
.block.related .products.wrapper.grid.products-grid .product-items .product-item{
  width: 100%;
}
:where(.block.related, .recently-viewed-products) .products.wrapper.grid.products-grid .product-items .product-item .product-item-info{
  width: 100%;
}
:where(.block.related, .recently-viewed-products) .related-available .product-item-name{
  margin-left: 0 !important;
}


/* Quick view */
.mfp-iframe-holder .mfp-close{
  top: -20px;
  right: -18px;
  background: rgb(var(--color-secondary));
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  opacity: 1;
}
.mfp-iframe-holder .mfp-close:hover{
  background: rgb(var(--color-button));
}
.bss_quickview-catalog_product-view .column.main{
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.bss_quickview-catalog_product-view .breadcrumbs{
  display: none;
}
.bss_quickview-catalog_product-view .product.media{
  position: sticky;
  top: 6rem;
  width: 46%;
}
.bss_quickview-catalog_product-view .product-info-main{
  width: 50%;
}
.bss_quickview-catalog_product-view .custom-accordion, .bss_quickview-catalog_product-view .call-action-icons{
  display: none;
}
.bss_quickview-catalog_product-view .product-info-main .product-add-form{
  padding-top: 0;
}

.bss_quickview-catalog_product-view .page-main.page-main-details{
  display: none;
}

.mfp-content{
  height: auto !important;
}
.bss_quickview-catalog_product-view .page-wrapper main#maincontent{
  max-height: 100vh;
  overflow: hidden auto;
}

.bss_quickview-catalog_product-view.page-layout-1column .column.main{
  padding-bottom: 0;
}
#ajax-goto{
  padding: 1rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: right;
}
a.goto-product{
  display: inline-block;
  padding: .5rem 1.6rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-radius: .4rem;
  text-decoration: none;
}
a.goto-product:hover{
  background: rgb(var(--color-secondary));
}



.cms-page-view .column.main h1{
  font-size: 30px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 15px;
}
.cms-page-view .column.main h2{
  font-size: 24px;
  color: rgb(0, 0, 0);
}
.cms-page-view .column.main h2:not(:first-child){
  margin-top: 20px;
}
.cms-page-view .column.main h3{
  font-size: 20px;
  color: rgb(0, 0, 0);
}
.cms-page-view .column.main h4{
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 0, 0);
}
.cms-page-view .column.main h4:not(:first-child){
  margin-top: 20px;
}
.cms-page-view .column.main ul{
  padding-left: 2rem;
}
.cms-page-view .column.main ul li{
  margin-bottom: .5rem;
}
.cms-page-view .column.main .data-table-definition-list{
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cms-page-view .column.main  .data-table-definition-list :is(th, td){
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cms-page-view .column.main a{
  color: rgb(var(--color-button-hover));
  font-weight: 600;
}
.cms-page-view .column.main a:hover{
  text-decoration: none;
  color: rgb(var(--color-secondary));
}

.contact-index-index .page-title-wrapper{
  margin: 2rem 0;
}
.contact-form-section h4{ 
  font-size: 3.5rem;
  font-weight: 600;
  color: #000;
}
.left-content{
  background: #F1F1F1;
  padding: 9rem 3rem;
  margin: 0 !important;
}
.right-form{
  background: #F7F7F7;
  padding: 9rem 3rem;
  margin: 0 !important;
}
.contact-index-index .column:not(.sidebar-additional) .form.contact{
  min-width: 0;
  width: 100%;
}
.form.contact .fieldset{
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.8rem;
  row-gap: 2rem;
  margin-bottom: 1.5rem;
}
.form.contact .fieldset > .field{
  margin: 0;
  flex: 100%;
}
.form.contact .fieldset > .field:is(.name, .telephone){
  flex: 1 1 0;
}
.form.contact .fieldset > .field > .label{
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  margin: 0 0 1rem;
}
.form.contact .fieldset > .field > .control > .input-text{
  border: 1px solid rgba(0, 0, 0, .38);
  background: #F5F5F7;
  border-radius: .4rem;
  padding: .6rem 1.5rem;
  height: auto;
  line-height: 2.6rem;
}
.form.contact .actions-toolbar .primary{
  float: right;
}
.form.contact .actions-toolbar > .primary .action{
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  padding: .8rem 3rem;
  border-radius: 3rem;
}

.left-content .contact-info{
  font-size: 1.6rem;
  margin-top: 1rem;
}
.left-content .contact-info li{
  position: relative;
  display: flex;
  align-items: flex-start;
}
.left-content .contact-info li img{
  margin-right: 10px;
}
.whatsapp-contact{
  display: inline-flex;
  align-items: flex-start;
}


.faqs.container{
  max-width: 1000px;
  color: #000;
}
.faqs.container .row{
  align-items: center;
}
.faqs.container .question{
  opacity: 0.85;
  font-weight: normal;
  font-size: 18px;
}
.faqs.container .sparsh-faq-block .answer{
  line-height: 1.35;
  font-size: 1.8rem;
}


.shop-by-brand .block-search {
  float: right;
  position: sticky;
  top: 145px;
  margin-top: -62px;
  height: auto;
}
.characters {
  position: sticky;
  top: 135px;
  z-index: 1;
  background: #fff;
  padding: 10px 300px 10px 0;
  width: 100%;
}
.shop-by-brand .block-search a {
  color: #000000;
}
.shop-by-brand .block-search a:hover {
  color: #000000;
}
.prices-tier{display: none;}
.product-item .minimal-price-link {
  margin-top: 5px;
  display: none;
}



.shopbrand-brand-view .page-title-wrapper{
  display: none;
}
.brand-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, 1);
    padding: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.4;
    border-radius: .6rem;
    margin-bottom: 2rem;
    background-color: rgb(var(--light-blue-white));
    column-gap: 2rem;
    row-gap: 1rem;
}
.brand-view h2.title{
  font-size: 3.6rem;
  font-weight: 600;
  margin: 0;
  color: rgb(0, 0, 0);
  text-transform: capitalize;
}
.brand-view .image{
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 13rem;
}
.brand-view .image img{
  height: 60px;
  width: 100%;
  object-fit: scale-down;
}
.brand-view .brand-description{
  width: 100%;
  color: rgb(0, 0, 0);
}
.brand-view .brand-description h2{
  font-size: 2.4rem;
  font-weight: 500;
}
.brand-view .brand-description h3{
  font-size: 2rem;
  font-weight: 500;
}
.brand-view .brand-description h4{
  font-size: 1.8rem;
  font-weight: 500;
}
.brand-view .brand-description h5{
  font-size: 1.6rem;
  font-weight: 600;
}
.brand-view .brand-description strong{
  font-weight: 600;
}
.brand-view .brand-description p:last-child{
  margin-bottom: 0;
}

.shopbrand .brand-list{
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.2rem;
  row-gap: 2rem;
  justify-content: center;
  width: 100%;
}
.shopbrand .brand-list .item {
    width: calc(16.66% - 1.2rem * 5 / 6);
    transition: 0.4s;
    top: 0;
    position: relative;
}
.shopbrand .brand-list .item a{
  color: currentColor;
}
.shopbrand .brand-list .item .image{
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  padding-top: 57.58%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.shopbrand .brand-list .item .image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 5px;
  padding: 1.2rem;
}
.shopbrand .brand-list .item .name{
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1rem;
  text-transform: capitalize;
}

.characters{
  margin-top: 3rem;
}
.characters ul{
  padding: 0;
  margin: 0;
}
.characters .filter .char a{
  color: rgb(var(--color-foreground));
}

/* login register pages */

:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword) :is(.nav-sections, .page-header, .page-footer, .footer-bottom){
  display: none;
}

:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword) .page-main{
  max-width: 100%;
  padding: 0;
  background-image: url(../images/bg-login.jpg);
  background-size: cover;
  background-position: left center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword) .page-main:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(74.8deg, #000 11.78%, #555 72.91%);
  opacity: 0.6;
}
:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword) .top-container{
  display: none;
}
:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword) .page-title-wrapper{
  display: none;
}
:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword) .page-main .columns{
  width: 100%;
  max-width: 460px;
  margin: 52px 150px 52px auto;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.customer-account-forgotpassword .actions-toolbar > .secondary .action.back{
  display: block;
}
.customer-account-forgotpassword .actions-toolbar > .secondary{
  margin-left: 0;
  width: 100%;
}
.form.create.account fieldset.fieldset.create.info{
  display: none;
}
.form.password.reset, .form.send.confirmation, .form.password.forget, .form.create.account{
  min-width: 0;
  width: 100%;
}
.login-container .block, .customer-regster .block{
  width: 100%;
  margin: 0;
}
.login-container .fieldset > .field > .control, .customer-regster .fieldset > .field > .control{
  width: 100%;
}
.login-container .block .block-title, .customer-regster .fieldset > .legend{
  font-size: 35px;
  font-weight: 600;
  color: #000;
  text-align: left;
  border-bottom: none;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}
.login-container .block .block-title strong, .customer-regster .fieldset > .legend span{
  font-weight: 600;
  margin-right: 0;
  vertical-align: middle;
  font-size: 35px;
  font-weight: 600;
  color: #000;
}
.field.note{
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.login-container .fieldset > .field > .label, .customer-regster .fieldset > .field > .label, .form.password.reset .fieldset > .field > .label, .form.send.confirmation .fieldset > .field > .label, .form.password.forget .fieldset > .field > .label{
  font-weight: normal;
  color: #666666;
}
.login-container .fieldset .input-text, .customer-regster .fieldset .input-text, .customer-regster .fieldset ._has-datepicker, .form.password.reset .input-text, .form.send.confirmation .input-text, .form.password.forget .input-text{
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
  border-radius: .4rem;
  padding: .6rem 1.5rem;
  height: auto;
  line-height: 2.6rem;
}
.login-container a.action.remind{
  color: rgb(var(--text-primary));
  text-decoration: underline;
}
.login-container a.action.remind:hover{
  color: rgb(var(--color-secondary));
}
.login-container .fieldset:after, .form-create-account .fieldset.create.account:after{
  margin-top: 15px;
}
.form-create-account .fieldset{
  margin-bottom: 1rem;
}
.fieldset > .field, .fieldset > .fields > .field{
  margin: 0 0 1rem;
}
.login-container .actions-toolbar > .primary, .form-create-account  .actions-toolbar > .primary, .form.password.reset .actions-toolbar > .primary, .form.send.confirmation .actions-toolbar > .primary, .form.password.forget .actions-toolbar > .primary {
  width: 100%;
  margin-bottom: 10px;
}
.login-container .actions-toolbar > .primary .action, .form-create-account .actions-toolbar > .primary .action, .form.password.reset .actions-toolbar > .primary .action, .form.send.confirmation .actions-toolbar > .primary .action, .form.password.forget .actions-toolbar > .primary .action {
  margin: 0;
  width: 100%;
  border-radius: .4rem;
  line-height: 2.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.4s;
}
:where(.customer-account-create, .customer-account-login, .customer-account-forgotpassword).page-layout-1column .column.main{
  padding-bottom: 0;
}

.form-create-account .actions-toolbar .secondary{
  display: none;
}
.account-social-login{
  text-align: center;
  margin-bottom: 0 !important;
}
.account-social-login .social-login{
  margin-bottom: 1rem;
}
.social-login strong{
  font-weight: normal;
}
.account-social-login .actions-toolbar.social-btn{
  width: 45px;
  height: 45px;
  margin: 0;
  vertical-align: middle;
}
.social-btn .btn-social{
  font-size: 0;
  padding: 0;
}
.social-btn .btn-social .fa{
  font-size: 20px;
  position: static;
  width: 100%;
  border: none;
  color: #fff;
  line-height: 43px;
  height: 43px;
  background-position: center;
}
.social-btn .btn-google{
  border-color: #dd4b39;
  background: #fff;
}
.account-social-login .signup{
  margin-top: 2rem;
  font-weight: 600;
}
.account-social-login .signup a{
  color: rgb(var(--color-button));
}
.account-social-login .signup a:hover{
  color: rgb(var(--color-secondary));
  text-decoration: none;
}
.fotorama__arr, .fotorama__thumb__arr, .fotorama__arr:active, .fotorama__thumb__arr:active, .fotorama__arr:hover, .fotorama__thumb__arr:hover{
  background-color: transparent !important;
}

.quick-order-content{
  padding: 5rem 0;
}
.quick-order-content .container{
  display: flex;
  flex-wrap: wrap;
}
.quick-order-content .image-section{
  width: 33.33%;
  text-align: center;
  padding: 0 1.5rem;
  align-self: flex-start;
  position: sticky;
  top: 18rem;
}
.quick-order-content .image-section img{
  max-width: 260px;
}
.quick-order-content .form-section{
  width: 66.66%;
  padding: 0 1.5rem;
}
.quick-order-content .form-section h2{
  display: inline-block;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) -3.46%, #E3F1F8 48.58%, rgba(255, 255, 255, 0) 100%);
  color: #000;
  margin: 0 0 1.6rem;  
}
.quick-order-content .form-section p{
  font-weight: 600;
  color: #000;
}
.quick-order-content .form-section form{
  margin-top: 25px;
}
.quick-order-content .form-section .field{
  margin-bottom: 2rem;
}
.quick-order-content .form-section .field label{
  font-weight: 600;
  color: #000;  
}
.quick-order-content .form-section .field label span.required{
  color: #e02b27;
}
.quick-order-content .form-section .field .input-text{
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
  border-radius: .4rem;
  padding: .6rem 1.5rem;
  height: auto;
  line-height: 2.6rem;
}
.quick-order-content .form-section .field textarea.input-text{
  height: 100px;
  resize: none;
}
.quick-order-content .form-section .btn{
  min-width: 160px;
  margin-top: 15px;
}


.toolbar select{
  background-color: #fff;
}
body:not(.catalog-category-view, .catalog-product-view) .page-title-wrapper{
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  border-radius: .6rem;
  margin-bottom: 2rem;
  background-color: rgb(var(--light-blue-white));
}

.form-orders-search{
  margin: 50px auto 0;
  max-width: 600px;
  border: 1px solid #ddd;
  padding: 3rem;
  border-radius: 2rem;
}
.form-orders-search .legend{
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.form-orders-search .label{
  font-weight: 600;
  color: #000;  
}
.form-orders-search .input-text, .form-orders-search .select{
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
  border-radius: .4rem;
  padding: 1.2rem 1.5rem;
  height: auto;
  line-height: 2rem;
}
.form-orders-search .fieldset{
  margin-bottom: 0;
}
.form-orders-search .action.primary{
  border-radius: 3rem;
  min-width: 160px;
}

.shopbrand-brand-listbrand .page-title-wrapper{
  text-align: left;
}

/* cart */
.cart-empty{
  text-align: center;
  font-size: 2.4rem;
  padding: 3rem 1.5rem;
}
.cart-empty a{
  color: rgb(var(--text-primary));
}

.table tbody + tbody{
  border-top: none;
}
.cart.table-wrapper .cart > .item .product-image-container{
  border: 1px solid rgba(var(--color-foreground), .1);
}
.cart.table-wrapper .col.price .price-excluding-tax, .cart.table-wrapper .col.subtotal .price-excluding-tax{
  font-size: 1.6rem;
  color: rgb(var(--color-primary));
}
.cart.table-wrapper .cart > .item .item-actions .actions-toolbar{
  margin-top: 0;
  padding-bottom: 0;
  min-height: 0;
}
.cart.table-wrapper .actions-toolbar > .action-edit, .cart.table-wrapper .actions-toolbar > .action-delete{
  top: auto;
  bottom: 3rem;
}

.cart-summary{
  background: rgb(var(--light-blue-white));
}
.cart-summary :is(mark, .mark){
  background: rgb(var(--light-blue-white));
}
.cart-summary .checkout-methods-items .item{
  margin-bottom: 1rem;
}
.cart-summary .checkout-methods-items .action.primary.checkout{
  padding: 7px 10px;
  font-size: 1.6rem;
}
a.action.multicheckout{
  display: inline-block;
  padding: 8px 16px;
  border-radius: .4rem;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
  background: rgb(var(--color-secondary));
  border: 1px solid rgb(var(--color-secondary));
  color: rgb(var(--color-button-text));
  width: 100%;
  margin: 0;
}
a.action.multicheckout:hover{
  text-decoration: none;
  background: rgb(var(--color-button-hover));
  border-color: rgb(var(--color-button-hover));
}

button.action.update{
  display: inline-block;
  padding: 8px 16px;
  border-radius: .4rem;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
  background: none;
  color: rgb(var(--color-button-hover));
  border: 1px solid rgb(var(--color-button-hover));
  display: none;
}
button.action.update:hover{
  background: rgb(var(--color-button-hover));
  color: rgb(var(--color-button-text));
}

.multishipping-checkout-login .block.block-customer-login {
    max-width: 600px;
    margin: 3rem auto;
    display: block;
    float: none;
    border: 1px solid rgb(var(--color-button-hover));
    padding: 3rem;
    border-radius: 1rem;
}

.cart-discount .block.discount{
  width: 100%;
}
.cart-discount .block > .title{
  padding: 1.5rem;
  background: rgb(var(--light-blue-white));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-discount .block > .title strong{
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}
#discount-coupon-form{
  margin: 2rem 0 0;
}
#discount-coupon-form button.action.apply.primary{
  display: inline-block;
  padding: 9px 16px;
  border-radius: .4rem;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
  background: rgb(var(--color-secondary));
  border: 1px solid rgb(var(--color-secondary));
  color: rgb(var(--color-button-text));
  width: 100%;
  margin: 0;
  box-shadow: none;
}
#discount-coupon-form button.action.apply.primary:hover{
  background: rgb(var(--color-button-hover));
  border-color: rgb(var(--color-button-hover));
  color: rgb(var(--color-button-text));
}
.fieldset.coupon{
  max-width: 400px;
}
.cart-discount .block .actions-toolbar{
  padding-left: 10px;
}

/*checkout*/
.authentication-wrapper .modal-content{
  box-shadow: none;
  border: none;
}
.checkout-index-index .page-header .logo{
  margin: 0;
}
.opc-wrapper .form-login, .opc-wrapper .form-shipping-address{
  max-width: 100%;
}
.opc-progress-bar-item:before,
.opc-progress-bar-item > span:before, .opc-progress-bar-item > span:after{
  border-color: rgb(var(--light-blue));
  background: rgb(var(--light-blue-white));
}
.opc-progress-bar-item._active > span:before, .opc-progress-bar-item._active:before{
  background: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
}
.opc-progress-bar-item._active > span:after{
  border-color: rgb(var(--color-primary));
}
.opc-block-summary{
  margin: 0;
  background: rgb(var(--light-blue-white));
}
.authentication-wrapper{
  margin-top: 0;
}
.table-checkout-shipping-method {
    width: 100%;
    max-width: 500px;
}
.table-checkout-shipping-method tbody td:first-child{
  max-width: 3rem;
}
.table-checkout-shipping-method tbody tr.row{
  margin: 0;
}

/*My accounts*/
.account .page-title-wrapper h1{
  font-size: 2.4rem;
  font-weight: 600;
}
.account .page-title-wrapper .order-actions-toolbar{
  margin-bottom: 0;
}
.account .page-title-wrapper :is(.abs-status-desktop, .return-status, .order-status){
  margin-top: 0;
}
.account .page-main .page-title-wrapper .order-date{
  margin-top: 0;
}
.account .page-title-wrapper a{
  color: rgb(var(--text-primary));
}
.account .page-title-wrapper .actions{
  display: inline-block;
  width: 100%;
}
.order-actions-toolbar a.action.order{
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
  background: rgb(var(--color-button-text));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button));
}
.order-actions-toolbar a.action.print{
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  transition: 0.4s;
  background: rgb(var(--color-button));
  border: 1px solid rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}


.account .sidebar.sidebar-additional{
    display: none;
}
.block-collapsible-nav .content{
    background-color: rgb(var(--light-blue-white));
    padding: 2.4rem;
    border-radius: 2rem;
}
.block-collapsible-nav .item .delimiter{
    width: 100%;
    display: none;
}
.block-collapsible-nav .item{
    width: 100%;
    margin: 0;
}
.block-collapsible-nav .item a, .block-collapsible-nav .item > strong{
    width: 100%;
    border-bottom: 1px solid #ccc;
    border-left: none;
    padding: 1rem 0;
}
.block-collapsible-nav .item.current a, .block-collapsible-nav .item.current > strong, .block-collapsible-nav .item.current a strong{
    border-bottom-color: #ccc;
}
.block-collapsible-nav .item.current a strong{
  font-weight: 600;
}

.block-collapsible-nav .item a:hover{
    background-color: transparent;
}

.form-address-edit .fieldset > .legend{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 2rem 0 1rem;
}
.sparsh-mfp-quickview-message.message-success.success.message {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
}

.account .page-main .page-title-wrapper .page-title{
  margin: 0;
}
.account .table th, .account .table td{
  border: none;
}
.account .table thead tr{
  background: rgb(var(--color-primary));
  color: #fff;
}
.account .table tbody tr:nth-child(even){
  background-color: rgb(var(--light-blue-white));
}
.account .table th.col, .account .table td.col{
  width: auto;
}
.account .table td.col a{
  color: rgb(var(--text-primary));
}
.account .column.main .block:not(.widget) .block-title strong{
  font-weight: 500;
}
.account .column.main .block:not(.widget) .block-title .action{
  color: rgb(var(--text-primary));
}
.account .column.main .block:not(.widget) .box-actions a{
  color: rgb(var(--text-primary));
}
.account .column.main .block:not(.widget) address a{
  color: rgb(var(--text-primary));
}
.account .data.table.table-order-items .col.actions{
  width: 120px;
}
.account .data.table thead th{
  border-bottom: none;
}
.pages .item{
  font-size: 1.6rem;
}
.pages strong.page{
  padding: 0 1.2rem;
  font-size: 1.6rem;
}


.table-wrapper .table tfoot .mark{
  font-weight: 600;
  background: none;
}
.table-wrapper .table tfoot .mark strong{
  font-weight: 700;
}

.products-grid.wishlist .product-items{
  column-gap: 2%;
  display: flex;
  flex-wrap: wrap;
}

.products-grid.wishlist .product-item{
  width: calc((100% - 6%) / 4);
  border: 1px solid #eee;
  margin-left: 0;
}
.products-grid.wishlist .product-item-photo{
  border-bottom: 1px solid #eee;
  margin-left: -7px;
  margin-right: -7px;
  width: auto;
}
.form-wishlist-items .products-grid .product-item-info .product-item-inner{
  position: static !important;
  box-shadow: none;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  clip: auto !important;
  width: 100% !important;
  height: auto !important;
}
.wishlist-index-index .form-wishlist-items .product-item-inner .comment-box{
  margin: 0;
}
.products-grid.wishlist .product-item-comment{
  margin-top: 0;
}
.products-grid.wishlist .product-item .box-tocart .label{
  display: inline-block;
  margin-right: 5px;
}
.products-grid.wishlist .product-item .box-tocart .control{
  display: inline-block;
}
.products-grid.wishlist .product-item .box-tocart input.qty{
  line-height: 1.8rem;
}
.products-grid.wishlist .product-item-inner > .product-item-actions{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.products-grid.wishlist .product-item-inner > .product-item-actions a{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 3.2rem;
  background-color: rgb(var(--light-blue-white));
  margin-right: 10px;
}
.products-grid.wishlist .product-item-inner > .product-item-actions a:before{
  font-size: 1.6rem;
}
.products-grid.wishlist .product-item .box-tocart{
  margin-bottom: 15px;
}
.products-grid.wishlist .product-item .fieldset{
  margin-bottom: 0;
}
.products-grid .product-item-info:hover, .products-grid .product-item-info.active{
  z-index: 1;
}
.form-wishlist-items .actions-toolbar button.action{
  border: 1px solid rgb(var(--color-primary));
  background: #fff;
  color: rgb(var(--color-primary));
  border-radius: 3rem;
  transition: 0.4s;
} 
.form-wishlist-items .actions-toolbar button.action:hover{
  color: #fff;
  background: rgb(var(--color-primary));
}
.form-wishlist-items .actions-toolbar button.action a{
  color: rgb(var(--color-primary));
}
.form-wishlist-items .actions-toolbar button.action:hover a{
  color: #fff;
}
.form-wishlist-items .actions-toolbar button.action a:hover{
  text-decoration: none;
}


.accordion{
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 2rem 0;
}
.accordion .accordion-item{
  margin-bottom: .6rem;
  background: rgb(var(--light-blue-white));
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-radius: .6rem;
}
.accordion .accordion-item .accordion-header{
  padding: .5rem 2rem;
  line-height: 2.8rem;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  vertical-align: middle;
  column-gap: 1rem;
  user-select: none;
}
.accordion .accordion-item .accordion-header .accordion-arrow{
  display: none;
}
.accordion .accordion-item .accordion-header:after{
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-top: 8px;
  transition: 0.4s;
}
.accordion .accordion-item .accordion-header.active:after{
  transform: rotate(-135deg);
}
.accordion .accordion-item .accordion-content{
  padding: .5rem 2rem 1.6rem;
  line-height: 1.35;
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
  display: none;
}
.accordion .accordion-item .accordion-content.open{
  display: block;
}

.helping{
  display: flex;
  column-gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.helping a{
  flex: 1 1 0;
  background: #C7E5F0;
  padding: 3rem;
  text-align: center;
  font-size: 2.4rem;
  transition: 0.4s;
  border-radius: 1rem;
}
.helping a:hover{
  background: rgb(var(--color-secondary));
  color: #fff !important;
}


span.bharat{
  text-shadow: 1px 1px rgba(0, 0, 0, 1);
}

.faq-content .accordion{
  margin: 0;
}
.about-section{
  padding: 4rem 0;
}
.about-section h6{
  font-size: 1.8rem;
  font-weight: 600;
}

.core-values-section{
  padding: 4rem 0;
  text-align: center;
}
.core-values-section h5{
  font-size: 2rem;
  font-weight: 600;
}
.cms-page-view .column.main .about-section h2,
.cms-page-view .column.main .core-values-section h2{
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}
.core-values-section .fw-bold{
  font-weight: 600;
}
.section-light{
  padding: 4rem 0;
  background: rgb(var(--light-blue-white));
}
.core-values-section .value-card img{
  height: 240px;
  object-fit: cover;
}
.core-values-section .row.g-4{
  row-gap: 3rem;
}
.mp-footer{
  display: none;
}
.post-info-wraper h2.mp-post-title{
  font-size: 2.4rem;
}
.mp-post-info{
  font-size: 1.2rem;
}
#mpblog-list-container .actions a{
  font-size: 16px;
  text-decoration: underline;
}
.mp-sidebar .product.data.items > .item.content{
  margin-top: 4rem;
}
.mp-sidebar .row{
  margin: 0;
}
.block-blog-related.page-products{
  display: none;
}
.post-list-content.col-md-12.col-sm-8{
  padding: 0;
}
.mpblog-post-view .post-view-image{
  margin-bottom: 20px;
}


@media screen and (min-width: 768px){
  .catalog-product-view.page-layout-1column .column.main{
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }
  .page-layout-1column .product.media{
    width: 50%;
    position: sticky;
    top: 22rem;
  }
  .page-layout-1column .product-info-main{
    width: 50%;
    position: sticky;
    top: 22rem;
    padding-left: 2rem;
  }

}
@media screen and (min-width: 1200px){
  .footer-wrapper .about-info{
    font-size: 15px;
    -ms-flex: 0 0 36%;
    flex: 0 0 36%; 
    max-width: 36%;
  }
  .footer-wrapper .contact-info{
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .footer-wrapper .footer-menus{
    -ms-flex: 0 0 44%;
    flex: 0 0 44%;
    max-width: 44%;
  }
  .page-layout-1column .product.media{
    width: 30%;
    margin-top: 2rem;
    top: 14rem;
  }
  .product-third-section, .catalog-product-view .product-add-form, .zipchecker-product{
    width: 100%;
  }
  .catalog-product-view .box-tocart .field.qty label{
    display: none;
  }
  .page-layout-1column .product-info-main{
    float: left;
    width: 70%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    top: 14rem;
  }
  .page-layout-1column .product-info-main :is(.upper-product-info, .custom-product-info){
    flex: 1 1 0;
    padding-left: 4rem;
    position: sticky;
    top: 14rem;
    align-self: flex-start;
  }

}
@media screen and (max-width: 1599px){
  .mp-banner-slider .owl-nav .owl-prev span{
    left: 0;
  }
  .mp-banner-slider .owl-nav .owl-next span{
    right: 0;
  }
  .footer-wrapper .about-info, .footer-wrapper .contact-info{
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .footer-wrapper .footer-menus{
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
  .block.block-products-list{
    width: calc(100% - 3rem);
  }
  .product-item-info a.bss-quickview{
    left: 1rem !important;
  }
  .product-item .product-item-info:hover .img-wishlist .bss-quickview{
    left: 1rem !important;
  }  
  .product-item-info .img-wishlist .product-item-inner{
    right: 1rem;
  }
}
@media screen and (max-width: 1365px){
  .top-container .block-static-block.widget{
    padding: 0;
  }
  .category-slider .item{
    padding: 0 .5rem;
  }
  .block.block-products-list{
    padding: 3.2rem 1.5rem;
  }
  .brand-section .bg-light-blue{
    padding: 4rem 1.5rem;
  }
  .products.wrapper.grid.products-grid .product-items .product-item{
    width: 25%;
  }
  .products.wrapper.grid.products-grid{
    padding: 3.4rem 1.5rem;
  }
  :where(.block.related, .recently-viewed-products) .block-title.title{
    padding: 0 1.5rem;
  }
  .characters .filter .char a {
    height: 26px;
    line-height: 26px;
    width: 26px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1199px){
  .page-header .logo{
    margin: 0 6rem 0 0;
  }
  .nav-sections{
    top: 122px;
  }
  .nav-sections .navigation > ul{
    padding-left: 0;
    padding-right: 0;
  }

  .feature-item{
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .brand-logos .brand-logo{
    width: calc(25% - 1.2rem * 3/4);
  }

  .category-section .sub-cat .col {
    flex: 16.66%;
    max-width: 16.66%;
  }
  .products.wrapper.grid.products-grid .product-items .product-item{
    width: 33.33%;
  }
  .characters{
    top: 166px;
  }
  .shop-by-brand .block-search{
    top: 170px;
  }
  .products-grid.wishlist .product-item{
    width: calc((100% - 4%) / 3);
  }
}
@media screen and (max-width: 991px){
  h2, .widget-title, :where(.block.related, .recently-viewed-products) .block-title.title strong{
    font-size: 2.8rem;
  }
  .navigation > ul > li.ui-menu-item{
    margin: 0;
  }
  .navigation > ul > li.ui-menu-item > a, .navigation .level0 > .level-top{
    padding: 0 1rem;
    line-height: 3.2rem;
  }
  .page-header form, .page-header .block-search{
    order: 6;
    flex: 100%;
    margin-top: 1rem;
  }
  .page-header .block-search form{
    margin-top: 0;
  }
  .page-header a.link-wishlist{
    margin-left: auto;
  }
  .nav-sections{
    top: 172px;
  }
  .characters{
    top: 208px;
  }
  .shop-by-brand .block-search{
    top: 240px;
  }
  .feature-item{
    padding: .6rem;
  }
  .quick-order-banner{
    font-size: 2rem;
  }
  .quick-order-banner .text-primary{
    font-size: 3.2rem;
  }
  .page-header .block-search .action.wk-ai-image-search{
    right: 3rem;
  }
  .wk-ai-image-search-logo{
    margin-top: 0;
  }
  .page-header form .field.search input{
    padding-right: 110px !important;
  }

  .footer-wrapper .about-info p{
    max-width: 100%;
  }
  .brand-logos .brand-logo {
    width: calc(33.33% - 1.2rem * 2/3);
  }
  .about-medidentalpro{
    padding: 5.5rem 1.5rem;
  }
  .home-about-content{
    padding-left: 1.5rem;
  }
  .about-medidentalpro .about-imgs{
    column-gap: 1rem;
  }
  .about-medidentalpro .img-1{
    width: calc(52% - 1rem * 1/2);
  }
  .about-medidentalpro .img-2{
    width: calc(48% - 1rem * 1/2);
  }
  .suggest-section{
    font-size: 2rem;
  }
  .post-list-container{
    padding: 3.2rem 1.5rem;
  }
  .footer-wrapper .about-info{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
  .footer-wrapper .contact-info{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-wrapper .footer-menus{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .social-links{
    justify-content: center;
  }
  .abs-shopping-cart-items-desktop, .block-cart-failed, .cart-container .form-cart, .cart-container .cart-gift-item, .cart-discount{
    width: 100%;
    padding-right: 0;
  }
  .cart-summary{
    width: 100%;
    position: static;
  }
  .opc-wrapper{
    width: 58%;
  }
  .opc-sidebar{
    width: 42%;
  }

  section.section.about-section.bg-white{
    padding-top: 0;
  }
  .about-section .img-block{
    margin-top: 2rem;
  }
  .shopbrand .brand-list .item{
    width: calc(20% - 1.2rem * 4 / 5);
  }
  .products-grid.wishlist .product-item{
    width: calc((100% - 2%) / 2);
  }
  .account.page-layout-2columns-left .sidebar-main, .account.page-layout-2columns-left .sidebar-additional{
    width: 33.33%;
  }
  .account.page-layout-2columns-left .column.main{
    width: 66.66%;
  }
  .block-collapsible-nav .content{
    padding: 1.6rem;
    border-radius: 1rem;
  }
}
@media screen and (max-width: 767px){
  input[type="text"], input[type="password"], input[type="url"], input[type="tel"], input[type="search"], input[type="number"], input[type*="date"], input[type="email"]{
    font-size: 1.6rem;
  }
  .page-header{
    margin-bottom: 0;
  }
  .page-header .logo{
    margin: 0 2rem 0 4rem;
  }
  .page-header .minicart-wrapper, .page-header .authorization-link{
    margin-left: 1rem;
    font-size: 1.2rem;
    margin-top: 0;
  }
  .page-header .logo img{
    max-height: 52px;

  }
  h2, .widget-title, :where(.block.related, .recently-viewed-products) .block-title.title strong{
    font-size: 2.4rem;
  }
  .nav-sections{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 54px);
    height: 100%;
    background: #fff;
    z-index: 999;
  }
  .nav-open .nav-sections{
    display: block;
  }
  .nav-sections .navigation ul{
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .navigation > ul > li.ui-menu-item > a, .navigation .level0 > .level-top{
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 0;
  }
  .navigation > ul > li.ui-menu-item{
    border-top: 1px solid #d1d1d1;
  }
  .custom-category-mega{
    width: calc(100% - 54px);
    top: 0;
    bottom: 0;
  }
  .mega-body{
    flex-direction: column;
  }
  .custom-category-mega .col{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nav-sections-item-title{
    display: none;
  }
  .nav-sections-item-content{
    margin-top: 0;
  }

  .mp-banner-slider .owl-nav .owl-next span, .mp-banner-slider .owl-nav .owl-prev span{
    width: 3rem;
    height: 3rem;
    background-size: 3rem;
    top: calc(50% - 15px);
  }
  .mp-banner-slider .owl-nav .owl-next span{
    right: .2rem;
  }
  .mp-banner-slider .owl-nav .owl-prev span{
    left: .2rem;
  }

  .breadcrumbs .item:not(:last-child):after{
    margin: .8rem .4rem 0 0;
  }
  .page-header .header.content a.order-return{
    font-size: 0;
    width: 3rem;
    height: 3rem;
    background: url(../images/order.png) no-repeat;
    background-position: center;
    background-size: 2.4rem;
    display: inline-block;
    vertical-align: middle;
  }
  .page-header .header.content .authorization-link a:not(.order-return){
    font-size: 0;
    width: 3rem;
    height: 3rem;
    background: url(../images/account.png) no-repeat;
    background-position: center;
    background-size: 2.4rem;
    display: inline-block;
    vertical-align: middle;
  }


  .columns .column.main{
    padding-bottom: 1rem;
  }

  .top-container .features-section{
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
  }
  .top-container .features-section::-webkit-scrollbar { 
    display: none; 
  }
  .feature-item{
    scroll-snap-align: start;
    -ms-flex: 0 0 calc(100vw - 10rem);
    flex: 0 0 calc(100vw - 10rem);
    max-width: calc(100vw - 10rem);
    isolation: isolate;
    inline-size: 100%;
  }
  .quick-order-banner{
    font-size: 1.6rem;
  }
  .quick-order-banner .row{
    row-gap: 1.5rem;
  }
  .quick-order-banner .text-primary{
    font-size: 2.4rem;
  }
  .quick-order-banner .btn{
    margin-top: 1rem;
  }
  .title-wrapper-with-link{
    text-align: center;
    row-gap: 1rem;
  }
  .brand-section{
    text-align: center;
  }
  .brand-section .bg-light-blue{
    padding-bottom: 10rem;
    position: relative;
  }
  .brand-section .col-12{
    position: static;
  }
  .brand-section .btn{
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 160px;
    text-align: center;
  }
  .brand-logos{
    margin-top: 1.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
  }
  .brand-logos::-webkit-scrollbar { 
    display: none; 
  }
  .brand-logo{
    scroll-snap-align: start;
    -ms-flex: 0 0 calc(100vw /3);
    flex: 0 0 calc(100vw /3);
    max-width: calc(100vw /3);
    isolation: isolate;
    inline-size: 100%;
  }
  
  .block.block-products-list .block-title{
    flex-direction: column;
    row-gap: 1rem;
  }
  .block.block-products-list .block-title:after{
    content: none;
  }
  .top-category{
    position: relative;
    padding-bottom: 10rem;
  }
  .top-category .title-wrapper-with-link .text-md-right{
    position: absolute;
    bottom: 3rem;
    left: 0;
  }
  .top-category .title-wrapper-with-link .text-md-right .btn{
    width: 100%;
    max-width: 160px;
  }
  .category-grid{
    grid-template-columns: 1fr;
  }
  .today-surprise > .row{
    row-gap: 1rem;
  }
  .suggest-section{
    font-size: 1.6rem;
  }
  .about-medidentalpro{
    padding: 3rem 1.5rem 10rem;
    position: relative;
  }
  .about-medidentalpro .col-12{
    position: static;
  }
  .about-medidentalpro .btn{
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-medidentalpro .about-imgs{
    order: 2;
    margin-top: 2rem;
  }
  .home-about-content{
    text-align: center;
  }
  .suggest-section h2{
    line-height: 1.2;
  }
  .customer-reviews .carousel-item .row{
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
    margin-left: -.8rem;
    margin-right: -.8rem;
  }
  .customer-reviews .carousel-item .row::-webkit-scrollbar { 
    display: none; 
  }
  .customer-reviews .carousel-item .row .col-md-4{
    scroll-snap-align: start;
    -ms-flex: 0 0 calc(100vw - 5rem);
    flex: 0 0 calc(100vw - 5rem);
    max-width: calc(100vw - 5rem);
    isolation: isolate;
    inline-size: 100%;
    padding-left: .8rem;
    padding-right: .8rem;
  }
  .review-card{
    padding: 2rem;
  }
  .mpcss.post-list-container .row{
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
    margin-left: -.8rem;
    margin-right: -.8rem;
  }
  .mpcss.post-list-container .row::-webkit-scrollbar { 
    display: none; 
  }
  .mpcss.post-list-container .post-list-item{
    width: auto;
    scroll-snap-align: start;
    -ms-flex: 0 0 calc(100vw - 5rem);
    flex: 0 0 calc(100vw - 5rem);
    max-width: calc(100vw - 5rem);
    isolation: isolate;
    inline-size: 100%;
    padding-left: .8rem;
    padding-right: .8rem;
  }
  .post-list-container .post-list-item .mp-post-title{
    font-size: 1.6rem !important;
  }
  .medidentalpro-info{
    padding: 32px 0 0;
  }

  .block.block-products-list{
    padding-bottom: 10rem;
    position: relative;
  }
  .block.block-products-list .block-title a{
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 160px;
    text-align: center;
  }

  .newsletter-block{
    padding: 3rem 0;
  }
  .newsletter-block{
    font-size: 1.6rem;
  }
  .newsletter-block form label{
    margin-bottom: 1rem;
  }

  .category-section .sub-cat .row{
    margin-left: -.8rem;
    margin-right: -.8ren;
  }
  .category-section .sub-cat .col {
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 .8rem;
  }
  .category-section .sub-cat .category-img{
    margin-bottom: 1rem;
  }
  .category-section .sub-cat h4{
    font-size: 1.4rem;
  }


  .catalog-category-view .page-title-wrapper{
    padding: .8rem;
    font-size: 1.3rem;
  }
  .page-main > .page-title-wrapper .page-title{
    font-size: 2.4rem;
    margin: 0 0 .8rem;
  }

  .page-products .columns{
    padding-top: 2rem;
  }

  .products.wrapper.grid.products-grid .product-items .product-item{
    width: 50%;
    margin-bottom: 1rem;
  }
  .products-grid .product-item-info{
    position: relative;
  }
  .product-item .discount-label{
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
  }

  #all-filters-btn{
    font-size: 1.4rem;
    padding: .4rem 1.2rem;
    border-radius: .4rem;
  }
  #all-filters-btn img{
    width: 1.6rem;
  }
  .toolbar-sorter.sorter{
    position: relative;
    padding: 0 1rem;
    border-radius: .4rem;
  }
  .toolbar-sorter.sorter label{
    font-size: 1.4rem;
    margin: 0 .5rem 0 0;
  }
  .toolbar-sorter.sorter select{
    font-size: 1.6rem;
    padding: .2rem .6rem;
  }

  .block.related .product-item-details{
    position: static;
  }
  .page-layout-product-full-width .block.related{
    margin-top: 0;
  }

  fieldset.fieldset.review-fieldset .field.review-field-nickname, fieldset.fieldset.review-fieldset .field.review-field-summary{
    width: calc(50% - 10px * 1/2);
  }
  .product-reviews-summary .reviews-actions a{
    padding: .5rem 1rem;
    line-height: 2rem;
  }
  .product-info-main{
    display: flex;
    flex-direction: column;
  }


  .fotorama__dot{
    width: 1rem;
    height: 1rem;
  }
  .fotorama__active .fotorama__dot{
    border-color: rgb(var(--color-secondary));
    background-color: rgb(var(--color-secondary));
  }
  .catalog-product-view .box-tocart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
    background: #fff;
    padding: .7rem 1.5rem;
    box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.1);
  }
  .catalog-product-view .box-tocart .field.qty{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 1rem;
    margin: 0 0 .5rem;
  }
  .catalog-product-view .box-tocart .field.qty .label{
    margin: 0;
    line-height: 3.4rem;
  }
  .catalog-product-view .box-tocart .field.qty .control.qty-wrapper{
    margin-bottom: 0;
    max-width: 100%;
  }
  .catalog-product-view .box-tocart .actions{
    row-gap: .3rem;
  }
  .product-info-main .page-title-wrapper h1{
    font-size: 2rem;
  }
  .product-info-main .product-add-form{
    padding: 0;
  }
  .product-third-section{
    margin-top: 0;
  }

  .call-action-icons > div{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
  }
  .call-action-icons > div::-webkit-scrollbar { 
    display: none; 
  }
  .call-action-icons > div .call-icon{
    scroll-snap-align: start;
    -ms-flex: 0 0 calc(100vw / 2);
    flex: 0 0 calc(100vw / 2);
    max-width: calc(100vw / 2);
    isolation: isolate;
    inline-size: 100%;
  }
  .cart.table-wrapper .product-item-name{
    font-size: 1.5rem;
    font-weight: 500;
  }
  .cart.table-wrapper .cart > .item .item-actions .actions-toolbar{
    padding-bottom: 3rem;
  }
  .cart.table-wrapper .actions-toolbar > .action-edit, .cart.table-wrapper .actions-toolbar > .action-delete{
    bottom: 1rem;
  }
  .cart.table-wrapper .col.price .price-excluding-tax, .cart.table-wrapper .col.subtotal .price-excluding-tax{
    font-size: 1.4rem;
  }
  .cart-empty{
    font-size: 1.6rem;
  }
  .checkout-cart-index .page-main{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  body:not(.catalog-category-view, .catalog-product-view) .page-title-wrapper{
    padding: 1rem;
  }
  .opc-wrapper{
    width: 100%;
  }
  .opc-sidebar{
    width: calc(100% - 4.4rem);
  }
  .opc-wrapper .form-login, .opc-wrapper .form-shipping-address, .opc-wrapper .methods-shipping{
    margin-left: 0;
    margin-right: 0;
  }
  .opc-sidebar .modal-content{
    border: none;
  }
  .opc-sidebar .modal-header{
    border-bottom: none;
  }
  .opc-block-summary > .title{
    font-weight: 600;
  }
  .opc-sidebar .minicart-items{
    display: block !important;
  }
  .opc-block-summary .items-in-cart > .title:after{
    display: none;
  }
  .opc-block-summary .minicart-items-wrapper{
    margin: 0;
    padding: 15px 0 0;
  }
  .opc-block-summary{
    padding: 22px 15px;
  }
  .opc-estimated-wrapper .minicart-wrapper button.action.showcart{
    background: url(../images/minicart.png) no-repeat 100%;
    background-position: center;
    width: 3rem;
    height: 3rem;
    margin-right: 10px;
    outline: none;
  }
  .opc-estimated-wrapper .minicart-wrapper button.action.showcart:hover, .opc-estimated-wrapper .minicart-wrapper button.action.showcart:focus, .opc-estimated-wrapper .minicart-wrapper button.action.showcart:active{
    background: url(../images/minicart.png) no-repeat 100%;
    background-position: center;
  }
  .minicart-wrapper .action.showcart .counter.qty{
    margin-left: 2rem;
  }
  .opc-estimated-wrapper .minicart-wrapper button.action.showcart:before{
    content: none;
  }
  fieldset#customer-email-fieldset{
    margin-bottom: 0;
  }
  .authentication-wrapper .modal-content{
    background: none;
  }
  .custom-slide .modal-inner-wrap{
    background: rgb(var(--light-blue-white));
  }
  .custom-slide .modal-header{
    border: none;
    padding: 0;
  }
  .custom-slide .actions-toolbar button{
    padding: 8px 16px;
    border-radius: 4px;
    line-height: 20px;
    font-size: 1.6rem;
    font-weight: normal;
    transition: 0.4s;   
    background: rgb(var(--color-button));
    border: 1px solid rgb(var(--color-button));
    color: rgb(var(--color-button-text));
  }
  .custom-slide .actions-toolbar button:hover{
    background: rgba(var(--color-secondary), 1);
    border-color: rgba(var(--color-secondary), 1);
  }
  .custom-slide .actions-toolbar .secondary{
    margin-left: 0;
    width: 100%;
  }
  .custom-slide .actions-toolbar div.secondary{
    padding-top: 0;
  }
  .opc-wrapper .step-title{
    font-weight: 600;
  }

  .custom-slide.modal-custom .action-close{
    margin: 0 !important;
    width: 2.4rem;
    height: 2.4rem;
    right: 1rem;
    top: 1rem;
  }
  .custom-slide.modal-custom .action-close:after, .custom-slide.modal-custom .action-close:before{
    content: '' !important;
    width: 1px;
    background: #000;
    height: 3rem;
    position: absolute;
    z-index: 1;
  }
  .custom-slide.modal-custom .action-close:after{
    rotate: 45deg;
    top: -2px;
    left: 10px;
  }
  .custom-slide.modal-custom .action-close:before{
    rotate: -45deg;
    top: 10px;
    left: 10px;
  }
  .form-orders-search{
    margin: 2rem 0 0;
    padding: 2rem;
  }
  .left-content{
    padding: 3rem 1.5rem;
  }
  .contact-form-section h4{
    font-size: 2.4rem;
  }
  .right-form{
    padding: 3rem 1.5rem;
  }
  .form.contact .fieldset > .field:is(.name, .telephone){
    flex: 100%;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact .actions-toolbar{
    width: 100%;
    display: inline-block;
  }
  .form.contact .actions-toolbar > .primary .action{
    width: 100%;
  }
  .form.contact .actions-toolbar .primary{
    float: none;
  }
  .faq-content{
    padding: 0;
  }

  .about-section, .core-values-section{
    padding: 2.4rem 0;
  }

  .about-section h6{
    font-size: 1.6rem;
  }
  .core-values-section h5{
    font-size: 1.8rem;
  }
  .cms-page-view .column.main .about-section h2,
  .cms-page-view .column.main .core-values-section h2{
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .post-info-wraper{
    padding: 20px 0 0;
  }
  .mp-sidebar .product.data.items > .item.content{
    margin-top: 0;
  }
  .mp-sidebar .product.data.items{
    margin-left: 0;
    margin-right: 0;
  }
  .characters{
    padding-right: 0;
    top: 115px;
    margin-top: 0;
  }
  .characters .filter .char a {
    height: auto;
    line-height: 20px;
    width: auto;
    font-size: 12px;
    border: none;
  }
  .characters .filter{
    width: 100%;
  }
  .characters .filter .char {
    margin-left: 4px;
    margin-bottom: 0;
  }
  .shopbrand .brand-list .item{
    width: calc(33.33% - 1.2rem * 2 / 3);
  }
  .shopbrand .brand-list .item .name{
    font-size: 1.4rem;
  }
  .shop-by-brand .block-search{
    margin-top: 0;
  }
  .page-header .block-search input{
    left: 0;
    margin: 0;
    position: static;
  }
  .page-header .block-search .control{
    border: none;
  }
  .page-header .block-search .label{
    display: none;
  }
  .page-header .block-search .action.search{
    display: block;
  }
  .page-header .block-search .action.search span{
    display: none;
  }
  .page-header .block-search .action.search:before{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    content: '\e615';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .page-header form .field.search input{
    padding-right: 8rem !important;
  }
  .page-header form .actions button.action.search{
    padding: .4rem 1rem;
  }
  .page-header .block-search .action.wk-ai-image-search{
    right: 0;
    margin-top: 0;
  }
  .products-grid.wishlist .product-items{
    row-gap: 16px;
  }
  .products-grid.wishlist .product-item{
    width: 100%;
  }
  .block-collapsible-nav{
    top: 0;
    margin: 0;
  }
  .account .page-main{
    padding-top: 60px;
  }
  .block-collapsible-nav .content{
    border-radius: 0;
  }
  .products-grid.wishlist .product-item-inner > .product-item-actions{
    position: static;
  }
  .products-grid.wishlist .product-item-actions .action.edit, .products-grid.wishlist .product-item-actions .action.delete{
    margin-top: 0;
  }

  .products-grid.wishlist .product-item-info{
    display: inline-block;
    width: 100%;
  }
  .products-grid.wishlist .product-item-info>*{
    float: right;
    width: calc(100% - 95px);
    margin-left: 0 !important;
  }
  .products-grid.wishlist .product-item-photo{
    border-bottom: none;
    margin-left: 0;
    margin-right: 0;
    width: 85px;
  }
  .products-grid.wishlist .product-item-name{
    padding-top: 15px;
  }
  .form-wishlist-items .products-grid .product-item-info .product-item-inner{
    margin-top: 10px !important;
  }
  .products-grid.wishlist .product-item .giftregisty-dropdown, .products-grid.wishlist .product-item .field.qty{
    display: inline-block;
    float: left;
    margin-right: 10px;
  }
  .products-grid.wishlist .product-item .box-tocart{
    margin-bottom: 0;
  }
}

/* 10-09-25*/
.product-info-main .product-info-price .price-box .discount-label {
    color: #0abd24;
    font-weight: 600;
}
.product-info-main .product-info-stock-sku {
    display: none;
}
.cart-totals tbody .mark, .cart-totals tfoot .mark, .opc-block-summary .table-totals tbody .mark, .opc-block-summary .table-totals tfoot .mark
{
      background-color: #eff3f6;
}
.checkout-payment-method .payment-method + .payment-method .payment-method-title span, .checkout-payment-method .payment-method-title span {
    font-weight: 700;
    font-size: 16px;
}
/* 18-09-25 */
.compliance-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    color: #000; /* make it stand out */
}

.compliance-wrapper .tooltip {
    visibility: hidden;
    opacity: 0;
    width: 280px;
    background: #fff;
    color: #333;
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    position: absolute;
    z-index: 999;
    top: 120%; /* below text */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
    font-size: 14px;
    line-height: 1.4em;
}

/* Tooltip arrow */
.compliance-wrapper .tooltip::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #ccc transparent;
}

.compliance-wrapper:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
