/**********************************************************************/
.page-wishlist .wishlist__content {
  display: flex;
  flex-direction: column;
  padding: 55px 0 70px;
}

/**********************************************************************/
.page-wishlist .breadcrumbs {
  justify-content: center;
  margin-bottom: 20px;
}
.page-wishlist .wishlist__title {
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
}
.page-wishlist .wishlist__subtitle {
  position: relative;
  margin: 0 auto 100px;
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}
.page-wishlist .wishlist__subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 400px;
  height: 1px;
  max-width: 100%;
  background-color: #d9d9d9;
}
.page-wishlist .wishlist__notfound {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
.page-wishlist .wishlist__notfound p {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}
.page-wishlist .wishlist__notfound .btn {
  margin-top: 30px;
}
.page-wishlist .wishlist__notfound.show {
  display: flex;
}

/**********************************************************************/
.wishlist__items {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 16px);
  margin-left: -8px;
  margin-right: -8px;
}
.wishlist__item {
  position: relative;
  width: calc(25% - 16px);
  margin: 0 8px 70px;
  padding-top: 20px;
}
.wishitem__close {
  position: absolute;
  top: 0;
  right: -5px;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.wishitem__close:hover {
  opacity: 0.6;
}
.wishitem__close:before,
.wishitem__close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 10px;
  height: 1px;
  background-color: #000000;
  transition: opacity 0.3s;
}
.wishitem__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.wishitem__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.wishitem__link {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}
.wishitem__link:hover {
  opacity: 0.6;
}
.wishitem__name {
  margin: 15px auto 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #000000;
  text-align: center;
}
.wishitem__share .share__toggler {
  margin: 0 auto;
}
.wishitem__share .addtoany_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
  /**********************************************************************/
  .page-wishlist .wishlist__content {
    margin: 0 auto;
    padding: 35px 0;
  }

  /**********************************************************************/
  .page-wishlist .wishlist__title {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
  }
  .page-wishlist .wishlist__subtitle {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
  }
  .page-wishlist .wishlist__subtitle:after {
    width: 100%;
  }
  .page-wishlist .wishlist__notfound {
    margin: 40px 0;
    font-size: 14px;
  }

  /**********************************************************************/
  .wishlist__items {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
  }
  .wishlist__item {
    width: calc(50% - 8px);
    margin: 0 4px 20px;
  }
}

@media screen and (max-width: 767px) {
  .wishitem__name {
    margin-top: 10px;
    font-size: 12px;
    line-height: 14px;
  }
}
