@charset "utf-8";


.wishlist-content-wrapper  .this-category-qty {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}
.wishlist-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wishlist-wrapper .info-text-wrapper {
    width: 100%;
}
.wishlist-products {
    width: 100%;
}
.wishlist-products-wrapper {
    width: 100%;
    background: #F7F7F7;
}
.wishlist-header {
    background: #D9D9D9;
    display: flex;
    justify-content: space-between;
    padding: 14px 60px 14px 30px;
    margin-bottom: 10px;
}
.wishlist-header-item {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0;
    color: #000000;
}

.wishlist-header-item a.clear-all {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0;
    color: #000000;
}
.wishlist-header-item .clear-all:after {
    font-family: 'Font Awesome 6';
    content: "\f00d";
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    position: absolute;
    top: 0;
    margin-left: 15px;
}
.wishlist-header-item a.clear-all:hover:after,
.wishlist-header-item a.clear-all:hover {
    color: #00B897;
    transition: 0.5s;
    text-decoration: none;
}

.wishlist-row-wrapper {
    display: flex;
    justify-content: space-between;
    background: #F7F7F7;
    border-top: 5px solid #ffffff;
    margin: 0 30px;
    padding: 30px 0;
}

.wishlist-row-wrapper:nth-child(2) {
    border-top: none;
}
.wishlist-product-photo {
    width: 120px;
    height: 120px;
    border: 1px solid #ffffff;
    flex-shrink: 0;
}
.wishlist-product-photo img {
    width: 100%;
    height: auto;
    font-size: 8px;
}
.wishlist-product-main {
    width: 940px;
    padding-left: 20px;
}
.wishlist-product-categ {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.2em;
    color: #00B897;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.wishlist-product-name {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 10px;
}
.wishlist-product-code {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0;
    color: #000000;
    display: flex;
    margin-bottom: 20px;
}
.wishlist-product-code-label {
    width: 300px;
}
.wishlist-product-price {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.1em;
}
.wishlist-product-price .normal-price {
    font-weight: 700;
    color: #414040;
    width: 150px;
}
.wishlist-product-price .old-price {
    font-weight: 300;
    text-decoration-line: line-through;
    color: #949494;
    width: 150px;
}
.wishlist-product-price .economy {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    background-color: #ffffff;
    padding: 5px 10px;
    margin-top: 5px;
    text-align: right;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.wishlist-product-price .economy span {
    font-size: 24px;
    line-height: 30px;
    margin-left: 20px;
}

.wishlist-product-final-price {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-align: right;
    color: #2F2F2F;
    margin-top: 17px;
}
.wishlist-product-action {
    width: 200px;
    margin-top: 6px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wishlist-product-add-cart{
    padding: 0 15px;
}

.delete-from-wishlist {
    width: 40px;
    height: 40px;
    display: inline-block;

}
.delete-from-wishlist::after {
    font-family: 'Font Awesome 6';
    content: "\f00d";
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    color: #414040;
    margin-left: 20px;
}