/** Shopify CDN: Minification failed

Line 641:0 Unexpected "{"

**/
.alert { text-align:center; }

/* Collections Listing */
.collection-item { 
  margin-bottom: 30px;
}
.collection-item .item_image {
  overflow: hidden;
  position: relative;
  border-radius: var(--border_radius);
}
.collection-item .item_image img {
  width: 100%;
}

.collection-item .item_image svg {
  width: 100%;
  height: 100%;
}

.collection-item .item-details {
  padding-top: 30px;
  position: relative;
  text-align: center;
}

.collection-item .item-details h4 {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
}
.collection-item .item-details h4 a:not(:hover) {
  color: inherit;
}

.collection-item a.shop-collection {
  background: var(--color_button_bg);
  color: var(--color_button);
  display: inline-block;
  line-height: 1em;
  padding: var(--button_padding);
  margin-top: 10px;
  border-radius: var(--border_radius);
}

.collection-item a.shop-collection:focus,
.collection-item a.shop-collection:hover {
  background: var(--color_button_bg_hover);
  color: var(--color_button_hover);
}

.collection-item.style-1 .item_image {
    border: 1px solid var(--color_accent);
  perspective: 50px;
}
.collection-item.style-1 a.shop-collection {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  height: 100%;
  letter-spacing: 0.25em;
  line-height: 1.25em;
  margin: 0;
  padding: 0;
  perspective: 100px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.collection-item.style-1 a.shop-collection span,
.collection-item.style-1 .product-count {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0;
  padding: 15px;
  text-align: center;
  visibility: hidden;
  width: 60px;
  border-radius: 50%;
  box-sizing: content-box;
  transition: 0.3s;
}
.collection-item.style-1 a.shop-collection span {
  background-color:var(--color_secondary);
  color: var(--color_button);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateZ(35px);
}

.collection-item.style-1 .product-count {
  color: var(--color_button_hover);
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  transform: translateZ(-35px);
}
.collection-item.style-1 .product-count:before {
  background: var(--color_button_bg_hover);
  content: "";
  height: 100%;
  opacity: 0.75;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  border-radius: inherit;
}
.collection-item.style-1 .product-count span {
  display: inline-block;
  font-size: var(--fontsize_H4);
  margin-bottom: -10px;
}

.collection-item.style-1:hover .product-count,
.collection-item.style-1:hover .item_image:hover a.shop-collection span {
  opacity: 1;
  visibility: visible;
}
.collection-item.style-1:hover .item_image:hover .product-count {
  opacity: 0;
  visibility: hidden;
}

.collection-item.style-1:hover .product-count,
.collection-item.style-1:hover .item_image:hover a.shop-collection span {
  transform: translateZ(0);
}
.collection-item.style-1:hover .item_image:hover a.shop-collection span:hover {
  background-color: var(--color_primary);
}

.collection-item.style-2 {
  display: grid;
}
.collection-item.style-2 > * {
  grid-area: 1/-1;
}
.collection-item.style-2 .item_image:before {
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-size: 100% 60%;
  content: "";
  display: inline !important;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
}

.collection-item.style-2:hover .item_image:before {
  background-size: 100% 100%;
}

.collection-item.style-2 .item_image img {
  height: 100%;
  object-fit: cover;
}

.collection-item.style-2 .item-details {
  align-self: end;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 30px;
  text-align: left;
}
.collection-item.style-2 .item-details h4 {
  color: inherit;
  font-size: var(--fontsize_H5);
  margin-bottom: 5px;
}
.collection-item.style-2 .item-details h4 a span {
  font-size: 13px;
  font-weight: var(--fontweight_body);
}
.collection-item.style-2 .item-details h4 a:focus,
.collection-item.style-2 .item-details h4 a:hover {
  color: var(--color_secondary);
}

.collection-item.style-2 .item-details .product-count {
  letter-spacing: 0.1em;
  margin-bottom: auto;
  text-transform: uppercase;
}

.collection-item.style-2 .item-details a.shop-collection {
  background: var(--color_button);
  color: var(--color_primary);
  font-family: var(--typo_heading);
  align-self: center;
  font-weight: 600;
  margin-top: auto;
  padding: 10px 35px 8px;
  border-radius: var(--border_radius);
  line-height: var(--lineheight_heading);
    text-align: center;
}

.collection-item.style-2 .item-details a.shop-collection:focus,
.collection-item.style-2 .item-details a.shop-collection:hover {
  background-color: var(--color_button_bg_hover);
  color: var(--color_button_hover);
}

.collection-item.style-2 .item-details > * {
  transition: 0.3s;
}
.collection-item.style-2 .item-details > *:first-child:nth-last-child(2) {
  transition-delay: 0.15s;
}

.collection-item.style-2 .item-details > *:last-child {
  margin-bottom: 0;
}
.collection-item.style-2 .item-details > *:nth-child(2):last-child {
  margin-bottom: -2em;
  opacity: 0;
  visibility: hidden;
}

.collection-item.style-2:hover .item-details > *:nth-child(2):last-child {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}
.collection-item.style-2:hover .item-details > *:first-child:nth-last-child(2) {
  transform: translateY(-8px);
}

/* Products Listing */
.kk-products {
  position: relative;
  display: block;
}

.row > *[class*="col"] > .kk-products,
.row > .kk-products[class*="col"] {
  margin-bottom: 1.5rem;
}

.kk-product-thumb-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
}

.kk-products .kk-product-thumb-wrap a.kk-product-image,
.kk-products .kk-product-thumb-wrap .kk-product-deal-timer {
  grid-area: 1/-1;
  padding-bottom: 1px;
}
.kk-products .kk-product-thumb-wrap a.kk-product-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #fff;
    width:100%;
    margin: 0px 0 -1px;
}
.kk-products:hover .kk-product-thumb-wrap .kk-product-deal-timer {
  opacity: 0;
  visibility: hidden;
}
.kk-products .kk-product-thumb-wrap .kk-product-deal-timer {
  align-self: end;
  text-align: center;
  transition: 0.3s;
}

.kk-products .kk-product-thumb-wrap .deal-time-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 5px;
}
.kk-products .kk-product-thumb-wrap .deal-time-wrapper > div {
  color: var(--color_primary);
  display: inline-flex;
  flex-wrap: wrap;
  flex: 1 1 50px;
  font-family: var(--typo_heading);
  line-height: 1.25;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 2px;
  min-width: 50px;
  max-width: 60px;
  padding: 2px;
  position: relative;
  text-align: center;
  z-index: 0;
  border-radius: var(--border_radius);
  aspect-ratio: 1; 
}
.kk-products .kk-product-thumb-wrap .deal-time-wrapper > div:before {
  background-color: var(--color_button_bg_hover);
  border: 1px dashed var(--color_button_border_hover);
  content: "";
  height: auto;
  margin: 1px;
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  z-index: -1;
  border-radius: inherit;
}

.kk-products .kk-product-thumb-wrap .deal-time-wrapper > div > span {
  display: block;
  font-family: var(--typo_body);
  font-size: 0.65em;
  flex: 1 1 100%;
}

.kk-products .kk-product-thumb-wrap a.kk-product-image,
.image-hover .img-wrp a {
  display: flex;
}

.kk-products .kk-product-thumb-wrap a.kk-product-image .kk-product-image-overlay {
  display: inline !important;
  height: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  visibility: hidden;
  width: auto;
  transition: 0.3s;
}

.kk-products:hover .kk-product-thumb-wrap a.kk-product-image .kk-product-image-overlay {
  opacity: 1;
  visibility: visible;
}

.kk-product-thumb-wrap img.secondary-image.lazyloaded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  opacity: 0;
  transition: var(--site_transition);
  -webkit-transition: var(--site_transition);
  -ms-transition: var(--site_transition);
  -moz-transition: var(--site_transition);
}

.kk-products:hover .kk-product-thumb-wrap img.secondary-image.lazyloaded {
  opacity: 1;
}

.kk-product-badge {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.kk-product-badge > * {
  max-width: 52px;
  padding: 6px 10px 5px;
  text-transform: uppercase;
  border-radius: 2px;  
}
.kk-product-badge > *:not(:first-child) {
  margin-top: 10px;
}

.kk-product-badge .kk-product-on-sale-badge,
.kk-product-badge .kk-product-discount-badge {
  background-color: #D12E2E;
}

.kk-product-badge .kk-product-new-badge {
  background-color: #0C8C6C;
}

.kk-products {
  display: block;
  position: relative;
}
.kk-products-inner {
  display: block;
  position: relative;
}

.kk-button-group {
  display: flex;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  visibility: hidden;
  z-index: 5;
  -webkit-transition: var(--site_transition);
  transition: var(--site_transition);
}

.kk-products:hover .kk-button-group {
  opacity: 1;
  visibility: visible;
}

.kk-button-group ul.kk-button-group-items {
  margin: auto;
  padding: 0;
}

.kk-button-group ul.kk-button-group-items li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  vertical-align: top;
}

.kk-button-group ul.kk-button-group-items li a {
  background: #fff;
  border: 1px solid #fff;
  color: var(--color_accent);
  display: grid;
  font-size: 1rem;
  height: 2.25em;
  pointer-events: auto;
  position: relative;
  width: 2.25em;
  border-radius: 50%;
  -webkit-transition: var(--site_transition);
  transitiion: var(--site_transition);
}

.kk-button-group ul.kk-button-group-items li a span.btn-text {
  background: var(--color_body_bg);
  color: var(--color_primary);
  content: "";
  font-size: 12px;
  font-weight: var(--fontweight_heading);
  line-height: 12px;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  text-transform: initial;
  visibility: hidden;
  white-space: nowrap;
  z-index: 9;
  -webkit-box-shadow: 4px 4px 8px rgb(0 0 0 / 30%);
  box-shadow: 4px 4px 8px rgb(0 0 0 / 30%);
  /* -webkit-text-shadow: 0 -1px 0 #000;
  text-shadow: 0 -1px 0 #000; */
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
}

.kk-button-group ul.kk-button-group-items li a:hover {
  background: var(--color_accent);
  border-color: var(--color_accent);
  color: #fff;
}

.kk-button-group ul.kk-button-group-items li a.is-loading:after {
  background-color: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.75);
  content: "\2688";
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  height: auto;
  margin: -2px;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  z-index: 1;
  border-radius: 50%;
  animation-name: is-loading;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes is-loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.kk-button-group ul.kk-button-group-items li a svg {
  display: inline-flex;
  fill: currentColor;
  margin: auto;
  -webkit-transition: var(--site_transition);
  transition: var(--site_transition);
}

.kk-button-group ul.kk-button-group-items li a:hover > span {
  display: inline-table;
  visibility: visible;
  opacity: 1;
}

.kk-button-group ul.kk-button-group-items li a span.btn-text:after {
  border: 6px solid transparent;
  border-top-color: var(--color_body_bg);
  content: "";
  height: 0;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  visibility: hidden;
  width: 0;
  z-index: 8;
  -webkit-transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.kk-button-group ul.kk-button-group-items li a:hover span.btn-text:after {
  visibility: visible;
  opacity: 1;
}

.kk-button-group ul.kk-button-group-items li a.js-grid-btn-add-to-cart svg,
.kk-button-group ul.kk-button-group-items li a.js-btn-wishlist svg {
  grid-area: 1/-1;
}

.kk-button-group ul.kk-button-group-items li a.js-grid-btn-add-to-cart svg.addon-active,
.kk-button-group ul.kk-button-group-items li a.js-btn-wishlist svg.addon-active,
.kk-button-group ul.kk-button-group-items li a.js-btn-wishlist.wishlist-added svg:not(.addon-active) {
  opacity: 0;
  visibility: hidden;
}

.kk-button-group ul.kk-button-group-items li a.js-btn-wishlist.wishlist-added svg.addon-active {
  opacity: 1;
  visibility: visible;
}

.kk-products[class*="vertical-btn-group"] .kk-button-group ul.kk-button-group-items li {
  display: block;
  margin: 5px;
}

.kk-products[class*="vertical-btn-group-right"] .kk-button-group ul.kk-button-group-items li a span.btn-text {
  bottom: 50%;
  left: auto;
  right: 100%;
  -webkit-transform: translate(-10%, 50%);
  transform: translate(-10%, 50%);
}

.kk-products[class*="vertical-btn-group-right"] .kk-button-group ul.kk-button-group-items li a span.btn-text:after {
  border-top-color: transparent;
  border-left-color: var(--color_body_bg);
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-1px, -50%);
  transform: translate(-1px, -50%);
}

