/* Added to cart popup */
.popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 99999999;
	transition: all .2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.popup-overlay.popup-open {
	opacity: 1;
  visibility: visible;
}

#added-to-cart {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: #fff;
  z-index: 999999999;
  transition: all .2s ease-in-out;
  transform: translateX(100%);
}

#added-to-cart.popup-open {
	transform: translateX(0);
}

#added-to-cart .inner {
	padding: 20px;
}

#added-to-cart .top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

#added-to-cart .top-wrap .title {
	font-size: 1.6em;
  line-height: 1;
  font-weight: bold;
}

#added-to-cart .top-wrap .close-popup {
	display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
}

#added-to-cart .top-wrap .close-popup span {
  min-width: 16px;
  max-width: 16px;
  min-height: 16px;
  max-height: 16px;
  display: inline-block;
  position: relative;
}

#added-to-cart .top-wrap .close-popup span:before,
#added-to-cart .top-wrap .close-popup span:after {
	content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}

#added-to-cart .top-wrap .close-popup span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#added-to-cart .notification {
	background: #edf4ec;
  min-height: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: .9em;
  margin-bottom: 20px;
}

#added-to-cart .notification img {
	height: 22px;
  margin-right: 10px;
}

#added-to-cart .added-product {
	display: flex;
}

#added-to-cart .added-product .image-wrap {
	min-width: 120px;
  max-width: 120px;
  margin-right: 10px;
}

#added-to-cart .added-product .image-wrap img {
	width: 100%;
}

#added-to-cart .added-product .info-wrap .product-title {
	font-weight: bold;
  font-size: .9em;
  margin-bottom: 15px;
}

#added-to-cart .added-product .info-wrap .qty-price-wrap {
	display: flex;
  align-items: center;
  justify-content: space-between;
}

#added-to-cart .added-product .info-wrap .qty-wrap {
	display: flex;
  align-items: center;
}

#added-to-cart .added-product .info-wrap .qty-wrap label {
  font-size: .9em;
  color: #aaa;
  margin: 0;
  margin-right: 15px;
}

#added-to-cart .added-product .info-wrap .price-wrap {
	font-weight: bold;
  margin: 0 15px;
}

#added-to-cart .added-product .info-wrap .delete {
	display: flex;
  color: #8e8e8e;
}

#added-to-cart .added-product .info-wrap .delivery {
	font-weight: bold;
  font-size: .9em;
  margin-top: 15px;
  display: flex;
  align-items: center;
  color: #8e8e8e;
}

#added-to-cart .added-product .info-wrap .delivery i {
	margin-right: 10px;
  font-size: 1.3em;
}

#added-to-cart .bottom-wrap {
	border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

#added-to-cart .bottom-wrap .btn-wrap .btn {
  width: 100%;
  border-radius: 0;
  height: 50px;
  line-height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  border: 1px solid #eee;
}

#added-to-cart .bottom-wrap .btn-wrap .btn.cart-btn {
	background: #FBE2EA;
  margin-top: 10px;
  border: none;
}

#added-to-cart .bottom-wrap .btn-wrap .btn.cart-btn img {
  height: 22px;
  margin-right: 10px;
}

.custom-dropdown {
	position: relative;
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #eee;
  font-weight: bold;
  font-size: .9em;
}

.custom-dropdown i {
	margin-left: 10px;
}

.custom-dropdown select {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

@media (min-width: 1200px) {
	#added-to-cart .bottom-wrap .btn-wrap .btn.continue-btn:hover {
    border: 1px solid #ccc;
  }
  
  #added-to-cart .bottom-wrap .btn-wrap .btn.cart-btn:hover {
  	background: #fddbe6;
  }
}

@media (max-width: 767px) {
  #added-to-cart .top-wrap .title {
  	font-size: 1.2em;
  }
  
  #added-to-cart .notification img {
  	height: 20px;
  }
  
  #added-to-cart .added-product .image-wrap {
    min-width: 80px;
    max-width: 80px;
  }
  
  #added-to-cart .added-product .info-wrap .qty-wrap label {
  	margin-right: 10px;
  }
  
  .custom-dropdown {
  	height: 40px;
  }
  
  #added-to-cart .added-product .info-wrap .delivery {
  	font-size: .85em;
  }
}
/* End added to cart popup */

/* Cart dropdown */
#header .main-header.body-wrap.overlay-active {
	transition: none;
  transform: none;
}

.cart-dropdown-overlay {
	position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: -1;
  transition: all .2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.cart-dropdown-overlay.active {
	opacity: 1;
  visibility: visible;
}

#header .main-header .icons ul li.cart {
  position: relative;
  z-index: 999999;
}

#cart-dropdown {
	position: absolute;
  padding-top: 20px;
  right: 0;
  width: 450px;
  z-index: 9999999;
  font-size: 13px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
}

#cart-dropdown:after {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  position: absolute;
  top: 20px;
  right: 15px;
  transform: translateY(-100%);
}

#header #cart-dropdown a {
	padding: 0;
}

#cart-dropdown .inner {
	padding: 20px;
  padding-right: 0;
  background: #fff;
}

#cart-dropdown .top-wrap {
	display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-right: 20px;
}

#cart-dropdown .top-wrap .title-amount {
  display: flex;
  align-items: center;
}

#cart-dropdown .top-wrap .title-amount .title {
  font-size: 1.4em;
  font-weight: bold;
}

#cart-dropdown .top-wrap .title-amount .amount {
  margin-left: 15px;
  color: #8e8e8e;
}

#cart-dropdown .top-wrap .close-popup {
	display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
}

#cart-dropdown .top-wrap .close-popup span {
  min-width: 16px;
  max-width: 16px;
  min-height: 16px;
  max-height: 16px;
  display: inline-block;
  position: relative;
}

#cart-dropdown .top-wrap .close-popup span:before,
#cart-dropdown .top-wrap .close-popup span:after {
	content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}

#cart-dropdown .top-wrap .close-popup span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#cart-dropdown .cart-products {
	max-height: 400px;
  overflow-y: scroll;
  scrollbar-width: none;
}

