/* Productpage */
#productpage .productpage__top {
	align-items: flex-start;
}

#productpage .product-images {
	position: relative;
  align-self: flex-start;
}

#productpage .product-images .breadcrumbs {
	position: absolute;
  top: 0;
  z-index: 5;

  margin-left: 9px;

  max-width: 90vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
	color: #777;
	
  font-weight: 400;
}

#productpage .product-images .breadcrumbs a {
	color: #777;
}

#productpage .product-images .breadcrumbs .crumb span {
	margin-left: var(--spacing);
  margin-right: var(--spacing);
}

#productpage .product-images .productpage-slider-outer {
  margin-left: -15px;
  margin-right: -15px;
}

#productpage .product-images .productpage-slider-outer .owl-stage-outer {
	background: var(--grey_block);
}

#productpage .product-images .productpage-slider-outer.slider-loading {
	width: 100%;
}

#productpage .product-images .productpage-slider-outer.slider-loading:after {
	content: '';
  display: block;
  padding-top: 100%;
}

#productpage .product-images .owl-carousel .owl-nav {
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  padding-inline: calc(var(--spacing) * 3);
}

#productpage .product-images .owl-carousel .owl-nav .disabled {
	opacity: 0.3;
}

#productpage .product-images .owl-carousel .owl-nav button {
	outline: none;
}

#productpage .product-images .owl-carousel .owl-nav button svg {
  height: 36px;
  width: 36px;
}

#productpage .product-images .productpage-slider .image-wrap {
	padding: 5% 20%;
}

#productpage .product-images .thumbs {
  padding-bottom: 20px;
}

#productpage .product-images .thumbs .thumb {
  padding: var(--spacing);
}

#productpage .product-images .thumbs .thumb:not(.active) {
	opacity: 0.6;
	cursor: pointer;
}

#productpage .product-sidebar .product-info {
	display: flex;
	align-items: center;
  justify-content: space-between;
	gap: var(--spacing);
  
  margin-bottom: 24px;
}

#productpage .product-sidebar .product-info .discount-label {
	background-color: var(--red);
  color: white;
  font-weight: bold;
  
  padding: calc(var(--spacing) / 2) var(--spacing);
  width: fit-content;
}

#productpage .product-sidebar .product-info .title-featured {
	margin-bottom: 0;
}

#productpage .product-sidebar .product-info .product-title {
	font-size: var(--font_h6);
  font-family: 'figtree-variable';
  font-weight: 400;
  margin-bottom: var(--spacing);
}

#productpage .product-sidebar .product-info .product-collection-link {
	text-decoration: underline;
}

#productpage .product-sidebar .price-and-stock {
	display: flex;
  align-items: center;
  justify-content: space-between;
  
  margin-bottom: 24px;
}

#productpage .product-sidebar .price {
	display: flex;
  align-items: center;
  gap: 8px;
}

#productpage .product-sidebar .price .price-old {
	font-size: 1em;
	opacity: 0.8;
  text-decoration: line-through;
}

#productpage .product-sidebar .price .price-new {
  font-size: 1.2em;
  font-weight: 500;
}
  

#productpage .product-sidebar .price .price-new.has-old {
	color: var(--red);
}

#productpage .product-sidebar .delivery {
	display: flex;
  align-items: center;
  font-weight: 550;
  
  gap: calc(var(--spacing) / 2);
}

#productpage .product-sidebar .delivery .icon-wrap svg {
	height: 24px;
}

#productpage .product-sidebar #product_configure_form {
	display: flex;
  flex-direction: column;
  gap: var(--spacing);
}

#productpage .product-sidebar .option-wrap.product-options {
	display: flex;
  flex-direction: column;
  gap: 8px;
}

#productpage .product-sidebar .option-wrap.product-options .option-select-wrap {
	position: relative;
  
  width: 100%;
  display: flex;
}

#productpage .product-sidebar .option-wrap.product-options .option-select-wrap .ui.selection.dropdown {
	width: 100%;
}

#productpage .product-sidebar .option-wrap .ui.dropdown .menu>.item {
	display: flex;
  align-items: center;
  justify-content: space-between;
}