.kk-products[class*="vertical-btn-group-right-top"] .kk-button-group {
  bottom: auto;
  left: auto;
  right: 0;
  top: 0;
}

.kk-products .kk-product-content {
  text-align: center;
  padding: 25px 0;
}

.kk-products .kk-product-content .kk-product-rating,
.kk-products .kk-product-content .kk-product-vendor,
.kk-products .kk-product-content .kk-product-button {
  margin: 12px 0;
}

{
  display: inline-block;
}

.kk-products .kk-product-content > *:first-child {
  margin-top: 0;
}

.kk-products .kk-product-content > *:last-child {
  margin-bottom: 0;
}

.kk-products .kk-product-content .kk-product-name {
  color: var(--color_primary);
  display: block;
  font-family: var(--typo_heading);
  font-size: var(--fontsize_H5);
  font-weight: var(--fontweight_heading);
  line-height: var(--lineheight_heading);
  margin-bottom: 10px;
  -webkit-transition: var(--site_transition);
  transition: var(--site_transition);
  /* text-transform: lowercase; */
}
.kk-products .kk-product-content .kk-product-name a:not(:focus):not(:hover) {
  color: inherit;
}

.kk-products .kk-product-content .product-price {
  color: var(--color_primary);
}

.kk-products .kk-product-content .product-price del {
  margin-right: 5px;
  opacity: 0.75;
}

.kk-products .kk-product-content .product-price ins {
  background: none;
  color: inherit;
  font-weight: 600;
}

.kk-products .kk-product-content a.kk-product-name:focus,
.kk-products .kk-product-content a.kk-product-name:hover {
  color: var(--color_secondary);
}

.kk-products .kk-product-content .product-price .sold-out {
  color: darkred;
}
.kk-products .kk-product-content .product-price:has(.sold-out) {
    visibility: visible !important;
    opacity: 1 !important;
}
.kk-products .kk-product-content .product-price:has(.sold-out)+.kk-product-button { display:none;}

.spr-badge .spr-badge-starrating {
  margin: 0;
}
.spr-badge .spr-badge-caption {
  display: none;
}

.kk-product-content .kk-product-vendor {
  font-size: var(--fontsize_body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kk-product-content .kk-product-vendor > a {
  color: var(--color_secondary);
}

.kk-product-content .kk-product-vendor > a:focus, 
.kk-product-content .kk-product-vendor > a:hover {
  color: var(--color_primary);
}

.kk-product-content .kk-product-button a.btn-textual {
    font-weight: 600;
    /* letter-spacing: 0.01em; */
    padding: 10px 15px;
    border: 1px solid var(--color_secondary);
    display:block;
    border-radius: var(--border_radius);
}

.kk-product-content .kk-product-button a.btn-textual[data-add*="Sold"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.kk-product-content .kk-product-button a.btn-textual:focus,
.kk-product-content .kk-product-button a.btn-textual:hover {
  color: var(--color_button_hover);
  box-shadow: 0 -45px 0 0 var(--color_secondary) inset;
}

.kk-product-content .kk-product-button a.btn-solid, 
.kk-product-content .kk-product-button a.btn-outline {
  display: inline-block;
  line-height: 1em;
  margin-top: 10px;
  padding: var(--button_padding);
  border-radius: var(--border_radius);
}

.kk-product-content .kk-product-button a.btn-solid {
  background-color: var(--color_button_bg);
  color: var(--color_button);
}

.kk-product-content .kk-product-button a.btn-outline {
  background-color: none;
  border: 2px solid currentcolor;
  color: var(--color_button_bg);
}

.kk-product-content .kk-product-button a.btn-solid:focus, 
.kk-product-content .kk-product-button a.btn-solid:hover {
  background-color: var(--color_button_bg_hover);
  border-color: transparent;
  color: var(--color_button_hover);
}

.kk-product-content .kk-product-button a.btn-outline:focus,
.kk-product-content .kk-product-button a.btn-outline:hover {
  background-color: var(--color_button_bg);
  border-color: transparent;
  color: var(--color_button);
}


/* Products Listing - Style-1 */
.style-1.kk-products {
  transition: 0.3s;
}

.row > [class*="col"] > .style-1.kk-products {
  /* margin-bottom: 50px; */
}

.style-1.kk-products .kk-product-thumb-wrap {
  border-radius: var(--border_radius);
 border: 1px solid var(--color_accent);
}

/* .style-1.kk-products .kk-product-thumb-wrap a.kk-product-image .kk-product-image-overlay {
  background-color: black;
  mix-blend-mode: soft-light;
} */

.style-1.kk-products .kk-product-content {
  display: grid;
  padding: 20px 20px 0;
  position: relative; 
  transition: 0.3s;
}

.style-1.kk-products .kk-product-content > div {
  margin: 8px 0;
}

.style-1.kk-products .kk-product-content > div:first-child {
  margin-top: 0;
}

.style-1.kk-products .kk-product-content .product-price {
  font-family: var(--typo_heading);
  font-size: var(--fontsize_H6);
  line-height: normal;
}

.style-1.kk-products .kk-product-content .product-price .price-text {
  display: none;
}

.style-1.kk-products .kk-product-content > .kk-product-vendor {
  order: -1;
}

.style-1.kk-products .kk-product-content .kk-product-name a:not(:focus):not(:hover),
.style-1.kk-products .kk-product-content .product-price {
  /* color: var(--color_accent); */
}
.style-1.kk-products .kk-product-content .kk-product-name a:hover,
.style-1.kk-products .kk-product-content .product-price:hover {
  color: var(--color_primary);
}

.style-1.kk-products .kk-button-group {
  margin-top: 25px;
}

.style-1.kk-products:hover .kk-button-group {
  margin-top: 10px;
}

.style-1.kk-products[class*="vertical-btn-group"] .kk-button-group ul.kk-button-group-items li {
  margin: 10px;
}

.style-1.kk-products .kk-button-group ul.kk-button-group-items li a {
  border-color: transparent;
  height: 35px;
  width: 35px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.style-1.kk-products .kk-button-group ul.kk-button-group-items li a:not(:hover) {
  background-color: transparent;
  color: var(--color_primary);
  box-shadow: none;
}

.style-1.kk-products .kk-button-group ul.kk-button-group-items li a:focus, 
.style-1.kk-products .kk-button-group ul.kk-button-group-items li a:hover {
  background-color: var(--color_secondary);
  color: var(--color_button);
  box-shadow: 0 3px 3px rgba(0,0,0,0.08);
  -webkit-transform: translate(-5px, 0);
  transform: translate(-5px, 0);
}

.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2) + .kk-product-button, 

.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2) + .kk-product-button, 

.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2) + .kk-product-button {
  grid-column-start: -1;
  align-self: center;
  margin-top: 0px;
  transition: 0.3s;
}

.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2) + .kk-product-button a.btn-textual,
.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2) + .kk-product-button a.btn-textual,
.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2) + .kk-product-button a.btn-textual {
  vertical-align: 6px;
}

.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2) + .kk-product-button {
  grid-row-start: 2; 
}

.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2) + .kk-product-button {
  grid-row-start: 3; 
}

.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2) + .kk-product-button {
  grid-row-start: 4;
}

.style-1.kk-products .kk-product-content:hover .product-price:nth-child(2):nth-last-child(2),
.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2) + .kk-product-button, 

.style-1.kk-products:hover .kk-product-content .product-price:nth-child(3):nth-last-child(2), 
.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2) + .kk-product-button, 

.style-1.kk-products .kk-product-content:hover .product-price:nth-child(4):nth-last-child(2), 
.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2) + .kk-product-button {
  opacity: 0;
  visibility: hidden;
}

.style-1.kk-products .kk-product-content .product-price:nth-child(2):nth-last-child(2),
.style-1.kk-products .kk-product-content:hover .product-price:nth-child(2):nth-last-child(2) + .kk-product-button,

.style-1.kk-products .kk-product-content .product-price:nth-child(3):nth-last-child(2),
.style-1.kk-products:hover .kk-product-content .product-price:nth-child(3):nth-last-child(2) + .kk-product-button,

.style-1.kk-products .kk-product-content .product-price:nth-child(4):nth-last-child(2),
.style-1.kk-products .kk-product-content:hover .product-price:nth-child(4):nth-last-child(2) + .kk-product-button {
  opacity: 1;
  visibility: visible;
}


/* Products Listing - Style-2 */
.style-2.kk-products {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 3px 3px 3px 0 rgba(0, 0, 0, 0.05);
}

.style-2.kk-products .kk-product-thumb-wrap a.kk-product-image .kk-product-image-overlay {
  background-color: black;
  mix-blend-mode: soft-light;
}

.style-2.kk-products .kk-product-content {
  padding: 20px;
}

.style-2.kk-products .kk-button-group {
  margin-top: 25px;
}

.style-2.kk-products:hover .kk-button-group {
  margin-top: 10px;
}

.style-2.kk-products .kk-button-group ul.kk-button-group-items li a {
  border-color: transparent;
  height: 35px;
  width: 35px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.style-2.kk-products .kk-button-group ul.kk-button-group-items li a:not(:hover) {
  background: rgba(255, 255, 255, 0.25);
}

.style-2.kk-products .kk-button-group ul.kk-button-group-items li a:hover {
  -webkit-transform: translate(-5px, 0);
  transform: translate(-5px, 0);
}

/* Products Listing - Style-3 */
.style-3.kk-products {
  transition: 0.3s;
}

.style-3.kk-products:hover {
  transform: translateY(-5px);
}

.style-3.kk-products .kk-product-thumb-wrap {
  box-shadow: -2px 0 3px 0 rgba(0, 0, 0, 0.06), 2px 0 3px 0 rgba(0, 0, 0, 0.06);
}

.style-3.kk-products .kk-product-content {
  box-shadow: 0 5px 0 0 var(--color_secondary) inset;
  transition: 0.3s;
}

.style-3.kk-products:hover .kk-product-content {
  box-shadow: 0 0 0 0 transparent inset, 0 5px 0 0 var(--color_secondary);
}

.style-3.kk-products:hover .kk-button-group {
  transform: translateY(-15px);
}

.style-3.kk-products .kk-button-group ul.kk-button-group-items {
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  padding: 4px 8px;
}

.style-3.kk-products .kk-button-group ul.kk-button-group-items li {
  margin: 0;
}

.style-3.kk-products .kk-button-group ul.kk-button-group-items li a {
  background: none;
  border-width: 0;
  color: var(--color_primary);
  height: 2em;
  width: 2em;
  border-radius: 0;
}

.style-3.kk-products .kk-button-group ul.kk-button-group-items li a:focus,
.style-3.kk-products .kk-button-group ul.kk-button-group-items li a:hover {
  color: var(--color_accent);
}

#shopify-section-product-template,
#shopify-section-product-tab,
#shopify-section-product-related {
  display: inline-block;
  width: 100%;
}

#shopify-section-product-template .section-1 {
  margin-right: 2%;
}

#shopify-section-product-template .section-2 {
  margin-left: 2%;
}

/* Product Single */
.product-gallery .slick-slider .slick-list {
  line-height: 0; 
}

.product-gallery__thumb {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}

/* .product-gallery__thumb .slick-list {
  height: auto !important;
} */
.product-gallery__thumb .slick-list .slick-track {
  /* transform: none !important; */
}

.product-gallery__thumb .slick-slide {
  position: relative;
  margin: 5px;
  cursor: pointer;
}