#cart-dropdown .cart-products .product {
	display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  border-bottom: 1px solid #eee;
}

#cart-dropdown .cart-products .product:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;	
}

#cart-dropdown .cart-products .product .image-wrap {
	min-width: 80px;
  max-width: 80px;
  margin-right: 10px;
}

#cart-dropdown .cart-products .product .image-wrap img {
	width: 100%;
}

#cart-dropdown .cart-products .product .info-wrap .product-title {
	font-weight: bold;
  font-size: .9em;
  margin-bottom: 10px;
}

#cart-dropdown .cart-products .product .info-wrap .qty-price-wrap {
	display: flex;
  align-items: center;
  justify-content: space-between;
}

#cart-dropdown .cart-products .product .info-wrap .qty-wrap {
	display: flex;
  align-items: center;
}

#cart-dropdown .cart-products .product .info-wrap .qty-wrap label {
  font-size: .9em;
  color: #aaa;
  margin: 0;
  margin-right: 10px;
}

#cart-dropdown .cart-products .product .info-wrap .qty-wrap .custom-dropdown {
	height: 40px;
}

#cart-dropdown .cart-products .product .info-wrap .price-wrap {
	font-weight: bold;
  margin: 0 10px;
}

#cart-dropdown .cart-products .product .info-wrap .delete {
	display: flex;
  color: #8e8e8e;
  font-size: 1.1em;
}

#cart-dropdown .cart-products .product .info-wrap .delivery {
	font-weight: bold;
  font-size: .8em;
  margin-top: 10px;
  display: flex;
  align-items: center;
  color: #8e8e8e;
}

#cart-dropdown .cart-products .product .info-wrap .delivery i {
	margin-right: 10px;
  font-size: 1.3em;
}

#cart-dropdown .no-cart-products {
	color: #aaa;
  font-style: italic;
}

#cart-dropdown .bottom-wrap {
	margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  padding-right: 20px;
}

#cart-dropdown .bottom-wrap table {
	width: 100%;
  margin-bottom: 10px;
}

#cart-dropdown .bottom-wrap table tr td {
	padding: 10px 15px;
  background: #f9f7fa;
  font-weight: bold;
  font-size: 1.1em;
}

#cart-dropdown .bottom-wrap table tr td.pink {
  color: #ff48c6;
}

#cart-dropdown .bottom-wrap .btn {
  width: 100%;
  border-radius: 0;
  height: 50px;
  line-height: unset;
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  border: none;
  background: #FBE2EA;
}

#cart-dropdown .bottom-wrap .btn img {
  height: 22px;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  #cart-dropdown.active {
    opacity: 1;
    visibility: visible;
  } 
  
  #cart-dropdown .bottom-wrap .btn:hover {
  	background: #fddbe6;
  }
}
/* End cart dropdown */

/* Alertbar */
#alertbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-weight: bold;
}

#alertbar span {
	color: #ff48c6;
}

#alertbar .alert-countdown {
	display: flex;
  align-items: center;
}

#alertbar .alert-countdown i {
	font-size: 2em;
  margin-right: 10px;
}

@media (max-width: 1199px) {
  #header.alert-active .main-header {
  	padding-bottom: 0;
  }
  
  #alertbar {
  	margin-top: 10px;
  }
  
  #alertbar .inner {
  	font-size: .9em;
  }
  
  #alertbar .alert-countdown i {
  	font-size: 1.6em;
    margin-right: 7px;
  }
}

@media (max-width: 991px) {
  #alertbar .inner {
  	flex-direction: column;
    font-size: .8em;
    text-align: center;
    padding: 10px 0;
  }
  
  #alertbar .alert-countdown {
    margin-top: 7px;
  }
}
/* End alerbar */

/* Cart page */
#cart-page {
	padding: 70px 0;
  background: #fff;
}

#cart-page .page-wrap {
	display: flex;
}

#cart-page .page-wrap .main-col {
	flex-grow: 10;
}

#cart-page .page-wrap .totals-col {
  min-width: 420px;
  max-width: 420px;
  margin-left: 50px;
  position: relative;
}

#cart-page .top-wrap {
	display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

#cart-page .top-wrap .cart-title {
	font-size: 1.8em;
  font-weight: bold;
  margin: 0;
}

#cart-page .top-wrap .btn {
	display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 55px;
  border-radius: 0;
  padding: 0 30px;
  font-size: 1em;
  font-weight: bold;
  border: 1px solid #eee;
}

#cart-page .no-cart-products {
	font-style: italic;
  color: #aaa;
}

#cart-page .cart-products .product:not(:last-child) {
	border-bottom: 1px solid #eee;
}

#cart-page .cart-products .product .top {
	display: flex;
  align-items: center;
}

#cart-page .cart-products .product .image-col {
  min-width: 100px;
  max-width: 100px;
}

#cart-page .cart-products .product .image-col img {
	width: 100%;
}

#cart-page .cart-products .product {
	padding: 15px 0;
}

#cart-page .cart-products .product:first-child {
	padding-top: 0;
}

#cart-page .cart-products .product:last-child {
	padding-bottom: 0;
}

#cart-page .cart-products .product .info-col {
  width: calc(60% - 100px);
  padding: 0 15px;
}

#cart-page .cart-products .product .bottom .info-col {
	padding: 0 15px;
}

#cart-page .cart-products .product .brand {
	font-weight: bold;
  font-size: .9em;
  color: #aaa;
  margin-bottom: 5px;
}

#cart-page .cart-products .product .product-title {
  font-weight: bold;
}

#cart-page .cart-products .product .delivery {
  color: #8e8e8e;
  margin-top: 20px;
  font-size: .9em;
  display: flex;
  align-items: center;
}

#cart-page .cart-products .product .delivery i {
  margin-right: 10px;
  font-size: 1.3em;
}

#cart-page .cart-products .product .quantity-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}

#cart-page .cart-products .product .price-col {
	width: 20%;
}

#cart-page .cart-products .product .price-delete-wrap {
	display: flex;
  align-items: center;
  justify-content: flex-end;
}

