#seaflora-wish-list {
    position: fixed;
    top: 100px;
    right: -100vw;
    width: 400px;
    padding: 20px;
    height: calc(90vh - 140px);
    max-width: 90vw;
    background: #fafafa;
    z-index: 99999;
    border-radius: 10px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border: 1px solid #eeeeee;
}

#seaflora-wish-list.show {
    right: 10px;
}

#seaflora-wish-list::-webkit-scrollbar {
  display: none;
  width: 0;
  background:transparent;
}

#toggle-wishlist {
    cursor: pointer;
}

#close-wishlist-box {
    top: 5px;
    right: 5px;
    background: #eeeeee;
    color: #101010;
}

#close-wishlist-box:hover {
    background: #cccccc;
}

#toggle-wishlist .dashicons {
    font-size: 22px;
    height: auto;
    width: auto;
}

.wish-list-header {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 24px;
}

.wish-list-item {
    width: 100%;
    display: grid;
    grid-template-columns: 100px auto 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 2px;
}

.wish-list-image {
    padding: 5px;
}

.wish-list-title {
    padding: 5px;
    font-size: 15px;
}

.wish-list-title a {
    color: #101010;
}

.wish-list-item .remove-item {
    text-align: center;
    padding: 5px;
    cursor: pointer;
    line-height: 1;
}

#no-wish-list-items {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
}


@media screen and (min-width: 960px) {
    #seaflora-wish-list {
        top: 140px;
        height: calc(90vh - 180px);
    }
}
