.alohas-list-empty-content {
  display: flex; 
  flex-direction: column;
  align-items: center;
}

.alohas-wishlist-popup-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.49);
    backdrop-filter: blur(7px);
    top: 0;
    left: 0;
    z-index: 10000;
}
.alohas-wishlist--form {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 20000;
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 100vw;
    border-radius: 12px 12px 0 0;
    max-width: 100vw;
    height: 0;
    transition: height 0.6s;
}
.alohas-wishlist--form.grow {
    height: 600px;
  }
.alohas-wishlist--popup-header {
    position: relative;
    padding: 16px;
    padding-bottom: 0px;
    text-align: left;
    border-bottom: 1px solid #F3F3F3;
  }
.alohas-wishlist--close-icon {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
}

@media screen and (min-width: 768px) {
    .alohas-wishlist--form {
      top: 50%;
      bottom: unset;
      transform: translate(-50%, -50%);
      border-radius: 12px;
      height: auto;
      width: 375px;
    }
    .alohas-wishlist--form.grow {
      height: auto;
    }
}