h1 {
    border-bottom: 1px solid #CCC;
    font-size: 180%;
    margin: 20px 0;
    padding-bottom: 20px;
}

.wishlistBlock {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.removeBtn {
    font-weight: bolder;
    color: var(--main-color);
    /* Dark gray text */
    text-align: center;
    text-decoration: none;
    font-size: 100%;
    margin-right: 20px;
    cursor: pointer;
    transition-duration: 0.4s;
    border-radius: 50%;
    /* Make the button round */
    width: 30px;
    /* Set a fixed width */
    height: 30px;
    /* Set a fixed height */
    line-height: 30px;
    /* Adjust the vertical alignment of the text */
}
.removeBtn > i{
    pointer-events: none;
}

.productImgHolder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-right: 20px;
    width: 100px;
}

.productImgHolder img {
    height: 100%;
    margin: 0 auto;
    max-width: 100px;
}

.productName {
    display: flex;
    align-items: center;
    font-size: 120%;
    font-weight: bolder;
    height: 100px;
    width: calc((100% / 2) - 65px);
}

.wishlistBlock p {
    display: flex;
    align-items: center;
    color: #333;
    height: 100px;
    width: calc((100% / 2) - 65px);
}

.addToCartBtn {
    border-radius: 5px;
    background-color: var(--main-color);
    color: white;
    /* White text */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 85%;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    transition-duration: 0.4s;
    width: 100px;
}

@media only screen and (max-width:800px){
    .wishlistBlock {
        display:block;
    }
    .removeBtn{
        margin:0 auto;
    }
    .productImgHolder{
        width:100%;
    }
    .productName{
        display:block;
        height:30px;
        line-height:30px;
        text-align:center;
        width:100%;
    }
    .wishlistBlock p{
        display:block;
        height:30px;
        line-height:30px;
        text-align:center;
        width:100%;
    }
    .addToCartBtn{
        display:block;
        margin:0 auto;
    }
}