#cart-page .cart-products .product .price-delete-wrap .price-wrap {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 20px;
}

#cart-page .cart-products .product .price-delete-wrap .price-wrap .price-new.old {
	text-decoration: line-through;
}

#cart-page .cart-products .product .price-delete-wrap .price-wrap .price-discount  {
	margin-left: 30px;
  color: #48964b;
}

#cart-page .cart-products .product .price-delete-wrap .delete {
  font-size: 1.2em;
  color: #aaa;
}

#cart-page .cart-products .product .discount {
	color: #48964b;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 15px;
  text-align: right;
}

#cart-page .bottom-wrap {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cart-page .bottom-wrap .discount-block {
  flex-grow: 10;
}

#cart-page .bottom-wrap .discount-block form {
	display: flex;
  align-items: center;
}

#cart-page .bottom-wrap .discount-block form input {
  height: 45px;
  border: 1px solid #eee;
  outline: none;
  -webkit-appearance: none;
  padding: 0 15px;
  width: 100%;
  max-width: 300px;
  margin-right: 10px;
  font-size: 14px;
}

#cart-page .bottom-wrap .discount-block .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: unset;
  min-height: 45px;
  max-height: 45px;
  min-width: 45px;
  max-width: 45px;
  border-radius: 0;
  background: #fbe2ea;
  border: none;
  font-size: 1.1em;
}

#cart-page .bottom-wrap .hallmark img {
	height: 45px;
}

#cart-page .totals-block-wrap.fixed {
  position: fixed;
  min-width: 420px;
  max-width: 420px;
}

#cart-page .totals-block {
  padding: 40px;
	background: #d2ede8;
}

#cart-page .totals-block .title {
  font-size: 1.7em;
  font-weight: bold;
}

#cart-page .totals-block .totals-table {
	width: 100%;
  margin: 40px 0;
}

#cart-page .totals-block .totals-table tr td {
	padding-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
}

#cart-page .totals-block .totals-table .pink {
	color: #ff48c6;
}

#cart-page .totals-block .totals-table .discount {
	color: #48964b;
}

#cart-page .totals-block .totals-table .discount i {
	color: #aaa;
}

#cart-page .totals-block .totals-table tr.shipping td {
  padding-bottom: 15px;
}

#cart-page .totals-block .totals-table tr.grand-total td {
	padding-bottom: 0px;
  padding-top: 15px;
  border-top: 1px solid #000;
}

#cart-page .totals-block .btn {
  width: 100%;
  border-radius: 0;
  height: 55px;
  line-height: unset;
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  border: none;
  background: #FBE2EA;
}

#cart-page .totals-block .safety-message {
	margin-top: 10px;
  text-align: center;
  color: #aaa;
  font-size: .85em;
}

#cart-page .totals-block .safety-message i {
	margin-right: 7px;
}

#cart-page .totals-block .btn img {
	height: 22px;
  margin-right: 10px;
}

#cart-page .payments {
	margin-top: 40px;
}

#cart-page .payments ul {
	list-style: none;
  padding: 0;
  margin: -2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#cart-page .payments ul li {
	padding: 2px;
}

#cart-page .payments ul li img {
	height: 40px;
}

@media (min-width: 1200px) {
	#cart-page .top-wrap .btn:hover {
    border: 1px solid #ccc;
  }
}

@media (max-width: 1399px) {
  #cart-page .page-wrap .totals-col {
    min-width: 350px;
    max-width: 350px;
    margin-left: 50px;
  }
  
  #cart-page .totals-block {
  	padding: 30px;
  }
  
  #cart-page .payments ul li img {
  	height: 35px;
  }
}

@media (max-width: 1199px) {
  #cart-page .page-wrap {
    flex-direction: column;
  }
  
  #cart-page .page-wrap .totals-col {
    margin: 0;
    margin-top: 30px;
    min-width: 100%;
    max-width: 100%;
  }
  
  #cart-page .payments {
  	margin-top: 20px;
  }
  
  #cart-page .top-wrap {
  	margin-bottom: 20px;
  }
  
  #cart-page .top-wrap .cart-title {
  	font-size: 1.6em;
  }
  
  #cart-page .top-wrap .btn {
  	height: 45px;
    padding: 0 20px;
  }
  
  #cart-page .cart-products .product .price-delete-wrap {
  	font-size: .9em;
  }
  
  #cart-page .cart-products .product .price-delete-wrap .price-wrap .price-discount {
  	margin-left: 5px;
  }
  
  #cart-page .cart-products .product .discount {
  	margin-top: 10px;
    font-size: 1em;
  }
}

@media (max-width: 991px) {
	#cart-page {
    padding: 40px 0;
  }
  
  #cart-page .cart-products .product .image-col {
    min-width: 80px;
    max-width: 80px;
  }
  
  #cart-page .cart-products .product .product-title {
    font-size: .9em;
  }
  
  #cart-page .cart-products .product .delivery {
  	margin-top: 10px;
    font-size: 0.8em;
  }
  
  #cart-page .cart-products .product .info-col {
  	width: calc(100% - 80px);
    padding-right: 0;
  }
  
  #cart-page .cart-products .product .mobile-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  
  #cart-page .cart-products .product .price-mobile-wrap {
  	margin-left: auto;
    display: flex;
    align-items: center;
  }
  
  #cart-page .cart-products .product .price-delete-wrap .price-wrap {
   	margin-right: 0; 	
    font-size: 1.1em;
  }
  
  #cart-page .cart-products .product .price-mobile-wrap .inner-wrap {
  	margin: 0 50px;
  }
  
	#cart-page .cart-products .product .discount {
    margin-top: 5px;
    font-size: 0.9em;
  }
  
  #cart-page .cart-products .product .delete {
    color: #aaa;
    font-size: 1.1em;
  }
  
  #cart-page .top-wrap .cart-title {
  	font-size: 1.3em; 
  }
  
  #cart-page .top-wrap .btn {
    font-size: 0.9em;
    height: 40px;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  #cart-page .totals-block .totals-table tr td:last-child {
    text-align: right; 
  }
  #cart-page .totals-block .totals-table tr.grand-total td {
		padding-bottom: 30px;
  }
  #cart-page {
    padding: 30px 0;
    overflow: hidden;
  }
    
	#cart-page .page-wrap .totals-col {
    min-width: calc(100% + 30px);
    max-width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  
  #cart-page .totals-block {
  	padding: 30px;
    padding-bottom: 0;
  }
  
  #cart-page .totals-block .safety-message {
  	display: none;
  }
  
  #cart-page .totals-block .totals-table {
  	margin: 0;
  }
  
  #cart-page .totals-block .totals-table tr td {
  	font-size: 1em;
  }
  
  #cart-page .bottom-wrap .discount-block form input {
    height: 40px;
    font-size: 0.9em;
    max-width: 140px;
  }
  
  #cart-page .bottom-wrap .discount-block .btn {
    min-height: 40px;
    max-height: 40px;
    min-width: 40px;
    max-width: 40px;
    font-size: 1em;
  }
  
  #cart-page .bottom-wrap .hallmark img {
    height: 40px;
  }
  
  #cart-page .totals-block .btn {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 30px;
  } 
  
  #cart-page .payments ul li img {
  	height: 30px;
  }
}
/* End cart page */

