/* MOVE IN WS APIDAE */
/*
* {
  box-sizing: border-box;
}

.list-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7.5px;
}

.list-items > .item {
  width: 100%;
  padding: 0 7.5px;
  margin-bottom: 15px;
}

.list-items > .item .card {
  height: 100%;
}

@media (min-width: 768px) {
  .list-items > .item {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .list-items > .item {
    width: 33.33%;
  }
}

.listing-header {
  margin-bottom: 10px;
}

.listing-header .results {
  font-weight: 700;
}

.card {
  padding: 0;
  border: 0 none;
  position: relative;
}

.card .group-actions {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
}

.card .group-actions .ws-wishlist-link {
  font-size: 0;
  width: 40px;
  height: 40px;
  display: block;
  background-image: url('../img/divers/heart-w.svg');
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.card .group-actions .ws-wishlist-link.ws-wishlist-link-remove {
  background-image: url('../img/divers/heart-w-fill.svg');
}

.card .group-media {
  overflow: hidden;
}

.card .group-media .field-image {
  transform: scale(1);
  transition: transform 0.45s;
}

.card .group-media img {
  width: 100%;
  display: block;
}

.card .group-content {
  padding: 10px 0;
}

.card .field-title {
  margin: 0;
  font-size: 18px;
}

.card:hover .group-media .field-image,
.card:focus .group-media .field-image {
  transform: scale(1.1);
}
*/
/* MOVE IN WS APIDAE */

/*.card .group-actions .ws-wishlist-link {
  font-size: 0;
  width: 40px;
  height: 40px;
  display: block;
  background-image: url('../img/divers/heart-w.svg');
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.card .group-actions .ws-wishlist-link.ws-wishlist-link-remove {
  background-image: url('../img/divers/heart-w-fill.svg');
}*/

/* NOTIFICATIONS */
.notification-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  pointer-events: none;
}

.notification-container .notification {
  background-color: #000;
  color: #fff;
  padding: 10px 15px;
  opacity: 1;
  font-size: 14px;
  animation: fadeInOut 3s ease forwards;
  pointer-events: auto;
  text-align: center;
}

@keyframes fadeInOut {
  0% { transform: translateY(100%); }
  10%, 90% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* BASKET */
.ws-wishlist-basket {
  width: 45px;
  height: 45px;
  position: relative;
  display: inline-block;
  margin: 0;
}

.ws-wishlist-basket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ef6ad9;
  mask-image: url('../img/divers/heart-w-fill.svg');
  mask-size: 30px auto;
  mask-repeat: no-repeat;
  mask-position: center center;
}

.ws-wishlist-basket .count {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 20px;
  background: #FFF;
  font-size: 11px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 18px;
  height: 18px;
}