#productpage .product-sidebar .option-wrap.product-options .option-select-wrap .icon-wrap  {
	position: absolute;
  right: calc(var(--spacing) * 2);
  top: 50%;
  transform: translateY(-50%);
	height: 100%;
  z-index: 11;
}

#productpage .product-sidebar .option-wrap.product-options .option-select-wrap .icon-wrap svg {
	height: 0.9em;
}

#productpage .product-sidebar .option-wrap.product-options .size-label-guide {
	display: flex;
  align-items: center;
  justify-content: space-between;
}

#productpage .product-sidebar .option-wrap.product-options .size-label-guide label {
	font-weight: 500;
  margin-bottom: 0px;
}

#productpage .product-sidebar .option-wrap.product-options .size-label-guide .size-guide__toggle--open {
	display: flex;
  align-items: center;
  text-decoration: underline;
  font-size: 14px;
}

#productpage .product-sidebar .option-wrap.product-options .size-label-guide svg {
	height: 1em;
}

#productpage .product-sidebar .cart {
	display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

#productpage .product-sidebar .cart .btn {
	height: calc(var(--spacing) * 7);
  display: flex;
  align-items: center;
  gap: var(--spacing);
}

#productpage .product-sidebar .cart .btn svg {
  height: 1.2em;
}

#productpage .product-sidebar .cart .btn svg path {
	fill: white;
}

#productpage .product-sidebar .sm-product-usps .usp-list {
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  
  list-style-type: none;
  margin-bottom: 24px;
}

#productpage .product-sidebar .sm-product-usps .usp-list .usp-list__item {
	margin-bottom: var(--spacing);
}

#productpage .product-sidebar .sm-product-usps .usp-list .usp-list__item a {
	display: flex;
  align-items: center;
}

#productpage .product-sidebar .sm-product-usps .usp-list .usp-list__item svg {
	height: 1em;
  margin-right: calc(var(--spacing) / 2)!important;
  width: calc(var(--spacing) * 3);
}

#productpage .product-sidebar .sm-product-usps .usp-list .usp-list__item .kiyoh-icon {
	height: 1.2em;
}

#productpage .product-sidebar .sm-tabs-block .tab-links .tab-links__item {
  padding-top: calc(var(--spacing) * 2);
  padding-bottom: calc(var(--spacing) * 2);
	border-bottom: 1px solid #eee;
}

#productpage .product-sidebar .sm-tabs-block .tab-links .tab-links__item .tab-links__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
	font-weight: bold;
}

#productpage .product-sidebar .sm-tabs-block .tab-links .tab-links__item .tab-links__link svg {
	height: 0.9em;
  opacity: 0.6;
  rotate: 0deg;
  transition: all 150ms ease-in-out;
}

#productpage .product-sidebar .sm-tabs-block .tab-links .tab-links__item.active .tab-links__link svg {
	rotate: 180deg;
  transition: all 150ms ease-in-out;
}

#productpage .product-sidebar .sm-tabs-block .tab-links .tab-links__item .page__content {
	padding-top: 10px;
}

#productpage .product-sidebar .sm-tabs-block .specs-table {
	width: 100%;
}

#productpage .product-sidebar .sm-tabs-block .specs-table .specs-table__row {
	border: 1px solid var(--grey_border);
}

#productpage .product-sidebar .sm-tabs-block .specs-table .specs-table__row:nth-child(even) {
	background-color: var(--grey_block);
}

#productpage .product-sidebar .sm-tabs-block .specs-table .specs-table__col {
	border: 1px solid var(--grey_border);
  padding: var(--spacing);
}

#productpage .product-sidebar .sm-tabs-block .specs-table .specs-table__col.title {
	font-weight: bold;
}

#productpage .product-sidebar {
	container-type: inline-size;
}

@container (max-width: 567px) {
	#productpage .product-sidebar .price-and-stock {
  	flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1400px) {
  #productpage .product-sidebar {
  	padding: calc(var(--spacing) * 12);
    padding-bottom:0;
  }
}

@media (min-width: 1200px) {
	  #productpage .product-sidebar {
  	padding: calc(var(--spacing) * 8);
    padding-bottom:0;
  }
}