.product-gallery__thumb .slick-slide {
  line-height: 0;
}

.product-gallery__thumb .slick-slide .nav-item { 
  box-shadow: 0 0 2px 1px rgba(0,0,0,0.05);    
  transition: 0.3s; 
}
.product-gallery__thumb .slick-slide .nav-item img{ aspect-ratio:1/1; object-fit:cover; }

.product-gallery__thumb .slick-slide.slick-current .nav-item {
  box-shadow: 0 0 0 2px var(--color_secondary);
}

/* .product-gallery .product-gallery__thumb .slick-arrow {
  display: none !important;
} */
.product-gallery .product-gallery__thumb .slick-arrow {
    font-size: 0;
    width: 100%;
    padding: 0;
    border-radius: 3px;
}
.product-gallery .product-gallery__thumb .slick-arrow:after {
  font-size: 20px; 
  font-family: "Font Awesome 6 Free";
  width:fit-content;
  height:auto;
  display:inline-block;
}
.product-gallery .product-gallery__thumb .slick-arrow.slick-prev:after{
  content:"\f106";
}
.product-gallery .product-gallery__thumb .slick-arrow.slick-next:after{
  content:"\f107";
}
.product-gallery.slider-vertical-type {
  display: flex;
  align-items: start;
}

.product-gallery.slider-vertical-type .product-gallery__large-image {
  flex: 1 1 auto;
}

.product-gallery.slider-vertical-type .product-gallery__thumb {
  align-self: center;
  flex: 0 0 90px;
  order: -1;
  height: 100%;
  margin-top: 0;
  margin-right: 5px;
}
.product-gallery.slider-vertical-type .product-gallery__thumb .slick-list.draggable {
  max-height: 500px;
}

/* .product-gallery.slider-vertical-type .product-gallery__thumb .slick-list {
  height: auto !important; 
} */

.product-top-section .product-details.text-center .shopify-block .spr-starrating {
  justify-content: center !important;
}
.product-top-section .product-details.text-end .shopify-block .spr-starrating {
  justify-content: end !important;
}

.product-details .product-title {
  font-size: var(--fontsize_H3);
  font-weight: var(--fontweight_heading);
  margin-bottom: 15px;
}

.product-collection-title {
  font-family: var(--typo_body);
  font-size: var(--fontsize_H6);
  font-weight: var(--fontweight_body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-collection-title a {
  color: var(--color_secondary);  
}

.product-collection-title a:hover {
  color: var(--color_primary);
}

.product-collection-title + .product-title {
  margin-top: 15px;
}

.product-short-description {
  margin-bottom: 18px;
}

.product-details .product-price {
  color: var(--color_primary);
  display: block;
  font-family: var(--typo_heading);
  font-size: var(--fontsize_H5);
  font-weight: var(--fontweight_heading);
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 15px;
  margin-right: 20px;
}

.product-details .product-price del {
  margin-right: 6px;
  opacity: 0.35;
}

.product-details .product-price ins, .product-details .product-price .price:only-child {
  background: none;
  /* color: var(--color_accent); */
}

.product-details .shopify-app-block[data-block-handle="star_rating"] + .product-short-description, 
.product-details .product-price + .product-short-description {
  border-top: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  margin-top: 10px;
  padding: 20px 0 0;
  width: 100%;
}

.product-details .product-price,
.product-details .product-price + .shopify-app-block[data-block-handle="star_rating"] {
  display: inline-block;
  margin-bottom: 15px;
  vertical-align: middle;
}

.product-details .shopify-app-block[data-block-handle="star_rating"] {
  margin-bottom: 15px;
}

.shopify-product-form {
  display: inline-flex;
  padding-bottom: 0;
  flex-direction: column;
  width: 100%;
}

form.shopify-product-form fieldset {
  border-width: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  padding: 0;
}

.swatch {
  display: inline-grid;
  margin: 5px;
}
.swatch:not(.color-swatch)  {
  border: 1px solid var(--color_border);
  border-radius: var(--border_radius);
}
.swatch > input:checked + label,
.swatch:not(.color-swatch):hover {
  background-color: var(--color_button_bg);
  color: var(--color_button);
}
.swatch > input, .swatch > input + label {
  background-color: transparent;
  border: 1px solid rgba(0,0,0,0);
  grid-area: 1/-1;
  line-height: 1;
  padding: 10px 15px;
  border-radius: var(--border_radius);
  transition: 0.3s;
  font-style: normal;
  font-weight: var(--fontweight_heading);
  letter-spacing: 0.1em;
  font-size:14px;
}

.swatch.color-swatch > input, .swatch.color-swatch > input + label {
  height: 30px;
  line-height: normal;
  padding: 0;
  width: 30px;
  border-radius:30px;
}

.swatch > input {
  opacity: 0;
}

/* .swatch > input:checked + label {
  background-color: var(--color_button_bg_hover);
  border-color: var(--color_button_border_hover);
  box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
} */

.swatch.color-swatch {
  position: relative;
}
.swatch.color-swatch > input + label { 
  box-shadow: none;
}
.swatch.color-swatch > input + label:before {
  content: "";
  height: auto;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid currentColor;
  transition: 0.3s;
}

.swatch.color-swatch > input:checked + label {
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 0px 4px #fff;
}
.swatch.color-swatch > input:checked + label:before {
  opacity: 1; 
  margin: -2px;
}

.swatch input[disabled="disabled"] {
  cursor: no-drop;
}

.swatch input[disabled="disabled"] + label {
  opacity: 0.5;
}

form.shopify-product-form .selector-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -5px;
  margin-right: -5px;  
}

form.shopify-product-form .selector-wrapper > * {
  margin-left: 5px;
  margin-right: 5px;  
}

form.shopify-product-form .selector-wrapper > label {
  color: var(--color_primary);
  font-family: var(--typo_heading);
  font-weight: var(--fontweight_heading);
  text-transform: none;
  display: block;
  flex: 0 1 auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

form.shopify-product-form .selector-wrapper > fieldset {
  flex: 1 1 100%;
}

.product-qty-input > label {
  display: none;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1rem;
  min-width: 7rem;
  text-transform: uppercase;
}
.product-qty-input {
  margin: 0 15px 0 0;
  width: 85px;
}
.product-qty-input input[type="number"] {
  background-color: #fff;
  display: inline-block;
  min-height: 45px;
  max-height: 50px;
  outline: none;
  position: relative;
  pointer-events: auto;
  border-radius: 0;
}

.product-details form.shopify-product-form .product-buttons {
  display: inline-flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -5px;
  margin-right: -5px;
}

.product-details form.shopify-product-form .product-buttons > * {
  margin: 5px; 
}

.product-details form.shopify-product-form .product-buttons .js-product-add-to-cart-btn, 
.product-details form.shopify-product-form .product-buttons .js-product-shopify-payment-btn { 
  flex: 1 1 auto;
}
.product-details form.shopify-product-form .product-buttons .js-product-add-to-cart-btn:last-child {
  flex: 0 1 auto;
}

.product-details form.shopify-product-form .product-buttons .js-product-add-to-cart-btn {
  display: inline-grid;
  position: relative;
}
.product-details form.shopify-product-form .product-buttons .js-product-add-to-cart-btn > span {
  grid-area: 1/-1;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}

.product-buttons button span.js-product-btn-label {
  display: block !important;
}

.product-buttons button span.js-product-btn-label.hidden { 
  color: transparent;
}

.product-buttons button span.js-loading:after {
  background-color: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.75);
  content: "\2688";
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  height: 30px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 30px;
  z-index: 1;
  border-radius: 50%;
  animation-name: is-loading;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;  
}
.shopify-payment-button__button { height:auto !important; }
.shopify-payment-button__button--hidden {
  display: none !important;
}

.js-product-shopify-payment-btn .shopify-payment-button.sold-out button.shopify-payment-button__button {
  width: 100%;
}

.js-product-shopify-payment-btn .shopify-payment-button button {
  background: var(--color_secondary);
  border-color: transparent;
  color: var(--color_button);
  margin-top: 0;
  margin-bottom: 0;
}
.js-product-shopify-payment-btn .shopify-payment-button button:focus,
.js-product-shopify-payment-btn .shopify-payment-button button:hover {
  background: var(--color_button_bg_hover);
  border-color: var(--color_button_border_hover);
  color: var(--color_button_hover);
}

.spr-form-message-success {
    background-color: #d9ffd9;
    padding: 15px !important;
    text-align: center;
}
.shopify-block .spr-starrating {
  align-items: end;
  line-height: 1;
  margin-bottom: 0;
}

.shopify-block .spr-starrating a:not(:hover) {
  color: var(--color_primary);
}

.spr-starratings .spr-icon,
.spr-starrating .spr-icon {
  color: var(--color_accent);
}
.spr-starrating .spr-icon.spr-icon-star-empty, 
.spr-starrating .spr-icon.spr-icon-star-empty.spr-icon-star-hover {
  opacity: 1; 
}

.spr-starrating .spr-stars span,
.spr-starrating .spr-stars span path{
  color: var(--color_accent);
}
.spr-form .spr-form-title {
  font-size: var(--fontsize_H6);
}

fieldset[class*="spr-form-"] div > label {
  color: var(--color_primary);
  display: block;
  font-size: var(--fontsize_body);
  font-weight: var(--fontweight_body);
  margin-bottom: 6px;
}

ul.product-compare-wishlist {
  border-bottom: 1px solid rgba(0,0,0,0.15);    
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-left: -5px;
  margin-right: -5px;
  padding: 0 0 20px;
  width: 100%;
}

ul.product-compare-wishlist li {
  display: inherit;
  line-height: 1;
  margin: 10px 5px;
  padding-right: 10px;
  padding-bottom: 0;
  position: relative;
}

ul.product-compare-wishlist li a {
  display: inherit;
}
ul.product-compare-wishlist li a:not(:hover) {
  color: var(--color_primary);
}

ul.product-compare-wishlist li a svg {
  margin-right: 7px;
}

ul.product-compare-wishlist li:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background: #ddd;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

ul.product-compare-wishlist li:last-child {
  margin-right: 0;
  padding-right: 0;
}
ul.product-compare-wishlist li:last-child:after,
ul.product-compare-wishlist li:nth-child(3):nth-last-child(2):after {
  display: none;
}

ul.product-compare-wishlist li.contactform-message {
  flex: 1 1 100%;
}

ul.product-compare-wishlist li.contactform-message .alert {
  margin: 0;
}

.js-btn-compare.compare-added {
  color: var(--color_secondary);
}

ul.product-meta {
  border-top: 1px solid rgba(0,0,0,0.15);
  margin: 30px 0;
  padding: 20px 0 0;
}

ul.product-meta li {
  display: block;
  margin-bottom: 5px;
}

ul.product-meta li span.label, .product-share span {
  color: var(--color_primary);
  font-weight: var(--fontweight_heading);
}

ul.product-meta li span.value a:not(:hover) {
  color: inherit; 
}

ul.product-meta li span.label:after, .product-share span:after {
  content: ":";
  margin-right: 5px;
}

.product-share {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

ul.product-meta + .product-share {
  margin-top: 0; 
}

.product-share > span {
  display: none;
}

.product-share .a2a_default_style { 
  display: inline-flex; 
}
.product-share .a2a_default_style .a2a_dd {
  order: 1; 
}

.product-live-visitors, .product-sold-products, .product-stock-counter {
  display: inline-flex;
  margin: 10px 0;
}
.product-live-visitors { width: 100%; }
.product-sold-products {
  background-color: rgba(255,0,0,0.05);
  color: rgba(255,0,0,0.85);
  padding: 15px 25px;
  border-radius: var(--border_radius);
}

.product-live-visitors > i, .product-sold-products > i {
  line-height: inherit;
  margin-right: 10px; 
  position: relative;
  top: 0;
}
.product-live-visitors > i {
  color: var(--color_accent);
  top: 2px;
}

.product-live-visitors .live-visitors-wrapper #visitors_online,
.product-sold-products .sold-products-wrapper > strong {
  font-weight: var(--fontweight_heading);
}

.product-live-visitors .live-visitors-wrapper #visitors_online,
.product-live-visitors .live-visitors-wrapper .visitor_text > strong:first-child,
.product-stock-counter .stock-counter-wrapper .stock-left-message > span > strong {
  color: var(--color_secondary);
  font-weight: var(--fontweight_heading);
}

.product-stock-counter {
  width: 100%;
}
.product-stock-counter .stock-counter-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
}
.product-stock-counter .stock-counter-wrapper > * {
  flex: 1 1 320px;
}

.stock-counter-wrapper .stock-progress-bar {
  background-color: rgba(0,0,0,0.05);
  height: 5px;
  margin-top: 15px;
  position: relative;
  border-radius: var(--border_radius);
}

.stock-counter-wrapper .stock-progress-bar > span {
  background-color: var(--color_secondary);
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  border-radius: inherit;
}

.product-details .deal-title {
  font-family: var(--typo_heading);
  margin-top: 15px;
  margin-bottom: 15px;
}
.product-details .deal-title span {
  color: darkred;    
  font-weight: var(--fontweight_heading);
  margin-right: 6px;
}
.product-details .deal-time-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 0;
  width: 100%;
}