/* Custom checkout */
.checkout-trustmark {
  height: 50px;
  margin-top: 20px !important;
}

#checkout-contact-popup {
  display: none;
	width: 100%;
  max-width: 400px;
}

#checkout-contact-popup .title-small {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;
}

#checkout-contact-popup .general-content {
	font-size: 12px;
  line-height: 25px;
  color: #767676;
}

#checkout-contact-popup .general-content strong {
	color: initial;
}

body.checkout-page {
	background: #fff;
}

.checkout-title-wrap .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.checkout-title-wrap h1 {
	margin: 0;
  font-size: 1.8em;
}

.checkout-title-wrap .btn-wrap {
	display: flex;
  align-items: center;
}

.checkout-title-wrap .btn-wrap .btn {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  padding: 0 20px;
  border: 1px solid #eee;
  font-weight: bold;
  font-size: 0.9em;
}

.checkout-title-wrap .btn-wrap .btn.back {
	margin-right: 15px;
}

.checkout-title-wrap .btn-wrap .btn i {
	margin-right: 15px;
  font-size: 1.5em;
}

.checkout-title-wrap .btn-wrap .btn img {
  height: 25px;
  margin-right: 10px;
}

.gui-payment-method-service .gui-payment-method-icon {
	opacity:0;
  background:#fff;
  border-radius:3px;
  border:1px solid rgba(0,0,0,.07);
}

.gui-payment-method-service .gui-payment-method-icon.updated {
	opacity:1;
}

.gui-form .gui-radio label,
.gui-form .gui-checkbox label {
  position: relative;
  padding-left: 30px !important;
  padding-top: 4px;
}

.gui-form .gui-radio label {
	font-size: 12px;
}

.gui-form .gui-radio label:before,
.gui-form .gui-checkbox label:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border:1px solid rgba(0,0,0,.07);
}

.gui-form .gui-checkbox label:before {
  border-radius:0;
}

.gui-form .gui-radio input,
.gui-form .gui-checkbox input {
	display:none;
}

.gui-form .gui-radio input:checked ~ label:after {
  content: '';
  width: 10px;
  height: 10px;
  background: #ff48c6;
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 100%;
}

.gui-form .gui-checkbox input:checked ~ label:after {
  content: "\f00c";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ff48c6;
}

.gui-checkout-one-step .gui-payment-method-service > label {
  padding: 15px;
  background: #fff;
  border-radius: 0px;
  margin: 0;
  margin-bottom: 10px;
  border: 2px solid transparent;
}

.gui-checkout-one-step .gui-payment-method-service.gui-is-selected > label {
  border: 2px solid #ff48c6;
}

.gui-checkout-one-step .gui-payment-method-service > label input {
	display:none;
}

.gui-checkout .gui-form a.gui-button-small {
  height: 40px;
  line-height: 37px;
  padding: 0 20px;
}

.gui-checkout-one-step .gui-block {
	padding: 7%;
  border-radius: 0px;
}

.gui-checkout-one-step .gui-block, .gui-checkout-one-step .gui-block {
  background: rgba(0,0,0,0.03);
}

.gui-checkout-one-step .gui-block.gui-active,
.gui-checkout-one-step .gui-block.gui-done {
	background: #d2ede8;
}

.gui-input, .gui-text, .gui-select, .gui-number {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
}

.gui-block-subtitle, .gui-content-subtitle {
	font-size:1.5em;
  font-weight: bold;
}

.gui-block-subtitle a {
	font-size:12px;
  line-height:2em;
  text-transform:none;
  font-weight: bold;
/*   color: #ff48c6 !important; */
}

.gui-form .gui-checkout-steps {
	margin:-15px;
}

.gui-checkout-one-step .gui-checkout-steps {
	width:auto !important;
}

.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col1,
.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2,
.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col3 {
  width: 33.3333% !important;
  padding: 15px !important;
  margin: 0 !important;
}

.gui-form .gui-field > label {
	font-size:.9em;
  display: none;
}

.gui-checkout #gui-block-review .gui-product-image {
  display: block !important;
  border:none;
  border-radius:3px;
  overflow: hidden;
  margin-right:15px;
}

.order-summary .gui-table tbody tr td:first-child {
	padding-left:0;
}

.order-summary .gui-table tbody tr td:last-child {
	padding-right:0;
  color:#404040;
}

.order-summary .gui-table thead {
	display:none;
}
.order-summary .gui-table tbody tr td {
	font-size:14px;
}

.gui-cart-sum .gui-item .gui-desc {
  font-size: 12px;
  text-align:left !important;
}

.gui-cart-sum .gui-line {
	background:#eee !important;
}

body .gui-table tbody tr:last-child td {
	border-color:#eee;
}