@media (min-width: 992px) {
	  #productpage .product-sidebar {
  	padding: calc(var(--spacing) * 6);
    padding-bottom:0;
  }
}

@media (max-width: 768px) {  
  #productpage .breadcrumbs {
  	margin-left: 0!important;
    white-space: nowrap!important;
    display: block!important;
  }
  
  #productpage .productpage__top {
  	display: block;
  }
  
  #productpage .product-images {
		background: var(--grey_block);
	}
  
  #productpage .product-images .productpage-slider-outer {
  	margin-left: 0;
    margin-right: 0;
  }
  
  #productpage .product-images .owl-carousel .owl-nav {
  	padding-inline: 0;
  }
  
  #productpage .product-images .owl-carousel .owl-nav button svg {
  	height: 24px;
    width: 24px;
  }
  
  #productpage .product-sidebar {
		padding: calc(var(--spacing) * 2);
  }
  
  #productpage .product-sidebar .title {
  	font-size: var(--font_h4);
  }
  
  #productpage .product-sidebar .product-title {
  	font-size: var(--font_h5);
  }
  
  #productpage .product-sidebar .product-collection-link {
   	font-size: var(--font_h6); 
  }
  
  #productpage #recommended-products .title-featured, #recent-products .title-featured { 
  	text-align: left!important;
  }
}

@media (max-width: 567px) {
  #productpage .product-sidebar .price-and-stock {
  	flex-direction: column;
    align-items: flex-start;
  }
}
/* End productpage */

/* Product configure */
#productpage .product-configure .product-configure-inner {
	margin: -15px 0;
}

#productpage .product-configure .product-configure-inner .option-wrap {
	padding: 15px 0;
}

#productpage .product-configure .linked-options.loading {
  opacity: 0;
}

#productpage .product-configure .linked-options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#productpage .product-configure .linked-options .option {
	padding: 5px;
}

#productpage .product-configure .linked-options .option a {
	display: block;
}

#productpage .product-configure .linked-options .option.active a .image-wrap {
	border: 2px solid #000;
}

#productpage .product-configure .linked-options .option a .image-wrap {
	min-width: 80px;
  max-width: 80px;
}

#productpage .product-configure .linked-options .option a .image-wrap img {
	width: 100%;
}

#productpage .product-configure label.label-title {
  display: block;
	font-size: 16px;
  margin-bottom: 10px;
}

#productpage .product-configure select {
	height: 50px;
  opacity: 0;
}

#productpage .product-configure .product-configure-inner .option-wrap.product-custom-text,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-textarea,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-date,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-datetime {
	display: flex;
  flex-direction: column;
}

#productpage .product-configure input[type="text"],
#productpage .product-configure input[type="date"],
#productpage .product-configure input[type="datetime-local"],
#productpage .product-configure textarea {
	border: 2px solid rgba(0,0,0,0.07);
  height: 45px;
  border-radius: 3px;
  padding: 0 15px;
}

#productpage .product-configure textarea {
	padding: 15px;
  height: auto;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
}
/* End product configure */

/* Size guide popup */
.size-guide-popup {
	position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  display: none;
}

.size-guide-popup.closing {
  display: flex;
  pointer-events: none;
  inset: 0;
  animation: fade-out 250ms forwards;
}

.size-guide-popup.active {
	display: flex;
  animation: fade-in 250ms forwards;
}

.size-guide-popup .size-guide-popup__overlay {
	width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 20%);
  position: absolute;
}