.product-details .deal-time-wrapper > div {
  color: var(--color_secondary);
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: var(--typo_heading);
  font-size: 22px;
  font-weight: 600;
  height: 85px;
  line-height: normal;
  margin: 5px;
  position: relative;
  text-align: center;
  width: 85px;
  border-radius: 50%;
}
.product-details .deal-time-wrapper > div > span {
  color: var(--color_text);
  display: block;
  font-family: var(--typo_body);    
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  margin-top: 2px;  
  padding: 3px 0;
  position: relative;
  width: 100%;
}
.product-details .deal-time-wrapper > div > span:before {
  background-color: currentColor;
  content: "";
  height: 1px;
  margin: auto;
  opacity: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 35px;    
}

.product-details .deal-time-wrapper > div:after {
  border-color: var(--color_text);
  border-style: dashed;
  border-width: 1px;
  background-color: var(--color_button_bg_hover);
  content: "";
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 0 0 3px var(--color_body_bg) inset;
}

.product-details .deal-time-wrapper:hover > div:after { 
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}

.product-details .deal-time-wrapper:hover > div:nth-child(2n):after { 
  animation-direction: alternate-reverse;
}  

.product-details .deal-time-wrapper:hover > div:nth-child(3):nth-last-child(2) {
  animation-duration: 6000ms;
}

.product-details .deal-time-wrapper:hover > div:nth-child(2):nth-last-child(3) {
  animation-duration: 7000ms;
} 

.product-details .deal-time-wrapper:hover > div:nth-child(1):nth-last-child(4) {
  animation-duration: 8000ms;
}  

@-webkit-keyframes spin {
  from { -webkit-transform:rotate(0deg); }
  to { -webkit-transform:rotate(360deg); }
}

@keyframes spin {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

.product-details .js-product-deal-timer + .product-meta {
  margin-top: 10px;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close{
  background: none !important;
  color: var(--color_body_bg) !important;  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  height: 1.5em;
  margin: 0;
  opacity: 0.75;
  padding: 0 !important;
  left: 100%;
  right: auto !important;
  text-align: center !important;
  width: 1.5em !important;
}
.mfp-image-holder .mfp-close:hover, .mfp-iframe-holder .mfp-close:hover {
  opacity: 1;
}

button.mfp-close, button.mfp-arrow {
  background: none !important;  
}

.template-product.mfp-zoom-out-cur .mfp-gallery .mfp-image-holder .mfp-arrow {
  margin-top: -54px; 
}


/* Ask a Question   */
#popup-question-model {
  background-color: var(--color_body_bg);
  margin: 0 auto;
  max-width: 600px;
  padding: 30px;
  position: relative;
  border-radius: var(--border_radius);    
}

#popup-question-model .question-title,
#popup-question-model form > *:not(:last-child) {
  margin-bottom: 15px; 
}

#popup-question-model .question-title {
  color: var(--color_primary);
  font-family: var(--typo_heading);
  font-size: var(--fontsize_H6);
  line-height: var(--lineheight_heading);
}

#popup-question-model .question-title i {
  color: var(--color_primary);
  line-height: inherit;
  margin-right: 8px;
  position: relative; 
  top: -1px
}

#popup-question-model .question-title span {
  font-weight: var(--fontweight_body);    
}

#popup-question-model .question-title span span {
  font-weight: var(--fontweight_heading);    
}

#popup-question-model .mfp-close {
  background: none;
  color: var(--color_primary);
  font-size: var(--fontsize_H5);
  height: 1.5em;
  line-height: 1.5em;
  margin: 0;
  opacity: 1;
  padding: 0;
  width: 1.5em;
}

#popup-question-model .mfp-close:focus,
#popup-question-model .mfp-close:hover {
  opacity: 0.65;    
}


/* Description Tab */
.product-tab-section {
  padding-top: 50px;
}

.product-tab-section > .container > .row {
  margin-left: 0;
  margin-right: 0;
}

.product-tab-section .js-product-tabs-nav {
  border-bottom-width: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-top: -10px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  text-align: center;
}
.product-tab-section .js-product-tabs-nav:before {
  border-color: rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0 0 1px;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9999px;
  transform: translateX(-50%);
}

.product-tab-section .js-product-tabs-content {
  margin: 0 auto;
  max-width: 1100px;
  padding: 50px 0 0;
}

.product-tab-section .js-product-tabs-nav div[class*="tab-menu-"] {
  background-color: transparent;
  cursor: pointer;
  font-family: var(--typo_heading);
  font-size: var(--fontsize_H4);
  line-height: var(--lineheight_heading);
  font-weight: var(--fontweight_heading);
  letter-spacing: 0;
  margin: 0 40px;
  opacity: 0.75;
  padding: 30px 0;
  position: relative;
  text-transform: none;
  transition: 0.3s;
}

.product-tab-section .js-product-tabs-nav div[class*="tab-menu-"]:after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--color_secondary);
  margin: 0 auto;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: var(--site_transition);
  transition: var(--site_transition);
}

.product-tab-section .js-product-tabs-nav div[class*="tab-menu-"]:hover:after,
.product-tab-section .js-product-tabs-nav div.active:after {
  left: 0;
  right: auto;
  width: 100%;
}

.product-tab-section .js-product-tabs-nav div[class*="tab-menu-"]:hover,
.product-tab-section .js-product-tabs-nav div.active {
  color: var(--color_primary);
  opacity: 1;
}

.product-tab-section .js-product-tabs-content .tab {
  display: none;
}

.product-tab-section .js-product-tabs-content .tab.active {
  display: block;
}

.product-tab-section #shopify-product-reviews { margin-top: 0; }
.product-tab-section #shopify-product-reviews .spr-container {
  border-width: 0 0 1px;
  padding: 0 0 35px;
}

.product-tab-section #shopify-product-reviews .spr-container, 
.product-tab-section #shopify-product-reviews .spr-container .spr-review {
  border-color: rgba(0,0,0,0.1);  
}

.spr-review-header .spr-review-header-title {
  margin: 12px 0;
}

.spr-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.spr-summary span.spr-starrating.spr-summary-starrating {
  display: inline-block;
  font-size: 13px;
  margin-right: 10px;
}
.spr-summary .spr-summary-caption {
  margin-right: auto;
  padding-right: 20px;
}

.spr-summary span.spr-summary-actions a {
  box-shadow: 0 -2px 0 0 var(--color_secondary) inset;
}
.spr-summary span.spr-summary-actions a:focus,
.spr-summary span.spr-summary-actions a:hover {
  color: var(--color_primary);
  box-shadow: 0 -12px 0 0 var(--color_secondary) inset;
}

.spr-review-reportreview {
  text-decoration: underline;
  text-decoration-skip-ink: none;  
}


.product-tab-section .js-product-tabs-content .tab {
  line-height: 24px;
}

.product-recommendations-section h5 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.related-products .row.slick-slider, .related-products .slick-slide {
  margin: 0;
}

.js-compare-link.js-visible {
  visibility: visible;
}


/* Widgets */
.kk-widgets {
  padding: 0 0 30px;
  margin-bottom:30px;
  position: relative;
}

