section.wishlist-page {
  margin-top: 0;
}
section.wishlist-page .breadcrumbs {
  margin-top: 19px;
  margin-bottom: 18px;
}
@media only screen and (min-width: 770px) {
  section.wishlist-page .breadcrumbs {
    margin-bottom: 30px;
  }
}
section.wishlist-page .wishlist-hero {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 770px) {
  section.wishlist-page .wishlist-hero {
    align-items: center;
  }
}
section.wishlist-page .wishlist-hero_back-link {
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 770px) {
  section.wishlist-page .wishlist-hero_back-link {
    margin-bottom: 0px;
  }
}
section.wishlist-page .wishlist-hero_back-link svg {
  height: 8px;
  width: 8px;
}
section.wishlist-page .wishlist-hero h1 {
  display: inline-block;
}
section.wishlist-page .wishlist-hero_intro-text {
  max-width: 538px;
  line-height: 21px;
  margin-top: 11px;
  margin-bottom: 0;
}
section.wishlist-page .wishlist-grid-container {
  position: relative;
}
section.wishlist-page .wishlist__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 30px;
  position: relative;
  opacity: 0;
  transition: opacity 3000ms ease;
  min-height: 150px;
  z-index: 2;
}
section.wishlist-page .wishlist__grid .empty-wishlist {
  position: absolute;
  text-align: left;
  width: 100%;
  left: 0;
}
@media only screen and (min-width: 770px) {
  section.wishlist-page .wishlist__grid .empty-wishlist {
    text-align: center;
  }
}
section.wishlist-page .wishlist__grid.loaded {
  opacity: 1;
}
section.wishlist-page .wishlist__grid.loaded ~ .loader {
  opacity: 0;
}
section.wishlist-page .loader {
  position: absolute;
  left: 50%;
  top: 80px;
  transition: opacity 200ms ease;
  z-index: 1;
}
section.wishlist-page .empty-wishlist {
  position: absolute;
  text-align: left;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  transform: translate(-50%, -20%);
  left: 50%;
  top: 20%;
  display: none;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #f2f3f8;
  padding: 30px;
  border-radius: 10px;
  z-index: 3;
  opacity: 0;
}
section.wishlist-page .empty-wishlist.show {
  -webkit-animation: show 300ms forwards;
          animation: show 300ms forwards;
  display: flex;
}
@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (min-width: 576px) {
  section.wishlist-page .wishlist__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 770px) {
  section.wishlist-page .wishlist__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  section.wishlist-page .wishlist__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 27px;
  }
}