.size-guide-popup .size-guide-popup__modal {
  position: absolute;
  z-index: 5;
	background: white;
  padding: calc(var(--spacing) * 2);
  max-width: 600px;
  width: 100%;
  
  display: flex;
  flex-direction: column;
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--close {
	align-self: flex-end;
  margin-bottom: var(--spacing);
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--close svg {
	width: 1em;
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--content {
	overflow-y: scroll;
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--content table tbody tr {
	border: 1px solid var(--grey_border);
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--content table tbody tr:hover {
	background-color: #ddd !important;
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--content table tbody tr:first-child {
	font-weight: bold;
  text-align: center;
  border-bottom: 2px solid var(--grey_border);
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--content table tbody tr:nth-child(even) {
  background-color: var(--grey_block);
}

.size-guide-popup .size-guide-popup__modal .size-guide-popup__modal--content table tbody tr td {
	padding: var(--spacing);
	border: 1px solid var(--grey_border);
}

@keyframes fade-in {
  0% {
  	opacity: 0;
  }
  100% {
  	opacity: 1;
  }
}

@keyframes fade-out {
  0% {
  	opacity: 1;
  }
  100% {
  	opacity: 0;
  }
}

/* End size guide popup */

/* Cross sell popup */
.cross-sell {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
	width: 100%;
  height: 100%;
  
  display: none;
  align-items: center;
  justify-content: center;
}

.cross-sell.active {
  display: flex;
	animation: fade-in 250ms forwards;
}

.cross-sell.closing {
  display: flex;
	animation: fade-out 250ms forwards;
}

.cross-sell .cross-sell__overlay {
	width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 20%);
  
  position: absolute;
  top: 0;
  left: 0;
  
  cursor: pointer;
}

.cross-sell .cross-sell__modal {
  position: relative;
  z-index: 5;
  background: white;
  
  max-width: 900px;
  width: 100%;
}

.cross-sell .close {
	position: absolute;
  top: calc(var(--spacing) * 2);
  right: calc(var(--spacing) * 2);
}

.cross-sell .close svg {
	height: 16px;
}

.cross-sell .cross-sell__modal .cross-sell__modal--header {
  background: var(--grey_block);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top {
  display: flex;
  flex-direction: column;
  
  padding: calc(var(--spacing) * 6) calc(var(--spacing) * 5);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .product-buttons {
	display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing);
  
  padding-top: calc(var(--spacing) * 2);
  padding-bottom: calc(var(--spacing) * 2);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .product-buttons .buttons {
	display: flex;
  flex-direction: column;
  gap: var(--spacing);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .product-buttons .buttons a {
	outline: none;
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product {
	display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 2);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product img {
  mix-blend-mode: darken;
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product .added-product__info {
	display: flex;
  flex-direction: column;
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product .added-product__info .price {
	display: flex;
	align-items: center;
  gap: var(--spacing);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product .price .price-old {
  opacity: 0.7;
  text-decoration: line-through;
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product .added-product__info .price .price-new.has-old {
	color: var(--red);
  font-weight: bold;
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product .title-font {
	font-weight: 500;
  font-size: var(--font_h5);
}

.cross-sell .cross-sell__modal .cross-sell__modal--top .added-product .product-title {
	color: var(--body);
  opacity: 0.7;
}

.cross-sell .cross-sell-products {
  margin-top: calc(var(--spacing) * 3);
	padding: calc(var(--spacing) * 5);
}

.cross-sell .cross-sell-products .cross-sell-title {
	margin-bottom: calc(var(--spacing) * 3);
}

@keyframes fade-in {
  0% {
  	opacity: 0;
  }
  100% {
  	opacity: 1;
  }
}

@keyframes fade-out {
  0% {
  	opacity: 1;
  }
  100% {
  	opacity: 0;
  }
}

@media (max-width: 768px) {
  .cross-sell .cross-sell__modal {
  	width: 100%;
    height: 100%;
  }
}

@media (max-width: 567px) {
  .cross-sell .cross-sell__modal .cross-sell__modal--top {
  	padding: calc(var(--spacing) * 6) calc(var(--spacing) * 3);
  }
  
  .cross-sell .cross-sell__modal .cross-sell__modal--top .product-buttons {
		flex-direction: column;
  }
  
  .cross-sell .cross-sell__modal .cross-sell__modal--top .product-buttons .buttons {
		width: 100%;
  }
  
  .cross-sell .cross-sell__modal .cross-sell__modal--header {
    margin-bottom: calc(var(--spacing) * 2);  
  }
  
  .cross-sell .cross-sell__modal .cross-sell-products {
  	padding: calc(var(--spacing) * 3);
  }
}
/* End cross sell popup */