.kk-widgets:after {
  background-image: linear-gradient(90deg, var(--color_secondary), rgba(0,0,0,0.01));
  content: "";
  display: inline-block;
  height: 2px;
  opacity: 0.65;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.kk-widgets .widget-title {
  font-size: calc(var(--fontsize_H5) + 2px);
  margin: 0 0 20px;
  position: relative;
}
.kk-widgets:last-child {
  border-width: 0;
}
.kk-widgets:last-child:after {
  opacity: 0;
  visibility: hidden; 
}

.kk-widgets li {
  margin-bottom: 15px;
  display: block;
}

.kk-widgets li:last-child {
  margin: 0;
}


.kk-widgets li::marker {
  content: "";
}

.widget-content > ul {
  margin: 0;
  padding: 0;
}

.widget-content ul li {
  position: relative;
  padding-bottom: 0;
  padding-left: 15px;
}

.widget-content ul li:hover:before {
  color: var(--color_accent);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.widget-content ul li a {
  display: block;
  color: var(--color_text);
}
/* 
.widget-content ul li:hover,
.widget-content ul li a:hover {
  color: var(--color_secondary);
} */

.kk-product-category-widget .widget-content ul li,
.kk-product-vendor-widget .widget-content ul li,
.kk-product-type-widget .widget-content ul li,
.kk-product-tags-widget .widget-content ul li {
  padding-left: 0;
}

.kk-product-category-widget .widget-content ul li:before,
.kk-product-vendor-widget .widget-content ul li:before,
.kk-product-type-widget .widget-content ul li:before,
.kk-product-tags-widget .widget-content ul li:before {
  content: none !important;
}

.kk-product-vendor-widget .widget-content ul li a,
.kk-product-type-widget .widget-content ul li a {
  display: inline-flex;
  position: relative;
  padding-left: 30px;
}

.kk-product-category-widget .widget-content ul li { margin:0;}
.kk-product-category-widget .widget-content ul li a {
  display: flex;
  padding: 10px 15px 10px 30px;
  transition:.3s all linear;
  border-radius: 0 30px 30px 0;
  line-height:normal;
}
.kk-product-category-widget .widget-content ul li a span {
    margin-left: auto;
    padding-left: 10px;
    opacity: 0;
    visibility: none;
    right: 10px;
    position: relative;
    transition: .3s all linear;
}
.kk-product-category-widget .widget-content ul li a:hover span,
.kk-product-category-widget .widget-content ul li.active a span {
  opacity:1;
  visibility:visible;
  right:0;
}
.kk-product-category-widget .widget-content ul li a:hover,
.kk-product-category-widget .widget-content ul li.active a {
  box-shadow: 5px 0px 5px 0px #bbbbbb;
  background: linear-gradient(-45deg, var(--color_accent), transparent);
}

.kk-product-category-widget .widget-content ul li a:before{
  content: '';
  width: 25px;
  height: 15px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 15px;
  position: absolute;
  background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 457.794"><path fill="%23311300" fill-rule="nonzero" d="M3.927 436.902c14.186-15.021 19.168-37.317 24.042-59.143 8.005-35.841 15.776-70.623 58.144-84.547l.643-.189c13.481-4.211 27.167-4.733 40.71-1.579.36-1.188 1.348-2.427 2.096-3.409l66.041-88.941a11.888 11.888 0 015.4-4.072L441.671 13.441l.546-.388c17.83-13.66 34.269-15.405 46.72-10.689a35.025 35.025 0 0114.349 10.128c3.657 4.308 6.259 9.49 7.625 15.079 3.074 12.566-.196 27.149-11.928 38.168L283.317 288.89a11.904 11.904 0 01-4.956 3.095c-.263.168-.534.326-.813.475-18.296 9.774-31.236 15.44-43.128 20.646-16.813 7.363-31.455 13.775-56.011 29.791a8.316 8.316 0 01-1.634.843c2.326 17.346-1.952 33.604-10.363 47.962-11.902 20.318-32.24 36.627-53.376 46.401-17.22 7.972-35.852 12.687-53.584 15.516-17.352 2.768-33.799 3.715-47.111 4.168-11.387.357-16.463-13.606-8.414-20.885z"/><path fill="%23C9C7CD" d="M139.236 295.058l60.17-81.033c.329.297.676.58 1.044.844 25.953 18.71 47.926 43.269 63.593 71.168l.006.011c-37.121 19.03-51.655 20.702-89.997 45.429l-.242-.769c-5.591-17.299-17.56-28.896-34.574-35.65z"/><path fill="%23A4A0B1" d="M151.061 300.957c-3.619-2.246-8.097-4.318-11.818-5.936l59.058-82.138c.62.733 1.336 1.401 2.149 1.986a217.744 217.744 0 017.91 5.982l-57.299 80.106z"/><path fill="%23E37C5D" d="M274.697 280.599c-16.616-29.727-39.637-55.504-67.268-75.426L448.885 22.998c40.172-31.403 66.263 11.992 41.479 34.45L274.697 280.599z"/><path fill="%23CC5E3B" d="M217.652 212.979a233.219 233.219 0 00-10.222-7.806L448.884 22.998c14.177-11.082 26.596-12.841 35.648-9.501l-266.88 199.482z"/><path fill="%23F9D98C" d="M11.965 445.801c40.086-41.262 15.674-120.772 77.849-141.206a66.604 66.604 0 0130.25-2.44 66.71 66.71 0 0122.969 7.946 43.555 43.555 0 0115.312 15.115 47.295 47.295 0 014.082 9.147c13.164 40.909-19.255 76.617-54.403 92.872-32.286 14.948-70.217 17.727-96.059 18.607v-.041z"/><path fill="%23FFAB45" d="M11.966 445.801c40.086-41.261 15.673-120.772 77.849-141.206a66.6 66.6 0 0130.25-2.44 66.677 66.677 0 0116.746 4.834c-8.906 12.529-22.123 20.299-38.41 25.457-27.286 8.639-39.301 29.041-45.677 55.993-8.456 35.738-9.084 41.727-18.182 56.128-8.148.681-15.78 1.044-22.578 1.275l.002-.041z"/></svg>');
}

.kk-product-vendor-widget .widget-content ul li a:before,
.kk-product-type-widget .widget-content ul li a:before {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  content: "\2713";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 0;
  height: 1.34em;
  position: absolute;
  left: 0;
  top: 4px;
  width: 1.34em;
  -webkit-text-fill-color: transparent;
  border-radius: 3px;
  box-shadow: 0 0 0 0 var(--color_accent), 0 0 0 0 var(--color_accent) inset;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  -webkit-animation: none !important;
  animation: none !important;
  transition: 0.3s;
}

.kk-product-vendor-widget .widget-content ul li:hover a:before,
.kk-product-vendor-widget .widget-content ul li.active a:before,
.kk-product-vendor-widget .widget-content ul li a:focus:before,
.kk-product-vendor-widget .widget-content ul li a:hover:before,
.kk-product-type-widget .widget-content ul li:hover a:before,
.kk-product-type-widget .widget-content ul li.active a:before,
.kk-product-type-widget .widget-content ul li a:focus:before,
.kk-product-type-widget .widget-content ul li a:hover:before {
  border-color: var(--color_button);
  box-shadow: 0 0 0 1px var(--color_accent), 0 0 0 0.65em var(--color_accent) inset;
}

.kk-product-vendor-widget .widget-content ul li.active a:before,
.kk-product-type-widget .widget-content ul li.active a:before {
  color: var(--color_primary);
  -webkit-text-fill-color: currentcolor;
}

.kk-menu-widget .widget-content ul li a span.menu-item-label { display: none; }

/* Widget - Tags */
.kk-widgets.kk-blog-tags-widget ul{
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.kk-widgets.kk-blog-tags-widget li { 
  display: inline-flex;
  margin: 5px;
  padding: 0;     
}
.kk-widgets.kk-blog-tags-widget li:before { 
  content: none; 
}
.kk-widgets.kk-blog-tags-widget li a {
  background-color: var(--color_button_bg_hover);
  border: 1px solid var(--color_button_border_hover);
  color: var(--color_button_hover);
  display: inline-block;
  font-size: 0.8em;
  padding: 3px 12px;
  border-radius: var(--border_radius);
}
.kk-widgets.kk-blog-tags-widget li a:focus,
.kk-widgets.kk-blog-tags-widget li a:hover,
.kk-widgets.kk-blog-tags-widget li.active a {
  background: var(--color_button_bg);
  border-color: var(--color_button_border);
  color: var(--color_button);
}

.kk-product-tags-widget .widget-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.kk-product-tags-widget .widget-content ul li {
  display: inline-flex;
  margin: 5px;
  padding: 0;   
}
.kk-product-tags-widget .widget-content ul li:before {
  content: none; 
}

.kk-product-tags-widget .widget-content ul li a {
  background-color: var(--color_button_bg_hover);
  border: 1px solid var(--color_button_border_hover);
  color: var(--color_button_hover);
  display: inline-block;
  font-size: 0.8em;
  padding: 3px 12px;
  border-radius: var(--border_radius);
}

.kk-product-tags-widget .widget-content ul li a:focus,
.kk-product-tags-widget .widget-content ul li a:hover,
.kk-product-tags-widget .widget-content ul li.active a {
  background: var(--color_button_bg);
  border-color: var(--color_button_border);
  color: var(--color_button);
}

/* Widget - Recent Posts */
.kk-widgets .kk-article-widget-card {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 15px;
  position: relative;
}

.kk-widgets .kk-article-widget-card .blog-meta {
  font-size: 14px;
  font-weight: 600;
}

.kk-widgets .kk-article-widget-card:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.kk-widgets .kk-article-widget-card .kk-article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.kk-widgets .kk-article-widget-card .blog-title {
  font-size: 18px;
  margin: 0;
  text-transform: none;
}

/* Widget -Price Filter  */
.ui-slider.ui-slider-horizontal {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15) !important;
  display: inline-block;
  height: 4px;
  margin: 15px 0;
  width: calc(100% - 15px);
  border-radius: 0;
}

.ui-slider.ui-slider-horizontal .ui-slider-range {
  background-color: var(--color_secondary);
  height: inherit;
  opacity: 0.75;
  top: -1px;
}

#kk-price-range-widget #js-range-amount {
  display: inline-block;
  letter-spacing: 0.05em;
  width: 100%;
}

.ui-slider.ui-slider-horizontal .ui-slider-handle {
  background-color: var(--breadcrumb_bg_color);
  border-width: 0;
  cursor: pointer;
  margin-left: 0;
  top: 50%;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(-50%);
}

.ui-slider.ui-slider-horizontal .ui-slider-handle:nth-last-child(2):not(.ui-state-active) {
  margin-left: -1px;
}

.ui-slider.ui-slider-horizontal .ui-slider-handle:last-child:not(.ui-state-active) {
  margin-left: 0;
}

/* Widget - Search Form */
.kk-widgets.kk-search-widget form {
  position: relative;
  width: 100%;
}

.kk-widgets.kk-search-widget form input[type="search"] {
  padding: 10px 55px 10px 15px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
}

.kk-widgets.kk-search-widget form button {
  background: none;
  border-width: 0;
  color: var(--color_primary);
  height: calc(100% - 6px);
  margin: 3px;
  overflow: hidden;
  padding: 0 12px;
  position: absolute;
  right: 0;
  top: 0;
}

.kk-widgets.kk-search-widget form button:focus,
.kk-widgets.kk-search-widget form button:hover {
  color: var(--color_secondary);
}


.kk-widgets.kk-search-widget form button svg {
  position: relative;
  width: 15px;
  z-index: 1;
}

/* Widget - Products */
.kk-widgets.kk-products-widget .kk-product-widget {
  border-bottom: 1px dashed rgba(0,0,0,0.15);
  display: flex;
  padding: 15px 0;
}

.kk-widgets.kk-products-widget .kk-product-widget:first-child {
  padding-top: 0;
}

.kk-widgets.kk-products-widget .kk-product-widget:last-child {
  border-width: 0;
  padding-bottom: 0;
}

.kk-widgets.kk-products-widget .kk-product-widget .kk-product-thumb-wrap {
  max-width: 75px;
}

.kk-widgets.kk-products-widget .kk-product-widget .kk-product-content {
  flex: 1;
  padding: 10px;
}

.kk-widgets.kk-products-widget
  .kk-product-widget
  .kk-product-content
  .pro-details-rating-wrap {
  font-size: 0.8em;
  margin: 5px 0;
}

.kk-widgets.kk-products-widget
  .kk-product-widget
  .kk-product-content
  a.product-name {
  font-family: var(--typo_heading);
  font-size: 1em;
  font-weight: 600;
}

.kk-widgets.kk-products-widget
  .kk-product-widget
  .kk-product-content
  a.product-name:not(:hover) {
  color: var(--color_primary);
}

.kk-widgets.kk-products-widget .kk-product-widget span.spr-badge-caption {
  display: none;
}

/* Widget - carousel */
.kk-widgets.kk-best-sellers-widget .slick-list {
  height: auto !important;
  padding: 1px;
}
.kk-widgets.kk-best-sellers-widget button[class*=slick-] {
  bottom: 0;
  top: auto !important;
  transform: none !important;
}

/* Slider - Dot Pagination */
.kk-widgets.kk-best-sellers-widget .slick-slider .slick-dots { text-align: center; margin: 35px 0 0; padding: 0; position: relative; }
.kk-widgets.kk-best-sellers-widget .slick-slider .slick-dots li { display: inline-block; padding: 0; margin: 0; }
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0;
  margin: 0 3px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid transparent;
}
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li button:before {
  background-color: transparent;
  border: 1px solid currentColor;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.kk-widgets.kk-best-sellers-widget .js-section-slider ul.slick-dots button,
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li button {
  border-color: transparent;
  color: var(--color_primary);    
}
.kk-widgets.kk-best-sellers-widget .js-section-slider ul.slick-dots li:hover button,   
.kk-widgets.kk-best-sellers-widget .js-section-slider ul.slick-dots li.slick-active button,
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li:hover button, 
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li.slick-active button {
  border-color: currentColor;
}

.kk-widgets.kk-best-sellers-widget .js-section-slider ul.slick-dots li:hover button:before,   
.kk-widgets.kk-best-sellers-widget .js-section-slider ul.slick-dots li.slick-active button:before,
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li:hover button:before, 
.kk-widgets.kk-best-sellers-widget .slick-slider.slick-dotted .slick-dots li.slick-active button:before {
  background-color: currentColor;
  border-color: transparent;
}


/* Collection - Header-Bar */
.category-heading {
  margin-bottom: 25px;
}

.category-heading .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.category-heading .row > * {
  padding-top: 5px;
  padding-bottom: 5px;
}

.category-heading .row .col-left {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.category-heading p {
  font-size: var(--fontsize_body);
  margin: 8px 0;
  text-align: center;
}

.collection-sortby {
  margin: 0 -6px;
}
.collection-sortby select {
  font-size: var(--fontsize_body);
  height: 36px;
  margin: 0 5px;
  min-width: 180px;
  padding-top: 0;
  padding-bottom: 0;
  width: auto;
}

.collection-sortby label {
  font-size: var(--fontsize_body);
  font-weight: 600;
  margin: 6px;
}

.category-heading .view-controller span.js-collection-col-view {
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 32px;
  position: relative;
  width: 32px;
  vertical-align: top;
  transition: 0.3s;
}

.category-heading .view-controller span.js-collection-col-view svg {
  fill: currentcolor;
}

.category-heading .view-controller span.js-collection-col-view:not(.active) {
  opacity: 0.6;
}
.category-heading .view-controller span.js-collection-col-view.active {
  color: var(--color_primary);
}

.pagination-wrap ul.pagination-list {
  margin-top: 30px;
  padding: 0;
  text-align: center;
}

.pagination-wrap ul.pagination-list li {
  display: inline-block;
  padding: 0;
}

.pagination-wrap ul.pagination-list li a,
.pagination-wrap ul.pagination-list li span {
  border: 1px solid transparent;
  color: var(--color_primary);
  cursor: pointer;
  display: inline-block;
  line-height: 48px;
  margin: 0 2px;
  min-height: 48px;
  text-align: center;
  min-width: 48px;
  border-radius: 50%;
  -webkit-transition: var(--site_transition);
  transition: var(--site_transition);
}

.pagination-wrap ul.pagination-list li span.pagination-current-item,
.pagination-wrap ul.pagination-list li a:hover {
  border-color: currentcolor;
}

.pagination-wrap ul.pagination-list li.pagination-previous-item svg {
  font-size: 0.875em;
  position: relative;
  top: -2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);  
}

.pagination-wrap ul.pagination-list li.pagination-next-item svg {
  font-size: 0.875em;
  position: relative;
  top: -2px;
}

/* Slick Slider - Carousel */
 .slick-dots{ margin:0; padding:0;}
.slick-slider {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 0;  
}

.slick-list {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
  left: 0;
}

.slick-track:before,
.slick-track:after {
  /* display: table; */
  content: none;
}

/* .slick-track:after {
  clear: both;
} */

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
  background-color: var(--color_body_bg);
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Challenge Page */
.shopify-challenge__button {
  margin-top: 20px !important;
}

/* Empty Cart Page */
.cart-section .empty-cart {
    text-align: center;
    margin: 70px 0;
}

.cart-section .empty-cart h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.cart-section .empty-cart p a.button {
    /* background: transparent;
    color: var(--color_accent);
    padding: 0 0 3px;
    text-transform: none;
    border-radius: 0;
    box-shadow: 0 -2px 0 0 var(--color_accent) inset; */
}

.cart-section .empty-cart p a.button:focus,
.cart-section .empty-cart p a.button:hover {
    /* color: var(--color_primary); */
    /* box-shadow: 0 -12px 0 0 var(--color_accent) inset; */
}

/* Cart Page - Table & Form */
.template-cart form.cart {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}

.cart-section form.cart table {
  margin: 0 auto;
}

.cart-section form.cart table thead,
.cart-section form.cart table tbody {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cart-section form.cart table tfoot td {
  padding-left: 0;
  padding-right: 0;
}

.cart-section form.cart table th,
.cart-section form.cart table td {
  border-width: 0;
  text-align: left;
  vertical-align: middle;
}

.cart-section form.cart table th {
  color: var(--color_primary);
  font-family: var(--typo_heading);
  font-size: 0.85em;
  font-weight: 500;
  line-height: var(--lineheight_heading);  
  padding: 10px 15px;
  text-transform: uppercase;
}

.cart-section form.cart table tr.cart-item {
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 0 0 1px;
  padding-right: 35px;
  position: relative;
}

.cart-section form.cart table tr.cart-item td {
  font-size: 0.875em;
  padding: 15px;
  max-width: 110px;
  width: 110px;  
}


.cart-section form.cart table tr.cart-item td.cart-item__details {
  width: 40%;
}

.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__details__inner {
  display: flex; 
  flex-wrap: wrap;
  align-items: center;
}
.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__details__inner > * {
  padding: 10px;
}

.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__media {
  display: inline-flex;
  align-self: start;
}

.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__media img {
  max-width: 75px;
}
.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__media svg {
    min-width: 75px;
    min-height: 75px;
}

.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__name__details {
  flex: 1 1 150px;
}

.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__name__details p {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  margin-bottom: 0; 
  width: 100%;
}
.cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__name {
  font-family: var(--typo_heading);
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
.cart-section form.cart table tr.cart-item td.cart-item__details small {
  width: 100%;
}
.cart-section form.cart table tr.cart-item td.cart-item__details a.cart-item__remove {
  color: #b22222;
  display: inline-flex;
  align-items: center;
  font-size: 1em;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translatey(-50%);
}
.cart-section form.cart table tr.cart-item td.cart-item__details a.cart-item__remove:hover{
  font-size: 1.5em;
}
/* .cart-section form.cart table tr.cart-item td.cart-item__details a.cart-item__remove:before {
  content: "\2573";
  display: block;
  font-size: 0.75em;
  position: absolute;
  left: 0;
  text-indent: 0;
} */

.cart-section form.cart table tr.cart-item td.cart-item__prices,
.cart-section form.cart table tr.cart-item td.cart-item__totals {
  font-weight: bold;
}

.cart-section td.cart-item__quantity input[type="number"] {
  /* display: inline-block; */
  /* float: left; */
  background-color: var(--color_body_bg);
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 50px;
  margin: 0 20px 0 0;
  outline: 0;
  padding: 0 10px 0 15px;
  pointer-events: auto;
  position: relative;
  width: 90px;
  border-radius: 0;
}

.cart-bottom {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
  margin-left: -10px;
  margin-right: -10px;
}

.cart-bottom > * {
  padding: 10px; 
}

.cart-section form .cart-note {
  flex: 1 1 100%; 
}

.cart-bottom .cart-totals {
  flex: 1 1 auto;
}

.cart-bottom .cart-totals p {
  margin-bottom: 0; 
}

.cart-note textarea {
  border-color: #ddd;
  display: block;
  height: 150px;
  margin-top: 15px;
  outline: none;
  width: 100%;
}

.cart-bottom label {
  color: var(--color_primary);
  display: block;
  font-family: var(--typo_heading);
  font-size: 1em;
  font-weight: 500;
  margin: 0 0 10px;
}
.cart-bottom .cart-totals label {
  display: inline-block;
  margin-right: 10px;
}

.cart-totals p span.money {
  color: var(--color_accent);
  font-size: var(--fontsize_H4);
  font-weight: 600;
}

.cart-bottom .buttons {
  margin: 0 -5px;
}

.cart-section form .cart-table-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.cart-section form .buttons .button {
  margin: 5px;
  text-decoration: none;
}
.cart-section form .buttons .button + .button:not(:hover) {
  background-color: var(--color_secondary);
  border-color: transparent;
}

.cart-section form .buttons a:focus, .cart-section form .buttons a:hover {
  background-color: var(--color_button_bg_hover);
  color: var(--color_button_hover);
}
.cart-section form .buttons button[type="submit"]:focus, .cart-section form .buttons button[type="submit"]:hover {
  background-color: var(--color_button_bg_hover);
  color: var(--color_button_hover);
}

#checkout-main > form button[type="submit"] {
  letter-spacing: 0.1em;
  padding: 11px 30px 10px;
  text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
  .cart-section form.cart table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cart-section form.cart table thead {
    display: none; 
  }
  .cart-section form.cart table tbody {
    border-width: 0;
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 100%;
    margin: 0 -10px;
  }
  .cart-section form.cart table tbody tr.cart-item {
    border-width: 1px;
    display: inline-grid;
    justify-items: center;
    flex: 1 1 auto;
    min-width: 200px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 10px 20px;
  }
  .cart-section form.cart table tbody tr.cart-item td {
    border-width: 0;
    min-width: 100%;
    text-align: center;
    width: 100% !important;
  }
  .cart-section form.cart table tbody tr.cart-item td:not(.cart-item__totals) {
    max-width: 100px;
  }  
  .cart-section form.cart table tbody tr.cart-item td:not(:last-child) {
    padding-bottom: 0; 
  }

  .cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__details__inner {
    flex-direction: column;
    justify-content: center;
  }
  .cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__media {
    display: block;
    align-self: center;
  }
  .cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__media img {
    max-width: 100%; 
  }
  .cart-section form.cart table tr.cart-item td.cart-item__details .cart-item__name__details {
    flex: auto; 
  }
  .cart-section form.cart table tbody tr.cart-item td.cart-item__prices {
    padding-top: 0 !important;
  }
  .cart-section form.cart table tr.cart-item td.cart-item__quantity input {
    margin-left: auto;
    margin-right: auto;
  }
  .cart-section form.cart table tbody tr.cart-item td.cart-item__totals {
    background: rgba(0,0,0,0.05);
    color: var(--color_primary);
    margin-top: 15px; 
  }

  .cart-section form.cart table tfoot td {
    border-width: 0; 
  }
  .cart-section form .cart-table-buttons, .cart-section form .cart-bottom {
    justify-content: center; 
  }
  .cart-bottom label,  .cart-bottom .cart-totals, .cart-bottom .buttons {
    text-align: center; 
  }
}

/* Compare Popup */
.js-compare-modal,
.js-quickview-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /*display: none;*/
  overflow: hidden;
  outline: 0;
  background-color: rgba(35, 35, 35, 0.8);
}

.js-compare-modal .modal-overlay {
  background: var(--color_body_bg);
  margin: 1rem auto;
  max-width: 1000px;
  padding-bottom: 25px;
  position: relative;
  top: 50vh;
  width: 90vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.js-compare-modal .modal-header.compare-modal-header {
  flex-wrap: wrap;
  justify-content: start;
  padding: 10px 60px 10px 25px;
  position: sticky;
  left: 0;
  top: 0;
  text-align: center;
  z-index: 1;
}

.js-compare-modal .modal-title.compare-modal-title {
  color: var(--color_primary);
  font-family: var(--typo_heading);
  font-size: 1em;
  font-weight: var(--fontweight_heading);
  letter-spacing: 0;
  margin-right: auto;
  padding-right: 25px;
  text-transform: uppercase;
}

.js-compare-modal button.compare-remove-all {
  background: none !important;
  border-color: transparent;
  color: inherit;
  font-size: 0.875em;
  font-weight: var(--fontweight_additional);
  margin: 0;
  padding: 0;
}
.js-compare-modal button.compare-remove-all:hover {
  opacity: 0.75;
}

.js-compare-modal .modal-overlay a.js-compare-close-link {
  top: 22px !important;
}

.js-compare-modal button.modal-close,
.js-quickview-modal button.modal-close,
.js-compare-modal .modal-overlay a.js-compare-close-link {
  background: none;
  border-width: 0;
  color: var(--color_primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  height: 30px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 5px;
  text-indent: -9999px;
  width: 30px;
  z-index: 2;
}

.js-compare-modal button.modal-close:before,
.js-quickview-modal button.modal-close:before {
  content: "\2573";
  text-indent: 0;
}

.js-compare-modal button.modal-close:hover,
.js-quickview-modal button.modal-close:hover,
.js-compare-modal .modal-overlay a.js-compare-close-link:hover {
  color: var(--color_accent);
}

.js-quickview-modal button.modal-close {
  right: 12px;
  top: 2px;
}

.js-compare-modal .modal-body {
  border-top: 1px solid rgba(0,0,0,0.01);
  background-color: rgba(0, 0, 0, 0.025);
  margin: 0 25px;
  max-height: 80vh;
  overflow: auto;
  padding: 0;
  box-shadow: 0 -1px 0 0 #ddd, 1px 0 0 0 #ddd, -1px 0 0 0 #ddd, 0 1px 0 0 #ddd;
}

.js-compare-modal .modal-body-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  margin-left: 0;
}

.js-compare-modal .modal-body-section .modal-body-header,
.js-compare-modal .modal-body-section ul.modal-body-data li {
  border-color: #ddd;
  border-style: solid;
  border-width: 0 1px 1px 0;
  letter-spacing: 0.025em;
  line-height: var(--lineheight_heading);
}
.js-compare-modal .modal-body-section:last-child .modal-body-header,
.js-compare-modal .modal-body-section:last-child ul.modal-body-data li {
  border-bottom-width: 0;
}

.js-compare-modal .modal-body-section .modal-body-header {
  color: var(--color_primary);
  font-family: var(--typo_body);
  font-size: 14px;
  font-weight: 500;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 135px;
  flex: 0 0 135px;
  max-width: 135px;
  letter-spacing: 0;
  line-height: var(--lineheight_heading);
  padding: 15px 20px;
  position: sticky;
  left: 0;
  text-transform: uppercase;
  z-index: 1;
  display: flex;
  align-items: center;
}

.js-compare-modal .modal-body-section .modal-body-header:before {
  background: var(--color_body_bg);
  content: "";
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  margin: 0;
  z-index: -1;
}
.js-compare-modal .modal-body-section:first-child .modal-body-header:before {
  margin-top: 1px;
}

.js-compare-modal .modal-body-data-wrp {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 135px);
  flex: 0 0 calc(100% - 135px);
  max-width: calc(100% - 135px);
}

.js-compare-modal ul.modal-body-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.js-compare-modal ul.modal-body-data li {
  background-color: var(--color_body_bg);
  -webkit-box-flex: 0;
  -ms-flex: 1;
  flex: 1;
  min-width: 165px;
  padding: 15px 20px;
  text-align: center;
   font-size: 14px;
}

.js-compare-modal ul.modal-body-data li::marker {
  content: "";
}

.js-compare-modal ul.modal-body-data li .image img,
.js-compare-modal ul.modal-body-data li .image svg {
  height: 100%;
  margin-bottom: 15px;
  max-width: 100px;
  width: 100%;
}

.js-compare-modal ul.modal-body-data li .image+a {
  font-family: var(--typo_heading);
}

.js-compare-modal ul.modal-body-data li .price del {
  margin-right: 8px; 
}
.js-compare-modal ul.modal-body-data li .price ins {
  background: none;
  color: inherit;
}

.js-compare-modal ul.modal-body-data li .spr-badge-starrating {
  display: inline-flex;
  margin: 0;
}
.js-compare-modal ul.modal-body-data li .spr-badge-caption {
  display: none;
}
.js-compare-modal ul.modal-body-data li > p:last-child {
  margin-bottom: 0; 
}

/* Quickview */
.js-quickview-modal .modal-overlay {
  background: var(--color_body_bg);
  margin: 1rem auto;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  top: 50vh;
  width: 90vw;
  border-radius: var(--border_radius);     
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.js-quickview-modal .modal-body.js-quickview-modal-body {
  margin: 0;
  max-height: 90vh;
  overflow: auto;
  padding: 30px;
}

.js-quickview-modal .js-quickview-modal-body>.container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; 
}
.js-quickview-modal .js-quickview-modal-body>.container ul.product-meta { border-top-width: 0; margin: 0; padding: 0; }
.js-quickview-modal .js-quickview-modal-body>.container .product-details .product-title { margin-top: 0; }
.js-quickview-modal-body .product-gallery {
  position: relative;
}

.js-quickview-modal-body .product-gallery .product-gallery__large-image:before {
  background-image: linear-gradient(0deg, var(--color_body_bg), transparent);
  content: "";
  height: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  transition: 0.3s;
}

.js-quickview-modal-body .product-gallery:hover .product-gallery__large-image:before {
  height: 35%;
}

.js-quickview-modal-body .product-gallery .product-gallery__thumb {
  margin: 0;
  opacity: 0;
  padding: 15px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  z-index: 1;
  transform: translateY(25px);
  transition: 0.3s;
}

.js-quickview-modal-body .product-gallery:hover .product-gallery__thumb {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);  
}