.gui-checkout .gui-confirm-buttons a.gui-button-action {
  padding: 0px 40px !important;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
}

input#gui-form-discount_code {
	font-size: 1em;
}

.gui-select select {
  -webkit-appearance: none;
	-moz-appearance:none;
	     appearance:none;
  background:transparent !important;
  padding:0px 10px !important;
}

body .gui-select {
	background:#fff !important;
  color:#000;
  font-size:13px;
  position:relative;
  z-index:0;
  border-radius: 5px;
  overflow: hidden;
}

body .gui-select:after {
  font-family: fontawesome;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  z-index: -1;
  font-size: .9em;
}

.gui-form .gui-radio input {
	margin: 0;
  margin-right: 10px;
}

.gui-checkout .gui-form .gui-input,
.gui-checkout .gui-form .gui-text,
body .gui-select {
	border: none !important;
}

.gui-select select {
  height: 40px !important;
  -webkit-appearance: none;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07) !important;
}

.gui-checkout .gui-form input[type="text"],
.gui-checkout .gui-form input[type="email"],
.gui-checkout .gui-form input[type="password"],
.gui-input-phone-number #gui-form-details-phone-number,
.gui-checkout .gui-form textarea {
	height:40px;
  padding:0px 20px;
  outline:none;
  border: 1px solid rgba(0,0,0,.07);
  border-radius:3px;
  font-size: .85em;
  font-weight: bold;
  letter-spacing: 0.05em;
  background:#fff;
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
}

.gui-input-phone-number .gui-input-phone-number-code-wrapper {
	height: 35px !important;
}

.gui-input-phone-number .gui-input-phone-number-code-placeholder {
	line-height: 30px !important;
}

.gui-input-phone-number .gui-input-phone-number-code-flag {
	top: 6px !important;
  left: 6px !important;
}

.gui-checkout .gui-form textarea {
	padding:13px 20px;
  max-width:100%;
  min-height: 100px;
}

.gui-checkout .gui-form input::-webkit-input-placeholder,
.gui-checkout .gui-form textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #aaa;
  color:rgba(0,0,0,0.4);
}

.gui-checkout .gui-form input:-moz-placeholder,
.gui-checkout .gui-form textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

