header {
    height: auto;
}

footer {
    margin-top: 101px;
}

.wishlist-section {

}

.wishlist-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px;
    margin-top: 30px;
    margin-bottom: 0px;
}

.wishlist-body {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    /*max-width: 800px;*/
    margin: 40px;
    margin-top: 0px;
    gap: 20px;
    padding: 10px;
    padding-bottom: 25px;
    padding-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.remove-product-icon {
    position: absolute;
    top: -14px;
    right: -13px;
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 26px;
    color: white;
    font-size: 21px;
    padding-top: 4px;
    cursor: pointer;
}

/**
* Mobile
*/

@media(max-width: 600px) {
    .wishlist-head {
        margin: 20px;
    }

    .wishlist-body {
        margin: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}