.js-quickview-modal-body .product-gallery .slick-slider .slick-list {
  height: auto !important;
}

@media only screen and (max-width: 575px) {
  .js-quickview-modal .js-quickview-modal-body .product-details .product-short-description {
    display: flex;
    line-height: 1.5em;
    max-height: 4.5em;
    overflow: hidden;
  }

  .js-quickview-modal .js-quickview-modal-body .product-details .product-short-description:after {
    content: "...";
    font-weight: 600;
    display: inline-block;
    align-self: end;
  }
}

/* Wishlist */
.wishlist-page.no-result {
  text-align: center;
}

#js-page-wishlist .wishlist-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 30px;
}

#js-page-wishlist .kk-products .kk-product-inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#js-page-wishlist .kk-products .kk-product-thumb-wrap {
  flex: 0;
  margin: 15px;
  min-width: 100px;
}
#js-page-wishlist .kk-products .kk-product-content {
  flex: 1;
  padding: 15px;
  text-align: start;
}
#js-page-wishlist .kk-products .kk-product-content > * {
  align-self: center;
}

#js-page-wishlist .kk-products .kk-product-inner a.js-btn-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  height: 1.5em;
  overflow: hidden;
  position: absolute;
  right: 10px;
  top: 15px;
  text-align: center;
  width: 1.5em;
  border-radius: 50%;
}
#js-page-wishlist .kk-products .kk-product-inner a.js-btn-wishlist:before {
  content: "\2573";
  font-size: 14px;
  text-indent: 0;
}