.gui-checkout .gui-form input::-moz-placeholder,
.gui-checkout .gui-form textarea::-moz-placeholder{ /* Mozilla Firefox 19+ */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

.gui-checkout .gui-form input:-ms-input-placeholder,
.gui-checkout .gui-form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

.gui-checkout .gui-form input::-ms-input-placeholder,
.gui-checkout .gui-form textarea::-ms-input-placeholder { /* Microsoft Edge */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

body .gui-input.gui-focus,
body .gui-text.gui-focus,
.gui-input input:focus,
.gui-text textarea:focus {
	border:1px solid rgba(0,0,0,.07) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

body .gui-select.gui-focus {
	border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.gui-checkout .gui-progressbar {
	display: none;
}

.gui-checkout a.gui-button-large,
.gui-checkout a.gui-button-small {
	background: #FBE2EA !important;
  border: none !important;
  font-weight: bold !important;
  border-radius: 0 !important;
}

.gui-checkout a.gui-button-large {
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-size: 1.1em;
}

.checkout-title {
	font-size: 2em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
}

.status-bar.checkout {
/* 	margin-bottom:30px; */
  margin-top:30px;
}
.status-bar.checkout.checkout-page {
	margin-bottom:30px;
  margin-top:30px;
}
.status-bar.checkout .bar {
	height:5px;
  background:rgba(0,0,0,0.05);
  margin:0px 100px;
  position:relative;
  margin-bottom:15px;
}
.status-bar.checkout .bar .dot {
	position:absolute;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width:15px;
  height:15px;
  border-radius:50%;
  top:50%;
  margin-top:-8px;
  margin-left:-8px;
  font-size: 20px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border:1px solid rgba(0,0,0,0.09);
  background: #fff;
  color: rgba(0,0,0,0.07);
}

.status-bar.checkout .bar .dot:nth-child(1) {
	left:0;
}
.status-bar.checkout .bar .dot:nth-child(2) {
	left:33.3333%;
}
.status-bar.checkout .bar .dot:nth-child(3) {
	left:66.6666%;
}
.status-bar.checkout .bar .dot:nth-child(4) {
	left:100%;
}
.status-bar.checkout .bar .active-bar {
	float:left;
	width:0;
  height:5px;
  -webkit-transition: width .3s ease-in-out;
  -o-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
  background: #FF9900;
}
.status-bar.checkout .bar .active-bar.done-2 {
	width:33.3333%;
}
.status-bar.checkout .bar .active-bar.done-3 {
	width:66.6666%;
}
.status-bar.checkout .bar .active-bar.done-4,
.status-bar.checkout .bar .active-bar.done-all {
	width:100%;
}
.status-bar.checkout ul {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  margin: 0 50px;
}
.status-bar.checkout ul li {
	width:100px;
  text-align:center;
  opacity:.7;
  font-size: .95em;
}
.status-bar.checkout ul li.active {
	opacity:1;
}
.status-bar.checkout ul li.done {
  opacity:1;
}

.status-bar.checkout .bar .active-bar {
  background: #d2ede8;
}

.status-bar.checkout .bar .dot.active {
	border-color: #d2ede8;
  color: #d2ede8;
}

.status-bar.checkout .bar .dot.done {
	background: #d2ede8;
  color: #fff;
  border-color: #d2ede8;
}

.status-bar ul li.done {
/* 	color: #d2ede8; */
}

@media (max-width: 991px) {
  .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col1,
  .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2,
  .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col3 {
    width: 100% !important;
  }
  
  .checkout-title-wrap .inner {
  	justify-content: flex-end; 	
  }
  
  .checkout-title-wrap .btn-wrap .btn {
  	height: 40px;
  }
  
  .checkout-title-wrap .btn-wrap .btn i {
  	margin-right: 10px;
    font-size: 1.1em;
  }
  
  .status-bar.checkout .bar {
  	margin: 0 50px;
    margin-bottom: 15px;
  }
  
  .status-bar.checkout ul {
    margin: 0;
  }
  
  .status-bar.checkout ul li {
  	width: 110px;
    font-size: .8em;
  }
}

@media (max-width: 500px) {
  .status-bar.checkout .bar {
    margin: 0 35px;
    margin-bottom: 15px;
  }
  
  .status-bar.checkout ul li {
  	font-size: .6em;
    font-weight: 600;
  }
  
  .gui-block-subtitle, .gui-content-subtitle {
  	font-size: 1.2em;
  }
}
/* End custom checkout */

/* Mobile bar */
.mobile-bar {
	display: none;
}

@media (max-width: 991px) {
  .backtotop {
    right: 10px;
    bottom: 60px;
  }
  
  #footer {
  	margin-bottom: 55px;
  }
  
	.mobile-bar {
  	position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#c3e4dd;
    z-index:999;
/*     -webkit-box-shadow: 0 -2px 3px 0 rgba(0,0,0,0.05);
            box-shadow: 0 -2px 3px 0 rgba(0,0,0,0.05); */
    color:#000;
    padding:0px 10px;
    height:55px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
  }
  .mobile-bar ul {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
    font-size:24px;
    margin:0;
    padding:0;
    list-style:none;
    width:100%;
  }
  .mobile-bar ul li {
  	width: 25%;
  }
  
  .mobile-bar ul li a {
  	width:100%;
    height:55px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    text-decoration:none;
    padding: 5px 0;
    flex-direction: column;
    color: #000;
  }
  .mobile-bar ul li a.active {
/*   	color: rgba(222, 215, 189,1); */
  }
  .mobile-bar ul li a i,
  .mobile-bar .icon-wrap {
    margin-bottom: -0.2em;
  }
  .mobile-bar ul li a.menu-btn ul {
    list-style: none;
    margin: 0;
    padding: 0;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .mobile-bar ul li a.menu-btn ul li {
  	width: 20px;
    height: 2px;
    background: #000;
    margin-bottom: 4px;
  }
  
  .mobile-bar ul li a.menu-btn ul li:last-child {
  	margin-bottom: 0;
  }
  
  .mobile-bar ul li a.menu-btn.active ul li {
/*   	background: rgba(222, 215, 189,1); */
  }
  .mobile-bar ul li a.menu-btn i {
    display: inline-flex;
    font-size: 1.4em;
    margin-top: -0.1em;
    height: 25px;
  }
  
  .mobile-bar ul li a img {
  	height: 25px;
  }
  
  .mobile-bar ul li a.cart-icon img {
  	height: 24px;
  }
  
  .mobile-bar span {
    font-size: 10px;
    margin-top: 7px;
    font-weight: bold;
  }
  
  .mobile-bar .icon-wrap {
  	position:relative;
    display: flex;
    height: 25px;
  }
  .mobile-bar .icon-wrap .items {
    position: absolute;
    right: -7px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    background: #FBE2EA;
    color: #000;
    border-radius: 50%;
  }
  .user-circle {
  	display: block;
    width: 30px;
    height: 30px;
    background: #000;
    text-align: center;
    line-height: 32px;
    border-radius: 100%;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
  }
}
/*   End mobile bar */

/* Live search */
.mobile-popup.search {
	position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  display: flex;
  transition: all .2s ease-in-out;
}

@media (max-width: 991px) {
	.mobile-popup.search {
    height: calc(100% - 55px);
	}
}

.mobile-popup.search.open {
	transform: translateX(100%);
}

.mobile-popup.search form,
.mobile-popup.search form .inner {
	display: flex;
  width: 100%;
}

.mobile-popup.search form .inner {
	flex-direction: column;
}

.mobile-popup.search .top-wrap .search-wrap {
	display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.mobile-popup.search .top-wrap .search-wrap input[type="text"] {
  height: 45px;
  display: block;
  flex-grow: 10;
  font-weight: 600;
  color: #3e3e3e;
  background-color: #fff;
  background-image: none;
  font-size: 12px;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  outline: none;
}

.mobile-popup.search .top-wrap .search-wrap .close-btn,
.mobile-popup.search .top-wrap .search-wrap span {
  min-width: 45px;
  max-width: 45px;
  min-height: 45px;
  max-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-popup.search .top-wrap .search-wrap span {
	background: #212529;
  color: #fff;
}

.mobile-popup.search .top-wrap .search-wrap span.clear-search {
  display: none;
}

.mobile-popup.search .top-wrap .search-wrap .close-btn {
	font-size: 1.3em;
}

.mobile-popup.search .content-wrap {
  display: flex;
  flex-grow: 10;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.mobile-popup.search .content-wrap .autocomplete {
	width: 100%;
  display: none;
}

.mobile-popup.search .content-wrap .autocomplete .autocomplete-inner {
	width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px;
  height: calc(100% - 112px);
  justify-content: space-between;
	overflow: scroll;
}

.mobile-popup.search .content-wrap .autocomplete .more {
	padding: 15px;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
}

.mobile-popup.search .content-wrap .autocomplete .more a {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: pink;
  font-weight: bold;
}

.mobile-popup.search .content-wrap .autocomplete .more a span {
  font-size: .8em;
  opacity: 0.5;
  margin-left: 6px;
}

.mobile-popup.search .content-wrap .autocomplete .notfound {
  color: #8e8e8e;
  font-style: italic;
  display: none;
}

.mobile-popup.search .search-title,
.mobile-popup.search .query-title {
  font-weight: bold;
  font-size: 0.9em;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #656565;
}

.mobile-popup.search .query-title {
	margin: 0;
  padding: 15px;
  color: #888;
}

.mobile-popup.search .search-products .product {
  padding: 15px;
  border-bottom: 1px solid #eee;
  background: #ffff;
}

.mobile-popup.search .search-products .product .image-wrap,
.mobile-popup.search .search-products .product .image-wrap img {
	width: 70px;
}

.mobile-popup.search .search-products .product .info .brand {
  color: #aaa;
  font-weight: bold;
  text-transform: initial;
  font-size: 11px;
}

.mobile-popup.search .search-products .product .info .title {
	text-transform: initial;
  font-weight: bold;
  color: #333;
  font-size: 12px;
}

.mobile-popup.search .search-products .product .info .price {
  font-weight: bold;
  color: #aaa;
}

.mobile-popup.search .feat-categories {
	margin-bottom: 15px;
}

.mobile-popup.search .feat-categories .cats ul {
	list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-popup.search .feat-categories .cats ul li a {
  display: flex;
  height: 45px;
  font-size: 12px;
  font-weight: bold;
  background: #d2ede8;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #ababab;
  justify-content: space-between;
}

.mobile-popup.search .feat-categories .cats ul li:last-child a {
	border-bottom: 0;
}
/* End live search */

/* Productpage */
#product-page .images .image {
	display: block;
  padding: 0 20%;
}

#product-page .order-countdown {
  display: flex;
  margin-top: 15px;
  padding: 15px;
  align-items: center;
  background: #E4F7E0;
  font-size: .9em;
}

#product-page .order-countdown .icon {
  font-size: 2em;
  margin-right: 15px;
}

#product-page .order-countdown .subtitle {
	margin-bottom: 5px;
}

#product-page .order-countdown .subtitle span {
	font-weight: bold;
}

#product-page .order-countdown .title .time {
	font-weight: bold;
}

#product-page .order-countdown .title .time span {
	color: #ff48c6;
}

#product-page .mobile-content {
	background: #fff;
}

