/*
Theme Name: dev.xceed.ch
Theme URI: https://dev.xceed.ch
Author: dev.xceed.ch
Author URI: https://dev.xceed.ch
Requires at least: 5.8.x
Requires PHP: 7.4.x
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Playwrite+HR+Lijeva:wght@100..400&display=swap');

/* Variables */
:root {
  --black: #000;
  --white: #fff;
  --blue: #266bbf;
  --dark-blue: #0c2340;
  --light-blue: #38699e;
  --grey: #e5e5e5;
  --light-grey: #efefef;
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-bolder: 900;
  --primary-font: 'Noto Sans Hebrew', sans-serif;
  --Alef-font: 'Alef', sans-serif;
  --f12: 12px;
  --f14: 14px;
  --f16: 16px;
  --f18: 18px;
  --f20: 20px;
  --f21: 21px;
  --f30: 30px;
  --f36: 36px;
}

/* Common CSS */
html,
body {
  font-family: var(--primary-font) !important;
}
@media (min-width: 1921px) {
  .pageBody,
  header .navbar {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
  }
}
img {
  max-width: 100%;
}
.btn-link {
  color: var(--white);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}
.btn-link .arrow-icon {
  background-color: var(--white);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin: 0;
  transition: all ease 0.2s;
  position: relative;
}
.btn-link:hover {
  color: var(--white);
}
.btn-link.dark {
  color: var(--black);
}
.btn.black {
  color: var(--white);
  background-color: var(--black);
  padding: 16px 24px;
  line-height: 1;
  font-weight: var(--weight-bold);
}
.btn.blue {
  color: var(--white);
  background-color: var(--dark-blue);
  padding: 16px 24px;
  line-height: 1;
  font-weight: var(--weight-bold);
}
.btn.light-blue {
  color: var(--white);
  background-color: var(--blue);
  padding: 12px 24px;
  line-height: 1;
  font-weight: var(--weight-bold);
}
.object-fit-cover {
  object-fit: cover;
}
.popover {
  font-weight: var(--weight-semibold);
  border: 0;
}
.btn.border-btn {
  border: 1px solid #1a1d1f;
  font-weight: 500;
  border-radius: 3px;
}
.btn.border-btn:hover {
  opacity: 0.8;
  color: #fff;
  background-color: #1a1d1f;
}

.skip-to-content-link {
  background: var(--blue);
  left: 0;
  padding: 8px;
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s;
  color: var(--white);
  z-index: 1000;
  text-decoration: none;
}
.skip-to-content-link:focus,
.skip-to-content-link:focus-within {
  transform: translateY(0%);
}