/* Wishlist - Style #1 */
#js-page-wishlist .kk-products.list-wide {
  margin-bottom: 0;
  width: 100%;
}
#js-page-wishlist .kk-products.list-wide .kk-product-inner {
  border-color: rgba(0, 0, 0, 0.15);
  border-style: solid;
  border-width: 0 0 1px;
  padding-right: 45px;
}
#js-page-wishlist .kk-products.list-wide:last-child .kk-product-inner {
    border: none;
}
#js-page-wishlist .kk-products.list-wide:first-child .kk-product-inner {
  border-width: 1px 0;
}
#js-page-wishlist .kk-products.list-wide .kk-product-inner > * {
  padding: 10px 0;
}

#js-page-wishlist .kk-products.list-wide .kk-product-thumb-wrap {
  margin: 0;
  position: static;
}
#js-page-wishlist .kk-products.list-wide .kk-product-inner a.js-btn-wishlist {
  min-height: 120px;
  right: 15px;
  top: 10px;
  width: 35px;
}
#js-page-wishlist .kk-products.list-wide .kk-product-inner a.js-btn-wishlist:hover,
#js-page-wishlist .kk-products.list-wide:hover .kk-product-inner a.js-btn-wishlist {
  opacity: 1;
  visibility: visible;
}
#js-page-wishlist .kk-products.list-wide .kk-product-inner a.js-btn-wishlist:hover,
#js-page-wishlist .kk-products.list-wide:hover .kk-product-inner a.js-btn-wishlist:hover {
  transform: rotate(90deg);
}

#js-page-wishlist .kk-products.list-wide .kk-product-content {
  display: inline-flex;
  flex-wrap: wrap;
  flex: 1 1 250px;
  justify-content: space-between;
  padding: 10px 0;
}
#js-page-wishlist .kk-products.list-wide .kk-product-image,
#js-page-wishlist .kk-products.list-wide .kk-product-content > * {
  margin: 10px;
}
#js-page-wishlist .kk-products.list-wide .kk-product-content .kk-product-name {
  flex: 1 1 250px;
  max-width: 100%;
}
#js-page-wishlist .kk-products.list-wide .kk-product-content .product-price {
  min-width: 120px;
}

/* Wishlist - Style #2 */
#js-page-wishlist .kk-products.split-grid .kk-product-inner {
  border-color: rgba(0, 0, 0, 0.15);
  border-style: solid;
  border-width: 1px;
  align-items: center;
}
#js-page-wishlist .kk-products.split-grid .kk-product-inner > * {
  padding: 0;
}

#js-page-wishlist .kk-products.split-grid .kk-product-thumb-wrap {
  flex: 1 1 0;
  margin: 0;
  position: static;
}
#js-page-wishlist .kk-products.split-grid .kk-product-inner a.js-btn-wishlist {
  height: 30px;
  right: 5px;
  top: 5px;
  width: 30px;
  border-radius: 50%;
  box-shadow: 0 0 50px #ccc;
  background-color: #fff;
}
#js-page-wishlist .kk-products.split-grid .kk-product-inner a.js-btn-wishlist > svg {
  fill: #b22222;
}
#js-page-wishlist
  .kk-products.split-grid
  .kk-product-inner
  a.js-btn-wishlist:before {
  font-size: 12px;
}

#js-page-wishlist
  .kk-products.split-grid
  .kk-product-inner
  a.js-btn-wishlist:hover,
#js-page-wishlist
  .kk-products.split-grid:hover
  .kk-product-inner
  a.js-btn-wishlist {
  opacity: 1;
  visibility: visible;
}

#js-page-wishlist
  .kk-products.split-grid
  .kk-product-inner
  a.js-btn-wishlist:hover,
#js-page-wishlist
  .kk-products.split-grid:hover
  .kk-product-inner
  a.js-btn-wishlist:hover {
  transform: rotate(90deg);
}

#js-page-wishlist .kk-products.split-grid .kk-product-content {
  flex: 1 1 210px;
  padding: 10px 30px 10px 10px;
}
#js-page-wishlist .kk-products.split-grid .kk-product-content > * {
  margin: 10px;
}
#js-page-wishlist .kk-products.split-grid .kk-product-content .kk-product-name {
  font-size: 1.1em;
  flex: 1 1 100%;
}

/* Account */
body[class*="template-customers"] div[id*="customer"] > .container > div[id*="form-wrapper"] {
  background-color: var(--color_body_bg);
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  padding: 30px;  
  box-shadow: 0 0 2px 0 rgba(0,0,0,0.15);
}

.template-customers-login div#customer-login h2,
.template-customers-register #customer-register h2,
.template-customers-reset_password #customers-reset-pwd h2 {
  font-size: var(--fontsize_H4);
  margin-top: 0;
  margin-bottom: 20px;
}
.template-customers-register #customer-register h2 {
  margin-top: -6px;
}

.template-customers-register #customer-register .errors{ margin-bottom:20px;}

.template-customers-login div#customer-login h2,
.template-customers-reset_password #customers-reset-pwd h2 {
  margin-top: -5px;
  margin-bottom: 10px;
}

.template-customers-login div#customer-login h2 i {
  font-style: normal;
  font-weight: 100;
}

.template-customers-login div#customer-login h2 a:not(:hover) {
  color: rgba(0,0,0,0.25);
}

.template-customers-login div#customer-login form#customer_login form,
.template-customers-register #customer-register form#create_customer form {
  border-color: rgba(0,0,0,0.05);
  border-style: solid;
  border-width: 1px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.template-customers-login div#customer-login label,
.template-customers-register #customer-register form#create_customer label,
.template-customers-reset_password #customers-reset-pwd form label {
  color: var(--color_primary);
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.template-customers-login div#customer-login #login-form-wrapper {
  padding-top: 35px;
  padding-bottom: 20px;
}
.template-customers-login div#customer-login form#customer_login {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.template-customers-login div#customer-login form#customer_login p,
.template-customers-login div#customer-login form#customer_login div.errors,
.template-customers-login div#customer-login form#customer_login div.form-sucess {
  margin: 10px;
}
.template-customers-login div#customer-login form#customer_login div.errors ul {
  margin: 0;
  padding: 0;
}

.template-customers-login div#customer-login form#customer_login p {
  flex: 1 1 100%;  
}
.template-customers-login div#customer-login form#customer_login p.forgot_pwd {
  align-self: center;  
}
.template-customers-login div#customer-login form#customer_login p.forgot_pwd a.button,
.template-customers-login div#customer-login form#customer_login p > input[type="submit"]{
  margin-top: 0;
}

.template-customers-login div#customer-login form#customer_login p > input[type="submit"],
.template-customers-login div#customer-login .hr-text + p > .button {
  width: 100%;
}
.template-customers-login div#customer-login .hr-text + p > .button:not(:hover) {
  background: none;
  color: var(--color_button_bg);  
}

.template-customers-login div#customer-login .hr-text {
  margin: 15px 0;
  overflow: hidden;
  text-align: center;
}
.template-customers-login div#customer-login .hr-text span {
  position: relative; 
}
.template-customers-login div#customer-login .hr-text span:before,
.template-customers-login div#customer-login .hr-text span:after {
  border-top: 1px solid rgba(0,0,0,0.2);
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
}
.template-customers-login div#customer-login .hr-text span:before {
  right: calc(100% + 15px);
}
.template-customers-login div#customer-login .hr-text span:after {
  left: calc(100% + 15px);
}