#product-page .mobile-content .tab {
	border-top: 1px solid #eee;
}

#product-page .mobile-content .tab .tab-toggle {
	display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

#product-page .mobile-content .tab .tab-toggle span {
	font-weight: bold;
  font-size: .9em;
}

#product-page .mobile-content .tab .tab-toggle i {
	font-size: 1.3em;
  transition: all .15s ease-in-out;
}

#product-page .mobile-content .tab.active .tab-toggle i {
	transform: rotate(-180deg);
}

#product-page .mobile-content .tab .content-wrap {
	display: none;
  margin-bottom: 15px;
}

#product-content {
	padding: 50px 0;
}

#product-content .inner-wrap {
	display: flex;
}

#product-content .inner-wrap .content-col {
	flex: 1;
}

#product-content .inner-wrap .content-col:first-child {
	max-width: 400px;
  min-width: 400px;
}

#product-content .inner-wrap .content-col:last-child {
	max-width: 300px;
  min-width: 300px;
}

#product-content h3 {
	margin-top: 0;
  font-size: 16px !important;
  margin-bottom: 15px;
}

#product-content .text {
	font-size: .9em;
  line-height: 2em;
}

#product-content .specs-wrap {
	padding: 0 80px;
}

#product-content ul.product-code {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
  text-transform: uppercase;
  color: #888;
  line-height: 1.7em;
}

#product-content .more-info {
	font-size: .9em;
  font-weight: bold;
  border-bottom: 3px solid #CEC870;
  padding-bottom: 3px;
  margin-top: 10px;
  display: inline-block;
}

@media (max-width: 1399px) {
	#product-content .specs-wrap {
    padding: 0 30px;
  }
  
  #product-content .inner-wrap .content-col:first-child,
  #product-content .inner-wrap .content-col:last-child {
    max-width: unset;
    min-width: unset;
  }
}

@media (max-width: 991px) {
  #product-page .mobile-info-wrap {
    background: rgba(0,0,0,0.03);
  }

  #product-page .thumbs .thumb img {
  	margin-bottom: 0;
  }
  
  #product-page .thumbs .thumb .image-wrap {
  	position: relative;
    margin-bottom: 30px;
  }
  
  #product-page .images .image .image-wrap {
  	position: relative;
    padding: 0;
  }
  
  #product-page .thumbs .thumb .image-wrap:after,
  #product-page .images .image .image-wrap:after {
  	content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.03);
  }
  
  #product-page .extra-info-mobile ul {
  	list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
  }
  
  #product-page .extra-info-mobile ul li {
    margin-bottom: 5px;
    display: flex;
    font-size: 0.8em;
    font-weight: bold;
  }
  
  #product-page .extra-info-mobile ul li span.komma:last-child {
  	display: none;
  }
  
  #product-page .extra-info-mobile ul li .icon-wrap {
  	min-width: 30px;
    max-width: 30px;
    color: #00ad00; 
  }
  
  #product-page .extra-info-mobile .more-info-arrow .text {
    text-align: left;
    padding-left: 30px;
    font-size: .8em;
    color: #888;
    text-decoration: underline;
  }
  
  #product-page .images .image {
  	display: block;
  }
  
  #product-page .images .image img {
  	max-width: unset;
  }
  
  #product-page .productpage-slider .owl-nav .owl-prev,
  #product-page .productpage-slider .owl-nav .owl-next {
  	position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.5em;
  }
  
  #product-page .productpage-slider .owl-nav .owl-next {
  	left: auto;
    right: 0;
  }
  
  #product-page .thumbs {
    width: 40px;
    position: absolute;
    z-index: 9;
    top: 10px;
    left: 20px;
  }
  
  #product-page .mobile-images-slider-outer {
  	position: relative;
  }
  
  #product-page .mobile-images-slider-outer .zoom-btn {
  	width: 40px;
    height: 40px;
    display: none;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    bottom: 15px;
    right: 0;
    color: #888;
    font-size: 1.5em;
    z-index: 999;
  }
  #product-page .mobile-images-slider-outer .zoom-btn.active {
  	display: flex;
  }
  
  #product-page .cart .qty-wrap .custom-dropdown {
    height: 55px;
    border: 2px solid #e6e6e6;
    padding: 0 20px;
  }
  
  #product-page .product-info .cart a.cart-btn {
    border: none;
    height: 55px;
    margin-left: 10px;
    font-size: 0.85em;
    padding: 0 5px;
    white-space: nowrap;
  }
  
  #product-page .images .image {
  	padding: 0 10%;
  }
  
  .recent-products {
  	padding: 15px 0;
    overflow: hidden;
  }
  
  .recent-products h2 {
  	font-size: .9em !important;
    text-align: left;
  }
  
  .recent-products .recent-products-slider-outer {
  	margin-right: -40%
  }
  
  .recent-products .recent-products-slider {
  	margin: -10px;
  }
  
  .recent-products .recent-products-slider .owl-stage-outer {
  	overflow: visible;
  }
  
  .recent-products .recent-products-slider .recent-slider-product {
  	width: 100% !important;
    padding: 10px;
  }
}
/* End productpage */