/*Icons Start*/
.search-icon {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('images/search.svg');
}
.close-icon {
  width: 25px;
  height: 25px;
  background-image: url('images/menu-close.svg');
  display: inline-block;
  background-size: contain;
}
.filter-icon {
  width: 25px;
  height: 25px;
  background-image: url('images/filter.svg');
  display: inline-block;
  background-size: contain;
}
.grid-icon {
  width: 36px;
  height: 22px;
  background-image: url('images/view-big.svg');
  display: inline-block;
  background-size: contain;
}
.grid-icon.small {
  background-image: url('images/view-small.svg');
}
.arrow-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 5px;
  background-image: url('images/select-up.svg');
  vertical-align: middle;
  background-size: contain;
}
.arrow-icon.right {
  transform: rotate(90deg);
}
.arrow-icon.left {
  transform: rotate(-90deg);
}
.arrow-icon.bottom {
  transform: rotate(180deg);
}
.btn-link .arrow-icon.dark {
  background-color: var(--black);
  background-image: url('images/right-white.svg');
}
.pdf-icon {
  width: 84px;
  height: 84px;
  display: block;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url('images/download-pdf.svg');
}
/*Icons End*/
/*Header CSS Start*/
header {
  background-color: var(--white);
}
header {
  top: 0;
  left: 0;
  z-index: 999;
  position: sticky;
}
header .navbar {
  border-bottom: 1px solid var(--grey);
}
header .navbar-brand img {
  max-width: 170px;
}
.navbar .searchIcon {
  font-size: var(--f21);
  cursor: pointer;
}
.navbar .megamenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .megamenu ul li {
  margin-bottom: 15px;
  font-size: var(--f18);
}
.navbar .megamenu a {
  color: var(--black);
  text-decoration: none;
}
.navbar .megamenu .leftBox {
  border-left: 2px solid var(--light-grey);
}
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
    border: 0;
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.megamenu {
    position: absolute;
    top: 87px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.megamenu .allMenu {
    padding: 15px 0;
    background-color: var(--light-grey);
    font-weight: var(--weight-medium);
    font-size: var(--f18);
  }
  .navbar-light .navbar-nav .nav-link {
    color: var(--black);
    font-weight: var(--weight-medium);
    font-size: var(--f18);
  }
  .navbar .nav-item {
    padding: 0 10px;
  }
  .navbar .nav-item .dropdown-toggle::after {
    display: none;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.megamenu h3 {
    font-size: var(--f21);
    margin-bottom: 15px;
  }
  .navbar .megamenu .imgBox span {
    font-weight: var(--weight-medium);
    font-size: var(--f18);
  }
}
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
  header .navbar .mainBar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
    direction: ltr;
  }
  header .offcanvas {
    width: 100%;
    border-right: 0;
  }
}
#search .searchHeader {
  padding: 10px 20px;
}
#search .searchHeader .logoBox {
  max-width: 110px;
}
#search .searchForm .searchandfilter ul {
  padding: 0;
}
#search .searchForm .searchandfilter label,
#search .searchForm .searchandfilter input {
  display: block;
  width: 100%;
}
#search .searchForm .searchandfilter input {
  padding: 10px 35px 10px 16px;
  background-image: url('images/search.svg');
  background-repeat: no-repeat;
  background-position: 6px;
  border: 1px solid var(--black);
}
#search .searchForm .searchandfilter h4 {
  font-size: var(--f36);
  font-weight: var(--weight-normal);
}
#search .searchResults .result a {
  color: inherit;
}
/*Header CSS End*/
/* Hero Section Start */
.heroSection {
  height: 800px;
}
.heroSection .caption {
  color: var(--white);
}
.heroSection .caption .btn {
  background-color: var(--white);
  color: var(--black);
  border-radius: 5px;
  padding: 10px 30px;
  font-weight: var(--weight-bold);
  border-color: var(--white);
}
.heroSection .imgBox img,
.heroSection .videoBox video {
  object-fit: cover;
  width: 100%;
}
.heroSection .videoBox .controls {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 10px;
}
.heroSection .videoBox .controls button {
  background-color: var(--light-blue);
  color: var(--white);
  border: 0;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  font-size: var(--f14);
}
.heroSection .imgBox:after,
.heroSection .videoBox:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--black);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
.heroSection .caption .lead {
  font-weight: var(--weight-medium);
}
.heroSection .caption .display-5 {
  font-weight: var(--weight-bolder);
}
.heroSection .caption small {
  font-weight: var(--weight-bolder);
  letter-spacing: 2px;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .heroSection.small {
    height: 650px;
  }
}
/* Hero Section End */
/*Coffee Section Start*/
.coffeeSection {
  padding-top: 80px;
  padding-bottom: 80px;
}
.coffeeSection .coffeeBox {
  height: 600px;
  transition: all ease 0.3s;
}
.coffeeSection .coffeeBox:hover,
.coffeeSection .coffeeBox:focus-within {
  transform: scale(1.1);
  z-index: 9;
}
.coffeeSection .coffeeBox .imgBox:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--black);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
.coffeeSection .coffeeBox .caption {
  color: var(--white);
  max-width: 650px;
}
.coffeeSection .coffeeBox .caption .lead {
  min-height: 60px;
  font-weight: var(--weight-medium);
}
.coffeeSection .coffeeBox .imgBox img {
  object-fit: cover;
  object-position: top center;
}
.coffeeSection .coffeeBox .caption .btn-link .arrow-icon {
  right: -10px;
}
.coffeeSection .coffeeBox .caption .btn-link:hover .arrow-icon {
  right: -5px;
}
/*Coffee Section End*/
/*Coffee Slider Start*/
.coffee-slider {
  padding-top: 30px;
  padding-bottom: 80px;
}
.coffee-slider .slide-item {
  height: 730px;
  position: relative;
}
.coffee-slider .slide-item .caption {
  color: var(--white);
  z-index: 1;
}
.coffee-slider .slide-item .caption .smallTitle {
  font-weight: var(--weight-bold);
  opacity: 0.8;
  letter-spacing: 1px;
}
.coffee-slider .slide-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
  z-index: 1;
}
.coffee-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 120px;
}
.coffee-slider .owl-dots .owl-dot .pagi-btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--white);
  font-weight: var(--weight-semibold);
  border-bottom: 2px solid transparent;
}
.coffee-slider .owl-dots .owl-dot.active .pagi-btn {
  border-color: var(--white);
}
.coffee-slider .owl-carousel .owl-nav button {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  width: 36px;
  height: 36px;
  background-image: url('images/select-up.svg');
  text-indent: -999em;
  overflow: hidden;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.coffee-slider .owl-carousel .owl-nav button.owl-prev {
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
}




.productPage .filters .searchandfilter > ul > li,
.productPage .filters .searchandfilter > ul > li *{
  transition: unset !important;
}

.navbar-toggler[aria-expanded="true"] span{
  display: none;
}

.navbar-toggler[aria-expanded="false"] i{
  display: none;
}
.navbar-toggler i{
  font-size: 26px;
}


.offcanvas.offcanvas-end.show{
  visibility: unset !important;
}





.coffee-slider .owl-carousel .owl-nav button.owl-next {
  left: 15px;
  transform: translateY(-50%) rotate(-90deg);
}
/*Coffee Slider End*/
/*Coffee Content Start*/
.coffeeContent {
  padding-top: 80px;
  padding-bottom: 80px;
}
.coffeeContent .contentBox {
  padding: 15%;
}
.coffeeContent .row.right {
  flex-direction: row-reverse;
}
.coffeeContent .contentBox h2.yes {
  padding-bottom: 15px;
  position: relative;
}
.coffeeContent .contentBox h2.yes:after {
  content: '';
  width: 32px;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--blue);
  border-radius: 4px;
}
.coffeeContent .contentBox small {
  font-weight: var(--weight-bold);
  opacity: 0.7;
  letter-spacing: 1px;
}
#smallh6 {
  font-weight: var(--weight-bold);
  opacity: 0.7;
  letter-spacing: 1px;
  font-size: 0.875em;
  line-height: 1.5;
}
.coffeeContent .contentBox .btn-link .arrow-icon {
  left: 0px;
}
.coffeeContent .contentBox .btn-link:hover {
  opacity: 0.8;
}
.coffeeContent .contentBox .btn-link:hover .arrow-icon {
  left: -5px;
}
.coffeeContent .mediaBox video {
  min-height: 540px;
  object-fit: cover;
}
.coffeeContent .disclaimer {
  max-width: 1156px;
  width: 100%;
}
/*Coffee Content End*/
/*Coffee Vertical Tabs Start*/
.verticleTabs {
  padding-top: 80px;
  padding-bottom: 80px;
}
.verticleTabs .imageTab .right {
  flex-flow: row-reverse;
}
.verticleTabs .imageTab .left .flex-column {
  padding-left: 10%;
  padding-right: 5%;
}
.verticleTabs .imageTab .right .flex-column {
  padding-right: 10%;
  padding-left: 5%;
}
.verticleTabs .imageTab .flex-column .tabButtons {
  color: #757678;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--grey);
  cursor: pointer;
}
.verticleTabs .imageTab .flex-column .tabButtons[aria-selected='true'] {
  color: #1a1d1f;
}
.verticleTabs .imageTab .flex-column .tabButtons:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
/*Coffee Vertical Tabs End*/
/*Coffee Cards Start*/
.cardBoxes {
  padding-top: 80px;
  padding-bottom: 80px;
}
/*Coffee Cards End*/
/* Accessories Slider Start */
.accessories-slider {
  padding-top: 80px;
  padding-bottom: 80px;
}
.accessories-slider .slide a {
  color: inherit;
  text-decoration: none;
}
.accessories-slider .owl-carousel .owl-nav button,
.accessories-slider .owl-carousel .owl-nav button:hover {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  width: 40px;
  height: 40px;
  background-image: url('images/select-up.svg');
  text-indent: -999em;
  overflow: hidden;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--black);
  background-size: 25px;
}
.accessories-slider .owl-carousel .owl-nav button.owl-prev {
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}
.accessories-slider .owl-carousel .owl-nav button.owl-next {
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
}
.accessories-slider .dotsBox .owl-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  background-color: #757678;
  margin: 0 10px;
  border-radius: 50%;
}
.accessories-slider .dotsBox .owl-dot.active {
  height: 12px;
  width: 12px;
  background-color: #131518;
  margin: 0 8px;
}
/* Accessories Slider end */
/* Hotspot Section Start */
.hotspotSection {
  padding-top: 80px;
  padding-bottom: 80px;
}
.hotspotSection .imageHotspot .popovers span {
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 50%;
}
.hotspotSection .btn-link .arrow-icon {
  right: -10px;
}
.hotspotSection .btn-link:hover .arrow-icon {
  right: -5px;
}
.hotspotSection #dotsContainer .hotspotDot {
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
  z-index: 1;
}
.hotspotSection #dotsContainer .active .hotspotDot {
  border-color: var(--blue);
}
.hotspotSection .popoverSlider {
  padding-top: 20px;
}
.hotspotSection .popoverSlider .owl-stage {
  display: flex;
  padding-right: 0 !important;
}
.hotspotSection .popoverSlider .owl-stage .owl-item {
  border-left: 1px solid var(--grey);
}
.hotspotSection .popoverSlider .items {
  font-weight: var(--weight-bold);
}
/* Hotspot Section End */
/*Beverage Slider Start*/
.beverageSection {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--dark-blue);
}
.beverageSection .headingBox {
  color: var(--white);
}
.beverageSection .beverage-slider {
  max-width: 1140px;
  width: 100%;
  background-image: radial-gradient(#2a3143 0, #0c2340 70%, #0c2340 200px);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  box-shadow: inset 0 50px 100px 100px #0c2340;
  margin: 0 auto;
  position: relative;
}
.beverageSection .beverage-slider:after,
.beverageSection .beverage-slider:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 200px;
  top: 0;
  z-index: 1;
}
.beverageSection .beverage-slider:before {
  left: 0;
  background-image: linear-gradient(90deg, #0c2340, transparent);
}
.beverageSection .beverage-slider:after {
  right: 0;
  background-image: linear-gradient(90deg, transparent, #0c2340);
}
.beverageSection .beverage-slider .beverage {
  height: 370px;
  background-position: 50%;
  background-repeat: no-repeat;
  color: var(--white);
}
.beverageSection .owl-carousel .owl-nav button,
.beverageSection .owl-carousel .owl-nav button:hover {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  width: 40px;
  height: 40px;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
.beverageSection .owl-carousel .owl-nav button.owl-prev {
  right: 0;
  background-image: url('images/icon-oval-right-w.svg');
}
.beverageSection .owl-carousel .owl-nav button.owl-next {
  left: 0;
  background-image: url('images/icon-oval-left-w.svg');
}
/*Beverage Slider End*/
/* Detail Cards Start */
.detailCards {
  padding-top: 80px;
  padding-bottom: 80px;
}
.detailCards .mainCards {
  height: 1024px;
}
.detailCards .mainCards .imageOverlay {
  display: none;
}
.detailCards .mainCards .imageOverlay.active {
  display: block;
}
.detailCards .mainCards .imageOverlay:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  opacity: 0.6;
  top: 0;
  left: 0;
}
.detailCards .mainCards .imageOverlay.default:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.3;
  top: 0;
  left: 0;
}
.detailCards .mainCards .detail-cards-wrapper {
  top: 0;
  left: 0;
}
.detailCards .mainCards .detail-cards-wrapper .detail-card {
  color: var(--white);
  border-right: 1px solid var(--white);
  transition: flex-grow 1s;
  position: relative;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-content
.subtitle {
  color: hsla(0, 0%, 100%, 0.6);
  font-weight: var(--weight-medium);
  letter-spacing: 2px;
}
.detailCards .mainCards .detail-cards-wrapper .detail-card .card-closed:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  opacity: 0;
  transition: all ease 0.3s;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-closed:hover:before,
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-closed:focus-within:before {
  opacity: 0.3;
}
.detailCards .mainCards .detail-cards-wrapper .detail-card .card-closed i {
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: inline-block;
  background-size: contain;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-closed
i.plus-icon {
  background-image: url('images/plus-circled-w.svg');
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-closed
i.plus-icon-full {
  background-image: url('images/plus-circled-full-w.svg');
  transform: scale(0);
  transition: transform 0.3s;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-closed
i:hover
i.plus-icon-full {
  transform: scale(1);
}
.detailCards .mainCards .detail-cards-wrapper .detail-card .card-open .close {
  position: absolute;
  top: 50px;
  left: 50px;
  cursor: pointer;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-open
.close
.close-icon {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url('images/menu-close-w.svg');
  background-size: contain;
}
.detailCards .mainCards .detail-cards-wrapper .detail-card .card-shrunk {
  cursor: pointer;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-shrunk
.text-group {
  width: 100px;
}
.detailCards
.mainCards
.detail-cards-wrapper
.detail-card
.card-shrunk
.text-group
h3 {
  transform: rotate(90deg);
  width: 400px;
  transform-origin: 198px 190px;
}

@media (min-width: 768px) {
  .detailCards .mainCards .detail-cards-wrapper .detail-card {
    height: 100%;
    width: 100%;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card:last-child {
    border-right: 1px solid var(--white);
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card.in-active {
    flex-grow: 0.001;
    flex-shrink: 0;
    flex-basis: 0;
    width: 10%;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card.active {
    flex-grow: 2;
    flex-shrink: 0;
    flex-basis: 0;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed:hover
  .previewtext,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed:focus-within
  .previewtext {
    height: 90px;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-open,
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-shrunk,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.active
  .card-closed,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.in-active
  .card-open,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.in-active
  .card-closed {
    display: none;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card.active .card-open,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.in-active
  .card-shrunk,
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-closed {
    display: flex;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-closed {
    width: 100%;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed
  .text-wrapper {
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-open
  .text-group {
    width: 0px;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.active
  .card-open
  .text-group {
    width: 400px;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed
  .previewtext {
    height: 1px;
    overflow-y: hidden;
    transition: all ease 0.3s;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-open,
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-shrunk,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.active
  .card-closed,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.in-active
  .card-open,
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card.in-active
  .card-closed {
    display: none;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed
  .title {
    min-height: 80px;
  }
}
/*Detail Card End*/
/* Story Slider Start */
.storySection {
  padding-top: 80px;
  padding-bottom: 80px;
}
.storySection .storyBox .imageBox {
  height: 720px;
  cursor: pointer;
  color: var(--white);
}
.storySection .storyBox .imageBox:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--black);
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.3;
}
.storySection .storyBox .imageBox > * {
  z-index: 2;
}
.storySection .storyBox .imageBox > img {
  z-index: inherit;
}
.storySection .storyBox .buttonTap {
  width: 100px;
  padding: 7px;
  margin-top: 70px;
  user-select: none;
  border-bottom: 1px solid;
  position: absolute;
  left: calc(50% - 50px);
  bottom: 60px;
}
.storySection .storyBox .buttonTap .replayBtn {
  display: none;
}
.storySection .storyBox .buttonTap.replay .replayBtn {
  display: block;
}
.storySection .storyBox .buttonTap.replay .playBtn {
  display: none;
}
.storySection .storyBox .buttonTap:after,
.storySection .storyBox .buttonTap:before {
  display: block;
  position: absolute;
  top: -60px;
  left: calc(50% - 15px);
  content: '';
  width: 30px;
  height: 30px;
  box-shadow: 0 0 0 3px #fff;
  border-radius: 60px;
  transform-origin: center;
}
.storySection .storyBox .buttonTap:before {
  animation: tapAnimation__inner 2.5s ease-in-out infinite;
}
.storySection .storyBox .buttonTap:after {
  box-shadow: 0 0 0 0.7px hsl(0deg 0% 100% / 80%);
  animation: tapAnimation__outer 2.5s ease-in-out infinite;
}
@keyframes tapAnimation__inner {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1);
  }
  28% {
    transform: scale(0.8);
  }
  59% {
    transform: scale(0.8);
  }
  63% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tapAnimation__outer {
  0% {
    transform: scale(2.2);
    opacity: 0;
  }
  24% {
    transform: scale(1.6);
    opacity: 1;
  }
  26% {
    transform: scale(1.6);
    opacity: 1;
  }
  48% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.storySection .storyBox .sliderBox {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  transition: transform 0.3s;
  z-index: 3;
}
.storySection .storyBox .sliderBox.show {
  transform: scale(1);
}
.storySection .storyBox .story-slider .slide {
  height: 720px;
}
.storySection .storyBox .story-slider .slide:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--black);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
.storySection .storyBox .sliderBox.show .story-slider .active .slide img {
  animation: zoomin 20s ease-in infinite;
}
.storySection .storyBox .story-slider .slide img {
  transform: scale(1);
}
.storySection .storyBox .story-slider .slide .caption {
  position: absolute;
  max-width: 470px;
  padding: 0;
  color: var(--white);
  bottom: 50px;
  right: 120px;
  width: 100%;
  z-index: 1;
}
.storySection .storyBox .owl-theme .owl-dots {
  display: flex;
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  padding: 0 120px;
}
.storySection .storyBox .owl-theme .owl-dots .owl-dot {
  width: 100%;
  text-align: right;
  padding: 0 5px;
}
.storySection .storyBox .owl-theme .owl-dots .owl-dot .pagi-btn {
  border: 0;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  padding: 0;
  height: 3px;
  position: relative;
}
.storySection .storyBox .owl-theme .owl-dots .owl-dot .pagi-btn:after {
  content: '';
  height: 100%;
  width: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
}
.storySection
.storyBox
.show
.owl-theme
.owl-dots
.owl-dot.active
.pagi-btn:after {
  animation: stretch 15s ease-in;
}
.storySection
.storyBox
.show
.owl-theme
.owl-dots
.owl-dot.full
.pagi-btn:after {
  width: 100%;
}
.storySection .owl-carousel .owl-nav {
  margin: 0;
}
.storySection .owl-carousel .owl-nav button,
.storySection .owl-carousel .owl-nav button:hover {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border: 0px solid var(--black);
  background-size: contain;
  z-index: 2;
  font-size: 35px;
  color: var(--white);
  line-height: 1;
}
.storySection .owl-carousel .owl-nav button.owl-prev {
  right: 20px;
}
.storySection .owl-carousel .owl-nav button.owl-next {
  left: 20px;
}
.storySection .storyBox .close {
  position: absolute;
  top: 30px;
  left: 30px;
  cursor: pointer;
  z-index: 3;
}
.storySection .storyBox .close .close-icon {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url('images/menu-close-w.svg');
  background-size: contain;
}
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes stretch {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* Story Slider End */
/*CTA Section Start*/
.ctaSection {
  padding-top: 80px;
  padding-bottom: 80px;
}
/*CTA Section End*/
/*Product Grid Start*/
.productGrid {
  padding-top: 80px;
  padding-bottom: 80px;
}
.productGrid .mainGrid .mainProduct .imageBox a {
  color: inherit;
  text-decoration: none;
}
.productGrid .mainGrid .mainProduct .imageBox p {
  font-weight: var(--weight-semibold);
}
.productGrid .mainGrid .mainProduct .imageBox .h4 {
  min-height: 60px;
}
.productGrid.smallGrid .mainGrid .mainProduct .imageBox p {
  font-weight: var(--weight-normal);
}
.productGrid.smallGrid .mainGrid .mainProduct .imageBox h3 {
  min-height: 1px;
}
.productGrid .mainGrid .mainProduct .content ul {
  margin: 0;
  padding: 10px 0;
  list-style: none;
}
.productGrid .mainGrid .mainProduct .content ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--grey);
}
/*Product Grid End*/
/*Media Block Start*/
.mediaSection {
  padding-top: 80px;
  padding-bottom: 80px;
}
/*Media Block End*/
/*Youtube Hero Block Start*/
.youtubeHero .headingBox h2 {
  font-weight: var(--weight-semibold);
  color: #1a1d1f;
}
.youtubeHero .mediaBox .playBtn {
  z-index: 1;
  background-color: var(--blue);
  border-radius: 50%;
  padding: 2px;
}
.youtubeHero .mediaBox .clickBtn {
  z-index: 2;
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
}
.youtubeHero .mediaBox .videoBox {
  z-index: 3;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
}
.youtubeHero .mediaBox .videoBox .closeBtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.3s;
  border-radius: 0 0 0 10px;
}
.youtubeHero .mediaBox .videoBox .closeBtn:hover {
  background-color: var(--blue);
}
.youtubeHero .mediaBox .videoBox .closeBtn .close-icon {
  filter: invert(1);
}
.youtubeHero .mediaBox .videoBox iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.youtubeHero .mediaBox .videoBox .controls {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  direction: ltr;
  padding: 15px 10px;
  transition: all ease 0.7s;
}
.youtubeHero .mediaBox .videoBox .controls .playBtns i,
.youtubeHero .mediaBox .videoBox .controls .muteBtns i,
.youtubeHero .mediaBox .videoBox .controls .speed i,
.youtubeHero .mediaBox .videoBox .controls .fullScreen i {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  border-radius: 5px;
  transition: all ease 0.3s;
  margin-right: 5px;
}
.youtubeHero .mediaBox .videoBox .controls .speed i:before {
  transition: all ease 0.3s;
}
.youtubeHero .mediaBox .videoBox .controls .speed i.rotate:before {
  transform: rotate(90deg);
}
.youtubeHero .mediaBox .videoBox .controls .speed i.rotate {
  background-color: var(--blue);
}
.youtubeHero .mediaBox .videoBox .controls .playBtns i:hover,
.youtubeHero .mediaBox .videoBox .controls .muteBtns i:hover,
.youtubeHero .mediaBox .videoBox .controls .speed i:hover {
  background-color: var(--blue);
}
.youtubeHero .mediaBox .videoBox .controls .progressBar {
  flex-grow: 1;
}
.youtubeHero .mediaBox .videoBox .controls .progressBar,
.youtubeHero .mediaBox .videoBox .controls .volume {
  position: relative;
  margin: 0 10px;
}
.youtubeHero .mediaBox .videoBox .controls .progressBar input,
.youtubeHero .mediaBox .videoBox .controls .volume input {
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  border-radius: 5px;
  display: block;
  width: 100%;
}
.youtubeHero
.mediaBox
.videoBox
.controls
.progressBar
input::-webkit-slider-thumb,
.youtubeHero .mediaBox .videoBox .controls .volume input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
  transition: all ease 0.3s;
}
.youtubeHero .mediaBox .videoBox .controls .progressBar .progress-bar,
.youtubeHero .mediaBox .videoBox .controls .volume .progress-bar {
  height: 5px;
  border-radius: 5px;
  background-color: var(--blue);
  transition: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.youtubeHero .mediaBox .videoBox .controls .timer {
  padding: 0 10px;
}
.youtubeHero .mediaBox .videoBox .controls .speed .speedContent {
  animation: plyr-popup 0.2s ease;
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 0px;
  position: absolute;
  right: 3%;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
  font-size: var(--f14);
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.youtubeHero .mediaBox .videoBox .controls .speed .speedContent:after {
  border: 4px solid transparent;
  border-top-color: hsla(0, 0%, 100%, 0.9);
  content: '';
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}
.youtubeHero .mediaBox .videoBox .controls .speed .speedContent,
.youtubeHero .mediaBox .videoBox .controls .speed .current {
  padding: 5px;
}
.youtubeHero .mediaBox .videoBox .controls .speed .current,
.youtubeHero .mediaBox .videoBox .controls .speed .selectSpeed .backBtn {
  cursor: pointer;
}
.youtubeHero .mediaBox .videoBox .controls .speed .selectSpeed .backBtn {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.youtubeHero .mediaBox .videoBox .controls .speed .selectSpeed .backBtn span {
  padding: 5px;
  padding-left: 17px;
  display: block;
  margin-bottom: 5px;
  transition: all ease 0.3s;
  border-radius: 3px;
  position: relative;
}
.youtubeHero .mediaBox .videoBox .controls .speed .selectSpeed #speed {
  border-top: 1px solid rgba(255, 255, 255, 255.15);
  padding-top: 5px;
}
.youtubeHero
.mediaBox
.videoBox
.controls
.speed
.selectSpeed
.selectBtn
label {
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
  border-radius: 3px;
}
.youtubeHero
.mediaBox
.videoBox
.controls
.speed
.selectSpeed
.selectBtn
label:hover {
  background-color: var(--blue);
  color: var(--white);
}
.youtubeHero
.mediaBox
.videoBox
.controls
.speed
.selectSpeed
#speed
.selectBtn
input {
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: relative;
  display: block;
  margin-right: 5px;
}
.youtubeHero
.mediaBox
.videoBox
.controls
.speed
.selectSpeed
#speed
.selectBtn
input:after {
  content: '';
  width: 15px;
  height: 15px;
  background-color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px solid var(--blue);
  opacity: 0;
}
.youtubeHero
.mediaBox
.videoBox
.controls
.speed
.selectSpeed
#speed
.selectBtn
input:checked:after {
  opacity: 1;
}
.youtubeHero .mediaBox .videoBox .controls .speed .current {
  padding-right: 20px;
  transition: all ease 0.3s;
  padding-left: 11px;
  border-radius: 3px;
}
.youtubeHero .mediaBox .videoBox .controls .speed .current:after,
.youtubeHero .mediaBox .videoBox .controls .speed .backBtn span:after {
  border: 4px solid transparent;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.youtubeHero .mediaBox .videoBox .controls .speed .current:after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 8px;
}
.youtubeHero .mediaBox .videoBox .controls .speed .backBtn span:after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 3px;
}
.youtubeHero .mediaBox .videoBox .controls .speed .current:hover:after {
  border-left-color: rgba(255, 255, 255, 0.8);
}
.youtubeHero .mediaBox .videoBox .controls .speed .backBtn span:hover:after {
  border-right-color: rgba(255, 255, 255, 0.8);
}
.youtubeHero .mediaBox .videoBox .controls .speed .current:hover,
.youtubeHero
.mediaBox
.videoBox
.controls
.speed
.selectSpeed
.backBtn:hover
span {
  background-color: var(--blue);
  color: var(--white);
}
.youtubeHero .mediaBox .videoBox .controls .speed .current span {
  padding-left: 20px;
}
/*Youtube Hero Block End*/
/*Footer Start*/
.siteFooter {
  background-color: var(--dark-blue);
  color: var(--white);
}
.siteFooter ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.siteFooter ul li a {
  color: inherit;
  text-decoration: none;
}
.siteFooter .upper-footer {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.siteFooter .upper-footer .widgettitle {
  font-size: var(--f14);
  text-transform: uppercase;
  color: #c9e3f9;
  letter-spacing: 2px;
}
@media(min-width:767px){
  .siteFooter .upper-footer .widgettitle{
    pointer-events: none;
  }
}
.siteFooter .upper-footer ul li {
  margin-bottom: 10px;
  font-size: var(--f14);
  opacity: 0.8;
  font-weight: var(--weight-medium);
}
.siteFooter .upper-footer ul li:last-child {
  margin-bottom: 0px;
}
/*.siteFooter .upper-footer ul.menu {display: flex; flex-wrap: wrap; justify-content: space-between; }
.siteFooter .upper-footer ul.menu > li > a {font-size: var(--f14);text-transform: uppercase;color: #c9e3f9;letter-spacing: 2px;margin-bottom: 15px;display: block;}*/
.siteFooter .bottom-footer .footerLogo {
  max-width: 114px;
}
.siteFooter .bottom-footer .copyright {
  max-width: 180px;
  font-size: var(--f12);
  line-height: 1.1;
}
.siteFooter .bottom-footer .storeLinks img {
  width: 128px;
}
.siteFooter .bottom-footer .socialLinks img {
  width: 38px;
  height: 38px;
}
.siteFooter .bottom-footer .storeLinks ul li:first-child {
  margin-left: 20px;
}
.siteFooter .links ul li {
  font-size: var(--f12);
  padding: 0 7px;
  border-left: 2px solid var(--white);
  line-height: 1;
}
.siteFooter .links ul li:last-child {
  border-left: 0px;
}
/*Footer Ends*/
/*Product Page Start*/
.productPage {
  padding-top: 80px;
  padding-bottom: 80px;
}
.productPage .filters {
  border-bottom: 1px solid var(--grey);
  margin-bottom: 30px;
}
.productPage .filters,
.productPage .filters .dropdown-toggle {
  font-size: var(--f14);
}
.productPage .headingBox {
  padding-right: 20px;
}
.productPage .headingBox .archiveTitle span:empty:before {
  content: 'Products';
}
.productPage .headingBox .archiveTitle .numCount {
  color: #757678;
}
/*.productPage .filters .filterSelects {overflow-x: auto;}*/
.productPage .filters .filterSelects .searchandfilter > ul:before {
  content: 'Filter by:';
  margin-left: 10px;
  align-self: center;
  white-space: nowrap;
}
.productPage .filters .searchandfilter > ul {
  padding-right: 0px;
  display: flex;
  flex-wrap: wrap;
}
.productPage .filters .searchandfilter > ul .h4 {
  padding-bottom: 5px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: var(--f14);
  white-space: nowrap;
  font-weight: var(--weight-bold);
  margin-bottom: 0;
}
.productPage .filters .searchandfilter > ul .h4:after {
  content: '';
  border: 0;
  width: 16px;
  height: 16px;
  background-image: url('images/select-up.svg');
  background-size: contain;
  vertical-align: middle;
  transform: rotate(180deg);
  transition: all ease 0.3s;
  position: absolute;
  left: 0;
}
.productPage .filters .searchandfilter > ul .active .h4:after {
  transform: rotate(0deg);
}
.productPage .filters .searchandfilter > ul .h4 + ul {
  padding: 15px;
  border: 1px solid var(--grey);
  border-radius: 5px;
  min-width: 250px;
  display: none;
  transition: all ease 0.3s;
  position: absolute;
  background-color: var(--white);
  z-index: 1;
}
.productPage .filters .searchandfilter > ul .h4 + ul li input {
  margin-left: 10px;
}
.productPage .filters .searchandfilter > ul .active .h4 + ul {
  display: block;
}
.productPage .filters .searchandfilter > ul > li {
  padding: 0;
  padding-left: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
  border-left: 1px solid var(--grey);
  display: none;
}
.productPage .filters .searchandfilter > ul .active .h4 + ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.productPage .filters .searchandfilter > ul > li.sf-field-sort_order {
  /*! margin-right: auto; */
  display: flex;
  padding-left: 0;
  border-left: 0;
  margin-left: 0px;
}
.productPage
.filters
.searchandfilter
> ul
> li.sf-field-taxonomy-product_category {
  display: none;
}
.productPage .filters .searchandfilter ul li span.sf-count {
  padding-right: 5px;
}
.productPage .filters .searchandfilter select.sf-input-select {
  margin-right: 10px;
}
.productPage .filters .searchandfilter > ul .sf-field-sort_order .h4 + ul li {
  margin-bottom: 0;
}
.productPage
.filters
.searchandfilter
> ul
.sf-field-sort_order
.h4
+ ul
li:first-child {
  display: none;
}
/*.productPage .filters .searchandfilter > ul .sf-field-sort_order h4 + ul li:last-child {padding-top: 30px;}*/
.productPage
.filters
.searchandfilter
> ul
.sf-field-sort_order
.h4
+ ul
li
input {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  height: 0;
  width: 0;
}
.productPage
.filters
.searchandfilter
> ul
.sf-field-sort_order
.h4
+ ul
li
input:checked
+ label {
  font-weight: var(--weight-semibold);
}
.productPage
.filters
.searchandfilter
> ul
.sf-field-sort_order
.h4
+ ul
li
label {
  cursor: pointer;
}
.productPage
.filters
.searchandfilter
> ul
.h4
+ ul
li
input[type='checkbox']
+ label {
  font-size: var(--f16);
  cursor: pointer;
}
.productPage
.filters
.searchandfilter
> ul
.h4
+ ul
li
input[type='checkbox']
+ label
.sf-count {
  color: #757678;
}



.controls-2{
  position: absolute;
  z-index: 9;
  bottom: 10px;
  left: 10px;
}

.controls-2 button {
  background-color: var(--light-blue);
  color: var(--white);
  border: 0;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  font-size: var(--f14);
}

.controls-2 button.playBtn{
  border-radius: unset !important;
}

.no-iframe-controls #myVideo .controls{
  display:none;
}











/*custom filters style start*/
.productPage .filters .dropdown-menu {
  padding: 15px;
}
.productPage .filters .attributefilters .dropdown-menu {
  min-width: 20rem;
}
.productPage .filters .dropdown-toggle {
  box-shadow: none;
  font-weight: var(--weight-semibold);
}
.productPage .filters .dropdown-toggle::after {
  border: 0;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  background-image: url('images/select-up.svg');
  background-size: contain;
  vertical-align: middle;
  transform: rotate(180deg);
  transition: all ease 0.3s;
}
.productPage .filters .dropdown-toggle.show::after {
  transform: rotate(0);
}
.productPage .filters .attributefilters .capacityFilter,
.productPage .filters .attributefilters .seriesFilter {
  padding-left: 20px;
  border-left: 1px solid var(--grey);
}
.productPage .filters .sortFilter .dropdown-menu {
  min-width: 15rem;
}
.productPage .filters .dropdown-menu li:not(:last-child) {
  margin-bottom: 15px;
}
.productPage .filters .dropdown-menu li input {
  margin-left: 10px;
}
.productPage .filterTags {
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.productPage .filterTags .tag {
  display: flex;
  background-color: var(--grey);
  padding: 0px 15px;
  margin-left: 15px;
  align-items: center;
  border-radius: 3px;
  white-space: nowrap;
}
.productPage .filterTags .tag .sf-count {
  display: none;
}
.productPage .filterTags .tag .close-icon {
  height: 16px;
  width: 16px;
  margin-left: 5px;
  cursor: pointer;
}
.productPage .filterTags .clearFilters {
  color: inherit;
  margin-left: 20px;
  white-space: nowrap;
  border: none;
  background: none;
  text-decoration: underline;
}
/*custom filters style end*/
.productPage .filters .searchandfilter select.sf-input-select,
.productPage .filters .searchandfilter select.sf-input-select:focus,
.productPage .filters .searchandfilter select.sf-input-select:focus-visible {
  border: 0;
  outline: 0;
}
.productPage .filters .searchandfilter>ul>li.activenow.openit ul{ display: block;}
.productPage .productList .productCard {
  position: relative;
  transition: all 0.3s ease 0s;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.productPage .productList .productCard .imgBox {
  position: relative;
}
.productPage .productList .productCard .imgBox:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.productPage .productList .productCard .imgBox img {
  height: auto;
  width: 100%;
}
.productPage .productList .productCard .modalNumber {
  color: #757678;
  font-weight: var(--weight-semibold);
  font-size: var(--f14);
}
.productPage .productList .productCard .colors .colorImg {
  display: inline-block;
  text-decoration: none;
  line-height: 100%;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease 0s;
}
.productPage .productList .productCard .colors .colorImg:hover {
  text-decoration: none;
  border-bottom: 2px solid #131518;
}
.productPage .productList .productCard .colors {
  position: relative;
}
.productPage .productList .productCard .colors:after {
  content: '';
  height: 1px;
  background-color: var(--grey);
  transition: all 0.3s ease 0s;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.productPage .productList .productCard .colors p {
  width: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.productPage .productList .productCard .colors .colorImg img {
  max-width: 40px;
}
.productPage .productList .productCard .hoverBox {
  flex-grow: 1;
  flex-shrink: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: translateY(100%);
  width: calc(100% + 2px);
  margin: 0 -1px;
  padding: 0 15px 15px;
  border-right: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  border-left: 1px solid var(--grey);
  box-shadow: 2px 2px 4px 0 #efefef;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.productPage .productList .productCard .hoverBox .features {
  font-size: var(--f14);
  padding-inline-end: 1em;
  text-indent: -1em;
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1em;
  padding-inline-start: 1em;
  margin: ;
}
.productPage .productList .productCard .hoverBox .features li {
  padding: 3px 0;
}
.productPage .productList .productCard .compareBox {
  text-align: left;
}
.productPage .productList .productCard .compareBox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #757678;
}
.productPage .productList .productCard .compareBox label.disabled {
  opacity: 0.5;
  cursor: default;
}
.productPage .productList .productCard .compareBox input,
.productPage .filters .searchandfilter > ul .h4 + ul li input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  height: 20px;
  width: 20px;
  border: 1px solid #131518;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s ease 0s;
  margin-right: 5px;
  margin-left: 5px;
}
.productPage .productList .compareBox input:after,
.productPage
.filters
.searchandfilter
> ul
.h4
+ ul
li
input[type='checkbox']:after {
  content: '';
  position: absolute;
  opacity: 0;
  background-image: url('images/ok-black.svg');
  background-size: 17px 17px;
  background-position: 50%;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.productPage .productList .compareBox input:checked {
  border: 0;
}
.productPage .productList .compareBox input:checked:after,
.productPage
.filters
.searchandfilter
> ul
.h4
+ ul
li
input[type='checkbox']:checked:after {
  opacity: 1;
}
.productPage
.filters
.searchandfilter
.sf-field-taxonomy-color
.h4
+ ul
li
input[type='checkbox'] {
  border-radius: 50%;
  border-color: #fff;
  box-shadow: 0 0 0 1px #000;
  border-width: 1px;
  height: 15px;
  width: 15px;
}
.productPage
.filters
.searchandfilter
.sf-field-taxonomy-color
.h4
+ ul
li
input[type='checkbox']:after {
  display: none;
}
.term-accessories-and-care .productPage .productList .productCard .content h2 {
  min-height: 48px;
}
@media (min-width: 1024px) {
  .productPage .productList .productCard .colors .colorImg {
    opacity: 0;
    visibility: hidden;
  }
  .productPage .productList .productCard .colors p {
    opacity: 1;
    visibility: visible;
  }
  .productPage .productList .productCard:hover,
  .productPage .productList .productCard:focus-within {
    border-top: 1px solid var(--grey);
    border-left: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
    box-shadow: 2px 0 4px 0 #efefef;
  }
  .productPage .productList .productCard .colors:after {
    opacity: 0;
  }
  .productPage .productList .productCard:hover .colors:after,
  .productPage .productList .productCard:focus-within .colors:after {
    opacity: 1;
  }
  .productPage .productList .productCard:hover .hoverBox,
  .productPage .productList .productCard:hover .colors .colorImg,
  .productPage .productList .productCard:focus-within .hoverBox,
  .productPage .productList .productCard:focus-within .colors .colorImg {
    opacity: 1;
    visibility: visible;
  }
  .productPage .productList .productCard:hover .colors p,
  .productPage .productList .productCard:focus-within .colors p {
    opacity: 0;
    visibility: hidden;
  }
  #filterForm .closeBtn,
  #filterForm .applyBtn {
    display: none;
  }
}

/*Product Page End*/
/*Single Product Page Start*/
.singleProduct .topContent {
  padding-top: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--grey);
}
.singleProduct .imageSlider .mainImage {
  padding-left: 73px;
  padding-right: 73px;
}
.singleProduct .thumbImages {
  max-width: 367px;
  width: 100%;
  position: absolute;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right top;
  z-index: 9;
  right: 50px;
  bottom: 50%;
  display: flex;
  flex-direction: revert;
  flex-wrap: nowrap;
  height: 80px;
}
.singleProduct .thumbImages .item {
  border: 2px solid var(--grey);
  padding: 1px;
  cursor: pointer;
}
.singleProduct .thumbImages .synced .item {
  border-color: #1a1d1f;
}
.singleProduct .thumbImages img {
  transform: rotate(90deg);
  height: 100%;
}
.singleProduct .detailBox .featureSec {
  padding-left: 7%;
  padding-right: 7%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.singleProduct .detailBox .summeryContent {
  padding-left: 7%;
  padding-right: 7%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.singleProduct .detailBox .featureSec .feature .description {
  font-size: var(--f14);
}
.singleProduct .specificationSec {
  background-color: #efefef;
  padding-top: 80px;
  padding-bottom: 80px;
}
.singleProduct .specificationSec h3 {
  letter-spacing: 5px;
  font-weight: var(--weight-semibold);
}
.singleProduct .specificationSec .accordion-button,
.singleProduct .specificationSec .accordion-item {
  background-color: transparent;
}
.singleProduct .specificationSec .accordion-item .accordion-button {
  font-size: var(--f20);
  font-weight: var(--weight-medium);
  color: inherit;
  box-shadow: none;
}
.singleProduct .specificationSec .accordion-item .accordion-body {
  padding: 30px 50px;
  font-size: var(--f14);
}
.singleProduct .specificationSec .accordion-item .accordion-body .list > div {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey);
}
.singleProduct
.specificationSec
.accordion-item
.accordion-body
.list
> div:last-child {
  border-bottom: 0px solid var(--grey);
}
.singleProduct .specificationSec .accordion-button::before {
  content: '';
  height: 16px;
  width: 2px;
  background-color: #000;
  position: absolute;
  left: 27px;
  top: 21px;
  transition: transform 0.2s ease-in-out;
}
.singleProduct .specificationSec .accordion-button:not(.collapsed)::after {
  transform: none;
}
.singleProduct .specificationSec .accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}
.singleProduct .specificationSec .accordion-button::after {
  background-image: none;
  height: 2px;
  width: 16px;
  background-color: #000;
  position: absolute;
  left: 20px;
  top: 28px;
}
.singleProduct .owl-theme .owl-nav {
  margin-top: 0;
}
.singleProduct .thumbImages .owl-nav button.owl-prev {
  position: absolute;
  top: 10px;
  right: -30px;
  background: transparent;
}
.singleProduct .thumbImages .owl-nav button.owl-next {
  position: absolute;
  top: 15px;
  left: -30px;
  background: transparent;
}
.singleProduct .mainImage .owl-nav button {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.singleProduct .mainImage .owl-nav button span {
  font-size: 30px;
  line-height: 1;
}
.singleProduct .mainImage .owl-nav button.owl-prev {
  right: -50px;
}
.singleProduct .mainImage .owl-nav button.owl-next {
  left: -50px;
}
.singleProduct .mainImage .owl-theme .owl-nav .disabled {
  opacity: 0;
}
.singleProduct .mainImage .owl-carousel .owl-item img {
  height: auto;
}
.singleProduct .mainImage .owl-carousel .owl-item .item {
  cursor: pointer;
  text-align: center;
}
.singleProduct .modal .mainImage .owl-carousel .owl-item img {
  height: 90vh;
  width: auto;
  display: inline-block;
}
.singleProduct .modal .modal-dialog {
  padding: 20px;
}
.singleProduct .owl-theme .owl-nav button:hover {
  background: transparent;
  color: var(--black);
}
.singleProduct .thumbImages .owl-nav button span {
  font-size: 30px;
}
.singleProduct .topContent .contentBox {
  max-width: 340px;
  width: 100%;
}
.singleProduct .topContent .contentBox .catName {
  text-transform: uppercase;
  font-weight: var(--weight-medium);
  font-size: var(--f14);
  color: #767779;
}
.singleProduct .topContent .contentBox .modalNum {
  font-weight: 500;
  color: #484a4c;
}
.singleProduct .topContent .contentBox .colors ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.singleProduct .topContent .contentBox .colors ul li {
  margin-left: 15px;
}
.singleProduct .topContent .contentBox .colors ul li:last-child {
  margin-left: 0px;
}
.singleProduct .topContent .contentBox .colors ul li a {
  display: inline-block;
  border-bottom: 3px solid transparent;
  padding-bottom: 3px;
}
.singleProduct .topContent .contentBox .colors ul li.current a,
.singleProduct .contentBox .colors ul li a:hover {
  border-bottom-color: #1a1d1f;
}
.singleProduct .downloadPDF .pdfLinks a {
  color: var(--blue);
}
.singleProduct .downloadPDF .pdfLinks a:hover {
  opacity: 0.8;
}

.singleProduct .imageSlider .product_video {
  position: absolute;
  cursor: pointer;
  margin-right: 60px;
  height: 80px;
  width: 80px;
  right: 100%;
}
.singleProduct .imageSlider .product_video:after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  content: '';
  top: 0;
  left: 0;
}
.singleProduct .imageSlider .product_video:before {
  width: 28px;
  height: 28px;
  background: url(images/play.svg) no-repeat;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: rotate(90deg);
  background-size: 100%;
  margin-left: -14px;
  margin-top: -14px;
  cursor: pointer;
}
.singleProduct .imageSlider .product_video img {
  max-width: inherit;
  height: 100% !important;
}
.singleProduct .imageSlider .mainVideo {
  display: none;
}
.singleProduct .imageSlider .mainVideo.youtubeHero .mediaBox {
  height: 450px;
}
.singleProduct .imageSlider .haveVideo.thumbs {
  position: relative;
}
.singleProduct .imageSlider .haveVideo.thumbs:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
}
.singleProduct .imageSlider .product_video span {
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--light-grey);
  right: -20px;
  top: 0;
}
.singleProduct .modal .thumbImages {
  right: 10%;
}

.comparisonBox {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.comparisonBox .quickView {
  background-color: var(--grey);
  border-top: 1px solid #484a4c;
}
.comparisonBox .quickView .productBox {
  padding: 15px;
  background-color: var(--white);
  position: relative;
}
.comparisonBox .quickView .productBox .removeBtn {
  position: absolute;
  left: 5px;
  top: 5px;
  cursor: pointer;
}
.comparisonBox .quickView .productBox .removeBtn .close-icon {
  width: 18px;
  height: 18px;
}
.comparisonBox .quickView .compareBtn {
  background: transparent;
  border: 0;
}
.comparisonBox .quickView .compareBtn i {
  width: 20px;
  height: 20px;
}
.comparisonBox .quickView .compareBtn.open i {
  transform: rotate(180deg);
}
.comparisonBox .quickView .btnBox .text-link {
  color: inherit;
}
.comparisonBox .fullView {
  background-color: var(--white);
}
.comparisonBox.full {
  top: 0;
  height: 100%;
  background-color: var(--white);
  z-index: 1000;
  overflow-y: auto;
}
.comparisonBox .fullView .topProductBox {
  box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
}
.comparisonBox .fullView .topProductBox .mainProduct .removeBtn {
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}
.comparisonBox .fullView .topProductBox .mainProduct .removeBtn > * {
  vertical-align: middle;
}
.comparisonBox .fullView .closeBtn {
  position: absolute;
  left: 50px;
  top: 70px;
  cursor: pointer;
}
.comparisonBox .fullView .mainDetails .accordion-button,
.comparisonBox .fullView .mainDetails .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: var(--grey);
  box-shadow: none;
  border-radius: 0;
}
.comparisonBox .fullView .mainDetails .accordion-button::before {
  content: '';
  height: 16px;
  width: 2px;
  background-color: #000;
  position: absolute;
  left: 27px;
  top: 14px;
  transition: transform 0.2s ease-in-out;
}
.comparisonBox .fullView .mainDetails .accordion-button:not(.collapsed)::after {
  transform: none;
}
.comparisonBox
.fullView
.mainDetails
.accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}
.comparisonBox .fullView .mainDetails .accordion-button::after {
  background-image: none;
  height: 2px;
  width: 16px;
  background-color: #000;
  position: absolute;
  left: 20px;
  top: 21px;
}
.comparisonBox .fullView .mainDetails .accordion-item:first-of-type {
  border-radius: 0;
}
.comparisonBox .fullView .mainDetails .accordion-item {
  border: 0;
}
.comparisonBox .fullView .mainDetails .accordion-button {
  padding: 10px 15px;
  font-weight: var(--weight-semibold);
}
.comparisonBox .fullView .mainDetails table tr.title {
  display: none;
}
.productPage .filters .filterSelects .searchandfilter > ul:before {
  content: 'סנן לפי :';
  margin-top: -28px;
}

/*Single Product Page End*/

/*Error Page Starts*/
.errorHero {
  background-color: var(--dark-blue);
  color: var(--white);
}
.errorHero .contentBox h1 {
  font-size: 3.125rem;
}
.errorHero .contentBox h1 span {
  font-size: 2.3125rem;
  display: block;
}
.searchForm .sf-field-submit input[type='submit'] {
  text-indent: -999em;
  width: 25px;
  height: 25px;
  border-radius: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  background-image: url(images/search.svg);
  background-size: contain;
}
.searchForm .searchandfilter ul {
  position: relative;
  max-width: 450px;
  padding-right: 0;
  width: 100%;
}
.searchForm .searchandfilter ul li {
  padding: 0;
}
.searchForm .searchandfilter ul li.sf-field-search label {
  display: block;
}
.searchForm .searchandfilter ul li.sf-field-search label input {
  width: 100%;
  padding: 5px 16px 5px 35px;
}
.searchForm .searchandfilter ul li.sf-field-submit {
  position: absolute;
  padding: 0;
  margin: 0;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
/*Error Page Ends*/

.sitemapSec ul li a {
  color: inherit;
  text-decoration: none;
}

.sitemapSec ul li a:hover {
  text-decoration: underline;
}

/* Responsive Start */
@media (max-width: 1399px) {
  .heroSection {
    height: 650px;
  }
  .storySection .storyBox .imageBox,
  .coffee-slider .slide-item,
  .storySection .storyBox .story-slider .slide {
    height: 600px;
  }
  .detailCards .mainCards {
    height: 800px;
  }
}
@media (max-width: 1200px) {
  .verticleTabs .container,
  .cardBoxes .container,
  .accessories-slider .container,
  .hotspotSection .container,
  .beverageSection .container,
  .storySection .container {
    max-width: 100%;
  }
}
@media (max-width: 1079px) {
  .coffeeContent,
  .verticleTabs,
  .cardBoxes,
  .accessories-slider,
  .hotspotSection,
  .detailCards,
  .storySection,
  .productGrid,
  .mediaSection,
  .coffee-slider,
  .coffeeSection,
  .ctaSection,
  .productPage {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .detailCards .mainCards {
    height: 650px;
  }
  .storySection .storyBox .imageBox,
  .coffee-slider .slide-item,
  .storySection .storyBox .story-slider .slide {
    height: 500px;
  }
  .hotspotSection .imageHotspot .popovers span {
    height: 20px;
    width: 20px;
  }
  .siteFooter .bottom-footer .copyright {
    margin: 0 auto;
  }
  .siteFooter .bottom-footer .links {
    margin-bottom: 20px;
    padding-top: 50px;
  }
}
@media (max-width: 1023px) {
  .productPage .productList .productCard .hoverBox {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: 0;
    padding-top: 15px;
  }
  .productPage .filters .searchandfilter > ul {
    flex-wrap: wrap;
  }
  .productPage .filters .searchandfilter > ul > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .productPage .filters .searchandfilter > ul .active .h4 + ul {
    position: relative;
    border: 0;
  }
  .productPage .productList .col-6 .productCard .hoverBox,
  .productPage .productList .col-6 .productCard .colors .colorImg,
  .productPage .productList .col-6 .productCard .colors:after,
  .productPage .filters .filterSelects .filter .searchandfilter > ul:before,
  .productPage .filters .filter .searchandfilter > ul > li.sf-field-sort_order,
  .productPage .productList .col-md-3 .productCard .hoverBox,
  .productPage .productList .col-md-3 .productCard .colors .colorImg,
  .productPage .productList .col-md-3 .productCard .colors:after {
    display: none;
  }
  .productPage .productList .col-6 .productCard .colors p,
  .productPage .productList .col-md-3 .productCard .colors p {
    visibility: visible;
    position: static;
    opacity: 1;
    margin: 0;
  }
  .productPage .productList .col-6 .productCard .imgBox img,
  .productPage .productList .col-md-3 .productCard .imgBox img {
    padding: 25px 0;
  }
  .productPage .productList .col-6 .productCard .colors,
  .productPage .productList .col-md-3 .productCard .colors {
    position: absolute;
    top: 18px;
    left: 25px;
    border: 0;
    padding: 0;
    font-size: var(--f14);
  }
  .productPage .productList .col-6 .productCard .compareBox,
  .productPage .productList .col-md-3 .productCard .compareBox {
    text-align: center;
    padding-top: 20px;
  }
  .productPage .productList .col-6 .productCard .content h3,
  .productPage .productList .col-md-3 .productCard .content h3 {
    font-size: var(--f16);
  }
  .productPage .productList .col-6 .productCard .content .modalNumber,
  .productPage .productList .col-md-3 .productCard .content .modalNumber {
    font-size: var(--f14);
  }
  .productPage .filters .searchandfilter > ul .h4 + ul {
    padding-left: 25px;
    padding-right: 25px;
  }
  .productPage .filters .searchandfilter > ul > li {
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid var(--grey);
  }
  .productPage .filters .searchandfilter > ul .h4 {
    font-size: var(--f18);
    padding: 15px 25px;
  }
  .productPage .filters .searchandfilter > ul .active .h4 + ul {
    margin-bottom: 10px;
  }
  .productPage .filters .searchandfilter > ul .active .h4 + ul li {
    font-size: var(--f16);
  }
  .productPage .filters .show-sorting .searchandfilter > ul .h4 + ul li {
    font-size: var(--f16);
  }
  .productPage .filters .show-sorting .searchandfilter > ul .h4 + ul {
    margin-bottom: 0;
  }
  .productPage .filters .show-sorting .searchandfilter > ul .h4:after {
    display: none;
  }
  .productPage .filters .searchandfilter > ul .h4:after {
    position: relative;
    display: inline-block;
    margin-right: 15px;
  }
  .productPage .filters .searchandfilter > ul {
    border-top: 1px solid var(--grey);
  }
  .productPage .filters .show-filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--white);
    overflow-y: auto;
  }
  .productPage .filters .show-filters .sf-field-sort_order {
    display: none !important;
  }
  .productPage .filters .filterSelects .searchandfilter > ul:before {
    display: none;
  }
  .productPage .filters .show-filters .closeBtn {
    padding: 15px;
    font-size: var(--f21);
  }
  .productPage .filters .show-filters .formBox {
    margin-bottom: 20px;
  }
  .productPage .filters .show-sorting .searchandfilter > ul > li {
    display: none !important;
  }
  .productPage
  .filters
  .show-sorting
  .searchandfilter
  > ul
  > li.sf-field-sort_order {
    display: block !important;
    border: 0;
  }
  .productPage .filters .show-sorting .searchandfilter > ul .h4 + ul {
    display: block;
    position: relative;
    border: 0;
  }
  .productPage .filters .show-sorting .applyBtn,
  .productPage .filters .show-sorting .searchandfilter > ul .h4 {
    display: none;
  }
  .productPage .filters .show-sorting {
    position: absolute;
    background-color: var(--white);
    width: 100%;
    left: 0;
    padding: 20px;
    z-index: 9;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
  }
  .productPage .filters .show-sorting .searchandfilter > ul {
    border-top: 0px solid var(--grey);
  }
  .productPage .filters .show-sorting .closeBtn {
    font-size: var(--f21);
    margin-left: 20px;
    text-align: left;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .coffee-slider .slide-item .caption {
    padding: 0 10%;
  }
  .coffeeContent .contentBox {
    padding: 0 10% 50px;
  }
  header .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
  header .navbar-brand img {
    max-width: 128px;
  }
  .navbar-light .navbar-toggler {
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .navbar-light .navbar-toggler:focus-visible{border:2px solid orange}
  .navbar .navbar-nav {
    padding: 0;
  }
  .navbar .megamenu .gridMenu .menuBox {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    height: auto !important;
  }
  .navbar .megamenu .gridMenu .menuBox h3 {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .navbar .megamenu .gridMenu .imgBox {
    margin-bottom: 30px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.megamenu .allMenu {
    padding: 15px 0;
    background-color: var(--light-grey);
    font-weight: var(--weight-medium);
    font-size: var(--f18);
  }
  .navbar-light .navbar-nav .nav-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 18px;
  }
  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:focus,
  .navbar-light .navbar-nav .nav-link:hover {
    color: var(--black);
    font-weight: 600;
    position: relative;
  }
  header .offcanvas-body {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  header .offcanvas-body .dropdown-toggle::after {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background-image: url('images/select-up.svg');
    vertical-align: middle;
    background-size: contain;
    margin-left: 0;
    border: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: all ease 0.3s;
  }
  header .offcanvas-body .dropdown-toggle.show::after {
    transform: translateY(-50%) rotate(-180deg);
  }
  .siteFooter .upper-footer {
    flex-wrap: wrap;
  }
  .siteFooter .upper-footer .widget {
    width: 30%;
    padding: 10px 0;
  }
  .comparisonBox .quickView .productBox {
    padding: 0;
    background-color: transparent;
  }
  .comparisonBox .quickView .productBox img {
    background-color: var(--white);
    padding: 15px 10px;
    margin-bottom: 10px;
  }
  .comparisonBox .quickView .btnBox {
    padding-top: 20px;
  }
  .comparisonBox .quickView .btnBox .text-link {
    margin-left: 15px;
  }
  .comparisonBox .fullView .accordion table,
  .comparisonBox .fullView .accordion table tbody,
  .comparisonBox .fullView .accordion table tr,
  .comparisonBox .fullView .accordion table td {
    display: block;
  }
  .comparisonBox .fullView .accordion table {
    border-left: 1px solid var(--grey);
  }
  .comparisonBox .fullView .accordion table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .comparisonBox .fullView .accordion table tr td {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .comparisonBox .fullView .accordion table tr td:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    background-color: var(--grey);
  }
  .comparisonBox .fullView .mainDetails .accordion-button,
  .comparisonBox .fullView .mainDetails .accordion-button:not(.collapsed) {
    text-align: center;
    display: inline-block;
    background-color: transparent;
  }
  .singleProduct .thumbImages {
    max-width: 192px;
    width: 100%;
    position: relative;
    transform: rotate(0deg);
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
  .singleProduct .thumbImages img {
    transform: none;
    max-width: 100%;
    height: auto;
  }
  .singleProduct .imageSlider .mainImage {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .singleProduct .mainImage .owl-nav button.owl-prev {
    right: 0;
  }
  .singleProduct .mainImage .owl-nav button.owl-next {
    left: 0;
  }
  .singleProduct .thumbImages .owl-nav button.owl-next,
  .singleProduct .thumbImages .owl-nav button.owl-prev {
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    margin: 0 5px;
  }
  .singleProduct .thumbImages.haveVideoThumb {
    margin: 0;
    margin-right: 10%;
  }
  .singleProduct .imageSlider .product_video {
    height: 55px;
    width: 55px;
    margin-right: 40px;
  }
  .singleProduct .thumbImages.haveVideoThumb .owl-nav {
    display: none;
  }
  .singleProduct .imageSlider .product_video:before {
    transform: none;
  }
  .singleProduct .imageSlider .mainVideo.youtubeHero .mediaBox {
    height: 250px;
  }
  .productPage .filters .searchandfilter > ul > li {
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .coffeeSection .owl-carousel .owl-stage-outer {
    margin-bottom: 30px;
  }
  .coffeeSection .owl-carousel .owl-nav button,
  .coffeeSection .owl-carousel .owl-nav button:hover,
  .productGrid .owl-carousel .owl-nav button,
  .productGrid .owl-carousel .owl-nav button:hover {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    width: 40px;
    height: 40px;
    background-image: url('images/select-up.svg');
    text-indent: -999em;
    overflow: hidden;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--black);
    background-size: 25px;
  }
  .productGrid .owl-carousel .owl-nav button,
  .productGrid .owl-carousel .owl-nav button:hover {
    top: 200px;
  }
  .productGrid .owl-carousel .owl-stage-outer {
    margin-bottom: 30px;
  }
  .coffeeSection .coffeeBox {
    height: 450px;
  }
  .coffeeSection .owl-carousel .owl-nav button.owl-prev,
  .productGrid .owl-carousel .owl-nav button.owl-prev {
    right: 0;
    transform: translateY(-50%) rotate(90deg);
  }
  .coffeeSection .owl-carousel .owl-nav button.owl-next,
  .productGrid .owl-carousel .owl-nav button.owl-next {
    left: 0;
    transform: translateY(-50%) rotate(-90deg);
  }
  .coffeeSection .owl-dots,
  .productGrid .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .coffeeSection .owl-dots .owl-dot span,
  .productGrid .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    background-color: #757678;
    margin: 0 10px;
    border-radius: 50%;
  }
  .coffeeSection .owl-dots .owl-dot.active span,
  .productGrid .owl-dots .owl-dot.active span {
    height: 12px;
    width: 12px;
    background-color: #131518;
    margin: 0 8px;
  }
  .coffee-slider .slide-item {
    height: auto;
    flex-direction: column;
  }
  .coffee-slider .slide-item:before {
    display: none;
  }
  .coffee-slider .slide-item .topTitle {
    color: var(--black);
    border-bottom: 1px solid var(--black);
    font-size: var(--f18);
  }
  .coffee-slider .dark-blue .slide-item .topTitle {
    color: var(--white);
    border-bottom: 1px solid var(--white);
  }
  .coffee-slider .slide-item .caption {
    padding: 20px 10px;
  }
  .coffee-slider .transparent .slide-item .caption {
    color: var(--black);
  }
  .coffee-slider .slide-item img {
    height: 230px !important;
    object-fit: cover;
    position: relative !important;
  }
  .coffeeContent .row.left {
    flex-flow: column-reverse;
  }
  .coffeeContent .mediaBox {
    margin-bottom: 30px;
  }
  .coffeeContent .contentBox {
    padding: 0 5% 0px;
    text-align: center;
  }
  .coffeeContent .contentBox h2.yes:after {
    right: 50%;
    transform: translateX(50%);
  }
  .verticleTabs .tabCarousel .item,
  .cardBoxes .cards .card {
    width: 264px;
  }
  .storySection .storyBox .story-slider .slide .caption,
  .storySection .storyBox .owl-theme .owl-dots {
    padding: 0 50px;
  }
  .storySection .owl-carousel .owl-nav button.owl-prev,
  .storySection .storyBox .story-slider .slide .caption {
    right: 0;
  }
  .storySection .owl-carousel .owl-nav button.owl-next {
    left: 0;
  }
  .detailCards .mainCards .detail-cards-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .detailCards .mainCards {
    height: 640px;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed
  .previewtext {
    display: none;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-content {
    width: 100%;
    display: flex;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-open,
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-shrunk {
    display: none;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    border: 0;
    border-bottom: 1px solid var(--white);
    transition: all ease 0.5s;
  }
  .detailCards .mainCards .detail-cards-wrapper .detail-card .card-open .close {
    top: 10px;
    left: 10px;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-content
  .text-wrapper {
    flex-direction: row-reverse;
    align-items: center;
  }
  .detailCards
  .mainCards
  .detail-cards-wrapper
  .detail-card
  .card-closed
  .text-wrapper {
    margin-bottom: 0;
  }
  .siteFooter .upper-footer {
    border: 0;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .siteFooter .upper-footer .widget {
    width: 100%;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 20px;
    padding-bottom: 0;
  }
  .siteFooter .upper-footer .widget .widgettitle {
    position: relative;
    margin-bottom: 15px;
  }
  .siteFooter .upper-footer .widget .widgettitle span {
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .siteFooter .upper-footer .widget .widgettitle span:before,
  .siteFooter .upper-footer .widget .widgettitle span:after {
    content: '';
    position: absolute;
    background: hsla(0, 0%, 100%, 0.6);
    transition: all 0.3s ease;
  }
  .siteFooter .upper-footer .widget .widgettitle span:before {
    width: 14px;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .siteFooter .upper-footer .widget .widgettitle span:after {
    height: 14px;
    width: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .siteFooter .upper-footer .widget .widgettitle.show span:after {
    transform: rotate(-90deg);
  }
  .siteFooter .upper-footer .widget .widgettitle + div {
    display: none;
  }
  .siteFooter .upper-footer .widgettitle,
  .siteFooter .upper-footer ul li {
    font-size: var(--f16);
  }
  .siteFooter .upper-footer ul {
    margin-bottom: 15px;
  }
  .siteFooter .upper-footer .widget:first-child {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  }
  .siteFooter .bottom-footer .socialLinks {
    margin-bottom: 30px;
  }
  .siteFooter .bottom-footer .socialLinks ul,
  .siteFooter .bottom-footer .storeLinks ul {
    justify-content: space-around;
  }
  .siteFooter .bottom-footer .links ul {
    flex-wrap: wrap;
  }
  .siteFooter .bottom-footer .links ul li {
    margin-bottom: 10px;
  }
  .comparisonBox .fullView .topProductBox .mainProduct .light-blue {
    font-size: var(--f12);
  }
  .comparisonBox .fullView .closeBtn {
    top: 20px;
    left: 20px;
  }
  .comparisonBox .fullView .topProductBox .mainProduct {
    padding: 0 !important;
  }
  .comparisonBox .fullView .topProductBox .mainProduct .removeBtn span {
    display: none;
  }
  .comparisonBox .fullView .topProductBox h2 {
    font-size: var(--f21);
  }
  .singleProduct .specificationSec .accordion-item .accordion-body {
    padding: 10px;
  }
  .singleProduct .detailBox .featureSec {
    padding-left: 0;
    padding-right: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .heroSection {
    height: auto;
  }
  .heroSection .videoBox,
  .heroSection .imgBox.h-100 {
    height: 328px !important;
    position: relative !important;
  }
  .heroSection .imgBox {
    position: relative !important;
  }
  .heroSection .caption {
    color: var(--black);
  }
  .coffee-slider .coffeeSlider.dark-blue {
    background-color: var(--dark-blue);
    padding: 30px 0;
  }
  .heroSection .caption .btn {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
  }
  .coffeeContent .row.right {
    flex-direction: column-reverse;
  }
  .singleProduct .modal .mainImage .owl-carousel .owl-item img {
    height: auto;
  }
  .singleProduct .modal .imageSlider {
    height: 95%;
  }
  .singleProduct .modal .imageSlider > div {
    height: 95%;
  }
  .singleProduct .modal .imageSlider > div > div {
    align-self: center;
  }
  .singleProduct .detailBox .summeryContent h3 {
    position: relative;
  }
  .singleProduct .detailBox .summeryContent h3 span {
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .singleProduct .detailBox .summeryContent h3 span:before,
  .singleProduct .detailBox .summeryContent h3 span:after {
    content: '';
    position: absolute;
    background: var(--black);
    transition: all 0.3s ease;
  }
  .singleProduct .detailBox .summeryContent h3 span:before {
    width: 14px;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .singleProduct .detailBox .summeryContent h3 span:after {
    height: 14px;
    width: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .singleProduct .detailBox .summeryContent h3.show span:after {
    transform: rotate(-90deg);
  }
  .singleProduct .detailBox .summeryContent h3 + div {
    display: none;
  }
  .youtubeHero .mediaBox .videoBox .controls .playBtns i,
  .youtubeHero .mediaBox .videoBox .controls .muteBtns i,
  .youtubeHero .mediaBox .videoBox .controls .speed i,
  .youtubeHero .mediaBox .videoBox .controls .fullScreen i {
    width: 20px;
    height: 20px;
    margin-right: 0;
    background-color: transparent !important;
  }
  .heroSection .imgBox:after,
  .heroSection .videoBox:after {
    display: none;
  }
  .storySection .storyBox .imageBox > img {
    height: auto !important;
  }
  .storySection .storyBox .imageBox {
    overflow: hidden;
  }
  .storySection .storyBox .imageBox > h2 {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .coffeeContent .mediaBox video {
    min-height: 1px;
  }
  .coffeeSection .owl-carousel .owl-nav button {
    opacity: 0.8;
  }
  .coffeeSection .owl-carousel .owl-nav button.disabled {
    opacity: 0.1;
  }
  .singleProduct .mainImage .owl-nav button {
    border: 0;
    width: 20px;
    height: 20px;
  }
  .singleProduct .mainImage .owl-nav button.disabled {
    opacity: 0.3;
  }
  .singleProduct .detailBox .summeryContent {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .singleProduct .specificationSec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .singleProduct .topContent {
    padding-top: 50px;
  }
  .errorHero .contentBox h1 {
    font-size: 2.3125rem;
  }
  .errorHero .contentBox h1 span {
    font-size: 1.75rem;
    padding-top: 20px;
  }
  .productPage .filters .searchandfilter > ul > li {
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .hotspotSection .imageHotspot .popovers span {
    width: 10px;
    height: 10px;
  }
}

/* Accessibility Adjustments */

/* Accordion button focus (for product page) */
.accordion-button:focus {
  outline: 2px solid #101010;
}

/* Design a single product's h3 that has a p tag as a p */
.singleProduct h3.p {
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
}

/* Design a glossary\cardboxes h1 as an h2 */
.cardBoxes h1.h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .cardBoxes h1.h2 {
    font-size: 2rem;
  }
}

a {
  color: #3184ff;
  text-decoration: underline;
}

a:hover {
  color: #001438;
  text-decoration: underline;
}

/* .navbar-toggler-icon .closed {
background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill="%23fff" d="M19.8 4.2c-.4-.4-1-.4-1.4 0L12 10.6 5.6 4.2c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4L10.6 12l-6.4 6.4c-.4.4-.4 1 0 1.4.2.2.4.3.7.3s.5-.1.7-.3L12 13.4l6.4 6.4c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4L13.4 12l6.4-6.4c.4-.4.4-1 0-1.4z"/%3E%3C/svg%3E') !important;
} */
.pageBody .paragraphBlock ol li h2, .pageBody .paragraphBlock h1 {
  font-weight: bold;
}
.productPage .filters .searchandfilter>ul>li.activenow ul {
  display: block;
}

.singleProduct .mainImage button.item-2 {
  -webkit-appearance: none;
  border: unset;
  background: #fff;
}



/* shubh  */

.feature-wrap {
  padding: 40px 0;
  & .row{
    margin-inline: -24px;
    & [class*="col"]{
      padding-inline: 24px;
    }
  }
}
.feature-wrap .feature-box {
  display: flex;
  flex-direction: column;
  gap:24px;
}
.feature-wrap .feature-box .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 0;
}
.feature-wrap .feature-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-wrap .feature-box h4 {
  font-weight: 600;
  margin: 0;
  margin-bottom: 18px;
}
button.single_add_to_cart_button.button.alt {
  background-color: #266bbf;
  border-radius: 3px;
  padding: 12px 24px;
  width: 100%;
  margin-top: 15px;
  height: 50px;
}
.woocommerce .quantity .qty {
  margin-top: 10px;
}
.feature-wrap .feature-box p {
  font-size: 18px;
  color:#000;
  margin: 0;
}

.head {
  text-align: center;
  margin-bottom: 40px;
}
.head h4 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.spec-wrap {
  background: #efefef;
  padding: 40px 60px;
  @media(max-width:767px){
    padding-inline:0;
  }
}
.spec-wrap button {
  color: #212832;
  font-size: 20px;
  font-weight: 600;
  background: none;
  padding: 21px 23px 21px 12px;
  border-bottom: 1px solid #e5e5e5;
}
.spec-wrap .accordion-item {
  margin-bottom: 0;
  background: none;
  border: none;
}
.spec-wrap .accordion-button:not(.collapsed) {
  background: none;
  color: #000;
}

.spec-wrap button:focus:not(:focus-visible) {
  outline: 0 !important;
  box-shadow: none;
}
.spec-wrap .accordion-button::after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMzIgMzIiIHdpZHRoPSIzMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNMjgsMTRIMThWNGMwLTEuMTA0LTAuODk2LTItMi0ycy0yLDAuODk2LTIsMnYxMEg0Yy0xLjEwNCwwLTIsMC44OTYtMiwyczAuODk2LDIsMiwyaDEwdjEwYzAsMS4xMDQsMC44OTYsMiwyLDIgIHMyLTAuODk2LDItMlYxOGgxMGMxLjEwNCwwLDItMC44OTYsMi0yUzI5LjEwNCwxNCwyOCwxNHoiLz48L3N2Zz4=");

}
.accordion-button:not(.collapsed)::after{
  background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%221.5%22%20stroke%3D%22currentColor%22%20class%3D%22size-6%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M5%2012h14%22%20%2F%3E%3C%2Fsvg%3E) !important;
  width: 1.25rem;
  height: 1.25rem;
  background-size: cover;
}
.spec-wrap .accordion-body ul {
  padding-left: 0;
}
.spec-wrap .accordion-body ul li {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 10px 10px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
}

.product-view {
  padding: 40px 0;
}

.summary-content{
  border-top:1px solid #e5e5e5;
  font-size:18px;
  color:#000;
  padding-top: 60px;
}

.product-view .inner {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 50px;
  overflow: hidden;
  @media(max-width:767px){
    display:flex;
    flex-direction: column;
  }
}
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.rating-wrap p {
  margin-bottom: 0;
  color: #0c2340;
  font-size: 15px;
  position: relative;
  top: 2px;
  font-weight: 600;
}
.product-view .info-side .color {
  margin-top: 25px;
}
.info-side{
  display: flex;
  flex-direction: column;
  & > h1{
    font-size:29px;
  }
  & .cart{
    order:2;
  }
  & .price{
    order:1; margin-top:20px; margin-block-end: 0;
    font-size:28px;
    & del bdi{
      color:#767779 !important;
      font-size:18px;
    }
  }
}
.product-view .info-side h3 {
  font-size: 26px;
  font-weight: 600;
}
.product-view .product-description{
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 11px;
  color:#767779;
  font-weight: bold
}
.product-view .color-options{
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  & p{
    width:100%;
  }
  & >a{
    width:80px;
    height:80px;
    border:3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    & img{}
  }
}
.product-view .info-side h6 {
  font-size: 15px;
  color: #837d7d;
}
.product-view .price h2 {
  font-weight: 600;
}
.product-view .btn-primary {
  margin-top: 10px;
  border-radius: 2px;
  font-weight: 600;
  background-color: #0c2340;
  border-color: #0c2340;
  min-height: 45px;
}
.product-view ul {
  width: 100%;
  padding: 0;
  margin-top: 20px;
  order: 2;
}
.product-view ul li {
  margin-bottom: 7px;
  border: none;
  background: #f7f7f7;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
  padding: 17px 11px 17px 20px;
  font-size:14px;
}
.product-view ul li svg {
  width: 25px;
  height: 25px;
}

.swiper {
  width: 100%;
  height: 450px;
}
.gallery-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  align-content: center;
  flex-direction: row;
  gap:60px;
  & .slider__col{
    flex:0 0 80px;
    width:80px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  @media(min-width:767px){
    .slider__prev,.slider__next {
      width:24px;
      transform: rotate(90deg);
      margin-inline: auto;
      margin-bottom: 10px;
      & svg{
        width:100%;
        height:100%;
      }
      &.slider__next{
        transform: rotate(90deg);
        margin-top: 10px;
      }
    }
  }
  @media(max-width:767px){
    overflow: hidden;
    display:flex;
    flex-direction: column;
    gap:20px;
    & .slider__col{
      width:100%;
      display: flex;
      overflow: hidden;
      align-items: center;
      order:3;
      & :where(.slider__prev, .slider__next){
        width:20px;
        flex:0 0 20px;
      }
      & svg{
        width:20px;
      }
    }
  }
}

.gallery-main {
  width: 100%;
  height: 527px;
  display: flex;
  flex:1;
  overflow: hidden;
  /* border: 1px solid red; */
  position: relative;
  @media(max-width:767px){
    overflow: hidden;
    width:100%;
    height:auto;
    /* & .slider__col{
    width:100%;
  } */
  }
}
.gallery-main .swiper-slide{
  /* margin-inline: 70px; */
}
.gallery-main .swiper-slide img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center center;
  max-height: 520px;
  @media(max-width:767px){
    height:300px;
    max-height:300px;
  }
}
.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 50%;
  left: auto;
  height: 32px;
  width: 32px;
  color: #000;
  background: #fff;
  border: 1px solid #747578 !important;
  border-radius: 100%;
  transform: translateY(-50%);
  margin: 0;
}
.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
  font-size: 12px;
}
.gallery-main .swiper-button-prev {
  right: auto;
  border-right: 1px solid #e9e9e9;
  left:0px;
}

.gallery-title {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Epilogue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
.swiper-slide-active .gallery-title {
  -webkit-animation: slide-in 0.3s ease-in both;
  animation: slide-in 0.3s ease-in both;
}

/* .swiperContainer{
border:1px solid red;
height: 344px;
overflow: hidden;
margin-block:26px;
} */

.gallery-thumbs {
  /* order: -1; */
  width: 100%;
  height:400px;
  @media(max-width:767px){
    width:100%;
    height:100px;
    /* border:1px solid red; */
    order:unset;
    flex:1;
    overflow: hidden;
    padding-inline: 5vw;
  }
  & .swiper-container{
    height:100%;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  & .swiper-wrapper{


  }
  /* margin-right: 15px;
  margin-right: 15px;  */

  & .swiper-slide {
    border:1px solid #e5e5e5;
    /* height:80px !important; */
    margin-bottom: 8px;
    & img{
      width:100%;
      height:100%;
      object-fit: cover;
      object-position: center center;
    }
    &.swiper-slide-thumb-active{
      border:1px solid #000;
    }
  }
}
.gallery-thumbs .swiper-slide img {
  transition: 0.3s;
}
.gallery-thumbs .swiper-slide-active {
  opacity: 0.9;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
/* .gallery-thumbs .swiper-slide-thumb-active img {
margin-left: -15px;
} */

/* @-webkit-keyframes slide-in {
from {
opacity: 0;
right: -50%;
}
}

@keyframes slide-in {
from {
opacity: 0;
right: -50%;
}
} */


















.cart_page{
  padding-block: 60px;

  & .row{
    margin:0px;
    display: grid;
    grid-template-columns:1fr 420px;
    @media(max-width:767px){
      grid-template-columns:1fr;
    }
    @media(max-width:1024px) and (min-width:768px){grid-template-columns: 1fr 42%; overflow: hidden;}
    & [class*="col"]{
      width:100%;
      flex:0 0 100%;
      overflow: hidden;
    }
  }
  & h2{
    font-size:30px; margin-block-end: 30px;
  }
  & .cart-left-holder{
    & .cart-box{
      background: #F9F9F9;
      padding:20px;
      & .coupan{
        padding-block: 30px;
        display: flex;
        flex-direction: column;
        gap:20px;
        & input{
          border:1px solid #C0C0C0;
          min-height:48px;
        }
      }
      & summary {
        list-style: none;
        display: flex;
        justify-content: space-between;
        position: relative;
      }
      summary::-webkit-details-marker {
        display: none;
      }
      summary::after {
        padding-right: .25rem;
        content: '+ ';
        font-size:35px;
      }
      summary::after,
        details[open] summary::after{
          position: absolute;
          left:0px;
          top: -15px;
      }
      details[open] summary::after {
        padding-right: .25rem;
        font-style: italic;
        content: '- ';
        font-size:35px;
      }
      &:not(:last-child){
        border-bottom:20px solid #fff !important;
      }
    }
    & h3{
      font-size: 32px;
      line-height: 40px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }
    & table{
      & tr{
        & td{
          border:none;
          padding:3px 0;
          &:nth-child(even){
            text-align-last:left;
          }
        }
        &:nth-last-child(2){
          & td{
            padding-block-end: 10px;
          }
        }
        &:last-child{
          & td{
            font-weight: 700;
            font-size: 20px;
            line-height: 40px;
            letter-spacing: 0.4px;
            text-align: right;
            vertical-align: middle;
            text-transform: uppercase;
            border-top:1.5px solid #C0C0C0;
            font-family: var(--Alef-font);
          }
        }
      }
    }
  }


  & .cart_right{
    & .cart_table{
      & thead{
        border:none !important;
      }
      & th{
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid #C0C0C0 !important;
        box-shadow: none;
        text-align-last:right !important;
        &:first-child{

        }
      }
      & th, td{
        padding-inline: 0;
        color:#757575;
        font-size:16px;
      }
      tbody{
        border:none;
        & tr{
          &:first-child{
            & td{padding-top:30px}
          }
          & td{
            border:1px solid #fff !important;
            & .remove{
              display: inline-block;
              white-space: nowrap;
            }
            & .productImg{
              width:180px;
              height:180px;
              display: flex;
              & img{
                width:100%;
                height:100%;
                object-fit: cover;
              }
            }
            &:first-child:has(.productImg){
              width:180px;
              padding-inline-end:50px;
              @media(max-width:1024px) and (min-width:768px){
                width:100px;
                padding-inline-end:10px;
                & .productImg{
                  width:100%;
                  height:100%;
                  object-fit: cover;
                }
              }
              @media(max-width:1024px) and (min-width:168px){
                width:100px;
                padding-inline-end:10px;
                & .productImg{
                  width:100%;
                  height:100%;
                  object-fit: cover;
                }
              }
            }
            & .product-discription{
              & p{
                margin:0px;
                &:last-child{
                  margin-top:20px;
                }
              }
            }
            & .quat{
              display: flex;
              gap:10px;
              & button, input{
                background: none;
                border:none;
                background: #F9F9F9;
                border:1px solid #C0C0C0 !important;
                width: 40px;
                height: 40px;
                border-radius: 2px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align-last: center !important;
                box-shadow: none !important;
                @Media(max-width:767px){
                  width: 26px;
                  height: 26px;
                }
              }
            }
          }
          &:nth-child(2n){
            & td:first-child{
              text-align-last:right;
            }
            & td{
              vertical-align: bottom;
            }
          }
          &:has(.productImg){
            & td:nth-child(2){
              text-align-last:right;
            }
          }
        }
      }
    }
  }

}
& .quat{
  display: flex;
  gap:10px;
  & button, input{
    background: none;
    border:none;
    background: #F9F9F9;
    border:1px solid #C0C0C0 !important;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align-last: center !important;
    box-shadow: none !important;
  }
}
.btn-black{
  background: #444443;
  border:none;
  font-family: var(--Alef-font);
  font-weight: 700;
  font-size: 25px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color:#fff;
  min-height:56px;
  display: flex;
  place-items: center;
  gap:6px;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  &:hover{
    color:#fff;
  }
  &:after{
    content: "";
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #fff;
    background: none !important;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    transform: rotate(129deg);
    position: relative;
    display: flex;
    top:2px;
  }
  &.btn-full{
    width:100%;
  }

}

.cart_page :where(h2, h3){
  font-family: var(--Alef-font);
  color:#000;
  font-weight:700;
}





.section-padding{
  padding-block: 60px;
  direction: rtl;
  & .productInfo{
    & .product-title{
      font-family: var(--Alef-font);
      font-size: 36px;
      font-weight: 700;
      line-height: 36px;
      letter-spacing: 0.400000006px;
      text-align: right;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      margin-block-end: 20px;
    }
    & .product-page-price{
      font-family: var(--Alef-font);
      font-size: 32px;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0.400000006px;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      margin-top: 40px;
    }
    & .quantity{}
  }
}

.accordian-custom{
  padding-block: 60px;
  & summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    position: relative;
    font-size:26px;
    font-weight:bold;
    border-block-end: 1px solid #ddd;
    padding-block:30px;
    align-items: center;
  }
  summary::-webkit-details-marker {
    display: none;
  }
  summary::after {
    padding-right: .25rem;
    content: '+ ';
    font-size:35px;
  }
  summary::after,
    details[open] summary::after{

  }
  details[open] summary::after {
    padding-right: .25rem;
    font-style: italic;
    content: '- ';
    font-size:35px;
  }
}

.stikcyTop{
  position: sticky;
  top:100px;
}




.el-plp-wrapper{}






.section-padding:has(.del-plp-wrapper){
  direction: ltr;
}

.del-plp-wrapper{
  border:1px solid #fff;
  transition: all .3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  padding: 10px;
  position: relative;
  & .del-product-box__image-wrapper{
    position: relative;
    & .del-product-box__image-overlay{
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(0,0,0,.05);
    }
    & .del-product-box__product-state{
      position: absolute;
      bottom: 0;
      & span{
        font-family: var(--Alef-font);
        font-weight: 900;
        color: var(--brand-05);
        background-color: #c9e3f9;
        padding: 5px;
        line-height: 12px;
        margin-bottom: 4px;
        display: inline-block;
        &.percentage-discount-span{
          background:#052644;
          color:#fff;
        }
      }
    }
  }
  & .del-product-box__bottom-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: translateY(100%);
    width: calc(100% + 2px);
    margin: 0 -1px;
    padding: 0 15px 15px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    box-shadow: 2px 2px 4px 0 #efefef;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease 0s;
    & .del-product-box__cta-wrapper{
      display: flex;
      flex-direction: column;
      & .del-product-box__cta-add-to-cart, .del-product-box__cta-learn-more{
        display: inline-block;
        text-decoration: none;
        transition: all .3s ease 0s;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: none;
        background-color: transparent;
        padding: 12px 24px;
        letter-spacing: 1px;
        font-size: .9rem;
        flex-grow: 1;
        margin: 5px;
        border-radius: 3px;
        text-align: center;
        cursor: pointer;
        opacity: 1;
        color: #fff;
        background-color: var(--dark-blue);
      }
      & .del-product-box__cta-learn-more{
        font-family: var(--Alef-font);
        background-color: transparent;
        border: 1px solid #1a1d1f;
        color: #1a1d1f;
        font-weight: 700 !important;
      }
    }
    & .del-product-box__key-features{
      padding:0px;
      list-style-position: outside;
      padding: 0 15px 20px 20px;
      margin:0px;
      & > li{
        padding: 5px 0;
        font-size: 1.0125rem;
        line-height: 115%;
        font-size: .84375rem;
      }
    }
  }
  & .del-product-box__bottom-section{
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 31%;
    margin:0px;
    padding-block: 20px;
    & .del-product-box__title{
      font-weight: 700;
      font-size: 1.25rem;
      line-height: 1.15;
      color: #1a1d1f;
      padding-bottom: 20px;
      font-family: var(--Alef-font);
    }
    & [class*="col"]{
      padding: 0;
      width:100%;
      overflow: hidden;
    }
    & .del-product-box__right-section{
      /*! border:1px solid green; */
      & .del-product-box__compare{
        display: flex;
        & label{
          padding: 0 5px;
          font-size: .8125rem;
          color: #757678;
        }
        & input{
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          position: relative;
          height: 20px;
          width: 20px;
          flex:0 0 20px;
          border: 1px solid #131518;
          border-radius: 0;
          cursor: pointer;
          transition: all .15s ease 0s;
          overflow: hidden;
          &:checked{
            &:before{
              background:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%221.5%22%20stroke%3D%22currentColor%22%20class%3D%22size-6%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22m4.5%2012.75%206%206%209-13.5%22%20%2F%3E%3C%2Fsvg%3E
              );
              width:15px;
              height:15px;
              content: "";
              position: absolute;
              top:50%;
              transform: translateY(-50%) translateX(-50%);
              left:50%;
            }
          }
        }
      }
      & > ul{
        padding:0;
        list-style: none;
        & .mainPrice{
          font-size: 1.125rem;
          color: var(--brand-06);
          line-height: 1.35;
        }
        & .strikePrice{
          font-size: .8125rem;
          color: #767779;
          text-decoration: line-through;
          text-align-last: right;
          width:100%;
          display: block;
        }
      }
    }
  }
  &:hover{
    border: 1px solid #e5e5e5;
    box-shadow: 2px 0 4px 0 #efefef;
  }
  &:hover .del-product-box__bottom-wrapper{
    visibility:visible;
    opacity: 1;
  }
}


.del-plp-filters__buttons-wrapper{
  display: flex;
  padding:15px 0;
  & .btn-group{
    font-family: var(--Alef-font);

    & .dropdown-menu{
      display:none;
      top:100%;
      padding: 10px 0;
      background-color: #fff;
      min-width: 330px;
      border: 1px solid #efefef;
      border-radius: 4px;
      box-shadow: 1px 1px 4px 2px rgba(0,0,0,.07);
      z-index: 1;

      &.active{
        display:block;
      }
      & > .js-filter-label{
        padding: 15px;
        display: flex;
        align-items: center;
        gap:10px;
        & > input{
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          position: relative;
          height: 20px;
          width: 20px;
          border: 1px solid #131518;
          border-radius: 3px;
          cursor: pointer;
          transition: all .15s ease 0s;
          flex:0 0 20px;
          &:checked{
            &:before{
              background:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%221.5%22%20stroke%3D%22currentColor%22%20class%3D%22size-6%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22m4.5%2012.75%206%206%209-13.5%22%20%2F%3E%3C%2Fsvg%3E
              );
              width:15px;
              height:15px;
              content: "";
              position: absolute;
              top:50%;
              transform: translateY(-50%) translateX(-50%);
              left:50%;
            }
          }
        }
      }
    }
    & button{
      background: none;
      border:none;
      padding:0;
      font-weight: 700;
      display: flex;
      align-items: center;
      padding: 0 15px;
      border-right: 1px solid #efefef;
      font-size:15px;
      direction: ltr;
      &:after{
        background:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%221.5%22%20stroke%3D%22currentColor%22%20class%3D%22size-6%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22m19.5%208.25-7.5%207.5-7.5-7.5%22%20%2F%3E%3C%2Fsvg%3E
        );
        border:none;
        width: 18px;
        height: 18px;
        margin-left: 4px;
      }
    }
    &:last-child{
      margin-inline-start: auto;
      & .dropdown-menu{
        right:0px;
        left:auto;
        min-width:200px;
      }
      & button{
        padding:0;
        border:none;
      }
    }
  }
}

@media(max-width:1024px){
  .container{
    width:100%;
    max-width:100%;
  }
}






/**
* Checkout
*/
.woocommerce-checkout-container .woocommerce-checkout{
  max-width:1339px;
  margin-inline: auto;
  padding-inline: 20px;
}
#customer_details [class*="col"]{
  width:100%;
}
@media (min-width: 1025px) {
  .woocommerce-order-pay table.shop_table {
    float: left;
    width: calc(100% - 490px);
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
  }
  .woocommerce-order-pay #payment {
    float: left;
    width: 490px;
    padding-left: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
  }
}

@media (min-width: 992px) {
  .woocommerce-checkout .col2-set,
  .woocommerce-checkout .woocommerce-checkout-review-order,
  .woocommerce-checkout .checkout-content-form {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
  }
}

@media (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    width: 50%;
    padding-right: 10px;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
    width: 50%;
    padding-left: 10px;
  }
}

.woocommerce-checkout form.checkout::after {
  clear: both;
  content: '';
  display: block;
}

.woocommerce-checkout .col2-set {
  float: left;
  width: 59.6%;
  padding-right: 24px;
  @media(max-width:767px){
    width:100%;
    padding:0 !important;
    margin-block-end: 20px;
  }
}

.woocommerce-checkout .checkout-form-cols {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--em-color__dark);
}

.woocommerce-checkout .checkout-form-cols:after, .woocommerce-checkout .checkout-form-cols:before {
  display: none;
}

.woocommerce-checkout .checkout-form-cols .woocommerce-info {
  padding: 0 30px;
  margin-bottom: 0;
}

.woocommerce-checkout .checkout-form-cols .checkout-login .woocommerce-info {
  text-align: end;
  background-color: transparent;
  position: relative;
  color: var(--em-color__base);
  border-right: 1px solid var(--em-border-color);
}

.woocommerce-checkout .checkout-form-cols .checkout-login .woocommerce-form .form-row {
  position: relative;
}

.woocommerce-checkout .checkout-form-cols .checkout-login .woocommerce-form .show-password-input {
  top: 50%;
}

.woocommerce-checkout .checkout-form-cols .checkout-login .login {
  padding: 10px 30px 0 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.woocommerce-checkout .checkout-form-cols .checkout-login input.input-text {
  width: 100%;
}

.woocommerce-checkout .checkout-form-cols .checkout-login .button {
  margin-top: 18px;
  width: 100%;
}

.woocommerce-checkout .checkout-form-cols .checkout-login .lost_password a {
  position: relative;
  font-weight: 500;
}

.woocommerce-checkout .checkout-form-cols .checkout-login .lost_password a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--em-color__dark);
}

.woocommerce-checkout .checkout-form-cols .checkout-login + .checkout-coupon {
  width: 50%;
  text-align: left;
}

.woocommerce-checkout .checkout-form-cols .checkout-login + .checkout-coupon input.input-text {
  width: 100%;
}

.woocommerce-checkout .checkout-form-cols .checkout-login + .checkout-coupon .button {
  width: 100%;
}

.woocommerce-checkout .checkout-form-cols .checkout-login + .checkout-coupon .checkout_coupon {
  padding-left: 30px;
}

.woocommerce-checkout .checkout-form-cols .checkout-coupon {
  width: 100%;
  text-align: center;
}

.woocommerce-checkout .checkout-form-cols .checkout-coupon .woocommerce-info {
  color: var(--em-color__base);
  background-color: transparent;
}

.woocommerce-checkout .checkout-form-cols .checkout-coupon .checkout_coupon {
  padding: 10px 0 0 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.woocommerce-checkout .checkout-form-cols .checkout-coupon input.input-text {
  width: 50%;
}

.woocommerce-checkout .checkout-form-cols .checkout-coupon .button {
  width: 50%;
}

.woocommerce-checkout #order_review_heading {
  clear: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout .checkout-content-form {
  float: left;
  width: 40.3%;
  @media(max-width:767px){
    width: 100%;
  }
}

.woocommerce-checkout .checkout-content-form .woocommerce-checkout-review-order {
  float: none;
  width: 100%;
  position: unset;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  border: 1px solid #ebebeb;
  padding: 31px 31px 0;
  border-bottom: 0;
  width: 100%;
  @media(max-width:767px){
    padding:15px 10px;
  }
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below {
  margin-top: 15px;
}

.woocommerce-checkout .select2 .select2-selection--single {
  padding: 2px 15px;
  height: 44px;
}

.woocommerce-checkout .select2 .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 10px;
}

.woocommerce-order-received .woocommerce-customer-details .col2-set {
  float: none;
}

form.checkout {
  padding-top: 43px;
  padding-bottom: 43px;
  @media(max-width:767px){
    padding-block:20px;
  }
}

form.checkout h3 {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.4rem;
  line-height: 23px;
  margin-top: 0;
  margin-bottom: 20px;
}

form.checkout:after {
  clear: both;
  content: "";
  display: block;
}

form.checkout .form-row {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
}

form.checkout .form-row:last-child {
  margin: 0;
}

form.checkout .form-row.place-order{
  padding:0 !important;
}

form.checkout .form-row label {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
  top: -6px;
  background: #fff;
  padding-inline: 5px;
  opacity: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  position: absolute;
  right: 10px;
}

form.checkout .form-row .input-text {
  width: 100%;
  height: 3.0084em;
  transition: padding .3s;
  border: 1px solid #444443;
  min-height: 50px;
  border-radius: 2px;
  padding: 0 10px;

  padding-top: 11px;
  font-size: 14px;
  text-align: right;
}
form.checkout .form-row textarea.input-text {
  height:100px;
}

form.checkout .form-row input.woocommerce-form__input-checkbox {
  width: auto;
}

form.checkout .col-2 {
  padding: 0 31px 25px;
  border: 1px solid #ebebeb;
  padding-top: 20px;
  border-top: 0;
  width: 100% !important;
}

form.checkout .woocommerce-account-fields {
  padding: 24px 31px 0;
  border: 1px solid var(--em-border-color);
  border-top: 0;
  border-bottom: 0;
}

form.checkout .woocommerce-account-fields .create-account {
  margin: 0;
  padding-bottom: 15px;
}

form.checkout .woocommerce-account-fields .create-account label span {
  font-weight: 400;
}

form.checkout .woocommerce-additional-fields h3 {
  display: none;
}

form.checkout .woocommerce-additional-fields textarea {
  height: 120px;
}

form.checkout .woocommerce-shipping-fields h3 {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--em-color__base);
  padding: 24px 0 20px;
  margin: 0;
  border-top: 1px solid var(--em-border-color);
}

form.checkout .woocommerce-shipping-fields h3 label span {
  font-weight: 400;
}

form.checkout .woocommerce-shipping-fields .shipping_address {
  padding-bottom: 24px;
}

form.checkout .woocommerce-checkout-review-order {
  padding: 18px 30px 30px;
  color: #000;
  border: 1px solid #ebebeb;
  background-color: #fbfbfc;
}

form.checkout table.shop_table {
  border-collapse: collapse;
  margin: 0;
  border:none;
}

form.checkout table.shop_table thead th.product-total {
  text-indent: -9999em;
}

form.checkout table.shop_table tbody {
  border-bottom: 1px solid var(--em-border-color);
  padding-bottom: 20px;
}



form.checkout table.shop_table tbody td {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px 0;
  /*! border-bottom: none; */
}

form.checkout table.shop_table tbody td .variation p {
  margin: 0;
}

form.checkout table.shop_table tbody td.product-name {
  color: var(--em-color__dark);
  position: relative;
  padding: 10px 0 10px 65px;
}

form.checkout table.shop_table tbody td.product-name .product-quantity {
  display: none;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-image {
  display: inline-block;
  position: absolute;
  margin-right: 20px;
  top: 10px;
  left: 0;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-image img {
  max-width: 48px;
  width: 48px;
  border-radius: var(--em-image-rounded-product-card-small);
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-image .product-quantity {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--em-color__base);
  line-height: 1;
  min-height: 20px;
  min-width: 20px;
  padding: 0 .4em;
  background: #fff;
  border: 1px solid var(--em-border-color);
  border-radius: 1em;
  transform: translate(50%, -50%);
  white-space: nowrap;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-price {
  display: block;
  font-weight: 500;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-price ins {
  order: 1;
  background-color: transparent;
  color: var(--em-color-price-sale);
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-price del {
  order: 2;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-size: 0.75rem;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-price {
  display: block;
  font-weight: 500;
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-price ins {
  order: 1;
  background-color: transparent;
  color: var(--em-color-price-sale);
}

form.checkout table.shop_table tbody td.product-name .checkout-review-product-price del {
  order: 2;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-size: 0.75rem;
}

form.checkout table.shop_table tbody td.product-name dl.variation {
  margin-top: -20px;
}

form.checkout table.shop_table tbody td.product-total {
  width: 25%;
  text-align: end;
  font-weight: 500;
  vertical-align: top;
  padding-top: 10px;
  padding-bottom: 10px;
}

form.checkout table.shop_table tfoot .cart-subtotal {
  display: none;
}

form.checkout table.shop_table tfoot .cart-discount td {
  text-align: right;
}

form.checkout table.shop_table tfoot .woocommerce-shipping-methods {
  padding-top: 3px;
  padding-bottom: 0;
}

form.checkout .woocommerce-checkout-payment {
  padding: 0 30px;
  margin: 0 -30px;
  background: none !important;
  border-radius: 0 !important;
  border-top: 1px solid #ebebeb;
  @media(max-width:767px){
    padding: 0 0;
    margin: 0 -15px;
  }
}

form.checkout .woocommerce-checkout-payment .wc_payment_methods {
  padding:0 !important;
  & .woocommerce-info{
    margin:0;
  }
}

form.checkout .woocommerce-checkout-payment h4 {
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
}

form.checkout .woocommerce-checkout-payment ul.wc_payment_methods {
  list-style: none;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
}

form.checkout .woocommerce-checkout-payment ul.wc_payment_methods li {
  padding: 24px 0;
  border-bottom: 1px solid var(--em-border-color);
}

form.checkout .woocommerce-checkout-payment ul.wc_payment_methods li label:hover {
  cursor: pointer;
}

form.checkout .woocommerce-checkout-payment ul.wc_payment_methods .woocommerce-notice--info {
  background-color: transparent;
  color: var(--em-color__dark);
  padding: 0 0 20px;
  font-weight: 400;
}

form.checkout .woocommerce-checkout-payment ul.wc_payment_methods .payment_box p {
  margin-bottom: 0;
  margin-top: 18px;
  line-height: 22px;
}

form.checkout .woocommerce-checkout-payment .payment_box {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--em-color__base);
}

form.checkout .woocommerce-checkout-payment .button {
  width: 100%;
  background: #000;
  border-radius: 0;
  padding: 20px;
}

form.checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  margin-top: 23px;
}

form.checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper p {
  margin-bottom: 16px;
}

form.checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper p.validate-required {
  margin-bottom: 30px;
}

form.checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-checkbox-text {
  font-weight: 400;
  line-height: 20px;
}

form.checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22px;
}

form.checkout .woocommerce-checkout-payment .woocommerce-privacy-policy-text {
  color: var(--em-color__base);
}

form.checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-link {
  text-decoration: underline;
}

form.checkout .woocommerce-checkout-payment .woocommerce-privacy-policy-link {
  text-decoration: underline;
}

table.shop_table .woocommerce-shipping-totals {
  font-size: 16px;
  font-size: 1rem;
}

table.shop_table .woocommerce-shipping-totals th,
table.shop_table .woocommerce-shipping-totals td {
  border-bottom: none;
  padding-inline: 0;
}

table.shop_table .woocommerce-shipping-totals th {
  display: none;
}

table.shop_table .woocommerce-shipping-totals h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
}

table.shop_table .woocommerce-shipping-totals .woocommerce-Price-amount {
  font-weight: 500;
  color: var(--em-color__dark);
}

table.shop_table .woocommerce-shipping-totals .shipping-calculator-form {
  margin-top: 10px;
}

table.shop_table ul.woocommerce-shipping-methods {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

table.shop_table ul.woocommerce-shipping-methods li {
  padding-bottom: 0;
  margin:0px !important;
}

table.shop_table ul.woocommerce-shipping-methods label {
  font-size: 14px;
  font-size: 0.875rem;
}

table.shop_table ul.woocommerce-shipping-methods label:hover {
  cursor: pointer;
}

table.shop_table ul.woocommerce-shipping-methods label .woocommerce-Price-amount {
  float: right;
  margin-top: 3px;
}

table.shop_table .order-total {
  font-size: 16px;
  font-size: 1rem;
  border-top: 1px solid var(--em-border-color);
}

table.shop_table .order-total th {
  font-family: var(--em-heading-font);
}

table.shop_table .order-total th,
table.shop_table .order-total td {
  padding: 20px 0;
}

table.shop_table .order-total td {
  text-align: end;
}

table.shop_table .order-total ins {
  background-color: transparent;
  color: var(--em-color-price-sale);
}

table.shop_table .order-total del {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-size: 0.875rem;
}

table.shop_table .order-total .includes_tax {
  color: inherit;
}

table.shop_table tr:last-child th,
table.shop_table tr:last-child td {
  /*! border: none; */
  /*! border-bottom: none; */
  padding-inline: 0;
}

table.shop_table dl.variation {
  margin-top: 9px;
  margin-bottom: 0;
}

table.shop_table dl.variation dt {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--em-color__base);
  float: left;
  clear: both;
  margin-right: 0.25em;
  list-style: none outside;
  text-transform: capitalize;
  margin-bottom: 3px;
}

table.shop_table dl.variation dd {
  float: left;
  margin: 0 0 0 7px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
}

table.shop_table dl.variation dd p {
  margin: 0;
}

table.shop_table dl.variation:after {
  clear: both;
  content: "";
  display: block;
}

.woocommerce .woocommerce-thankyou-order-received {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.woocommerce .woocommerce-order-details .woocommerce-table__product-name {
  position: relative;
  padding-left: 0;
}

.woocommerce .woocommerce-order-details .woocommerce-table__product-name .product-thumbnail {
  float: left;
  margin-right: 10px;
}

.woocommerce .woocommerce-order-details .woocommerce-table__product-name .product-thumbnail img {
  max-width: 48px;
  border-radius: var(--em-image-rounded-product-card-small);
}

.woocommerce .woocommerce-order-details .woocommerce-table__product-name .product-title {
  padding-top: 5px;
  display: inline-block;
}

.woocommerce .woocommerce-order-details .woocommerce-table__product-name ul {
  padding: 0;
  margin: 0;
}

.woocommerce .woocommerce-order-details .woocommerce-table__product-name .preorder-my-account {
  padding-left: 56px;
}

.woocommerce .woocommerce-order-details__title {
  margin: 30px 0 10px;
}

.woocommerce .woocommerce-order-details__title,
.woocommerce .woocommerce-column__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.woocommerce-order-received .woocommerce .woocommerce-order {
  font-size: 14px;
  font-size: 0.875rem;
}

.woocommerce ul.order_details {
  border: 1px solid var(--em-border-color);
  display: flex;
  list-style: none;
  padding: 20px 30px 10px;
  color: var(--em-color__dark);
}

.woocommerce ul.order_details li {
  padding-right: 20px;
  flex: 1;
  margin-bottom: 10px;
}

.woocommerce ul.order_details strong {
  display: block;
  font-weight: 600;
  padding-top: 5px;
}

.woocommerce table.order_details th {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.woocommerce .woocommerce-customer-details :last-child {
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-columns {
  width: 100%;
}

.woocommerce .woocommerce-customer-details address {
  line-height: 1.8;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-top: 0;
  margin-bottom: 0;
}

.woocommerce .woocommerce-table--order-details thead th:last-child {
  text-align: right;
}

.woocommerce .woocommerce-table--order-details tbody td:last-child,
.woocommerce .woocommerce-table--order-details tfoot td:last-child {
  text-align: right;
}

.woocommerce .woocommerce-table--order-details .wc-item-meta {
  list-style-type: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.woocommerce .woocommerce-table--order-details .wc-item-meta li {
  display: flex;
  align-items: center;
}

.woocommerce .woocommerce-table--order-details .wc-item-meta p {
  margin: 0 0 0 5px;
}

.woocommerce .woocommerce-table--order-details .woocommerce-table__product-total {
  font-weight: 600;
  color: var(--em-color__dark);
}

.woocommerce .woocommerce-table--order-details tfoot .woocommerce-Price-amount {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--em-color__dark);
}

.woocommerce-order-pay:not(.product-image-uncropped) table.shop_table .product-thumbnail {
  display: flex;
  width: 100%;
  position: relative;
  width: 78px;
}

.woocommerce-order-pay:not(.product-image-uncropped) table.shop_table .product-thumbnail:before {
  content: '';
  width: 0;
  height: 0;
  display: block;
  padding-bottom: var(--product-image-ratio-percent);
}

.woocommerce-order-pay:not(.product-image-uncropped) table.shop_table .product-thumbnail img {
  display: block;
  max-width: 100%;
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.woocommerce-order-pay table.shop_table {
  margin: 0;
}

.woocommerce-order-pay table.shop_table thead tr th {
  font-size: 16px;
  font-size: 1rem;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--em-border-color);
}

.woocommerce-order-pay table.shop_table tbody tr td {
  padding-top: 18px;
  padding-bottom: 18px;
}

.woocommerce-order-pay table.shop_table .product-name {
  display: flex;
  align-items: center;
  gap: 24px;
}

.woocommerce-order-pay table.shop_table .product-name .wc-item-meta {
  flex: 1 0 auto;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.woocommerce-order-pay table.shop_table .product-name .wc-item-meta li {
  display: flex;
  align-items: center;
}

.woocommerce-order-pay table.shop_table .product-name .wc-item-meta p {
  margin: 0 0 0 5px;
}

.woocommerce-order-pay table.shop_table .product-thumbnail img {
  border-radius: var(--em-image-rounded-product-card-small);
}

.woocommerce-order-pay ul.wc_payment_methods {
  list-style: none;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 23px 0;
  padding: 0;
}

.woocommerce-order-pay ul.wc_payment_methods li {
  padding: 24px 0;
  border-bottom: 1px solid var(--em-border-color);
}

.woocommerce-order-pay ul.wc_payment_methods li label:hover {
  cursor: pointer;
}

.woocommerce-order-pay ul.wc_payment_methods li:first-child {
  padding-top: 8px;
}

.woocommerce-order-pay ul.wc_payment_methods .woocommerce-notice--info {
  background-color: transparent;
  color: var(--em-color__dark);
  padding: 0 0 20px;
  font-weight: 400;
}

.woocommerce-order-pay ul.wc_payment_methods .payment_box p {
  margin-bottom: 0;
  margin-top: 18px;
  line-height: 22px;
}

.woocommerce-order-pay #payment button {
  width: 100%;
}

.woocommerce-order-pay article > .woocommerce {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid var(--em-border-color);
  padding-bottom: 60px;
  margin-bottom: 45px;
}

.woocommerce-order-pay article > .woocommerce:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

.wp-block-woocommerce-checkout {
  color: var(--em-color__dark);
}

.wp-block-woocommerce-checkout h2 {
  font-weight: 600;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
  line-height: 30px;
  width: auto;
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=email], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=number], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=tel], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=text], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=url], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=email], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=number], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=tel], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=text], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=url],
.wp-block-woocommerce-checkout .wc-block-components-textarea {
  color: var(--em-color__dark);
  border-radius: var(--em-rounded-xs);
  border: 1px solid var(--em-input-border-color);
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=email]:focus, .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=number]:focus, .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=tel]:focus, .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=text]:focus, .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=url]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=email]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=number]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=tel]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=text]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=url]:focus,
.wp-block-woocommerce-checkout .wc-block-components-textarea:focus {
  border-color: var(--em-color__dark);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.wp-block-woocommerce-checkout .wc-block-cart-item__prices {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--em-color__dark);
  font-weight: 500;
}

.wp-block-woocommerce-checkout .wc-block-components-product-price__value.is-discounted {
  background-color: transparent;
  color: var(--em-color-price-sale);
}

.wp-block-woocommerce-checkout .wc-block-components-product-metadata__description {
  display: none;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  color: var(--em-color__dark);
  border: 1px solid var(--em-border-color);
  font-size: 11px;
  font-weight: 700;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout .wc-block-components-totals-item__value {
  font-weight: 500;
}

.wp-block-woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option-checked {
  font-weight: 400;
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input {
  border: none;
  min-height: auto;
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
  border: none;
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked::before {
  width: 20px;
  height: 20px;
  top: -2px;
  left: -1px;
  transform: none;
  border-color: var(--em-color__dark);
  background-color: var(--em-color__dark);
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
  outline: none;
}

.wp-block-woocommerce-checkout input.wc-block-components-checkbox__input[type=checkbox] {
  min-height: auto;
  height: auto;
  margin-top: 2px;
}

.wp-block-woocommerce-checkout input.wc-block-components-checkbox__input[type=checkbox]:before {
  top: 2px;
}

.wp-block-woocommerce-checkout input.wc-block-components-checkbox__input[type=checkbox]:after {
  top: 6px;
}

.wp-block-woocommerce-checkout input.wc-block-components-checkbox__input[type=checkbox] + .wc-block-components-checkbox__mark {
  display: none;
}

.wp-block-woocommerce-checkout .wc-block-components-checkbox label {
  align-items: center;
}

.wp-block-woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__label, .wp-block-woocommerce-checkout .wc-block-components-checkbox > span {
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 2px;
}

.wp-block-woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border-color: var(--em-border-color);
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wp-block-woocommerce-checkout .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: inset 0 0 0 1px var(--em-input-border-color);
}

.wp-block-woocommerce-checkout .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
  margin-bottom: 30px;
  padding-top: 30px;
}

.wp-block-woocommerce-checkout .is-large .wc-block-checkout__actions {
  padding-bottom: 0;
}

.wp-block-woocommerce-checkout .is-large .wp-block-woocommerce-checkout-order-summary-block {
  border-radius: 0;
  border-color: var(--em-border-color);
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar {
  background-color: #fbfbfc;
  padding-left: 0;
  margin-top: 0;
}

.wp-block-woocommerce-checkout .is-large .wc-block-components-sidebar .wc-block-components-panel, .wp-block-woocommerce-checkout .is-large .wc-block-components-sidebar .wc-block-components-totals-coupon, .wp-block-woocommerce-checkout .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
  padding-left: 30px;
  padding-right: 30px;
}

.wp-block-woocommerce-checkout .is-medium .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper:first-of-type,
.wp-block-woocommerce-checkout .is-small .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper:first-of-type,
.wp-block-woocommerce-checkout .is-mobile .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper:first-of-type {
  border-top: none;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
  padding-top: 0;
}

.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-checkout__form {
  border: 1px solid var(--em-border-color);
  padding: 18px 30px 30px;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  padding-right: 30px;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item .wc-block-components-totals-item__label {
  font-weight: 600;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__description {
  font-size: 12px;
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label, .wp-block-woocommerce-checkout .wc-block-components-text-input label {
  transform: translateY(1.4em);
}

.wp-block-woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
.wp-block-woocommerce-checkout .wc-block-components-address-card__edit {
  --em-button-color: #000000;
  --em-button-color-hover: var(--em-color__primary);
  --em-button-bg-color: transparent;
  --em-button-bg-color-hover: transparent;
  --em-button-padding-top: 0;
  --em-button-padding-right: 0;
  --em-button-padding-bottom: 3px;
  --em-button-padding-left: 0;
  --em-button-rounded: 0;
  --em-button-border-color: var(--em-button-color);
  --em-button-border-color-hover: var(--em-button-color-hover);
  border-width: 0 0 1px 0;
  text-decoration: underline;
}

.wp-block-woocommerce-checkout .wc-block-components-address-form__address_2-toggle:after,
.wp-block-woocommerce-checkout .wc-block-components-address-card__edit:after {
  display: none;
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input:-webkit-autofill, .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=email], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=number], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=password], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=tel], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=text], .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=url], .wp-block-woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill, .wp-block-woocommerce-checkout .wc-block-components-text-input.is-active input[type=email], .wp-block-woocommerce-checkout .wc-block-components-text-input.is-active input[type=number], .wp-block-woocommerce-checkout .wc-block-components-text-input.is-active input[type=password], .wp-block-woocommerce-checkout .wc-block-components-text-input.is-active input[type=tel], .wp-block-woocommerce-checkout .wc-block-components-text-input.is-active input[type=text], .wp-block-woocommerce-checkout .wc-block-components-text-input.is-active input[type=url],
.wp-block-woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select {
  padding-left: var(--em-input-padding-x);
  padding-right: var(--em-input-padding-x);
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label, .wp-block-woocommerce-checkout .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__label {
  left: var(--em-input-padding-x);
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-text-input label {
  top: -8px;
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
  margin-bottom: 30px;
}

.wp-block-woocommerce-checkout .wc-block-components-checkbox {
  margin-top: 30px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  border-radius: var(--em-image-rounded-product-card-small);
}

.wp-block-woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:focus {
  outline: none;
}

.wc-block-components-button:not(.is-link) {
  font-weight: 600;
}

.wp-block-woocommerce-checkout .wc-block-components-panel__button {
  font-weight: 600;
}

.wp-block-woocommerce-checkout .is-medium .wc-block-components-main .wc-block-checkout__form,
.wp-block-woocommerce-checkout .is-small .wc-block-components-main .wc-block-checkout__form,
.wp-block-woocommerce-checkout .is-mobile .wc-block-components-main .wc-block-checkout__form {
  padding: 15px;
}

.wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid var(--em-border-color);
}

.wp-block-button__link {
  font-size: var(--em-button-font-size);
  background-color: var(--em-button-bg-color);
  color: var(--em-button-color);
  border: 1px solid var(--em-button-border-color);
  padding: var(--em-button-padding-top) var(--em-button-padding-right) var(--em-button-padding-bottom) var(--em-button-padding-left);
  line-height: var(--em-button-line-height);
  border-radius: var(--em-button-rounded);
  font-weight: var(--em-button-font-weight);
  gap: var(--em-button-icon-spacing);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  cursor: pointer;
  vertical-align: middle;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.wp-block-button__link:hover, .wp-block-button__link:active {
  color: var(--em-button-color-hover);
  background-color: var(--em-button-bg-color-hover);
  border-color: var(--em-button-border-color-hover);
}

.wp-block-button__link:hover:after {
  animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}

.wp-block-button__link.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}

.wp-block-button__link .ecomus-svg-icon {
  font-size: var(--em-button-icon-size);
  /*rtl:raw:
  transform: rotateY(180deg);
  */
}

.wp-block-button__link.pswp__button::after {
  display: none;
}

.wp-block-button__link.loading {
  --em-loading-color: var(--em-button-color);
  --em-animation-state: running;
  position: relative;
  color: transparent;
}

.wp-block-button__link.loading::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: solid 2px var(--em-loading-color);
  border-top-color: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 0.6s linear infinite var(--em-animation-state);
}

.wp-block-button__link.loading:hover, .wp-block-button__link.loading:active {
  --em-loading-color: var(--em-button-color-hover);
}

.wp-block-button__link:after {
  background-image: linear-gradient(90deg, transparent, var(--em-button-eff-bg-color-hover, transparent), transparent);
  content: "";
  left: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skew(-20deg);
  width: 200%;
}

@media (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    width: 50% !important;
    padding-right: 0px !important;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
    width: 50%;
    padding-left: 10px;
  }
}



input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number]{
  -moz-appearance: textfield;
}

button.del-product-box__cta-add-to-cart.del-button.del-button--primary-blue.del-button--mid.dln-outline.js-cart-add {
  background-color: #266bbf;
  border-radius: 3px;
  /* padding: 12px 24px; */
  width: 100%;
  margin-top: 15px;
  height: 40px;
  margin-bottom: 10px;
  color: white;
  border: none;
}
.cart-notification {
    display: none;
    width: 100%;
    padding: 15px 0;
    background-color: #4CAF50;
    color: white;
    position: relative;
    z-index: 1000;
}

.cart-notification.error {
    background-color: #f44336;
}

.cart-notification .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-notification .message {
    margin: 0;
}

.cart-notification .view-cart-btn {
    background: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cart-notification .view-cart-btn:hover {
    opacity: 0.9;
}

.cart-notification .close-notification {
    background: none;
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu.active {
  display: block !important;
}

.megamenu {
  width: 100%;
  padding: 0;
}

.gridMenu {
  width: 100%;
}


.dropdown,
.btn-group {
  position: relative;
}
.header-cart {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  margin-top: 10px;
  margin-right: 10px;
}
.header-cart .cart-link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.header-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.breadcrumb-container {
  /* padding: 15px 0;
  background-color: #f8f8f8;
  margin-bottom: 30px; */
}

.woocommerce-breadcrumb {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.woocommerce-breadcrumb a {
  color: #333;
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
  color: #000;
  text-decoration: underline;
}

.woocommerce-breadcrumb .delimiter {
  margin: 0 10px;
  color: #999;
}