.template-customers-reset_password #customers-reset-pwd form {
  display: inline-block;
  margin-top: 10px; 
  width: 100%;
}
.template-customers-reset_password #customers-reset-pwd form > p:last-of-type {
  margin-bottom: 0;
}

.template-customers-login div#customer-login #recover-form-wrapper form p.buttons,
.template-customers-addresses .customer-address form p.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.template-customers-addresses .customer-address form p.buttons a {
  align-self: center;
  margin: 10px;
}

.template-customers-addresses .customer-address form p.buttons .button {
  margin: 0;
}

.template-customers-login div#customer-login #recover-form-wrapper form p.buttons a.button:not(:hover),
.template-customers-addresses .customer-address form p.buttons a.button:not(:hover) {
  background: none;
  color: var(--color_button_bg);
}

.template-customers-login div#customer-login #recover-form-wrapper form p.buttons input[type=submit]:hover,
.template-customers-addresses .customer-address form p.buttons input[type=submit]:hover,
.template-customers-addresses .customer-address form p.buttons button:hover {
  background-color: var(--color_button_bg_hover);
  border-color: var(--color_button_border_hover);
  color: var(--color_button_hover);
}

.template-customers-register #customer-register form#create_customer > p.buttons,
.template-customers-addresses .customer-address form p.buttons {
  margin-bottom: 0;
}

.template-customers-register #customer-register #create_customer > p:last-child {
  margin-bottom: 0;
}
.template-customers-register #customer-register #create_customer input[type="submit"] {
  width: 100%;
}

.template-customers-account .section-1 {
  display: flex;
  flex-wrap: wrap;
}

.template-customers-account .section-1 > h3 {
  font-size: var(--fontsize_H4);
  flex: 1 1 auto; 
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
.template-customers-account .section-1 a.logon-link {
  align-self: center;
  font-weight: normal;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.template-customers-account .section-1 a.logon-link svg{padding-right:5px; width: 20px; height: 20px;}
.template-customers-account .section-1 > hr.clear {
  background-color: rgba(0,0,0,0.15);
  flex: 1 1 100%;
  margin-top: 0;
  opacity: 1;
}
.template-customers-account .section-1 > p {
  flex: 1 1 100%;
}

.template-customers-account .section-1 a.address-link {
  padding: 10px 25px;
}

/* .template-customers-account .table-wrapper, 
.template-customers-order .table-wrapper {
  overflow: auto;
  box-shadow: 0 -0.05em rgba(0, 0, 0, 0.15), 0.05em 0 rgba(0, 0, 0, 0.15), -0.05em 0 rgba(0, 0, 0, 0.15), 0 0.05em rgba(0, 0, 0, 0.15);
} */
.template-customers-account .table-wrapper table, 
.template-customers-order .table-wrapper table {
  margin-bottom: 0; 
}
.template-customers-account table th, .template-customers-order table th {
  color: var(--color_primary);
  font-weight: bold;
}
.template-customers-account table, .template-customers-order table {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.template-customers-account table tr, .template-customers-order table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.template-customers-account table th, .template-customers-order table th,
.template-customers-account table td, .template-customers-order table td {
  border-width: 0;
  text-align: start;
  width: 20%;
}
.template-customers-account table td:first-child, .template-customers-order table td:first-child {
  width: 30%;
}

.template-customers-addresses a.back-nav-link,
.template-customers-order a.back-nav-link {
  display: block;
  margin-top: -8px;  
}

.template-customers-addresses a.back-nav-link:before,
.template-customers-order a.back-nav-link:before {
  content: "\276E";
  font-size: 0.9em;
  margin-right: 5px;  
}
.template-customers-order table tfoot td[colspan="4"],
.template-customers-order table tfoot tr:last-child td {
  color: var(--color_primary);
}
.template-customers-order table tfoot tr:last-child td {
  font-weight: bold;
}

@media (max-width: 767px) {
	.template-customers-account table thead tr, .template-customers-order table thead tr,
    .template-customers-account table thead th, .template-customers-order table thead th {
		display: none;
	}
	.template-customers-account table tbody tr, .template-customers-order table tbody tr {
		display: block;
	}
    .template-customers-account table tbody tr:last-child, .template-customers-order table tfoot tr:last-child {
        border-bottom-width: 0;
    }
	.template-customers-account table tr, .template-customers-order table tr,
    .template-customers-account table tbody td, .template-customers-order table tbody td {
		float: left;
		clear: both;
		width: 100%;
	}
	.template-customers-account table td:first-child, .template-customers-order table td:first-child {
		width: 100%;
	}
	.template-customers-account table tbody td, .template-customers-order table tbody td {
		display: block;
        float: none;
		margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
		text-align: right;
	}
    .template-customers-account table tbody td:first-child, .template-customers-order table tbody td:first-child {
        padding-top: 15px;
    }
    .template-customers-account table tbody td:last-child, .template-customers-order table tbody td:last-child {
        padding-bottom: 15px;
    }  
	.template-customers-account table td[data-label]:before, .template-customers-order table td[data-label]:before {
        color: var(--color_primary);
		content: attr(data-label);
		float: left;
		padding-right: 10px;
		text-align: start;
        width: 50%;       
	}
    .template-customers-account table tbody td:first-child a, .template-customers-order table tbody td:first-child a {
        display: inline-block;
        width: 50%;            
    }
	/* .responsive-table-row + .responsive-table-row,
	tfoot > .responsive-table-row:first-child {
		position: relative;
		margin-top: 40px;
		padding-top: 15px;
	} */
}

@media (max-width: 575px) {

    .template-customers-account table tbody td {
      text-align: start;
    }
    .template-customers-account table td[data-label]:before {
      padding-right: 0;
      text-align: start;
    }
    .template-customers-account table td[data-label]:before,
    .template-customers-account table tbody td:first-child a {
      width: 100%;      
    }

    .template-customers-account table tbody td:not(:last-child) {
      border-width: 0 0 1px;
    }
  
}


/* Account - Addresses */
.template-customers-addresses ul.address-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 20px 30px;
  margin: 0 0 10px;
  padding: 10px 0;
  width: 100%;
}

.template-customers-addresses ul.address-list li {
  border-bottom: 1px dashed rgba(0,0,0,0.15);
  display: block;
  flex: 1 1 300px;  
  margin-bottom: 0;
  min-height: 275px;
  padding: 35px;
  position: relative;
}
.template-customers-addresses ul.address-list li:before {
  content: "";
  height: 100%;
  outline: 2px dashed rgba(0,0,0,0.1);
  outline-offset: -0.5em;  
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  box-shadow: 0 0 3px 0 rgba(0,0,0,0.15);
}

.template-customers-addresses ul.address-list li > strong {
  background-color: rgba(0,0,0,0.05);
  color: var(--color_primary);
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: var(--border_radius);
}

.template-customers-addresses ul.address-list li .customer-address-actions > a {
  border: 1px solid currentcolor;
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  padding: 8px 15px 7px;
  border-radius: var(--border_radius);
}

.template-customers-addresses ul.address-list li .customer-address-actions > a:first-child {
  background-color: var(--color_button_bg);
  border-color: transparent;
  color: var(--color_button);
}

.template-customers-addresses ul.address-list li .customer-address-actions > a:last-child {
  background-color: transparent;
  border-color: var(--color_button_bg);
  color: var(--color_button_bg);
}

.template-customers-addresses ul.address-list li .customer-address-actions > a:first-child:focus,
.template-customers-addresses ul.address-list li .customer-address-actions > a:first-child:hover {
  background-color: var(--color_secondary);
  border-color: transparent;
  color: var(--color_button);
}

.template-customers-addresses ul.address-list li .customer-address-actions > a:last-child:focus,
.template-customers-addresses ul.address-list li .customer-address-actions > a:last-child:hover {
  background-color: var(--color_secondary);
  border-color: transparent;
  color: var(--color_button);
}

.template-customers-addresses ul.address-list li .customer-address-actions > a:focus,
.template-customers-addresses ul.address-list li .customer-address-actions > a:hover {
  opacity: 0.85;
}

.template-customers-addresses #add_address {
  margin-top: 50px;
  padding: 0;
  box-shadow: 0 0 3px 0 rgba(0,0,0,0.15);
}
.template-customers-addresses #add_address > * {
  padding: 30px;
}
.template-customers-addresses #add_address > *:first-child {
  margin-top: 0;
}
.template-customers-addresses #add_address > h5:first-child {
  background-color: rgba(0,0,0,0.04);
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
.template-customers-addresses #add_address .buttons {
  justify-content: center;
}

.template-customers-addresses #address_form_new, 
div[id*="edit_address"] > form[id*="address_form"] {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.template-customers-addresses #address_form_new > p, 
div[id*="edit_address"] > form[id*="address_form"] > p {
  padding-left: 10px;
  padding-right: 10px;
}

.template-customers-addresses #address_form_new > p > label, 
div[id*="edit_address"] > form[id*="address_form"] > p > label {
  display: table;
  margin-bottom: 6px;
}

div[id*="edit_address"] > form[id*="address_form"] > h5 {
  flex: 1 1 100%;
}
div[id*="edit_address"] {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 25px;
}
div[id*="edit_address"] .buttons .button {
  font-size: 0.85em;
  line-height: 1.5;
  padding: 0.6em 1.8em;
}

.template-customers-addresses form p.checkbox-field-wrap label { padding-left: 25px; position: relative; }
.template-customers-addresses form p.checkbox-field-wrap label [type="checkbox"] { 
    /* For iOS < 15 */
    background: none;
    /* Not removed via appearance */
    border: 1px solid rgba(0,0,0,0.15);
    margin: 0;

    width: 1em;
    height: 1em;
    transform: translateY(-0.075em);

    display: inline-grid;
    align-content: center;
    align-items: center;
    justify-content: center;    
    justify-items: center;

    position: absolute; 
    left: 0; 
    top: 6px; 

    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;        
}

.template-customers-addresses form p.checkbox-field-wrap label [type="checkbox"]:before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: 1em 1em currentColor inset;
    /* Windows High Contrast Mode 
    background-color: CanvasText;*/
}
.template-customers-addresses form p.checkbox-field-wrap label:hover [type="checkbox"] { border-color: currentColor; color: var(--color_accent); }
.template-customers-addresses form p.checkbox-field-wrap label [type="checkbox"]:checked { border-color: currentColor; color: var(--color_accent); }
.template-customers-addresses form p.checkbox-field-wrap label [type="checkbox"]:checked:before { transform: scale(1); }


/* Account - Order */
.template-customers-order .addresses { 
  margin-top: 20px; 
}
.template-customers-order .addresses .address {
  border: 1px solid rgba(0,0,0,0.15);
  margin: 10px 0;
  padding: 35px 20px;
  position: relative;
}
.template-customers-order .addresses .address:before {
  border-color: inherit;
  border-style: dashed;
  border-width: 2px;
  content: "";
  height: auto;
  margin: 5px;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  z-index: 1;
}

.template-customers-order .addresses .address h6 {  margin-top: 0;}
.template-customers-order .addresses .address h6 + p {  font-weight: bold;}
.template-customers-order .addresses .address p:last-child {  margin-bottom: 0;}


.kk-product-category-widget .widget-content ul li:first-child {
    display: none;
}

@media only screen and (max-width: 767px) {

  .category-heading,
  .category-heading div[class*="col-"],
  .category-heading div[class*="col-"] .view-controller {
    text-align: center;
  }
  .category-heading .row .col-left {
    justify-content: center !important;
  }

}

@media only screen and (max-width: 575px) {
  .spr-header-title { text-align: start !important; }
  
  .template-customers-addresses #address_form_new > p, div[id*="edit_address"] > form[id*="address_form"] > p {
      width: 100%;
  }

  .template-customers-login div#customer-login #recover-form-wrapper form p.buttons, .template-customers-addresses .customer-address form p.buttons {
    justify-content: center;
  }
}