/* Sticky cart */
#sticky-cart {
	position: fixed;
  bottom:55px;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  -webkit-box-shadow: 0 -2px 3px 0 rgba(0,0,0,0.05);
          box-shadow: 0 -2px 3px 0 rgba(0,0,0,0.05);
  padding: 15px 0;
  -webkit-transform: translateY(100%) translateZ(0);
          transform: translateY(100%) translateZ(0);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  opacity: 0;
}

#sticky-cart.active {
	-webkit-transform: translateY(0) translateZ(0);
	        transform: translateY(0) translateZ(0);
  opacity: 1;
}

#sticky-cart .cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sticky-cart .cart .custom-dropdown {
	height: 45px;
}

#sticky-cart .cart .btn {
	display: inline-flex;
  height: 45px;
  align-items: center;
  line-height: unset;
  border-radius: 0;
  font-weight: bold;
  border: none;
  background: #FBE2EA;
  font-size: .9em;
  flex-grow: 10;
  margin-left: 10px;
  padding: 0;
  justify-content: center;
}
/* End sticky cart */

/* Color filters */
.ui.checkbox.color-filter .box:after,
.ui.checkbox.color-filter label:after {
  color: #fff !important;
}

.ui.checkbox.color-filter.wit .box:after,
.ui.checkbox.color-filter.wit label:after {
  color: #000 !important;
}

.ui.checkbox.color-filter.zwart .box:before,
.ui.checkbox.color-filter.zwart label:before {
	background: #000000;
}

.ui.checkbox.color-filter.wit .box:before,
.ui.checkbox.color-filter.wit label:before {
	background: #ffffff;
}

.ui.checkbox.color-filter.grijs-zilverkleurig .box:before,
.ui.checkbox.color-filter.grijs-zilverkleurig label:before {
	background: #D8D8D8;
}

.ui.checkbox.color-filter.bruin-beige .box:before,
.ui.checkbox.color-filter.bruin-beige label:before {
	background: #8A582F;
}

.ui.checkbox.color-filter.rood .box:before,
.ui.checkbox.color-filter.rood label:before {
	background: #CD0D22;
}

.ui.checkbox.color-filter.roze .box:before,
.ui.checkbox.color-filter.roze label:before {
	background: #FDA5BC;
}

.ui.checkbox.color-filter.geel .box:before,
.ui.checkbox.color-filter.geel label:before {
	background: #F7E844;
}

.ui.checkbox.color-filter.blauw .box:before,
.ui.checkbox.color-filter.blauw label:before {
	background: #254B7A;
}

.ui.checkbox.color-filter.groen .box:before,
.ui.checkbox.color-filter.groen label:before {
	background: #43751A;
}

.ui.checkbox.color-filter.mint .box:before,
.ui.checkbox.color-filter.mint label:before {
	background: #A0CAFC;
}

.ui.checkbox.color-filter.goudkleurig .box:before,
.ui.checkbox.color-filter.goudkleurig label:before {
	background: linear-gradient(135deg,#f3e2c7,#c19e67 50%,#b68d4c 51%,#e9d4b3);
}

.ui.checkbox.color-filter.rosekleurig .box:before,
.ui.checkbox.color-filter.rosekleurig label:before {
	background: #FDA5BC;
}

.ui.checkbox.color-filter.multi .box:before,
.ui.checkbox.color-filter.multi label:before {
	background: linear-gradient(135deg,red,orange,#ff0,green,#00f,indigo,violet);
}
/* End color filters */

/* Headlines */
@media (max-width: 767px) {
  .headlines.mobile-btn-active {
  	margin-bottom: 25px;
  }
  
  .headlines.mobile-btn-active .owl-stage-outer {
    overflow: visible;
  }

  .headlines.mobile-btn-active {
    position: relative;
    z-index: 0;
  }

  .headlines.mobile-btn-active .btn {
  	border-radius: 0;
    height: 50px;
    line-height: unset;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    background: #FBE2EA;
    border: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 99999999999999;
  }
}
/* End headlines */

/* Checkout header */
#checkout-header {
  background: #f7f7f7;
  padding: 15px 0;
}

#checkout-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#checkout-header .logo img {
  height: 70px;
}

#checkout-header .usp-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 10;
  margin-left: 100px;
}

#checkout-header .usp-wrap li {
  margin-right: 50px;
  display: flex;
  align-items: center;
  color: #333;
}
#checkout-header .usp-wrap li img{
	height: 25px;
}
#checkout-header .usp-wrap li:last-child {
	margin-right: 0;
}

#checkout-header .usp-wrap li i {
  margin-right: 8px;
  color: #6fc3ab;
}

@media (max-width: 1199px) {
  #checkout-header .inner {
    flex-direction: column;
  }
  
  #checkout-header .logo img {
    height: 50px;
  }
  
  #checkout-header .usp-wrap {
    justify-content: center;
    margin-left: 0;
    margin-top: 15px;
    font-size: .9em;
  }
}

@media (max-width: 767px) {
  #checkout-header {
  	padding: 10px 0;
  }
  
  #checkout-header .logo img {
  	height: 45px;
  }
  
  #checkout-header .usp-wrap.mobile-hidden {
  	opacity: 0;
    height: 17px;
  }
  
  #checkout-header .usp-wrap {
  	margin-top: 10px;
  }
  
  #checkout-header .usp-wrap li {
  	margin: 0;
    text-align: center;
    justify-content: center;
  }
}
/* End checkout header */