/* additionnal font icons */
@font-face {
  font-family: 'icomoon';
  src:
    url('fonts/icomoon.ttf?7wpfst') format('truetype'),
    url('fonts/icomoon.woff?7wpfst') format('woff'),
    url('fonts/icomoon.svg?7wpfst#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="iconadd-"], [class*=" iconadd-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconadd-heart:before {
  content: "\f004";
  font-family: 'icomoon' !important;
}
.iconadd-heart-o:before {
  content: "\f08a";
  font-family: 'icomoon' !important;
}


/* Favorites icons */
.btn-fav {
	padding: 5px;
	border: 0;
	background: none;
	text-decoration: none;
}

.btn-fav i {
  font-size: 2rem;
  color: #444444;
  transition: color 0.3s ease;
}
.btn-fav:hover i {
  color: red;
}
.btn-fav.added i {
  color: red;
}


/*Product page */
.box-info-product {
	position: relative;
}

.product_extra_left {
	position: absolute;
	right: 20px;
	top: 8px;
}


/* Product listing */
.product-miniature .product-details {
	position: relative;
}

.product-miniature .product-details .add_wishlist_button {
  position: absolute;
  right: 20px;
  bottom: 15px;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (max-width: 767.98px) {
	.product-miniature .product-details .add_wishlist_button {
    display: none;
  }
}

@media (max-width: 991.98px) {
	.main-header .surheader .utils .download-link { display: none;}
}

.product-miniature:hover .product-details .add_wishlist_button {
  opacity: 1;
}
.product-miniature .product-details .add_wishlist_button.added {
  opacity: 1;
}


/* My account */
.account-links-container .account-link .iconadd-heart {
	margin-right: 20px;
	color: #F7B320;
	font-size: 3rem;
  min-width: 40px;
  text-align: center;
}

#favoriteproducts_block_account .product-miniature {
  position: relative;
}

#favoriteproducts_block_account .product-miniature .remove {
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 2rem;
}